0337d704 |
1 | <?php |
6682f91d |
2 | /*************************************************************************** |
2ab75571 |
3 | * Copyright (C) 2003-2010 Polytechnique.org * |
27cb2301 |
4 | * http://opensource.polytechnique.org/ * |
5 | * * |
6 | * This program is free software; you can redistribute it and/or modify * |
7 | * it under the terms of the GNU General Public License as published by * |
8 | * the Free Software Foundation; either version 2 of the License, or * |
9 | * (at your option) any later version. * |
10 | * * |
11 | * This program is distributed in the hope that it will be useful, * |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * |
14 | * GNU General Public License for more details. * |
15 | * * |
16 | * You should have received a copy of the GNU General Public License * |
17 | * along with this program; if not, write to the Free Software * |
18 | * Foundation, Inc., * |
19 | * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * |
20 | ***************************************************************************/ |
21 | |
22 | /* taken from : http://fr2.php.net/xml-rpc |
23 | * Author mboeren@php.net |
24 | * |
25 | * Usage: |
26 | * $client = new xmlrpc_client("http://localhost:7080"); |
27 | * print $client->echo('x')."\n"; |
28 | * print $client->add(1, 3)."\n"; |
29 | */ |
30 | |
31 | class XmlrpcClient |
32 | { |
6682f91d |
33 | private $url; |
34 | private $urlparts; |
d3f26be9 |
35 | public $bt = null; |
27cb2301 |
36 | |
6682f91d |
37 | public function __construct($url) |
27cb2301 |
38 | { |
39 | $this->url = $url; |
40 | $this->urlparts = parse_url($this->url); |
6682f91d |
41 | |
42 | if (empty($this->urlparts['port'])) { |
43 | $this->urlparts['port'] = 80; |
27cb2301 |
44 | } |
6682f91d |
45 | |
46 | if (empty($this->urlparts['path'])) { |
47 | $this->urlparts['path'] = '/'; |
48 | } |
49 | } |
50 | |
51 | private function http_post($request) |
52 | { |
53 | $host = $path = $port = $user = $pass = null; |
54 | extract($this->urlparts); |
55 | |
56 | if ($scheme == 'https') { |
57 | $host = 'ssl://'.$host; |
58 | } |
59 | |
60 | $query_fd = fsockopen($host, $port, $errno, $errstr, 10); |
61 | if (!$query_fd) |
62 | return null; |
63 | |
64 | $auth = ''; |
65 | if ($user) { |
66 | $auth = 'Authorization: Basic ' . base64_encode("$user:$pass") . "\r\n"; |
67 | } |
68 | |
69 | $content_len = strlen($request); |
70 | $http_request = |
71 | "POST $path HTTP/1.0\r\n" . |
72 | $auth . |
73 | "Content-Type: text/xml\r\n" . |
74 | "Content-Length: $content_len\r\n" . |
75 | "Connection: Close\r\n" . |
76 | "Host: $host:$port\r\n" . |
77 | "\r\n" . |
78 | $request; |
79 | |
80 | fputs($query_fd, $http_request, strlen($http_request)); |
81 | |
82 | $buf = ''; |
83 | while (!feof($query_fd)) { |
84 | $buf .= fread($query_fd, 8192); |
85 | } |
86 | |
87 | fclose($query_fd); |
88 | return $buf; |
89 | } |
90 | |
91 | private function find_and_decode_xml($buf) |
92 | { |
93 | $pos = strpos($buf, '<?xml'); |
94 | if ($pos !== false) { |
95 | return xmlrpc_decode(substr($buf, $pos)); |
96 | } |
97 | trigger_error("Cannot parse XML\n".$buf); |
27cb2301 |
98 | } |
99 | |
6682f91d |
100 | public function __call($method, $args) |
27cb2301 |
101 | { |
6682f91d |
102 | $query = xmlrpc_encode_request($method, $args); |
d3f26be9 |
103 | if ($this->bt) { |
104 | $this->bt->start($method . "\n" . var_export($args, true)); |
105 | } |
6682f91d |
106 | $answer = $this->http_post($query, $this->urlparts); |
d3f26be9 |
107 | if ($this->bt) { |
108 | $this->bt->stop(); |
109 | } |
6682f91d |
110 | $result = $this->find_and_decode_xml($answer); |
d3f26be9 |
111 | if ($this->bt) { |
923dd561 |
112 | if (is_array($result) && isset($result['faultCode'])) { |
d3f26be9 |
113 | $this->bt->update(0, $result['faultString']); |
114 | } else { |
115 | $this->bt->update(count($result)); |
116 | } |
117 | } |
6682f91d |
118 | |
27cb2301 |
119 | if (is_array($result) && isset($result['faultCode'])) { |
6682f91d |
120 | trigger_error("Error in xmlrpc call $function\n". |
121 | " code : {$result['faultCode']}\n". |
122 | " message: {$result['faultString']}\n"); |
df69f0b9 |
123 | return null; |
27cb2301 |
124 | } |
df69f0b9 |
125 | return $result; |
27cb2301 |
126 | } |
27cb2301 |
127 | } |
128 | |
a7de4ef7 |
129 | // vim:set et sw=4 sts=4 sws=4 enc=utf-8: |
0337d704 |
130 | ?> |