summaryrefslogtreecommitdiff
path: root/xmlrpc/xorg.c
blob: 3f4ab01134cb27b91a187739cd5cd51581548809 (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
/*
* xorg.c part of tcosxmlrpc
*   => througt configurexorg script make some actions and get info
* Copyright (C) 2006,2007,2008  mariodebian at gmail
*
* 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 2
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
*/


#include "common.h"
#include "validate.h"
#include "debug.h"
#include "xorg.h"


#if NEWAPI
xmlrpc_value *tcos_xorg(xmlrpc_env *const env, xmlrpc_value *const in, void *const serverContext)
#else
xmlrpc_value *tcos_xorg(xmlrpc_env *env, xmlrpc_value *in, void *ud)
#endif
 {
  FILE *fp;
  char line[BSIZE];
  char *option;
  char *cmdline;
  char *user;
  char *pass;
  char *login_ok;
  /*char *fret;*/


  /* read what option and cmdline params need */
  xmlrpc_parse_value(env, in, "(ssss)", &option, &cmdline, &user, &pass);
  if (env->fault_occurred)
    return xmlrpc_build_value(env, "s", "params error");

   /* need login first */
  login_ok=validate_login(user,pass);
  if( strcmp(login_ok,  LOGIN_OK ) != 0 )
    return xmlrpc_build_value(env, "s", login_ok );

  dbgtcos("tcosxmlrpc::tcos_xorg() option=\"%s\" cmdline=\"%s\"\n", option, cmdline);

  /* generate new xorg.conf */
  if ( strcmp(option, "new") == 0 )
  {
   snprintf( (char*) line, BSIZE, "%s %s", XORG_NEW_CONF, cmdline );

   dbgtcos("tcosxmlrpc::tcos_xorg() new exec=\"%s\"\n", line);

   if (system(line) != 0 )
     return xmlrpc_build_value(env, "s", XORG_ERROR );
   else
     return xmlrpc_build_value(env, "s", XORG_OK );
  }

  /* change xorg.conf */
  else if ( strcmp(option, "change") == 0 )
  {
   snprintf( (char*) line, BSIZE, "%s %s", XORG_CHANGE_CONF, cmdline );

   dbgtcos("tcosxmlrpc::tcos_xorg() change exec=\"%s\"\n", line);

   if (system(line) != 0 )
     return xmlrpc_build_value(env, "s", XORG_ERROR );
   else
     return xmlrpc_build_value(env, "s", XORG_OK );
  }

  /* rebuild xorg.conf */
  else if ( strcmp(option, "rebuild") == 0 )
  {
   snprintf( (char*) line, BSIZE, "%s %s", XORG_REBUILD_CONF, cmdline );

   dbgtcos("tcosxmlrpc::tcos_xorg() rebuild exec=\"%s\"\n", line);

   if (system(line) != 0 )
     return xmlrpc_build_value(env, "s", XORG_ERROR );
   else
     return xmlrpc_build_value(env, "s", XORG_OK );
  }

  else if ( strcmp(option, "get") == 0 )
  {

   dbgtcos("tcosxmlrpc::tcos_xorg() get xorg.conf exec=\"%s\"\n", XORG_GET_CONF);

   fp=(FILE*)popen(XORG_GET_CONF, "r");
   if (fp == NULL)
     return xmlrpc_build_value(env, "s", XORG_READING_ERROR );

   /* put error msg into line var */
   strncpy(line, XORG_ERROR, BSIZE);

   (void)fgets( line, sizeof line, fp);
   remove_line_break(line);
   pclose(fp);

   if (env->fault_occurred) {
     return xmlrpc_build_value(env, "s", XORG_READING_ERROR);
   }

  return xmlrpc_build_value(env, "s", line );
  }


  else {
    return xmlrpc_build_value(env, "s", XORG_UNKNOW_OPTION );
  }

}