2008-05-01 07:24:40 +00:00
|
|
|
|
/*
|
|
|
|
|
* tvheadend, WEBUI / HTML user interface
|
|
|
|
|
* Copyright (C) 2008 Andreas <EFBFBD>man
|
|
|
|
|
*
|
|
|
|
|
* This program 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 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <pthread.h>
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
#include "tvhead.h"
|
2008-08-25 17:50:43 +00:00
|
|
|
|
#include "access.h"
|
2008-05-01 07:24:40 +00:00
|
|
|
|
#include "http.h"
|
|
|
|
|
#include "webui.h"
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
is_client_simple(http_connection_t *hc)
|
|
|
|
|
{
|
|
|
|
|
char *c;
|
|
|
|
|
|
|
|
|
|
if((c = http_arg_get(&hc->hc_args, "UA-OS")) != NULL) {
|
|
|
|
|
if(strstr(c, "Windows CE") || strstr(c, "Pocket PC"))
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if((c = http_arg_get(&hc->hc_args, "x-wap-profile")) != NULL) {
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Root page, we direct the client to different pages depending
|
|
|
|
|
* on if it is a full blown browser or just some mobile app
|
|
|
|
|
*/
|
|
|
|
|
static int
|
|
|
|
|
page_root(http_connection_t *hc, http_reply_t *hr,
|
|
|
|
|
const char *remain, void *opaque)
|
|
|
|
|
{
|
|
|
|
|
if(is_client_simple(hc)) {
|
|
|
|
|
http_redirect(hc, hr, "/simple.html");
|
|
|
|
|
} else {
|
2008-08-25 16:22:50 +00:00
|
|
|
|
http_redirect(hc, hr, "/extjs.html");
|
2008-05-01 07:24:40 +00:00
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* WEB user interface
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
webui_start(void)
|
|
|
|
|
{
|
|
|
|
|
http_path_add("/", NULL, page_root, ACCESS_WEB_INTERFACE);
|
|
|
|
|
|
2008-08-25 17:50:43 +00:00
|
|
|
|
simpleui_start();
|
2008-08-25 16:22:50 +00:00
|
|
|
|
extjs_start();
|
|
|
|
|
comet_init();
|
2008-05-01 07:24:40 +00:00
|
|
|
|
}
|