vdr-plugin-streamdev/server/connectionHTTP.c

298 lines
7.8 KiB
C
Raw Normal View History

2004-12-30 23:43:55 +01:00
/*
* $Id: connectionHTTP.c,v 1.15 2009/01/16 11:35:44 schmirl Exp $
2004-12-30 23:43:55 +01:00
*/
#include <ctype.h>
2004-12-30 23:43:55 +01:00
#include "server/connectionHTTP.h"
#include "server/menuHTTP.h"
#include "server/server.h"
2004-12-30 23:43:55 +01:00
#include "server/setup.h"
2005-02-11 17:44:14 +01:00
cConnectionHTTP::cConnectionHTTP(void):
cServerConnection("HTTP"),
m_Status(hsRequest),
m_LiveStreamer(NULL),
m_StreamerParameter(""),
2005-02-11 17:44:14 +01:00
m_Channel(NULL),
m_Apid(0),
m_StreamType((eStreamType)StreamdevServerSetup.HTTPStreamType),
m_ChannelList(NULL)
2005-02-11 17:44:14 +01:00
{
Dprintf("constructor hsRequest\n");
2004-12-30 23:43:55 +01:00
}
2005-02-11 17:44:14 +01:00
cConnectionHTTP::~cConnectionHTTP()
{
delete m_LiveStreamer;
2004-12-30 23:43:55 +01:00
}
bool cConnectionHTTP::CanAuthenticate(void)
{
return opt_auth != NULL;
}
2005-02-11 17:44:14 +01:00
bool cConnectionHTTP::Command(char *Cmd)
{
Dprintf("command %s\n", Cmd);
2004-12-30 23:43:55 +01:00
switch (m_Status) {
case hsRequest:
2005-02-11 17:44:14 +01:00
Dprintf("Request\n");
m_Request = Cmd;
m_Status = hsHeaders;
return true;
2004-12-30 23:43:55 +01:00
case hsHeaders:
if (*Cmd == '\0') {
2005-02-11 17:44:14 +01:00
m_Status = hsBody;
return ProcessRequest();
}
if (strncasecmp(Cmd, "Host:", 5) == 0) {
Dprintf("Host-Header\n");
m_Host = (std::string) skipspace(Cmd + 5);
return true;
}
else if (strncasecmp(Cmd, "Authorization:", 14) == 0) {
Cmd = skipspace(Cmd + 14);
if (strncasecmp(Cmd, "Basic", 5) == 0) {
Dprintf("'Authorization Basic'-Header\n");
m_Authorization = (std::string) skipspace(Cmd + 5);
return true;
}
}
2005-02-11 17:44:14 +01:00
Dprintf("header\n");
return true;
default:
break;
2005-02-11 17:44:14 +01:00
}
return false; // ??? shouldn't happen
}
2005-05-09 22:22:29 +02:00
bool cConnectionHTTP::ProcessRequest(void)
{
2005-02-11 17:44:14 +01:00
Dprintf("process\n");
if (!StreamdevHosts.Acceptable(RemoteIpAddr()))
{
if (!opt_auth || m_Authorization.empty() || m_Authorization.compare(opt_auth) != 0) {
isyslog("streamdev-server: HTTP authorization required");
DeferClose();
return Respond("HTTP/1.0 401 Authorization Required")
&& Respond("WWW-authenticate: basic Realm=\"Streamdev-Server\")")
&& Respond("");
}
}
2005-02-11 17:44:14 +01:00
if (m_Request.substr(0, 4) == "GET " && CmdGET(m_Request.substr(4))) {
switch (m_Job) {
case hjListing:
if (m_ChannelList)
return Respond("%s", true, m_ChannelList->HttpHeader().c_str());
break;
2005-02-11 17:44:14 +01:00
case hjTransfer:
if (m_Channel == NULL) {
2004-12-30 23:43:55 +01:00
DeferClose();
return Respond("HTTP/1.0 404 not found");
}
2005-02-11 17:44:14 +01:00
m_LiveStreamer = new cStreamdevLiveStreamer(0, m_StreamerParameter);
2004-12-30 23:43:55 +01:00
cDevice *device = GetDevice(m_Channel, 0);
if (device != NULL) {
device->SwitchChannel(m_Channel, false);
if (m_LiveStreamer->SetChannel(m_Channel, m_StreamType, m_Apid)) {
2005-02-08 20:54:52 +01:00
m_LiveStreamer->SetDevice(device);
if (!SetDSCP())
LOG_ERROR_STR("unable to set DSCP sockopt");
2005-02-11 17:44:14 +01:00
if (m_StreamType == stES && (m_Apid != 0 || ISRADIO(m_Channel))) {
2004-12-30 23:43:55 +01:00
return Respond("HTTP/1.0 200 OK")
2005-02-11 17:44:14 +01:00
&& Respond("Content-Type: audio/mpeg")
2005-05-09 22:22:29 +02:00
&& Respond("icy-name: %s", true, m_Channel->Name())
2005-02-11 17:44:14 +01:00
&& Respond("");
2004-12-30 23:43:55 +01:00
} else {
return Respond("HTTP/1.0 200 OK")
2005-02-11 17:44:14 +01:00
&& Respond("Content-Type: video/mpeg")
&& Respond("");
2004-12-30 23:43:55 +01:00
}
}
}
DELETENULL(m_LiveStreamer);
DeferClose();
2006-01-26 20:40:18 +01:00
return Respond("HTTP/1.0 409 Channel not available")
&& Respond("");
2004-12-30 23:43:55 +01:00
}
}
2005-02-11 17:44:14 +01:00
DeferClose();
2006-01-26 20:40:18 +01:00
return Respond("HTTP/1.0 400 Bad Request")
&& Respond("");
2004-12-30 23:43:55 +01:00
}
2005-05-09 22:22:29 +02:00
void cConnectionHTTP::Flushed(void)
{
2005-02-11 17:44:14 +01:00
std::string line;
if (m_Status != hsBody)
return;
switch (m_Job) {
case hjListing:
if (m_ChannelList) {
if (m_ChannelList->HasNext()) {
if (!Respond("%s", true, m_ChannelList->Next().c_str()))
DeferClose();
2005-02-11 17:44:14 +01:00
}
else {
DELETENULL(m_ChannelList);
m_Status = hsFinished;
DeferClose();
2005-02-11 17:44:14 +01:00
}
return;
2005-02-11 17:44:14 +01:00
}
// should never be reached
esyslog("streamdev-server cConnectionHTTP::Flushed(): no channel list");
m_Status = hsFinished;
2005-02-11 17:44:14 +01:00
break;
case hjTransfer:
2004-12-30 23:43:55 +01:00
Dprintf("streamer start\n");
m_LiveStreamer->Start(this);
2005-02-11 17:44:14 +01:00
m_Status = hsFinished;
break;
2004-12-30 23:43:55 +01:00
}
}
2005-05-09 22:22:29 +02:00
bool cConnectionHTTP::CmdGET(const std::string &Opts)
{
const char *ptr, *sp, *pp, *fp, *xp, *qp, *ep;
const cChannel *chan;
int apid = 0;
2004-12-30 23:43:55 +01:00
ptr = Opts.c_str();
// find begin of URL
sp = skipspace(ptr);
// find end of URL (\0 or first space character)
for (ep = sp; *ep && !isspace(*ep); ep++)
;
// find begin of query string (first ?)
for (qp = sp; qp < ep && *qp != '?'; qp++)
;
// find begin of filename (last /)
for (fp = qp; fp > sp && *fp != '/'; --fp)
;
// find begin of section params (first ;)
for (pp = sp; pp < fp && *pp != ';'; pp++)
;
// find filename extension (first .)
for (xp = fp; xp < qp && *xp != '.'; xp++)
;
if (qp - xp > 5) // too long for a filename extension
xp = qp;
std::string type, filespec, fileext, query;
// Streamtype with leading / stripped off
if (pp > sp)
type = Opts.substr(sp - ptr + 1, pp - sp - 1);
// Section parameters with leading ; stripped off
if (fp > pp)
m_StreamerParameter = Opts.substr(pp - ptr + 1, fp - pp - 1);
// file basename with leading / stripped off
if (xp > fp)
filespec = Opts.substr(fp - ptr + 1, xp - fp - 1);
// file extension including leading .
fileext = Opts.substr(xp - ptr, qp - xp);
// query string including leading ?
query = Opts.substr(qp - ptr, ep - qp);
Dprintf("before channelfromstring: type(%s) param(%s) filespec(%s) fileext(%s) query(%s)\n", type.c_str(), m_StreamerParameter.c_str(), filespec.c_str(), fileext.c_str(), query.c_str());
2004-12-30 23:43:55 +01:00
const char* pType = type.c_str();
if (strcasecmp(pType, "PS") == 0) {
2004-12-30 23:43:55 +01:00
m_StreamType = stPS;
#if APIVERSNUM < 10703
} else if (strcasecmp(pType, "PES") == 0) {
2004-12-30 23:43:55 +01:00
m_StreamType = stPES;
#endif
} else if (strcasecmp(pType, "TS") == 0) {
2004-12-30 23:43:55 +01:00
m_StreamType = stTS;
} else if (strcasecmp(pType, "ES") == 0) {
2004-12-30 23:43:55 +01:00
m_StreamType = stES;
} else if (strcasecmp(pType, "Extern") == 0) {
2005-02-11 17:44:14 +01:00
m_StreamType = stExtern;
2004-12-30 23:43:55 +01:00
}
std::string groupTarget;
cChannelIterator *iterator = NULL;
2005-02-11 17:44:14 +01:00
if (filespec.compare("tree") == 0) {
const cChannel* c = NULL;
size_t groupIndex = query.find("group=");
if (groupIndex != std::string::npos)
c = cChannelList::GetGroup(atoi(query.c_str() + groupIndex + 6));
iterator = new cListTree(c);
groupTarget = filespec + fileext;
} else if (filespec.compare("groups") == 0) {
iterator = new cListGroups();
groupTarget = (std::string) "group" + fileext;
} else if (filespec.compare("group") == 0) {
const cChannel* c = NULL;
size_t groupIndex = query.find("group=");
if (groupIndex != std::string::npos)
c = cChannelList::GetGroup(atoi(query.c_str() + groupIndex + 6));
iterator = new cListGroup(c);
} else if (filespec.compare("channels") == 0) {
iterator = new cListChannels();
} else if (filespec.compare("all") == 0 ||
(filespec.empty() && fileext.empty())) {
iterator = new cListAll();
}
2004-12-30 23:43:55 +01:00
if (iterator) {
if (filespec.empty() || fileext.compare(".htm") == 0 || fileext.compare(".html") == 0) {
m_ChannelList = new cHtmlChannelList(iterator, m_StreamType, (filespec + fileext + query).c_str(), groupTarget.c_str());
m_Job = hjListing;
} else if (fileext.compare(".m3u") == 0) {
std::string base;
if (*(m_Host.c_str()))
base = "http://" + m_Host + "/";
else
base = (std::string) "http://" + LocalIp() + ":" +
(const char*) itoa(StreamdevServerSetup.HTTPServerPort) + "/";
if (type.empty())
{
switch (m_StreamType)
{
case stTS: base += "TS/"; break;
case stPS: base += "PS/"; break;
#if APIVERSNUM < 10703
case stPES: base += "PES/"; break;
#endif
case stES: base += "ES/"; break;
case stExtern: base += "Extern/"; break;
default: break;
}
} else {
base += type;
if (!m_StreamerParameter.empty())
base += ";" + m_StreamerParameter;
base += "/";
}
m_ChannelList = new cM3uChannelList(iterator, base.c_str());
m_Job = hjListing;
} else {
delete iterator;
return false;
}
2005-02-11 17:44:14 +01:00
} else if ((chan = ChannelFromString(filespec.c_str(), &apid)) != NULL) {
2004-12-30 23:43:55 +01:00
m_Channel = chan;
m_Apid = apid;
Dprintf("Apid is %d\n", apid);
2005-02-11 17:44:14 +01:00
m_Job = hjTransfer;
} else
return false;
Dprintf("after channelfromstring\n");
2004-12-30 23:43:55 +01:00
return true;
}