| 1 | <?php |
|---|
| 2 | // +-----------------------------------------------------------------------+ |
|---|
| 3 | // | Piwigo - a PHP based picture gallery | |
|---|
| 4 | // +-----------------------------------------------------------------------+ |
|---|
| 5 | // | Copyright(C) 2008 Piwigo Team http://piwigo.org | |
|---|
| 6 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
|---|
| 7 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
|---|
| 8 | // +-----------------------------------------------------------------------+ |
|---|
| 9 | // | This program is free software; you can redistribute it and/or modify | |
|---|
| 10 | // | it under the terms of the GNU General Public License as published by | |
|---|
| 11 | // | the Free Software Foundation | |
|---|
| 12 | // | | |
|---|
| 13 | // | This program is distributed in the hope that it will be useful, but | |
|---|
| 14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
|---|
| 15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
|---|
| 16 | // | General Public License for more details. | |
|---|
| 17 | // | | |
|---|
| 18 | // | You should have received a copy of the GNU General Public License | |
|---|
| 19 | // | along with this program; if not, write to the Free Software | |
|---|
| 20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
|---|
| 21 | // | USA. | |
|---|
| 22 | // +-----------------------------------------------------------------------+ |
|---|
| 23 | |
|---|
| 24 | define ('PHPWG_ROOT_PATH', './'); |
|---|
| 25 | |
|---|
| 26 | include_once(PHPWG_ROOT_PATH.'include/common.inc.php'); |
|---|
| 27 | check_status(ACCESS_FREE); |
|---|
| 28 | include_once(PHPWG_ROOT_PATH.'include/ws_core.inc.php'); |
|---|
| 29 | |
|---|
| 30 | if ( !$conf['allow_web_services'] ) |
|---|
| 31 | { |
|---|
| 32 | page_forbidden('Web services are disabled'); |
|---|
| 33 | } |
|---|
| 34 | |
|---|
| 35 | /** |
|---|
| 36 | * event handler that registers standard methods with the web service |
|---|
| 37 | */ |
|---|
| 38 | function ws_addDefaultMethods( $arr ) |
|---|
| 39 | { |
|---|
| 40 | include_once(PHPWG_ROOT_PATH.'include/ws_functions.inc.php'); |
|---|
| 41 | global $conf, $user; |
|---|
| 42 | $service = &$arr[0]; |
|---|
| 43 | $service->addMethod('pwg.getVersion', 'ws_getVersion', null, |
|---|
| 44 | 'retrieves the PWG version'); |
|---|
| 45 | |
|---|
| 46 | $service->addMethod('pwg.caddie.add', 'ws_caddie_add', |
|---|
| 47 | array( |
|---|
| 48 | 'image_id'=> array( 'flags'=>WS_PARAM_FORCE_ARRAY ), |
|---|
| 49 | ), |
|---|
| 50 | 'adds the elements to the caddie'); |
|---|
| 51 | |
|---|
| 52 | $service->addMethod('pwg.categories.getImages', 'ws_categories_getImages', |
|---|
| 53 | array( |
|---|
| 54 | 'cat_id'=>array('default'=>0, 'flags'=>WS_PARAM_FORCE_ARRAY), |
|---|
| 55 | 'recursive'=>array('default'=>false), |
|---|
| 56 | 'per_page' => array('default'=>100, 'maxValue'=>$conf['ws_max_images_per_page']), |
|---|
| 57 | 'page' => array('default'=>0), |
|---|
| 58 | 'order' => array('default'=>null), |
|---|
| 59 | 'f_min_rate' => array( 'default'=> null ), |
|---|
| 60 | 'f_max_rate' => array( 'default'=> null ), |
|---|
| 61 | 'f_min_hit' => array( 'default'=> null ), |
|---|
| 62 | 'f_max_hit' => array( 'default'=> null ), |
|---|
| 63 | 'f_min_date_available' => array( 'default'=> null ), |
|---|
| 64 | 'f_max_date_available' => array( 'default'=> null ), |
|---|
| 65 | 'f_min_date_created' => array( 'default'=> null ), |
|---|
| 66 | 'f_max_date_created' => array( 'default'=> null ), |
|---|
| 67 | 'f_min_ratio' => array( 'default'=> null ), |
|---|
| 68 | 'f_max_ratio' => array( 'default'=> null ), |
|---|
| 69 | 'f_with_thumbnail' => array( 'default'=> false ), |
|---|
| 70 | ), |
|---|
| 71 | 'Returns elements for the corresponding categories. |
|---|
| 72 | <br/><b>cat_id</b> can be empty if <b>recursive</b> is true. Can be sent as an array. |
|---|
| 73 | <br/><b>order</b> comma separated fields for sorting (file,id, average_rate,...)' |
|---|
| 74 | ); |
|---|
| 75 | |
|---|
| 76 | $service->addMethod('pwg.categories.getList', 'ws_categories_getList', |
|---|
| 77 | array( |
|---|
| 78 | 'cat_id' => array('default'=>0), |
|---|
| 79 | 'recursive' => array('default'=>false), |
|---|
| 80 | 'public' => array('default'=>false), |
|---|
| 81 | ), |
|---|
| 82 | 'retrieves a list of categories' ); |
|---|
| 83 | |
|---|
| 84 | $service->addMethod('pwg.images.addComment', 'ws_images_addComment', |
|---|
| 85 | array( |
|---|
| 86 | 'image_id' => array(), |
|---|
| 87 | 'author' => array( 'default' => is_a_guest()? 'guest':$user['username']), |
|---|
| 88 | 'content' => array(), |
|---|
| 89 | 'key' => array(), |
|---|
| 90 | ), |
|---|
| 91 | 'add a comment to an image' ); |
|---|
| 92 | |
|---|
| 93 | $service->addMethod('pwg.images.getInfo', 'ws_images_getInfo', |
|---|
| 94 | array( |
|---|
| 95 | 'image_id' => array(), |
|---|
| 96 | 'comments_page' => array('default'=>0 ), |
|---|
| 97 | 'comments_per_page' => array( |
|---|
| 98 | 'default' => $conf['nb_comment_page'], |
|---|
| 99 | 'maxValue' => 2*$conf['nb_comment_page'], |
|---|
| 100 | ), |
|---|
| 101 | ), |
|---|
| 102 | 'retrieves information about the given photo' ); |
|---|
| 103 | |
|---|
| 104 | $service->addMethod('pwg.images.rate', 'ws_images_rate', |
|---|
| 105 | array( |
|---|
| 106 | 'image_id' => array(), |
|---|
| 107 | 'rate' => array(), |
|---|
| 108 | ), |
|---|
| 109 | 'rate the image' ); |
|---|
| 110 | |
|---|
| 111 | $service->addMethod('pwg.images.search', 'ws_images_search', |
|---|
| 112 | array( |
|---|
| 113 | 'query'=>array(), |
|---|
| 114 | 'per_page' => array('default'=>100, 'maxValue'=>$conf['ws_max_images_per_page']), |
|---|
| 115 | 'page' => array('default'=>0), |
|---|
| 116 | 'order' => array('default'=>null), |
|---|
| 117 | 'f_min_rate' => array( 'default'=> null ), |
|---|
| 118 | 'f_max_rate' => array( 'default'=> null ), |
|---|
| 119 | 'f_min_hit' => array( 'default'=> null ), |
|---|
| 120 | 'f_max_hit' => array( 'default'=> null ), |
|---|
| 121 | 'f_min_date_available' => array( 'default'=> null ), |
|---|
| 122 | 'f_max_date_available' => array( 'default'=> null ), |
|---|
| 123 | 'f_min_date_created' => array( 'default'=> null ), |
|---|
| 124 | 'f_max_date_created' => array( 'default'=> null ), |
|---|
| 125 | 'f_min_ratio' => array( 'default'=> null ), |
|---|
| 126 | 'f_max_ratio' => array( 'default'=> null ), |
|---|
| 127 | 'f_with_thumbnail' => array( 'default'=> false ), |
|---|
| 128 | ), |
|---|
| 129 | 'Returns elements for the corresponding query search.' |
|---|
| 130 | ); |
|---|
| 131 | |
|---|
| 132 | $service->addMethod( |
|---|
| 133 | 'pwg.images.setPrivacyLevel', |
|---|
| 134 | 'ws_images_setPrivacyLevel', |
|---|
| 135 | array( |
|---|
| 136 | 'image_id' => array('flags'=>WS_PARAM_FORCE_ARRAY), |
|---|
| 137 | 'level' => array('maxValue'=>$conf['available_permission_levels']), |
|---|
| 138 | ), |
|---|
| 139 | 'sets the privacy levels for the images' |
|---|
| 140 | ); |
|---|
| 141 | |
|---|
| 142 | $service->addMethod('pwg.session.getStatus', 'ws_session_getStatus', null, '' ); |
|---|
| 143 | $service->addMethod('pwg.session.login', 'ws_session_login', |
|---|
| 144 | array('username', 'password'), |
|---|
| 145 | 'POST method only' ); |
|---|
| 146 | $service->addMethod('pwg.session.logout', 'ws_session_logout', null, ''); |
|---|
| 147 | |
|---|
| 148 | $service->addMethod('pwg.tags.getList', 'ws_tags_getList', |
|---|
| 149 | array('sort_by_counter' => array('default' =>false) ), |
|---|
| 150 | 'retrieves a list of available tags'); |
|---|
| 151 | $service->addMethod('pwg.tags.getImages', 'ws_tags_getImages', |
|---|
| 152 | array( |
|---|
| 153 | 'tag_id'=>array('default'=>null, 'flags'=>WS_PARAM_FORCE_ARRAY ), |
|---|
| 154 | 'tag_url_name'=>array('default'=>null, 'flags'=>WS_PARAM_FORCE_ARRAY ), |
|---|
| 155 | 'tag_name'=>array('default'=>null, 'flags'=>WS_PARAM_FORCE_ARRAY ), |
|---|
| 156 | 'tag_mode_and'=>array('default'=>false), |
|---|
| 157 | 'per_page' => array('default'=>100, 'maxValue'=>$conf['ws_max_images_per_page']), |
|---|
| 158 | 'page' => array('default'=>0), |
|---|
| 159 | 'order' => array('default'=>null), |
|---|
| 160 | 'f_min_rate' => array( 'default'=> null ), |
|---|
| 161 | 'f_max_rate' => array( 'default'=> null ), |
|---|
| 162 | 'f_min_hit' => array( 'default'=> null ), |
|---|
| 163 | 'f_max_hit' => array( 'default'=> null ), |
|---|
| 164 | 'f_min_date_available' => array( 'default'=> null ), |
|---|
| 165 | 'f_max_date_available' => array( 'default'=> null ), |
|---|
| 166 | 'f_min_date_created' => array( 'default'=> null ), |
|---|
| 167 | 'f_max_date_created' => array( 'default'=> null ), |
|---|
| 168 | 'f_min_ratio' => array( 'default'=> null ), |
|---|
| 169 | 'f_max_ratio' => array( 'default'=> null ), |
|---|
| 170 | 'f_with_thumbnail' => array( 'default'=> false ), |
|---|
| 171 | ), |
|---|
| 172 | 'Returns elements for the corresponding tags. Note that tag_id, tag_url_name, tag_name an be arrays. Fill at least one of them. ' |
|---|
| 173 | ); |
|---|
| 174 | |
|---|
| 175 | $service->addMethod( |
|---|
| 176 | 'pwg.images.add', |
|---|
| 177 | 'ws_images_add', |
|---|
| 178 | array( |
|---|
| 179 | 'file_content' => array(), |
|---|
| 180 | 'file_sum' => array(), |
|---|
| 181 | 'thumbnail_content' => array(), |
|---|
| 182 | 'thumbnail_sum' => array(), |
|---|
| 183 | 'name' => array('default' => null), |
|---|
| 184 | 'author' => array('default' => null), |
|---|
| 185 | 'date_creation' => array('default' => null), |
|---|
| 186 | 'comment' => array('default' => null), |
|---|
| 187 | 'categories' => array('default' => null), |
|---|
| 188 | 'tag_ids' => array('default' => null), |
|---|
| 189 | 'level' => array( |
|---|
| 190 | 'default' => 0, |
|---|
| 191 | 'maxValue' => $conf['available_permission_levels'] |
|---|
| 192 | ), |
|---|
| 193 | ), |
|---|
| 194 | 'POST method only. |
|---|
| 195 | <br/><b>categories</b> is a string list "category_id[,rank];category_id[,rank]" The rank is optional and is equivalent to "auto" if not given.' |
|---|
| 196 | ); |
|---|
| 197 | |
|---|
| 198 | $service->addMethod( |
|---|
| 199 | 'pwg.categories.getAdminList', |
|---|
| 200 | 'ws_categories_getAdminList', |
|---|
| 201 | array(), |
|---|
| 202 | 'administration method only' |
|---|
| 203 | ); |
|---|
| 204 | |
|---|
| 205 | $service->addMethod( |
|---|
| 206 | 'pwg.categories.add', |
|---|
| 207 | 'ws_categories_add', |
|---|
| 208 | array( |
|---|
| 209 | 'name' => array(), |
|---|
| 210 | 'parent' => array('default' => null), |
|---|
| 211 | ), |
|---|
| 212 | 'administration method only' |
|---|
| 213 | ); |
|---|
| 214 | |
|---|
| 215 | $service->addMethod( |
|---|
| 216 | 'pwg.tags.getAdminList', |
|---|
| 217 | 'ws_tags_getAdminList', |
|---|
| 218 | array(), |
|---|
| 219 | 'administration method only' |
|---|
| 220 | ); |
|---|
| 221 | |
|---|
| 222 | $service->addMethod( |
|---|
| 223 | 'pwg.tags.add', |
|---|
| 224 | 'ws_tags_add', |
|---|
| 225 | array( |
|---|
| 226 | 'name' => array(), |
|---|
| 227 | ), |
|---|
| 228 | 'administration method only' |
|---|
| 229 | ); |
|---|
| 230 | } |
|---|
| 231 | |
|---|
| 232 | add_event_handler('ws_add_methods', 'ws_addDefaultMethods'); |
|---|
| 233 | |
|---|
| 234 | |
|---|
| 235 | add_event_handler('ws_invoke_allowed', 'ws_isInvokeAllowed', EVENT_HANDLER_PRIORITY_NEUTRAL, 3); |
|---|
| 236 | |
|---|
| 237 | $requestFormat = null; |
|---|
| 238 | $responseFormat = null; |
|---|
| 239 | |
|---|
| 240 | if ( isset($_GET['format']) ) |
|---|
| 241 | { |
|---|
| 242 | $responseFormat = $_GET['format']; |
|---|
| 243 | } |
|---|
| 244 | |
|---|
| 245 | if ( isset($HTTP_RAW_POST_DATA) ) |
|---|
| 246 | { |
|---|
| 247 | $HTTP_RAW_POST_DATA = trim($HTTP_RAW_POST_DATA); |
|---|
| 248 | if ( strncmp($HTTP_RAW_POST_DATA, '<?xml', 5) == 0 ) |
|---|
| 249 | { |
|---|
| 250 | } |
|---|
| 251 | else |
|---|
| 252 | { |
|---|
| 253 | $requestFormat = "json"; |
|---|
| 254 | } |
|---|
| 255 | } |
|---|
| 256 | else |
|---|
| 257 | { |
|---|
| 258 | $requestFormat = "rest"; |
|---|
| 259 | } |
|---|
| 260 | |
|---|
| 261 | if ( !isset($responseFormat) and isset($requestFormat) ) |
|---|
| 262 | { |
|---|
| 263 | $responseFormat = $requestFormat; |
|---|
| 264 | } |
|---|
| 265 | |
|---|
| 266 | $service = new PwgServer(); |
|---|
| 267 | |
|---|
| 268 | if (!is_null($requestFormat)) |
|---|
| 269 | { |
|---|
| 270 | $handler = null; |
|---|
| 271 | switch ($requestFormat) |
|---|
| 272 | { |
|---|
| 273 | case 'rest': |
|---|
| 274 | include_once(PHPWG_ROOT_PATH.'include/ws_protocols/rest_handler.php'); |
|---|
| 275 | $handler = new PwgRestRequestHandler(); |
|---|
| 276 | break; |
|---|
| 277 | } |
|---|
| 278 | $service->setHandler($requestFormat, $handler); |
|---|
| 279 | } |
|---|
| 280 | |
|---|
| 281 | if (!is_null($responseFormat)) |
|---|
| 282 | { |
|---|
| 283 | $encoder = null; |
|---|
| 284 | switch ($responseFormat) |
|---|
| 285 | { |
|---|
| 286 | case 'rest': |
|---|
| 287 | include_once(PHPWG_ROOT_PATH.'include/ws_protocols/rest_encoder.php'); |
|---|
| 288 | $encoder = new PwgRestEncoder(); |
|---|
| 289 | break; |
|---|
| 290 | case 'php': |
|---|
| 291 | include_once(PHPWG_ROOT_PATH.'include/ws_protocols/php_encoder.php'); |
|---|
| 292 | $encoder = new PwgSerialPhpEncoder(); |
|---|
| 293 | break; |
|---|
| 294 | case 'json': |
|---|
| 295 | include_once(PHPWG_ROOT_PATH.'include/ws_protocols/json_encoder.php'); |
|---|
| 296 | $encoder = new PwgJsonEncoder(); |
|---|
| 297 | break; |
|---|
| 298 | case 'xmlrpc': |
|---|
| 299 | include_once(PHPWG_ROOT_PATH.'include/ws_protocols/xmlrpc_encoder.php'); |
|---|
| 300 | $encoder = new PwgXmlRpcEncoder(); |
|---|
| 301 | break; |
|---|
| 302 | } |
|---|
| 303 | $service->setEncoder($responseFormat, $encoder); |
|---|
| 304 | } |
|---|
| 305 | |
|---|
| 306 | set_make_full_url(); |
|---|
| 307 | $service->run(); |
|---|
| 308 | |
|---|
| 309 | ?> |
|---|