1 |
<?php |
2 |
/*------------------------------------------------------------------------------ |
3 |
--- www.netfrag.org |
4 |
--- NetFraggle client link page. |
5 |
-------------------------------------------------------------------------------- |
6 |
--- rabit, 01:28 24.08.2004 |
7 |
--- joko, 04:05 30.08.2004 |
8 |
--- $Id: netfraggle.php,v 1.7 2004/09/03 22:43:47 joko Exp $ |
9 |
------------------------------------------------------------------------------*/ |
10 |
|
11 |
include('inc/common/common.php.inc'); |
12 |
|
13 |
//------------------------------------------------------------------------------ |
14 |
|
15 |
// ...NetFraggle interconnection code... |
16 |
// by now using XML-RPC, see API-Documentation at: |
17 |
// http://pear.php.net/manual/en/package.webservices.xml-rpc.api.php |
18 |
|
19 |
$type = 'XMLRPC'; |
20 |
|
21 |
switch ($type) { |
22 |
case 'XMLRPC': |
23 |
include('libs/XML/Server.php'); |
24 |
$s = new XML_RPC_Server(array( |
25 |
"query" => array( |
26 |
"function" => "nfo_query" |
27 |
), |
28 |
"getContent" => array( |
29 |
"function" => "nfo_get_content", |
30 |
"signature" => array(array('struct', 'string')), |
31 |
), |
32 |
"listTopics" => array( |
33 |
"function" => "nfo_list_topics", |
34 |
"signature" => array(array('struct', 'struct')), |
35 |
), |
36 |
"authenticate" => array( |
37 |
"function" => "nfo_authenticate", |
38 |
"signature" => array(array('boolean', 'struct')), |
39 |
), |
40 |
"listContents" => array("function" => "nfo_list_contents"), |
41 |
"listUsers" => array("function" => "nfo_list_users"), |
42 |
)); |
43 |
break; |
44 |
default: |
45 |
break; |
46 |
} |
47 |
#"getContent" => array("function" => "nfo_get_content"), |
48 |
#"signature" => array(array($xmlrpcStruct, $xmlrpcString)) |
49 |
#"signature" => array($XML_RPC_Struct, $XML_RPC_String) |
50 |
|
51 |
function nfo_query($params) { |
52 |
|
53 |
$querytxt = $params->getParam(0); |
54 |
$nqlquery = $querytxt->getval(); |
55 |
nfo_debug_clean(); |
56 |
#nfo_debug_write($params); |
57 |
#nfo_debug_write($nqlquery); |
58 |
$result = array(); |
59 |
cms_query($nqlquery,&$result); |
60 |
#nfo_debug_write($result); |
61 |
|
62 |
$structinfo = array(); |
63 |
$structcontent = array(); |
64 |
$structfields = array(); |
65 |
|
66 |
foreach ($result[0] as $key => $value) { |
67 |
$structinfo[$key] = new XML_RPC_Value($value,"string"); |
68 |
} |
69 |
foreach ($result[1] as $key => $value) { |
70 |
$structcontent[$key] = new XML_RPC_Value($value,"struct"); |
71 |
} |
72 |
foreach ($result[2] as $key => $value) { |
73 |
$structfields[$key] = new XML_RPC_Value($value,"string"); |
74 |
} |
75 |
$struct = array(); |
76 |
$struct[0] = new XML_RPC_Value($structinfo,"struct"); |
77 |
$struct[1] = new XML_RPC_Value($structcontent,"struct"); |
78 |
$struct[2] = new XML_RPC_Value($structfields,"struct"); |
79 |
|
80 |
$xmldoc = new XML_RPC_Response(new XML_RPC_Value($struct, "struct")); |
81 |
nfo_debug_write($xmldoc); |
82 |
#nfo_debug_write($xmldoc->serialize()); |
83 |
|
84 |
return $xmldoc; |
85 |
|
86 |
} |
87 |
|
88 |
|
89 |
function nfo_get_content($params) { |
90 |
$ck = $params->getParam(0); |
91 |
$ck = $ck->scalarval(); |
92 |
#nfo_debug_clean(); |
93 |
#nfo_debug_write($ck); |
94 |
$content = cms_getcontent('xmlpage', $ck); |
95 |
#nfo_debug_write($content); |
96 |
#return new XML_RPC_Response(new XML_RPC_Value("content", "string")); |
97 |
$struct = array(); |
98 |
foreach ($content as $key => $value) { |
99 |
$struct[$key] = new XML_RPC_Value($value, "string"); |
100 |
} |
101 |
$xmldoc = new XML_RPC_Response(new XML_RPC_Value($struct, "struct")); |
102 |
return $xmldoc; |
103 |
} |
104 |
|
105 |
function nfo_list_topics($params) { |
106 |
nfo_debug_clean(); |
107 |
nfo_debug_write($params); |
108 |
nfo_debug_write("list_topics"); |
109 |
$meta = $params->getParam(0); |
110 |
nfo_debug_write($meta); |
111 |
$type = $meta->structmem('type'); |
112 |
$type = $type->scalarval(); |
113 |
#nfo_debug_write("$type"); |
114 |
$res = cms_getindex($type); |
115 |
#nfo_debug_write($res); |
116 |
$newentries = array(); |
117 |
$tmp = new XML_RPC_Value(); |
118 |
foreach ($res as $entry) { |
119 |
$newentry = array(); |
120 |
foreach ($entry as $key => $value) { |
121 |
$newvalue = new XML_RPC_Value($value, 'string'); |
122 |
$newentry[$key] = $newvalue; |
123 |
} |
124 |
#$tmp->addStruct($newentry); |
125 |
array_push($newentries, new XML_RPC_Value($newentry, 'struct')); |
126 |
} |
127 |
$final = new XML_RPC_Value($newentries, 'array'); |
128 |
#$final->addArray($tmp); |
129 |
#nfo_debug_write($final); |
130 |
#$res = array('key' => new XML_RPC_Value('value', 'string')); |
131 |
$msg = new XML_RPC_Response($final); |
132 |
#nfo_debug_write($msg); |
133 |
return $msg; |
134 |
} |
135 |
|
136 |
function nfo_authenticate($params) { |
137 |
global $common_sessiondata; |
138 |
#nfo_debug_clean(); |
139 |
#nfo_debug_write($params); |
140 |
$meta = $params->getParam(0); |
141 |
$user = $meta->structmem('user'); |
142 |
$user = $user->scalarval(); |
143 |
$pass = $meta->structmem('pass'); |
144 |
$pass = $pass->scalarval(); |
145 |
$common_sessiondata['userdata']['name'] = $user; |
146 |
$common_sessiondata['userdata']['password'] = $pass; |
147 |
#nfo_debug_write($common_sessiondata); |
148 |
$retval = common_checkauthorisation(); |
149 |
return new XML_RPC_Response(new XML_RPC_Value($retval, 'boolean')); |
150 |
} |
151 |
|
152 |
function nfo_list_contents() { |
153 |
} |
154 |
|
155 |
function nfo_list_users() { |
156 |
} |
157 |
|
158 |
function nfo_debug_clean() { |
159 |
`rm dump`; |
160 |
} |
161 |
|
162 |
function nfo_debug_write($data) { |
163 |
ob_start(); |
164 |
print_r($data); |
165 |
$data = ob_get_clean(); |
166 |
$f = fopen('dump', 'a'); |
167 |
fputs($f, $data . "\n"); |
168 |
fclose($f); |
169 |
} |
170 |
|
171 |
//------------------------------------------------------------------------------ |
172 |
|
173 |
?> |