summaryrefslogtreecommitdiff
path: root/src/http.cc
blob: ffd7912a6366e2ccb654676079c7d50cb4905812 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set et sw=2 ts=2: */
/***************************************************************************
 *            http.cc
 *
 *  Fri Feb 24 07:58:48 CET 2012
 *  Copyright 2012 Bent Bisballe Nyeng
 *  deva@aasimon.org
 ****************************************************************************/

/*
 *  This file is part of Munia.
 *
 *  Munia is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  Munia is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with Munia; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
 */
#include "http.h"

#include <stdio.h>
#include <string.h>
#include <string>

#include "hugin.hpp"

int serveFile(struct lws *wsi,
              const std::string& file, const std::string& mimeType)
{
	std::string fileWithPath = LOCAL_RESOURCE_PATH;
	fileWithPath += "/" + file;
	auto ret = lws_serve_http_file(wsi, fileWithPath.data(),
	                               mimeType.data(), nullptr, 0);
	if(ret < 0)
	{
		DEBUG(httpd, "Failed to serve %s\n", file.data());
		return 1; // error!?
	}

	if(ret > 0)
	{
		if(lws_http_transaction_completed(wsi) < 0)
		{
			DEBUG(httpd, "Failed to complete http transaction %s\n", file.data());
			return 1;
		}
	}

	if(ret == 0)
	{
		DEBUG(httpd, "Http transaction of %s in progress\n", file.data());
	}

	return 0;
}

int callback_http(struct lws *wsi,
                  enum lws_callback_reasons reason, void *user,
                  void *i, size_t len)
{
	//	char client_name[128];
	//	char client_ip[128];

	if(reason != LWS_CALLBACK_HTTP)
	{
		return 0; // We only serve http here
	}

	const char* in = (char*)i;
	while(*in == '/')
	{
		in++; // skip trailing slashes
	}

	std::string file;
	file.append(in, len - (in - (char*)i));
	DEBUG(httpd,"serving HTTP URI %s\n", file.data());

	// add favicon later
	if(file == "favicon.ico")
	{
		return serveFile(wsi, file, "image/x-icon");
	}

	// css
	if(file == "munia.css")
	{
		return serveFile(wsi, file, "text/css");
	}

	// script
	if(file == "proto.js" ||
	   file == "handler.js" ||
	   file == "node.js" ||
	   file == "view.js")
	{
		return serveFile(wsi, file,"text/javascript");
	}

	return serveFile(wsi, "munia.html", "text/html");

#if 0
	// callback for confirming to continue with client IP appear in
	// protocol 0 callback since no websocket protocol has been agreed
	// yet.  You can just ignore this if you won't filter on client IP
	// since the default uhandled callback return is 0 meaning let the
	// connection continue.

	case LWS_CALLBACK_FILTER_NETWORK_CONNECTION:
		//lws_get_peer_addresses((int)(long)user,
		//                       client_name,
		//                       sizeof(client_name),
		//                       client_ip,
		//                       sizeof(client_ip));
		//DEBUG(httpd,"Received network connect from %s (%s)\n",
		//      client_name, client_ip);

		// if we returned non-zero from here, we kill the connection
		break;
#endif
}