source: branches/2.2/ws.php @ 11365

Last change on this file since 11365 was 11365, checked in by plg, 13 years ago

bug 2343 fixed: pwg.images.setInfo, the "level" should not be mandatory. If
the caller doesn't send this property, the level is unchanged.

  • Property svn:eol-style set to LF
File size: 16.5 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based photo gallery                                    |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2011 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
24define ('PHPWG_ROOT_PATH', './');
25
26include_once(PHPWG_ROOT_PATH.'include/common.inc.php');
27check_status(ACCESS_FREE);
28include_once(PHPWG_ROOT_PATH.'include/ws_core.inc.php');
29
30if ( !$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 */
38function 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.getInfos', 'ws_getInfos', null,
47      'retrieves general informations');
48
49  $service->addMethod('pwg.caddie.add', 'ws_caddie_add',
50      array(
51        'image_id'=> array( 'flags'=>WS_PARAM_FORCE_ARRAY ),
52      ),
53      'adds the elements to the caddie');
54
55  $service->addMethod('pwg.categories.getImages', 'ws_categories_getImages',
56      array(
57        'cat_id'=>array('default'=>0, 'flags'=>WS_PARAM_FORCE_ARRAY),
58        'recursive'=>array('default'=>false),
59        'per_page' => array('default'=>100, 'maxValue'=>$conf['ws_max_images_per_page']),
60        'page' => array('default'=>0),
61        'order' => array('default'=>null),
62        'f_min_rate' => array( 'default'=> null ),
63        'f_max_rate' => array( 'default'=> null ),
64        'f_min_hit' => array( 'default'=> null ),
65        'f_max_hit' => array( 'default'=> null ),
66        'f_min_date_available' => array( 'default'=> null ),
67        'f_max_date_available' => array( 'default'=> null ),
68        'f_min_date_created' => array( 'default'=> null ),
69        'f_max_date_created' => array( 'default'=> null ),
70        'f_min_ratio' => array( 'default'=> null ),
71        'f_max_ratio' => array( 'default'=> null ),
72        'f_with_thumbnail' => array( 'default'=> false ),
73      ),
74      'Returns elements for the corresponding categories.
75<br><b>cat_id</b> can be empty if <b>recursive</b> is true. Can be sent as an array.
76<br><b>order</b> comma separated fields for sorting (file,id, average_rate,...)'
77    );
78
79  $service->addMethod('pwg.categories.getList', 'ws_categories_getList',
80      array(
81        'cat_id' => array('default'=>0),
82        'recursive' => array('default'=>false),
83        'public' => array('default'=>false),
84        'tree_output' => array('default'=>false),
85      ),
86      'retrieves a list of categories (tree_output option only compatible with json/php output format' );
87
88  $service->addMethod('pwg.images.addComment', 'ws_images_addComment',
89      array(
90        'image_id' => array(),
91        'author' => array( 'default' => is_a_guest()? 'guest':$user['username']),
92        'content' => array(),
93        'key' => array(),
94      ),
95      'add a comment to an image' );
96
97  $service->addMethod('pwg.images.getInfo', 'ws_images_getInfo',
98      array(
99        'image_id' => array(),
100        'comments_page' => array('default'=>0 ),
101        'comments_per_page' => array(
102              'default' => $conf['nb_comment_page'],
103              'maxValue' => 2*$conf['nb_comment_page'],
104            ),
105      ),
106      'retrieves information about the given photo' );
107
108  $service->addMethod('pwg.images.rate', 'ws_images_rate',
109      array(
110        'image_id' => array(),
111        'rate' =>     array(),
112      ),
113      'rate the image' );
114
115  $service->addMethod('pwg.images.search', 'ws_images_search',
116      array(
117        'query'=>array(),
118        'per_page' => array('default'=>100, 'maxValue'=>$conf['ws_max_images_per_page']),
119        'page' => array('default'=>0),
120        'order' => array('default'=>null),
121        'f_min_rate' => array( 'default'=> null ),
122        'f_max_rate' => array( 'default'=> null ),
123        'f_min_hit' => array( 'default'=> null ),
124        'f_max_hit' => array( 'default'=> null ),
125        'f_min_date_available' => array( 'default'=> null ),
126        'f_max_date_available' => array( 'default'=> null ),
127        'f_min_date_created' => array( 'default'=> null ),
128        'f_max_date_created' => array( 'default'=> null ),
129        'f_min_ratio' => array( 'default'=> null ),
130        'f_max_ratio' => array( 'default'=> null ),
131        'f_with_thumbnail' => array( 'default'=> false ),
132      ),
133      'Returns elements for the corresponding query search.'
134    );
135
136  $service->addMethod(
137    'pwg.images.setPrivacyLevel',
138    'ws_images_setPrivacyLevel',
139    array(
140      'image_id' => array('flags'=>WS_PARAM_FORCE_ARRAY),
141      'level' => array('maxValue'=>$conf['available_permission_levels']),
142      ),
143    'sets the privacy levels for the images (POST method only)'
144    );
145
146  $service->addMethod('pwg.session.getStatus', 'ws_session_getStatus', null, '' );
147  $service->addMethod('pwg.session.login', 'ws_session_login',
148    array('username', 'password'),
149    'POST method only' );
150  $service->addMethod('pwg.session.logout', 'ws_session_logout', null, '');
151
152  $service->addMethod('pwg.tags.getList', 'ws_tags_getList',
153    array('sort_by_counter' => array('default' =>false) ),
154    'retrieves a list of available tags');
155  $service->addMethod('pwg.tags.getImages', 'ws_tags_getImages',
156      array(
157        'tag_id'=>array('default'=>null, 'flags'=>WS_PARAM_FORCE_ARRAY ),
158        'tag_url_name'=>array('default'=>null, 'flags'=>WS_PARAM_FORCE_ARRAY ),
159        'tag_name'=>array('default'=>null, 'flags'=>WS_PARAM_FORCE_ARRAY ),
160        'tag_mode_and'=>array('default'=>false),
161        'per_page' => array('default'=>100, 'maxValue'=>$conf['ws_max_images_per_page']),
162        'page' => array('default'=>0),
163        'order' => array('default'=>null),
164        'f_min_rate' => array( 'default'=> null ),
165        'f_max_rate' => array( 'default'=> null ),
166        'f_min_hit' => array( 'default'=> null ),
167        'f_max_hit' => array( 'default'=> null ),
168        'f_min_date_available' => array( 'default'=> null ),
169        'f_max_date_available' => array( 'default'=> null ),
170        'f_min_date_created' => array( 'default'=> null ),
171        'f_max_date_created' => array( 'default'=> null ),
172        'f_min_ratio' => array( 'default'=> null ),
173        'f_max_ratio' => array( 'default'=> null ),
174        'f_with_thumbnail' => array( 'default'=> false ),
175      ),
176      'Returns elements for the corresponding tags. Note that tag_id, tag_url_name, tag_name an be arrays. Fill at least one of them. '
177    );
178
179  $service->addMethod(
180    'pwg.images.addChunk',
181    'ws_images_add_chunk',
182    array(
183      'data' => array(),
184      'original_sum' => array(),
185      'type' => array(),
186      'position' => array(),
187      ),
188    'POST method only. For admin only.'
189    );
190
191  $service->addMethod(
192    'pwg.images.addFile',
193    'ws_images_addFile',
194    array(
195      'image_id' => array(),
196      'type' => array(),
197      'sum' => array(),
198      ),
199    'Add or update a file for an existing photo. pwg.images.addChunk must have been called  before (maybe several times)'
200    );
201
202
203  $service->addMethod(
204    'pwg.images.add',
205    'ws_images_add',
206    array(
207      'file_sum' => array(),
208      'thumbnail_sum' => array(),
209      'high_sum' => array('default' => null),
210      'original_sum' => array(),
211      'original_filename' => array('default' => null),
212      'name' => array('default' => null),
213      'author' => array('default' => null),
214      'date_creation' => array('default' => null),
215      'comment' => array('default' => null),
216      'categories' => array('default' => null),
217      'tag_ids' => array('default' => null),
218      'level' => array(
219        'default' => 0,
220        'maxValue' => $conf['available_permission_levels']
221        ),
222      ),
223    'POST method only.
224<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.'
225    );
226
227  $service->addMethod(
228    'pwg.images.addSimple',
229    'ws_images_addSimple',
230    array(
231      'category' => array('default' => null),
232      'name' => array('default' => null),
233      'author' => array('default' => null),
234      'comment' => array('default' => null),
235      'level' => array(
236        'default' => 0,
237        'maxValue' => $conf['available_permission_levels']
238        ),
239      'tags' => array('default' => null),
240      'image_id' => array('default' => null),
241      ),
242    'POST method only.<br>Use the <b>image</b> field for uploading file.<br>Set the form encoding to "form-data"<br><b>category</b> is the numeric identifier of the destination category.<br>You can update an existing photo if you define an existing image_id.'
243    );
244
245  $service->addMethod(
246    'pwg.images.delete',
247    'ws_images_delete',
248    array(
249      'image_id'=>array('default'=>0),
250      'pwg_token' => array('default' => null),
251      ),
252    'Delete photos. You can give several image_ids, comma separated'
253    );
254
255  $service->addMethod(
256    'pwg.categories.getAdminList',
257    'ws_categories_getAdminList',
258    array(),
259    'administration method only'
260    );
261
262  $service->addMethod(
263    'pwg.categories.add',
264    'ws_categories_add',
265    array(
266      'name' => array(),
267      'parent' => array('default' => null),
268      ),
269    'administration method only'
270    );
271
272  $service->addMethod(
273    'pwg.categories.delete',
274    'ws_categories_delete',
275    array(
276      'category_id'=>array('default'=>0),
277      'pwg_token' => array('default' => null),
278      'photo_deletion_mode' => array('default' => 'delete_orphans'),
279      ),
280    'Delete categories. You can give several category_ids, comma separated.
281<br><b>photo_deletion_mode</b> can be "no_delete" (may create orphan photos), "delete_orphans" (default mode, only deletes photos linked to no other album) or "force_delete" (delete all photos, even those linked to other albums)'
282    );
283
284  $service->addMethod(
285    'pwg.categories.move',
286    'ws_categories_move',
287    array(
288      'category_id'=>array('default'=>0),
289      'parent'=>array('default'=>0),
290      'pwg_token' => array('default' => null),
291      ),
292    'Move categories. You can give several category_ids, comma separated. Set parent as 0 to move to gallery root. Only virtual categories can be moved.'
293    );
294 
295  $service->addMethod(
296    'pwg.tags.getAdminList',
297    'ws_tags_getAdminList',
298    array(),
299    'administration method only'
300    );
301
302  $service->addMethod(
303    'pwg.tags.add',
304    'ws_tags_add',
305    array(
306      'name' => array(),
307      ),
308    'administration method only'
309    );
310
311  $service->addMethod(
312    'pwg.images.exist',
313    'ws_images_exist',
314    array(
315      'md5sum_list'=> array('default' => null),
316      'filename_list' => array('default' => null),
317      ),
318    'check existence of a photo list'
319    );
320
321  $service->addMethod(
322    'pwg.images.checkFiles',
323    'ws_images_checkFiles',
324    array(
325      'image_id' => array(),
326      'thumbnail_sum' => array('default' => null),
327      'file_sum' => array('default' => null),
328      'high_sum' => array('default' => null),
329      ),
330    'check if you have updated version of your files for a given photo, for each requested file type, the answer can be "missing", "equals" or "differs"'
331    );
332
333  $service->addMethod(
334    'pwg.images.checkUpload',
335    'ws_images_checkUpload',
336    null,
337    'check if Piwigo is ready for upload'
338    );
339
340  $service->addMethod(
341    'pwg.images.setInfo',
342    'ws_images_setInfo',
343    array(
344      'image_id' => array(),
345
346      'name' => array('default' => null),
347      'author' => array('default' => null),
348      'date_creation' => array('default' => null),
349      'comment' => array('default' => null),
350      'categories' => array('default' => null),
351      'tag_ids' => array('default' => null),
352      'level' => array(
353        'default' => null,
354        'maxValue' => $conf['available_permission_levels']
355        ),
356      'single_value_mode' => array('default' => 'fill_if_empty'),
357      'multiple_value_mode' => array('default' => 'append'),
358      ),
359    'POST method only. Admin only
360<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.
361<br><b>single_value_mode</b> can be "fill_if_empty" (only use the input value if the corresponding values is currently empty) or "replace" (overwrite any existing value) and applies to single values properties like name/author/date_creation/comment
362<br><b>multiple_value_mode</b> can be "append" (no change on existing values, add the new values) or "replace" and applies to multiple values properties like tag_ids/categories'
363    );
364
365  $service->addMethod(
366    'pwg.categories.setInfo',
367    'ws_categories_setInfo',
368    array(
369      'category_id' => array(),
370
371      'name' => array('default' => null),
372      'comment' => array('default' => null),
373      ),
374    'POST method only.'
375    );
376 
377  $service->addMethod(
378    'pwg.plugins.getList',
379    'ws_plugins_getList',
380    array(),
381    'get the list of plugin with id, name, version, state and description
382<br>administration status required'
383    );
384
385  $service->addMethod(
386    'pwg.plugins.performAction',
387    'ws_plugins_performAction',
388    array(
389      'action' => array('default' => null),
390      'plugin' => array('default' => null),
391      'pwg_token' => array('default' => null),
392      ),
393    'install/activate/deactivate/uninstall/delete a plugin
394<br>administration status required'
395    );
396
397  $service->addMethod(
398    'pwg.themes.performAction',
399    'ws_themes_performAction',
400    array(
401      'action' => array('default' => null),
402      'themes' => array('default' => null),
403      'pwg_token' => array('default' => null),
404      ),
405    'activate/deactivate/delete/set_default a theme<br>administration status required'
406    );
407}
408
409add_event_handler('ws_add_methods', 'ws_addDefaultMethods');
410
411
412add_event_handler('ws_invoke_allowed', 'ws_isInvokeAllowed', EVENT_HANDLER_PRIORITY_NEUTRAL, 3);
413
414$requestFormat = null;
415$responseFormat = null;
416
417if ( isset($_GET['format']) )
418{
419  $responseFormat = $_GET['format'];
420}
421
422if ( isset($HTTP_RAW_POST_DATA) )
423{
424  $HTTP_RAW_POST_DATA = trim($HTTP_RAW_POST_DATA);
425  if ( strncmp($HTTP_RAW_POST_DATA, '<?xml', 5) == 0 )
426  {
427  }
428  else
429  {
430    $requestFormat = "json";
431  }
432}
433else
434{
435  $requestFormat = "rest";
436}
437
438if ( !isset($responseFormat) and isset($requestFormat) )
439{
440  $responseFormat = $requestFormat;
441}
442
443$service = new PwgServer();
444
445if (!is_null($requestFormat))
446{
447  $handler = null;
448  switch ($requestFormat)
449  {
450    case 'rest':
451      include_once(PHPWG_ROOT_PATH.'include/ws_protocols/rest_handler.php');
452      $handler = new PwgRestRequestHandler();
453      break;
454  }
455  $service->setHandler($requestFormat, $handler);
456}
457
458if (!is_null($responseFormat))
459{
460  $encoder = null;
461  switch ($responseFormat)
462  {
463    case 'rest':
464      include_once(PHPWG_ROOT_PATH.'include/ws_protocols/rest_encoder.php');
465      $encoder = new PwgRestEncoder();
466      break;
467    case 'php':
468      include_once(PHPWG_ROOT_PATH.'include/ws_protocols/php_encoder.php');
469      $encoder = new PwgSerialPhpEncoder();
470      break;
471    case 'json':
472      include_once(PHPWG_ROOT_PATH.'include/ws_protocols/json_encoder.php');
473      $encoder = new PwgJsonEncoder();
474      break;
475    case 'xmlrpc':
476      include_once(PHPWG_ROOT_PATH.'include/ws_protocols/xmlrpc_encoder.php');
477      $encoder = new PwgXmlRpcEncoder();
478      break;
479  }
480  $service->setEncoder($responseFormat, $encoder);
481}
482
483set_make_full_url();
484$service->run();
485
486?>
Note: See TracBrowser for help on using the repository browser.