source: trunk/ws.php @ 8273

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

feature 2084 added: new method pwg.plugins.getList and pwg.plugins.performAction

  • Property svn:eol-style set to LF
File size: 15.8 KB
RevLine 
[1698]1<?php
2// +-----------------------------------------------------------------------+
[2297]3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
[5196]5// | Copyright(C) 2008-2010 Piwigo Team                  http://piwigo.org |
[2297]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// +-----------------------------------------------------------------------+
[1698]23
24define ('PHPWG_ROOT_PATH', './');
25
26include_once(PHPWG_ROOT_PATH.'include/common.inc.php');
[2325]27check_status(ACCESS_FREE);
[1698]28include_once(PHPWG_ROOT_PATH.'include/ws_core.inc.php');
29
[1781]30if ( !$conf['allow_web_services'] )
31{
32  page_forbidden('Web services are disabled');
33}
34
[1768]35/**
36 * event handler that registers standard methods with the web service
37 */
[1698]38function ws_addDefaultMethods( $arr )
39{
40  include_once(PHPWG_ROOT_PATH.'include/ws_functions.inc.php');
[1849]41  global $conf, $user;
[1698]42  $service = &$arr[0];
43  $service->addMethod('pwg.getVersion', 'ws_getVersion', null,
44      'retrieves the PWG version');
45
[2435]46  $service->addMethod('pwg.caddie.add', 'ws_caddie_add',
[2429]47      array(
48        'image_id'=> array( 'flags'=>WS_PARAM_FORCE_ARRAY ),
49      ),
50      'adds the elements to the caddie');
51
[1698]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),
[1781]56        'per_page' => array('default'=>100, 'maxValue'=>$conf['ws_max_images_per_page']),
[1698]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.
[3185]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,...)'
[1698]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
[1849]84  $service->addMethod('pwg.images.addComment', 'ws_images_addComment',
85      array(
86        'image_id' => array(),
[2029]87        'author' => array( 'default' => is_a_guest()? 'guest':$user['username']),
[1849]88        'content' => array(),
89        'key' => array(),
90      ),
91      'add a comment to an image' );
92
[1698]93  $service->addMethod('pwg.images.getInfo', 'ws_images_getInfo',
[1849]94      array(
95        'image_id' => array(),
96        'comments_page' => array('default'=>0 ),
[2435]97        'comments_per_page' => array(
98              'default' => $conf['nb_comment_page'],
[1849]99              'maxValue' => 2*$conf['nb_comment_page'],
100            ),
101      ),
[1698]102      'retrieves information about the given photo' );
103
[2435]104  $service->addMethod('pwg.images.rate', 'ws_images_rate',
105      array(
106        'image_id' => array(),
107        'rate' =>     array(),
108      ),
109      'rate the image' );
110
[1837]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    );
[2516]131
[2463]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']),
[2413]138      ),
[4513]139    'sets the privacy levels for the images (POST method only)'
[2463]140    );
[1837]141
[1698]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),
[1781]157        'per_page' => array('default'=>100, 'maxValue'=>$conf['ws_max_images_per_page']),
[1698]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    );
[2463]174
175  $service->addMethod(
[3193]176    'pwg.images.addChunk',
177    'ws_images_add_chunk',
178    array(
179      'data' => array(),
180      'original_sum' => array(),
181      'type' => array(),
182      'position' => array(),
183      ),
184    'POST method only. For admin only.'
185    );
186
187  $service->addMethod(
[4348]188    'pwg.images.addFile',
189    'ws_images_addFile',
190    array(
191      'image_id' => array(),
192      'type' => array(),
193      'sum' => array(),
194      ),
195    'Add or update a file for an existing photo. pwg.images.addChunk must have been called  before (maybe several times)'
196    );
197
198
199  $service->addMethod(
[2463]200    'pwg.images.add',
201    'ws_images_add',
202    array(
[2569]203      'file_sum' => array(),
204      'thumbnail_sum' => array(),
[2670]205      'high_sum' => array('default' => null),
[3065]206      'original_sum' => array(),
[4911]207      'original_filename' => array('default' => null),
[2569]208      'name' => array('default' => null),
209      'author' => array('default' => null),
210      'date_creation' => array('default' => null),
211      'comment' => array('default' => null),
212      'categories' => array('default' => null),
213      'tag_ids' => array('default' => null),
214      'level' => array(
215        'default' => 0,
216        'maxValue' => $conf['available_permission_levels']
217        ),
[2463]218      ),
[2569]219    'POST method only.
[3185]220<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.'
[2463]221    );
[2563]222
223  $service->addMethod(
[8249]224    'pwg.images.addSimple',
225    'ws_images_addSimple',
226    array(
227      'category' => array('default' => null),
228      'name' => array('default' => null),
229      'author' => array('default' => null),
230      'comment' => array('default' => null),
231      'level' => array(
232        'default' => 0,
233        'maxValue' => $conf['available_permission_levels']
234        ),
235      'tags' => array('default' => null),
236      ),
237    '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.'
238    );
[8266]239
[8249]240  $service->addMethod(
[8266]241    'pwg.images.delete',
242    'ws_images_delete',
243    array(
244      'image_id'=>array('default'=>0),
245      'pwg_token' => array('default' => null),
246      ),
247    'Delete photos. You can give several image_ids, comma separated'
248    );
249
250  $service->addMethod(
[2563]251    'pwg.categories.getAdminList',
252    'ws_categories_getAdminList',
253    array(),
254    'administration method only'
255    );
[2583]256
257  $service->addMethod(
258    'pwg.categories.add',
259    'ws_categories_add',
260    array(
261      'name' => array(),
262      'parent' => array('default' => null),
263      ),
264    'administration method only'
265    );
[2584]266
267  $service->addMethod(
[8266]268    'pwg.categories.delete',
269    'ws_categories_delete',
270    array(
271      'category_id'=>array('default'=>0),
272      'pwg_token' => array('default' => null),
273      'photo_deletion_mode' => array('default' => 'delete_orphans'),
274      ),
275    'Delete categories. You can give several category_ids, comma separated.
276<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)'
277    );
278
279  $service->addMethod(
[8272]280    'pwg.categories.move',
281    'ws_categories_move',
282    array(
283      'category_id'=>array('default'=>0),
284      'parent'=>array('default'=>0),
285      'pwg_token' => array('default' => null),
286      ),
287    '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.'
288    );
289 
290  $service->addMethod(
[2584]291    'pwg.tags.getAdminList',
292    'ws_tags_getAdminList',
293    array(),
294    'administration method only'
295    );
[2634]296
297  $service->addMethod(
298    'pwg.tags.add',
299    'ws_tags_add',
300    array(
301      'name' => array(),
302      ),
303    'administration method only'
304    );
[2683]305
306  $service->addMethod(
307    'pwg.images.exist',
308    'ws_images_exist',
309    array(
[4954]310      'md5sum_list'=> array('default' => null),
311      'filename_list' => array('default' => null),
[2683]312      ),
313    'check existence of a photo list'
314    );
[2919]315
316  $service->addMethod(
[4347]317    'pwg.images.checkFiles',
318    'ws_images_checkFiles',
319    array(
320      'image_id' => array(),
321      'thumbnail_sum' => array('default' => null),
322      'file_sum' => array('default' => null),
323      'high_sum' => array('default' => null),
324      ),
325    '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"'
326    );
327
328  $service->addMethod(
[6049]329    'pwg.images.checkUpload',
330    'ws_images_checkUpload',
331    null,
332    'check if Piwigo is ready for upload'
333    );
334
335  $service->addMethod(
[2919]336    'pwg.images.setInfo',
337    'ws_images_setInfo',
338    array(
339      'image_id' => array(),
[4513]340
[2919]341      'name' => array('default' => null),
342      'author' => array('default' => null),
343      'date_creation' => array('default' => null),
344      'comment' => array('default' => null),
345      'categories' => array('default' => null),
346      'tag_ids' => array('default' => null),
347      'level' => array(
348        'default' => 0,
349        'maxValue' => $conf['available_permission_levels']
350        ),
[4460]351      'single_value_mode' => array('default' => 'fill_if_empty'),
352      'multiple_value_mode' => array('default' => 'append'),
[2919]353      ),
354    'POST method only. Admin only
[4460]355<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.
356<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
357<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'
[2919]358    );
[4513]359
[3454]360  $service->addMethod(
361    'pwg.categories.setInfo',
362    'ws_categories_setInfo',
363    array(
364      'category_id' => array(),
[4513]365
[3454]366      'name' => array('default' => null),
367      'comment' => array('default' => null),
368      ),
369    'POST method only.'
370    );
[8273]371 
372  $service->addMethod(
373    'pwg.plugins.getList',
374    'ws_plugins_getList',
375    array(),
376    'get the list of plugin with id, name, version, state and description
377<br>administration status required'
378    );
379
380  $service->addMethod(
381    'pwg.plugins.performAction',
382    'ws_plugins_performAction',
383    array(
384      'action' => array('default' => null),
385      'plugin' => array('default' => null),
386      'pwg_token' => array('default' => null),
387      ),
388    'install/activate/deactivate/uninstall/delete a plugin
389<br>administration status required'
390    );
[1698]391}
392
[1768]393add_event_handler('ws_add_methods', 'ws_addDefaultMethods');
[1698]394
[1768]395
396add_event_handler('ws_invoke_allowed', 'ws_isInvokeAllowed', EVENT_HANDLER_PRIORITY_NEUTRAL, 3);
397
[1698]398$requestFormat = null;
399$responseFormat = null;
400
401if ( isset($_GET['format']) )
402{
403  $responseFormat = $_GET['format'];
404}
405
406if ( isset($HTTP_RAW_POST_DATA) )
407{
408  $HTTP_RAW_POST_DATA = trim($HTTP_RAW_POST_DATA);
409  if ( strncmp($HTTP_RAW_POST_DATA, '<?xml', 5) == 0 )
410  {
411  }
412  else
413  {
414    $requestFormat = "json";
415  }
416}
417else
418{
419  $requestFormat = "rest";
420}
421
422if ( !isset($responseFormat) and isset($requestFormat) )
423{
424  $responseFormat = $requestFormat;
425}
426
427$service = new PwgServer();
428
429if (!is_null($requestFormat))
430{
431  $handler = null;
432  switch ($requestFormat)
433  {
434    case 'rest':
435      include_once(PHPWG_ROOT_PATH.'include/ws_protocols/rest_handler.php');
436      $handler = new PwgRestRequestHandler();
437      break;
438  }
439  $service->setHandler($requestFormat, $handler);
440}
441
442if (!is_null($responseFormat))
443{
444  $encoder = null;
445  switch ($responseFormat)
446  {
447    case 'rest':
448      include_once(PHPWG_ROOT_PATH.'include/ws_protocols/rest_encoder.php');
449      $encoder = new PwgRestEncoder();
450      break;
451    case 'php':
452      include_once(PHPWG_ROOT_PATH.'include/ws_protocols/php_encoder.php');
453      $encoder = new PwgSerialPhpEncoder();
454      break;
455    case 'json':
456      include_once(PHPWG_ROOT_PATH.'include/ws_protocols/json_encoder.php');
457      $encoder = new PwgJsonEncoder();
458      break;
459    case 'xmlrpc':
460      include_once(PHPWG_ROOT_PATH.'include/ws_protocols/xmlrpc_encoder.php');
461      $encoder = new PwgXmlRpcEncoder();
462      break;
463  }
464  $service->setEncoder($responseFormat, $encoder);
465}
466
[1750]467set_make_full_url();
[1698]468$service->run();
469
470?>
Note: See TracBrowser for help on using the repository browser.