2005-02-16 23:24:16 -05:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* This really isn't xmlrpc. It's xmlrpc-ish. Emphasis on -ish.
|
|
|
|
*/
|
|
|
|
|
2006-02-26 03:46:24 -05:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2006-05-09 01:51:08 -04:00
|
|
|
#ifndef WIN32
|
|
|
|
#include <dirent.h> /* c'mon, config for this */
|
|
|
|
#endif
|
2006-05-07 23:40:32 -04:00
|
|
|
#include <errno.h>
|
|
|
|
#include <limits.h>
|
2005-02-16 23:24:16 -05:00
|
|
|
#include <stdio.h>
|
2005-11-20 04:50:50 -05:00
|
|
|
#include <stdarg.h>
|
2005-02-16 23:24:16 -05:00
|
|
|
#include <stdlib.h>
|
2005-11-07 00:58:05 -05:00
|
|
|
#include <string.h>
|
2006-08-25 23:44:43 -04:00
|
|
|
#include <sys/stat.h>
|
2005-11-07 00:58:05 -05:00
|
|
|
#include <time.h>
|
2006-05-09 01:51:08 -04:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
2006-05-07 23:40:32 -04:00
|
|
|
|
2006-07-24 23:49:36 -04:00
|
|
|
#include <sys/stat.h>
|
2006-05-07 23:40:32 -04:00
|
|
|
#include <sys/types.h>
|
2005-02-16 23:24:16 -05:00
|
|
|
|
2005-11-07 00:58:05 -05:00
|
|
|
#include "configfile.h"
|
2006-04-04 02:31:19 -04:00
|
|
|
#include "conf.h"
|
2005-11-22 23:11:04 -05:00
|
|
|
#include "db-generic.h"
|
2005-11-07 00:58:05 -05:00
|
|
|
#include "daapd.h"
|
2005-02-16 23:24:16 -05:00
|
|
|
#include "err.h"
|
2005-02-18 19:50:29 -05:00
|
|
|
#include "mp3-scanner.h"
|
2006-05-07 23:40:32 -04:00
|
|
|
#include "os.h"
|
2005-11-22 23:11:04 -05:00
|
|
|
#include "rend.h"
|
2005-02-16 23:24:16 -05:00
|
|
|
#include "webserver.h"
|
2006-04-04 02:31:19 -04:00
|
|
|
#include "xml-rpc.h"
|
2005-02-16 23:24:16 -05:00
|
|
|
|
2005-11-11 18:52:42 -05:00
|
|
|
/* typedefs */
|
2005-11-20 04:50:50 -05:00
|
|
|
typedef struct tag_xmlstack {
|
|
|
|
char *tag;
|
|
|
|
struct tag_xmlstack *next;
|
|
|
|
} XMLSTACK;
|
|
|
|
|
2006-04-04 02:31:19 -04:00
|
|
|
struct tag_xmlstruct {
|
2005-11-20 04:50:50 -05:00
|
|
|
WS_CONNINFO *pwsc;
|
|
|
|
int stack_level;
|
2006-01-04 15:30:44 -05:00
|
|
|
XMLSTACK stack;
|
2006-04-04 02:31:19 -04:00
|
|
|
};
|
2005-11-11 18:52:42 -05:00
|
|
|
|
2005-02-16 23:24:16 -05:00
|
|
|
/* Forwards */
|
2005-11-07 00:58:05 -05:00
|
|
|
void xml_get_stats(WS_CONNINFO *pwsc);
|
2006-04-07 02:55:04 -04:00
|
|
|
void xml_set_config(WS_CONNINFO *pwsc);
|
2006-05-07 23:40:32 -04:00
|
|
|
void xml_browse_path(WS_CONNINFO *pwsc);
|
2006-06-15 03:10:05 -04:00
|
|
|
void xml_rescan(WS_CONNINFO *pwsc);
|
2006-05-07 23:40:32 -04:00
|
|
|
void xml_return_error(WS_CONNINFO *pwsc, int err, char *errstr);
|
2005-02-16 23:24:16 -05:00
|
|
|
char *xml_entity_encode(char *original);
|
|
|
|
|
2006-05-07 23:40:32 -04:00
|
|
|
void xml_return_error(WS_CONNINFO *pwsc, int err, char *errstr) {
|
2006-04-07 02:55:04 -04:00
|
|
|
XMLSTRUCT *pxml;
|
|
|
|
|
|
|
|
pxml=xml_init(pwsc,TRUE);
|
|
|
|
xml_push(pxml,"results");
|
2006-04-10 13:59:10 -04:00
|
|
|
|
2006-05-17 02:44:56 -04:00
|
|
|
xml_output(pxml,"status","%d",err);
|
2006-04-07 02:55:04 -04:00
|
|
|
xml_output(pxml,"statusstring","%s",errstr);
|
|
|
|
|
|
|
|
xml_pop(pxml); /* results */
|
|
|
|
xml_deinit(pxml);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-11 18:52:42 -05:00
|
|
|
/**
|
|
|
|
* create an xml response structure, a helper struct for
|
|
|
|
* building xml responses.
|
|
|
|
*
|
2005-11-20 04:50:50 -05:00
|
|
|
* @param pwsc the pwsc we are emitting to
|
|
|
|
* @param emit_header whether or not to throw out html headers and xml header
|
2005-11-11 18:52:42 -05:00
|
|
|
* @returns XMLSTRUCT on success, or NULL if failure
|
|
|
|
*/
|
2006-03-29 23:13:20 -05:00
|
|
|
XMLSTRUCT *xml_init(WS_CONNINFO *pwsc, int emit_header) {
|
2005-11-20 04:50:50 -05:00
|
|
|
XMLSTRUCT *pxml;
|
2006-01-04 15:30:44 -05:00
|
|
|
|
2005-11-20 04:50:50 -05:00
|
|
|
pxml=(XMLSTRUCT*)malloc(sizeof(XMLSTRUCT));
|
|
|
|
if(!pxml) {
|
|
|
|
DPRINTF(E_FATAL,L_XML,"Malloc error\n");
|
|
|
|
}
|
2006-01-04 15:30:44 -05:00
|
|
|
|
2005-11-20 04:50:50 -05:00
|
|
|
memset(pxml,0,sizeof(XMLSTRUCT));
|
2006-01-04 15:30:44 -05:00
|
|
|
|
2005-11-20 04:50:50 -05:00
|
|
|
pxml->pwsc = pwsc;
|
2006-01-04 15:30:44 -05:00
|
|
|
|
2006-03-31 17:23:18 -05:00
|
|
|
/* the world would be a wonderful place without ie */
|
|
|
|
ws_addresponseheader(pwsc,"Cache-Control","no-cache");
|
|
|
|
ws_addresponseheader(pwsc,"Expires","-1");
|
|
|
|
|
2005-11-20 04:50:50 -05:00
|
|
|
if(emit_header) {
|
2006-03-29 23:13:20 -05:00
|
|
|
ws_addresponseheader(pwsc,"Content-Type","text/xml; charset=utf-8");
|
2005-11-20 04:50:50 -05:00
|
|
|
ws_writefd(pwsc,"HTTP/1.0 200 OK\r\n");
|
|
|
|
ws_emitheaders(pwsc);
|
|
|
|
|
2006-03-29 23:13:20 -05:00
|
|
|
ws_writefd(pwsc,"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>");
|
2005-11-20 04:50:50 -05:00
|
|
|
}
|
2006-01-04 15:30:44 -05:00
|
|
|
|
2005-11-20 04:50:50 -05:00
|
|
|
return pxml;
|
|
|
|
}
|
|
|
|
|
2006-05-17 01:42:32 -04:00
|
|
|
/**
|
|
|
|
* bulk set config
|
|
|
|
*/
|
|
|
|
void xml_update_config(WS_CONNINFO *pwsc) {
|
|
|
|
char *arg, *value, *duparg;
|
|
|
|
char *ptmp;
|
2006-05-30 22:33:23 -04:00
|
|
|
char *badparms=NULL;
|
2006-05-17 01:42:32 -04:00
|
|
|
void *handle;
|
2006-05-30 22:33:23 -04:00
|
|
|
int has_error=0;
|
|
|
|
int badparms_len=0;
|
2006-05-17 01:42:32 -04:00
|
|
|
int err;
|
|
|
|
|
|
|
|
handle = NULL;
|
|
|
|
|
2006-05-30 22:33:23 -04:00
|
|
|
|
2006-05-17 01:42:32 -04:00
|
|
|
while((handle=ws_enum_var(pwsc,&arg,&value,handle)) != NULL) {
|
|
|
|
/* arg will be section:value */
|
|
|
|
duparg = strdup(arg);
|
|
|
|
ptmp = strchr(duparg,':');
|
|
|
|
if(ptmp) {
|
|
|
|
*ptmp++ = '\0';
|
|
|
|
/* this is stupidly inefficient */
|
2006-05-30 22:33:23 -04:00
|
|
|
|
|
|
|
err = conf_set_string(duparg,ptmp,value,TRUE);
|
|
|
|
if(err != CONF_E_SUCCESS) {
|
|
|
|
has_error = TRUE;
|
|
|
|
if(!badparms) {
|
|
|
|
badparms_len = (int)strlen(arg) + 1;
|
|
|
|
badparms = (char*)malloc(badparms_len);
|
|
|
|
if(!badparms) {
|
2006-08-25 23:44:43 -04:00
|
|
|
DPRINTF(E_FATAL,L_XML,"xml_update_config: malloc\n");
|
2006-05-30 22:33:23 -04:00
|
|
|
}
|
|
|
|
strcpy(badparms,arg);
|
|
|
|
} else {
|
2006-05-31 04:34:52 -04:00
|
|
|
badparms_len += (int)strlen(arg) + 1;
|
2006-05-30 22:33:23 -04:00
|
|
|
badparms = (char*)realloc(badparms,badparms_len);
|
|
|
|
if(!badparms) {
|
2006-08-25 23:44:43 -04:00
|
|
|
DPRINTF(E_FATAL,L_XML,"xml_update_config: malloc\n");
|
2006-05-30 22:33:23 -04:00
|
|
|
}
|
|
|
|
strcat(badparms,",");
|
|
|
|
strcat(badparms,arg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(duparg);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(has_error) {
|
2006-08-25 23:44:43 -04:00
|
|
|
DPRINTF(E_INF,L_XML,"Bad parms; %s\n",badparms);
|
2006-05-30 22:33:23 -04:00
|
|
|
xml_return_error(pwsc,500,badparms);
|
|
|
|
free(badparms);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now set! */
|
|
|
|
while((handle=ws_enum_var(pwsc,&arg,&value,handle)) != NULL) {
|
|
|
|
/* arg will be section:value */
|
|
|
|
duparg = strdup(arg);
|
|
|
|
ptmp = strchr(duparg,':');
|
|
|
|
if(ptmp) {
|
|
|
|
*ptmp++ = '\0';
|
|
|
|
/* this is stupidly inefficient */
|
|
|
|
|
2006-05-17 01:42:32 -04:00
|
|
|
err = conf_set_string(duparg,ptmp,value,FALSE);
|
|
|
|
if(err != CONF_E_SUCCESS) {
|
2006-05-30 22:33:23 -04:00
|
|
|
/* shouldn't happen */
|
|
|
|
xml_return_error(pwsc,500,arg);
|
2006-05-17 01:42:32 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(duparg);
|
|
|
|
}
|
|
|
|
|
|
|
|
xml_return_error(pwsc,200,"Success");
|
|
|
|
}
|
2006-04-07 02:55:04 -04:00
|
|
|
|
2006-06-15 03:10:05 -04:00
|
|
|
/**
|
|
|
|
* rescan the database
|
|
|
|
*/
|
|
|
|
void xml_rescan(WS_CONNINFO *pwsc) {
|
|
|
|
if(ws_getvar(pwsc,"full")) {
|
|
|
|
config.full_reload=1;
|
|
|
|
}
|
|
|
|
|
|
|
|
config.reload=1;
|
|
|
|
|
|
|
|
xml_return_error(pwsc,200,"Success");
|
|
|
|
}
|
|
|
|
|
2006-04-07 02:55:04 -04:00
|
|
|
/**
|
|
|
|
* post settings back to the config file
|
|
|
|
*
|
|
|
|
* @param pwsc connection do dump results back to
|
|
|
|
*/
|
|
|
|
void xml_set_config(WS_CONNINFO *pwsc) {
|
|
|
|
char *section;
|
|
|
|
char *key;
|
|
|
|
char *value;
|
2006-05-16 02:39:09 -04:00
|
|
|
int verify_only;
|
2006-04-07 02:55:04 -04:00
|
|
|
int err;
|
|
|
|
|
|
|
|
section = ws_getvar(pwsc,"section");
|
|
|
|
key = ws_getvar(pwsc,"key");
|
|
|
|
value = ws_getvar(pwsc,"value");
|
|
|
|
|
2006-05-16 02:39:09 -04:00
|
|
|
verify_only=0;
|
|
|
|
if(ws_getvar(pwsc,"verify_only")) {
|
|
|
|
verify_only = 1;
|
|
|
|
}
|
|
|
|
|
2006-04-07 02:55:04 -04:00
|
|
|
if((!section) || (!key) || (!value)) {
|
|
|
|
xml_return_error(pwsc,500,"Missing section, key, or value");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-05-16 02:39:09 -04:00
|
|
|
if((err=conf_set_string(section,key,value,verify_only)!=CONF_E_SUCCESS)) {
|
2006-04-07 02:55:04 -04:00
|
|
|
/* should return text error from conf_ */
|
2006-05-16 23:43:44 -04:00
|
|
|
switch(err) {
|
|
|
|
case CONF_E_BADELEMENT:
|
|
|
|
xml_return_error(pwsc,500,"Unknown section/key pair");
|
|
|
|
break;
|
|
|
|
case CONF_E_PATHEXPECTED:
|
|
|
|
xml_return_error(pwsc,500,"Expecting valid path");
|
|
|
|
break;
|
|
|
|
case CONF_E_INTEXPECTED:
|
|
|
|
xml_return_error(pwsc,500,"Expecting integer value");
|
|
|
|
break;
|
|
|
|
case CONF_E_NOTWRITABLE:
|
|
|
|
xml_return_error(pwsc,500,"Config file not writable");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
xml_return_error(pwsc,500,"conf_set_string: error");
|
|
|
|
}
|
2006-04-07 02:55:04 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
xml_return_error(pwsc,200,"Success");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-11-20 04:50:50 -05:00
|
|
|
/**
|
|
|
|
* push a new term on the stack
|
|
|
|
*
|
|
|
|
* @param pxml xml struct obtained from xml_init
|
2006-01-04 15:30:44 -05:00
|
|
|
* @param term next xlm section to start
|
2005-11-20 04:50:50 -05:00
|
|
|
*/
|
2006-03-29 23:13:20 -05:00
|
|
|
void xml_push(XMLSTRUCT *pxml, char *term) {
|
2005-11-20 04:50:50 -05:00
|
|
|
XMLSTACK *pstack;
|
2006-01-04 15:30:44 -05:00
|
|
|
|
2005-11-20 04:50:50 -05:00
|
|
|
pstack = (XMLSTACK *)malloc(sizeof(XMLSTACK));
|
|
|
|
pstack->next=pxml->stack.next;
|
|
|
|
pstack->tag=strdup(term);
|
|
|
|
pxml->stack.next=pstack;
|
2006-01-04 15:30:44 -05:00
|
|
|
|
2006-03-28 02:49:39 -05:00
|
|
|
pxml->stack_level++;
|
2006-03-29 23:13:20 -05:00
|
|
|
|
|
|
|
ws_writefd(pxml->pwsc,"<%s>",term);
|
2005-11-20 04:50:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* end an xml section
|
|
|
|
*
|
|
|
|
* @param pxml xml struct we are working with
|
|
|
|
*/
|
2006-03-29 23:13:20 -05:00
|
|
|
void xml_pop(XMLSTRUCT *pxml) {
|
2005-11-20 04:50:50 -05:00
|
|
|
XMLSTACK *pstack;
|
2006-01-04 15:30:44 -05:00
|
|
|
|
2005-11-20 04:50:50 -05:00
|
|
|
pstack=pxml->stack.next;
|
|
|
|
if(!pstack) {
|
|
|
|
DPRINTF(E_LOG,L_XML,"xml_pop: tried to pop an empty stack\n");
|
|
|
|
return;
|
|
|
|
}
|
2006-01-04 15:30:44 -05:00
|
|
|
|
2005-11-20 04:50:50 -05:00
|
|
|
pxml->stack.next = pstack->next;
|
2006-01-04 15:30:44 -05:00
|
|
|
|
2006-03-29 23:13:20 -05:00
|
|
|
ws_writefd(pxml->pwsc,"</%s>",pstack->tag);
|
2005-11-20 04:50:50 -05:00
|
|
|
free(pstack->tag);
|
|
|
|
free(pstack);
|
2006-03-29 23:13:20 -05:00
|
|
|
|
|
|
|
pxml->stack_level--;
|
2005-11-20 04:50:50 -05:00
|
|
|
}
|
|
|
|
|
2006-04-20 02:52:21 -04:00
|
|
|
/* FIXME: Fixed at 256? And can't I get an expandable sprintf/cat? */
|
|
|
|
|
2005-11-20 04:50:50 -05:00
|
|
|
/**
|
|
|
|
* output a string
|
|
|
|
*/
|
|
|
|
void xml_output(XMLSTRUCT *pxml, char *section, char *fmt, ...) {
|
|
|
|
va_list ap;
|
|
|
|
char buf[256];
|
|
|
|
char *output;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
vsnprintf(buf, sizeof(buf), fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
2006-03-28 02:49:39 -05:00
|
|
|
output = xml_entity_encode(buf);
|
2006-03-29 23:13:20 -05:00
|
|
|
if(section) {
|
|
|
|
xml_push(pxml,section);
|
2006-03-28 02:49:39 -05:00
|
|
|
}
|
2006-03-29 23:13:20 -05:00
|
|
|
ws_writefd(pxml->pwsc,"%s",output);
|
2005-11-20 04:50:50 -05:00
|
|
|
free(output);
|
|
|
|
if(section) {
|
2006-03-29 23:13:20 -05:00
|
|
|
xml_pop(pxml);
|
2005-11-20 04:50:50 -05:00
|
|
|
}
|
2005-11-11 18:52:42 -05:00
|
|
|
}
|
|
|
|
|
2005-11-20 04:50:50 -05:00
|
|
|
/**
|
|
|
|
* clean up an xml struct
|
|
|
|
*
|
|
|
|
* @param pxml xml struct to clean up
|
|
|
|
*/
|
|
|
|
void xml_deinit(XMLSTRUCT *pxml) {
|
|
|
|
XMLSTACK *pstack;
|
2006-01-04 15:30:44 -05:00
|
|
|
|
2005-11-20 04:50:50 -05:00
|
|
|
if(pxml->stack.next) {
|
2006-04-02 22:24:58 -04:00
|
|
|
DPRINTF(E_LOG,L_XML,"xml_deinit: entries still on stack (%s)\n",
|
|
|
|
pxml->stack.next->tag);
|
2005-11-20 04:50:50 -05:00
|
|
|
}
|
2006-01-04 15:30:44 -05:00
|
|
|
|
2005-11-20 04:50:50 -05:00
|
|
|
while((pstack=pxml->stack.next)) {
|
|
|
|
pxml->stack.next=pstack->next;
|
|
|
|
free(pstack->tag);
|
|
|
|
free(pstack);
|
|
|
|
}
|
|
|
|
free(pxml);
|
|
|
|
}
|
2005-11-11 18:52:42 -05:00
|
|
|
|
2005-02-16 23:24:16 -05:00
|
|
|
/**
|
|
|
|
* main entrypoint for the xmlrpc functions.
|
|
|
|
*
|
|
|
|
* @arg pwsc Pointer to the web request structure
|
|
|
|
*/
|
|
|
|
void xml_handle(WS_CONNINFO *pwsc) {
|
|
|
|
char *method;
|
|
|
|
|
|
|
|
if((method=ws_getvar(pwsc,"method")) == NULL) {
|
2005-11-07 00:58:05 -05:00
|
|
|
ws_returnerror(pwsc,500,"no method specified");
|
|
|
|
return;
|
2005-02-16 23:24:16 -05:00
|
|
|
}
|
|
|
|
|
2005-11-07 00:58:05 -05:00
|
|
|
if(strcasecmp(method,"stats") == 0) {
|
|
|
|
xml_get_stats(pwsc);
|
|
|
|
return;
|
2005-02-16 23:24:16 -05:00
|
|
|
}
|
|
|
|
|
2006-04-04 02:31:19 -04:00
|
|
|
if(strcasecmp(method,"config") == 0) {
|
|
|
|
conf_xml_dump(pwsc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-04-07 02:55:04 -04:00
|
|
|
if(strcasecmp(method,"setconfig") == 0) {
|
|
|
|
xml_set_config(pwsc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-05-17 01:42:32 -04:00
|
|
|
if(strcasecmp(method,"updateconfig") == 0) {
|
|
|
|
xml_update_config(pwsc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-08-25 23:44:43 -04:00
|
|
|
#if(0) /* Turn this off until it's done in the web admin */
|
2006-05-07 23:40:32 -04:00
|
|
|
if(strcasecmp(method,"browse_path") == 0) {
|
2006-07-12 18:52:50 -04:00
|
|
|
xml_browse_path(pwsc);
|
|
|
|
return;
|
2006-05-07 23:40:32 -04:00
|
|
|
}
|
2006-08-25 23:44:43 -04:00
|
|
|
#endif
|
2006-05-07 23:40:32 -04:00
|
|
|
|
2006-06-15 03:10:05 -04:00
|
|
|
if(strcasecmp(method,"rescan") == 0) {
|
|
|
|
xml_rescan(pwsc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-06-18 02:16:51 -04:00
|
|
|
if(strcasecmp(method,"shutdown") == 0) {
|
|
|
|
config.stop=1;
|
|
|
|
xml_return_error(pwsc,200,"Success");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-05-23 23:56:06 -04:00
|
|
|
xml_return_error(pwsc,500,"Invalid method");
|
2005-02-16 23:24:16 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-05-07 23:40:32 -04:00
|
|
|
/**
|
|
|
|
* Given a base directory, walk through the directory and enumerate
|
|
|
|
* all folders underneath it.
|
|
|
|
*
|
|
|
|
* @param pwsc connection over which to dump the result
|
|
|
|
*/
|
|
|
|
void xml_browse_path(WS_CONNINFO *pwsc) {
|
|
|
|
XMLSTRUCT *pxml;
|
|
|
|
DIR *pd;
|
|
|
|
char *base_path;
|
|
|
|
char de[sizeof(struct dirent) + MAXNAMLEN + 1];
|
|
|
|
struct dirent *pde;
|
|
|
|
int readable, writable;
|
|
|
|
char full_path[PATH_MAX+1];
|
|
|
|
char resolved_path[PATH_MAX];
|
|
|
|
int err;
|
|
|
|
int ignore_dotfiles=1;
|
2006-05-19 01:22:27 -04:00
|
|
|
int ignore_files=1;
|
2006-08-25 23:44:43 -04:00
|
|
|
struct stat sb;
|
2006-05-07 23:40:32 -04:00
|
|
|
|
|
|
|
base_path = ws_getvar(pwsc, "path");
|
|
|
|
if(!base_path)
|
2006-07-12 18:52:50 -04:00
|
|
|
base_path = PATHSEP_STR;
|
2006-05-07 23:40:32 -04:00
|
|
|
|
|
|
|
if(ws_getvar(pwsc,"show_dotfiles"))
|
2006-07-12 18:52:50 -04:00
|
|
|
ignore_dotfiles = 0;
|
2006-05-07 23:40:32 -04:00
|
|
|
|
2006-05-19 01:22:27 -04:00
|
|
|
if(ws_getvar(pwsc,"show_files"))
|
|
|
|
ignore_files = 0;
|
|
|
|
|
2006-05-07 23:40:32 -04:00
|
|
|
pd = opendir(base_path);
|
|
|
|
if(!pd) {
|
2006-07-12 18:52:50 -04:00
|
|
|
xml_return_error(pwsc,500,"Bad path");
|
|
|
|
return;
|
2006-05-07 23:40:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
pxml=xml_init(pwsc,1);
|
|
|
|
xml_push(pxml,"results");
|
|
|
|
|
|
|
|
/* get rid of trailing slash */
|
|
|
|
while(1) {
|
2006-07-12 18:52:50 -04:00
|
|
|
pde = (struct dirent *)&de;
|
|
|
|
err = readdir_r(pd,(struct dirent *)de, &pde);
|
2006-05-07 23:40:32 -04:00
|
|
|
|
2006-07-12 18:52:50 -04:00
|
|
|
if(err == -1) {
|
|
|
|
DPRINTF(E_LOG,L_SCAN,"Error in readdir_r: %s\n",
|
|
|
|
strerror(errno));
|
|
|
|
break;
|
|
|
|
}
|
2006-05-07 23:40:32 -04:00
|
|
|
|
2006-07-12 18:52:50 -04:00
|
|
|
if(!pde)
|
|
|
|
break;
|
2006-05-07 23:40:32 -04:00
|
|
|
|
2006-07-12 18:52:50 -04:00
|
|
|
if((!strcmp(pde->d_name,".")) || (!strcmp(pde->d_name,"..")))
|
|
|
|
continue;
|
2006-05-07 23:40:32 -04:00
|
|
|
|
2006-08-25 23:44:43 -04:00
|
|
|
|
|
|
|
snprintf(full_path,PATH_MAX,"%s%c%s",base_path,PATHSEP,pde->d_name);
|
|
|
|
realpath(full_path,resolved_path);
|
|
|
|
|
|
|
|
if(os_stat(resolved_path,&sb)) {
|
|
|
|
DPRINTF(E_WARN,L_XML,"Eror statting %s: %s\n",
|
|
|
|
resolved_path,strerror(errno));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if((sb.st_mode & S_IFREG) && (ignore_files))
|
2006-05-19 01:22:27 -04:00
|
|
|
continue;
|
|
|
|
|
2006-08-25 23:44:43 -04:00
|
|
|
/* skip symlinks and devices and whatnot */
|
|
|
|
if((!(sb.st_mode & S_IFDIR)) &&
|
|
|
|
(!(sb.st_mode & S_IFREG)))
|
2006-07-12 18:52:50 -04:00
|
|
|
continue;
|
2006-05-07 23:40:32 -04:00
|
|
|
|
2006-07-12 18:52:50 -04:00
|
|
|
if((ignore_dotfiles) && (pde->d_name) && (pde->d_name[0] == '.'))
|
|
|
|
continue;
|
2006-05-07 23:40:32 -04:00
|
|
|
|
2006-07-12 18:52:50 -04:00
|
|
|
readable = !access(resolved_path,R_OK);
|
|
|
|
writable = !access(resolved_path,W_OK);
|
2006-05-07 23:40:32 -04:00
|
|
|
|
2006-05-19 01:22:27 -04:00
|
|
|
if(pde->d_type & DT_DIR) {
|
|
|
|
xml_push(pxml,"directory");
|
2006-08-25 23:44:43 -04:00
|
|
|
} else if((sb.st_mode & S_IFLNK) == S_IFLNK) {
|
2006-05-19 01:22:27 -04:00
|
|
|
xml_push(pxml,"symlink");
|
|
|
|
} else {
|
|
|
|
xml_push(pxml,"file");
|
|
|
|
}
|
2006-07-12 18:52:50 -04:00
|
|
|
xml_output(pxml,"name",pde->d_name);
|
|
|
|
xml_output(pxml,"full_path",resolved_path);
|
|
|
|
xml_output(pxml,"readable","%d",readable);
|
|
|
|
xml_output(pxml,"writable","%d",writable);
|
2006-05-07 23:40:32 -04:00
|
|
|
|
2006-07-12 18:52:50 -04:00
|
|
|
xml_pop(pxml); /* directory */
|
2006-05-07 23:40:32 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
xml_pop(pxml);
|
|
|
|
xml_deinit(pxml);
|
|
|
|
|
|
|
|
closedir(pd);
|
|
|
|
}
|
|
|
|
|
2005-02-16 23:24:16 -05:00
|
|
|
/**
|
|
|
|
* return xml file of all playlists
|
|
|
|
*/
|
2005-11-07 00:58:05 -05:00
|
|
|
void xml_get_stats(WS_CONNINFO *pwsc) {
|
|
|
|
int r_secs, r_days, r_hours, r_mins;
|
|
|
|
char buf[80];
|
|
|
|
WS_CONNINFO *pci;
|
|
|
|
SCAN_STATUS *pss;
|
|
|
|
WSTHREADENUM wste;
|
2006-01-04 15:30:44 -05:00
|
|
|
int count;
|
2005-11-20 04:50:50 -05:00
|
|
|
XMLSTRUCT *pxml;
|
2006-01-04 15:30:44 -05:00
|
|
|
|
2006-03-29 23:13:20 -05:00
|
|
|
pxml=xml_init(pwsc,1);
|
|
|
|
xml_push(pxml,"status");
|
|
|
|
|
|
|
|
xml_push(pxml,"service_status");
|
2005-02-16 23:24:16 -05:00
|
|
|
|
2006-03-29 23:13:20 -05:00
|
|
|
xml_push(pxml,"service");
|
2005-11-22 23:11:04 -05:00
|
|
|
|
|
|
|
xml_output(pxml,"name","Rendezvous");
|
2006-01-04 15:30:44 -05:00
|
|
|
|
2005-11-22 23:11:04 -05:00
|
|
|
#ifndef WITHOUT_MDNS
|
|
|
|
if(config.use_mdns) {
|
2006-08-02 22:55:14 -04:00
|
|
|
xml_output(pxml,"status",rend_running() ? "Running" : "Stopped"); /* ??? */
|
2005-11-22 23:11:04 -05:00
|
|
|
} else {
|
|
|
|
xml_output(pxml,"status","Disabled");
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
|
|
|
|
ws_writefd(pwsc,"<td>No Support</td><td> </td></tr>\n");
|
|
|
|
#endif
|
2006-03-29 23:13:20 -05:00
|
|
|
xml_pop(pxml); /* service */
|
2005-11-22 23:11:04 -05:00
|
|
|
|
2006-03-29 23:13:20 -05:00
|
|
|
xml_push(pxml,"service");
|
2005-11-22 23:11:04 -05:00
|
|
|
xml_output(pxml,"name","DAAP Server");
|
|
|
|
xml_output(pxml,"status",config.stop ? "Stopping" : "Running");
|
2006-03-29 23:13:20 -05:00
|
|
|
xml_pop(pxml); /* service */
|
2005-11-22 23:11:04 -05:00
|
|
|
|
2006-03-29 23:13:20 -05:00
|
|
|
xml_push(pxml,"service");
|
2005-11-22 23:11:04 -05:00
|
|
|
xml_output(pxml,"name","File Scanner");
|
|
|
|
xml_output(pxml,"status",config.reload ? "Running" : "Idle");
|
2006-03-29 23:13:20 -05:00
|
|
|
xml_pop(pxml); /* service */
|
2005-11-22 23:11:04 -05:00
|
|
|
|
2006-03-29 23:13:20 -05:00
|
|
|
xml_pop(pxml); /* service_status */
|
2006-01-04 15:30:44 -05:00
|
|
|
|
2006-03-29 23:13:20 -05:00
|
|
|
xml_push(pxml,"thread_status");
|
2005-11-07 00:58:05 -05:00
|
|
|
|
|
|
|
pci = ws_thread_enum_first(config.server,&wste);
|
|
|
|
while(pci) {
|
|
|
|
pss = ws_get_local_storage(pci);
|
|
|
|
if(pss) {
|
2006-03-29 23:13:20 -05:00
|
|
|
xml_push(pxml,"thread");
|
2005-11-20 04:50:50 -05:00
|
|
|
xml_output(pxml,"id","%d",pss->thread);
|
|
|
|
xml_output(pxml,"sourceip","%s",pss->host);
|
|
|
|
xml_output(pxml,"action","%s",pss->what);
|
2006-03-29 23:13:20 -05:00
|
|
|
xml_pop(pxml); /* thread */
|
2005-11-07 00:58:05 -05:00
|
|
|
}
|
|
|
|
pci=ws_thread_enum_next(config.server,&wste);
|
2005-02-16 23:24:16 -05:00
|
|
|
}
|
2006-01-04 15:30:44 -05:00
|
|
|
|
2006-03-29 23:13:20 -05:00
|
|
|
xml_pop(pxml); /* thread_status */
|
2005-02-16 23:24:16 -05:00
|
|
|
|
2006-03-29 23:13:20 -05:00
|
|
|
xml_push(pxml,"statistics");
|
2006-01-04 15:30:44 -05:00
|
|
|
|
2006-02-26 03:46:24 -05:00
|
|
|
r_secs=(int)(time(NULL)-config.stats.start_time);
|
2005-02-16 23:24:16 -05:00
|
|
|
|
2005-11-07 00:58:05 -05:00
|
|
|
r_days=r_secs/(3600 * 24);
|
|
|
|
r_secs -= ((3600 * 24) * r_days);
|
2005-02-16 23:24:16 -05:00
|
|
|
|
2005-11-07 00:58:05 -05:00
|
|
|
r_hours=r_secs/3600;
|
|
|
|
r_secs -= (3600 * r_hours);
|
2005-02-18 19:50:29 -05:00
|
|
|
|
2005-11-07 00:58:05 -05:00
|
|
|
r_mins=r_secs/60;
|
|
|
|
r_secs -= 60 * r_mins;
|
2005-02-18 19:50:29 -05:00
|
|
|
|
2005-11-07 00:58:05 -05:00
|
|
|
memset(buf,0x0,sizeof(buf));
|
2006-01-04 15:30:44 -05:00
|
|
|
if(r_days)
|
|
|
|
sprintf((char*)&buf[strlen(buf)],"%d day%s, ", r_days,
|
|
|
|
r_days == 1 ? "" : "s");
|
2005-02-18 19:50:29 -05:00
|
|
|
|
2006-01-04 15:30:44 -05:00
|
|
|
if(r_days || r_hours)
|
|
|
|
sprintf((char*)&buf[strlen(buf)],"%d hour%s, ", r_hours,
|
|
|
|
r_hours == 1 ? "" : "s");
|
2005-11-07 00:58:05 -05:00
|
|
|
|
|
|
|
if(r_days || r_hours || r_mins)
|
2006-01-04 15:30:44 -05:00
|
|
|
sprintf((char*)&buf[strlen(buf)],"%d minute%s, ", r_mins,
|
|
|
|
r_mins == 1 ? "" : "s");
|
2005-11-07 00:58:05 -05:00
|
|
|
|
|
|
|
sprintf((char*)&buf[strlen(buf)],"%d second%s ", r_secs,
|
2006-01-04 15:30:44 -05:00
|
|
|
r_secs == 1 ? "" : "s");
|
|
|
|
|
2006-03-29 23:13:20 -05:00
|
|
|
xml_push(pxml,"stat");
|
2005-11-20 04:50:50 -05:00
|
|
|
xml_output(pxml,"name","Uptime");
|
|
|
|
xml_output(pxml,"value","%s",buf);
|
2006-03-29 23:13:20 -05:00
|
|
|
xml_pop(pxml); /* stat */
|
2006-01-04 15:30:44 -05:00
|
|
|
|
2006-03-29 23:13:20 -05:00
|
|
|
xml_push(pxml,"stat");
|
2005-11-22 23:11:04 -05:00
|
|
|
xml_output(pxml,"name","Songs");
|
2006-01-04 15:30:44 -05:00
|
|
|
db_get_song_count(NULL,&count);
|
|
|
|
xml_output(pxml,"value","%d",count);
|
2006-03-29 23:13:20 -05:00
|
|
|
xml_pop(pxml); /* stat */
|
2006-01-04 15:30:44 -05:00
|
|
|
|
2006-03-29 23:13:20 -05:00
|
|
|
xml_push(pxml,"stat");
|
2005-11-22 23:11:04 -05:00
|
|
|
xml_output(pxml,"name","Songs Served");
|
|
|
|
xml_output(pxml,"value","%d",config.stats.songs_served);
|
2006-03-29 23:13:20 -05:00
|
|
|
xml_pop(pxml); /* stat */
|
2006-01-04 15:30:44 -05:00
|
|
|
|
2006-03-29 23:13:20 -05:00
|
|
|
xml_pop(pxml); /* statistics */
|
2006-04-07 02:55:04 -04:00
|
|
|
|
|
|
|
|
|
|
|
xml_push(pxml,"misc");
|
|
|
|
xml_output(pxml,"writable_config","%d",conf_iswritable());
|
2006-04-10 13:59:10 -04:00
|
|
|
xml_output(pxml,"config_path","%s",conf_get_filename());
|
|
|
|
xml_output(pxml,"version","%s",VERSION);
|
2006-04-07 02:55:04 -04:00
|
|
|
xml_pop(pxml); /* misc */
|
|
|
|
|
2006-03-29 23:13:20 -05:00
|
|
|
xml_pop(pxml); /* status */
|
2005-11-20 04:50:50 -05:00
|
|
|
|
|
|
|
xml_deinit(pxml);
|
2005-02-18 19:50:29 -05:00
|
|
|
return;
|
2005-02-16 23:24:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* xml entity encoding, stupid style
|
|
|
|
*/
|
|
|
|
char *xml_entity_encode(char *original) {
|
|
|
|
char *new;
|
|
|
|
char *s, *d;
|
|
|
|
int destsize;
|
|
|
|
|
2006-02-26 03:46:24 -05:00
|
|
|
destsize = 6*(int)strlen(original)+1;
|
2005-02-16 23:24:16 -05:00
|
|
|
new=(char *)malloc(destsize);
|
|
|
|
if(!new) return NULL;
|
|
|
|
|
|
|
|
memset(new,0x00,destsize);
|
|
|
|
|
|
|
|
s=original;
|
|
|
|
d=new;
|
|
|
|
|
|
|
|
while(*s) {
|
2005-11-07 00:58:05 -05:00
|
|
|
switch(*s) {
|
|
|
|
case '>':
|
|
|
|
strcat(d,">");
|
|
|
|
d += 4;
|
|
|
|
s++;
|
|
|
|
break;
|
|
|
|
case '<':
|
|
|
|
strcat(d,"<");
|
|
|
|
d += 4;
|
|
|
|
s++;
|
|
|
|
break;
|
|
|
|
case '"':
|
|
|
|
strcat(d,""");
|
|
|
|
d += 6;
|
|
|
|
s++;
|
|
|
|
break;
|
|
|
|
case '\'':
|
|
|
|
strcat(d,"'");
|
|
|
|
d += 6;
|
|
|
|
s++;
|
|
|
|
break;
|
|
|
|
case '&':
|
|
|
|
strcat(d,"&");
|
|
|
|
d += 5;
|
|
|
|
s++;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
*d++ = *s++;
|
|
|
|
}
|
2005-02-16 23:24:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return new;
|
|
|
|
}
|