source: branches/2.2/ws.php @ 11371

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

bug 2345 fixed: ability to update the rank of a photo for an existing
category. I haven't modified pwg.images.setInfo, I've just added a new
method pwg.images.setRank which does this very specific job.

  • Property svn:eol-style set to LF
File size: 16.8 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(
147    'pwg.images.setRank',
148    'ws_images_setRank',
149    array(
150      'image_id' => array(),
151      'category_id' => array(),
152      'rank' => array(),
153      ),
154    'sets the rank of a photo for a given album (POST method only, for admins)'
155    );
156 
157  $service->addMethod('pwg.session.getStatus', 'ws_session_getStatus', null, '' );
158  $service->addMethod('pwg.session.login', 'ws_session_login',
159    array('username', 'password'),
160    'POST method only' );
161  $service->addMethod('pwg.session.logout', 'ws_session_logout', null, '');
162
163  $service->addMethod('pwg.tags.getList', 'ws_tags_getList',
164    array('sort_by_counter' => array('default' =>false) ),
165    'retrieves a list of available tags');
166  $service->addMethod('pwg.tags.getImages', 'ws_tags_getImages',
167      array(
168        'tag_id'=>array('default'=>null, 'flags'=>WS_PARAM_FORCE_ARRAY ),
169        'tag_url_name'=>array('default'=>null, 'flags'=>WS_PARAM_FORCE_ARRAY ),
170        'tag_name'=>array('default'=>null, 'flags'=>WS_PARAM_FORCE_ARRAY ),
171        'tag_mode_and'=>array('default'=>false),
172        'per_page' => array('default'=>100, 'maxValue'=>$conf['ws_max_images_per_page']),
173        'page' => array('default'=>0),
174        'order' => array('default'=>null),
175        'f_min_rate' => array( 'default'=> null ),
176        'f_max_rate' => array( 'default'=> null ),
177        'f_min_hit' => array( 'default'=> null ),
178        'f_max_hit' => array( 'default'=> null ),
179        'f_min_date_available' => array( 'default'=> null ),
180        'f_max_date_available' => array( 'default'=> null ),
181        'f_min_date_created' => array( 'default'=> null ),
182        'f_max_date_created' => array( 'default'=> null ),
183        'f_min_ratio' => array( 'default'=> null ),
184        'f_max_ratio' => array( 'default'=> null ),
185        'f_with_thumbnail' => array( 'default'=> false ),
186      ),
187      'Returns elements for the corresponding tags. Note that tag_id, tag_url_name, tag_name an be arrays. Fill at least one of them. '
188    );
189
190  $service->addMethod(
191    'pwg.images.addChunk',
192    'ws_images_add_chunk',
193    array(
194      'data' => array(),
195      'original_sum' => array(),
196      'type' => array(),
197      'position' => array(),
198      ),
199    'POST method only. For admin only.'
200    );
201
202  $service->addMethod(
203    'pwg.images.addFile',
204    'ws_images_addFile',
205    array(
206      'image_id' => array(),
207      'type' => array(),
208      'sum' => array(),
209      ),
210    'Add or update a file for an existing photo. pwg.images.addChunk must have been called  before (maybe several times)'
211    );
212
213
214  $service->addMethod(
215    'pwg.images.add',
216    'ws_images_add',
217    array(
218      'file_sum' => array(),
219      'thumbnail_sum' => array(),
220      'high_sum' => array('default' => null),
221      'original_sum' => array(),
222      'original_filename' => array('default' => null),
223      'name' => array('default' => null),
224      'author' => array('default' => null),
225      'date_creation' => array('default' => null),
226      'comment' => array('default' => null),
227      'categories' => array('default' => null),
228      'tag_ids' => array('default' => null),
229      'level' => array(
230        'default' => 0,
231        'maxValue' => $conf['available_permission_levels']
232        ),
233      ),
234    'POST method only.
235<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.'
236    );
237
238  $service->addMethod(
239    'pwg.images.addSimple',
240    'ws_images_addSimple',
241    array(
242      'category' => array('default' => null),
243      'name' => array('default' => null),
244      'author' => array('default' => null),
245      'comment' => array('default' => null),
246      'level' => array(
247        'default' => 0,
248        'maxValue' => $conf['available_permission_levels']
249        ),
250      'tags' => array('default' => null),
251      'image_id' => array('default' => null),
252      ),
253    '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.'
254    );
255
256  $service->addMethod(
257    'pwg.images.delete',
258    'ws_images_delete',
259    array(
260      'image_id'=>array('default'=>0),
261      'pwg_token' => array('default' => null),
262      ),
263    'Delete photos. You can give several image_ids, comma separated'
264    );
265
266  $service->addMethod(
267    'pwg.categories.getAdminList',
268    'ws_categories_getAdminList',
269    array(),
270    'administration method only'
271    );
272
273  $service->addMethod(
274    'pwg.categories.add',
275    'ws_categories_add',
276    array(
277      'name' => array(),
278      'parent' => array('default' => null),
279      ),
280    'administration method only'
281    );
282
283  $service->addMethod(
284    'pwg.categories.delete',
285    'ws_categories_delete',
286    array(
287      'category_id'=>array('default'=>0),
288      'pwg_token' => array('default' => null),
289      'photo_deletion_mode' => array('default' => 'delete_orphans'),
290      ),
291    'Delete categories. You can give several category_ids, comma separated.
292<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)'
293    );
294
295  $service->addMethod(
296    'pwg.categories.move',
297    'ws_categories_move',
298    array(
299      'category_id'=>array('default'=>0),
300      'parent'=>array('default'=>0),
301      'pwg_token' => array('default' => null),
302      ),
303    '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.'
304    );
305 
306  $service->addMethod(
307    'pwg.tags.getAdminList',
308    'ws_tags_getAdminList',
309    array(),
310    'administration method only'
311    );
312
313  $service->addMethod(
314    'pwg.tags.add',
315    'ws_tags_add',
316    array(
317      'name' => array(),
318      ),
319    'administration method only'
320    );
321
322  $service->addMethod(
323    'pwg.images.exist',
324    'ws_images_exist',
325    array(
326      'md5sum_list'=> array('default' => null),
327      'filename_list' => array('default' => null),
328      ),
329    'check existence of a photo list'
330    );
331
332  $service->addMethod(
333    'pwg.images.checkFiles',
334    'ws_images_checkFiles',
335    array(
336      'image_id' => array(),
337      'thumbnail_sum' => array('default' => null),
338      'file_sum' => array('default' => null),
339      'high_sum' => array('default' => null),
340      ),
341    '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"'
342    );
343
344  $service->addMethod(
345    'pwg.images.checkUpload',
346    'ws_images_checkUpload',
347    null,
348    'check if Piwigo is ready for upload'
349    );
350
351  $service->addMethod(
352    'pwg.images.setInfo',
353    'ws_images_setInfo',
354    array(
355      'image_id' => array(),
356
357      'name' => array('default' => null),
358      'author' => array('default' => null),
359      'date_creation' => array('default' => null),
360      'comment' => array('default' => null),
361      'categories' => array('default' => null),
362      'tag_ids' => array('default' => null),
363      'level' => array(
364        'default' => null,
365        'maxValue' => $conf['available_permission_levels']
366        ),
367      'single_value_mode' => array('default' => 'fill_if_empty'),
368      'multiple_value_mode' => array('default' => 'append'),
369      ),
370    'POST method only. Admin only
371<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.
372<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
373<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'
374    );
375
376  $service->addMethod(
377    'pwg.categories.setInfo',
378    'ws_categories_setInfo',
379    array(
380      'category_id' => array(),
381
382      'name' => array('default' => null),
383      'comment' => array('default' => null),
384      ),
385    'POST method only.'
386    );
387 
388  $service->addMethod(
389    'pwg.plugins.getList',
390    'ws_plugins_getList',
391    array(),
392    'get the list of plugin with id, name, version, state and description
393<br>administration status required'
394    );
395
396  $service->addMethod(
397    'pwg.plugins.performAction',
398    'ws_plugins_performAction',
399    array(
400      'action' => array('default' => null),
401      'plugin' => array('default' => null),
402      'pwg_token' => array('default' => null),
403      ),
404    'install/activate/deactivate/uninstall/delete a plugin
405<br>administration status required'
406    );
407
408  $service->addMethod(
409    'pwg.themes.performAction',
410    'ws_themes_performAction',
411    array(
412      'action' => array('default' => null),
413      'themes' => array('default' => null),
414      'pwg_token' => array('default' => null),
415      ),
416    'activate/deactivate/delete/set_default a theme<br>administration status required'
417    );
418}
419
420add_event_handler('ws_add_methods', 'ws_addDefaultMethods');
421
422
423add_event_handler('ws_invoke_allowed', 'ws_isInvokeAllowed', EVENT_HANDLER_PRIORITY_NEUTRAL, 3);
424
425$requestFormat = null;
426$responseFormat = null;
427
428if ( isset($_GET['format']) )
429{
430  $responseFormat = $_GET['format'];
431}
432
433if ( isset($HTTP_RAW_POST_DATA) )
434{
435  $HTTP_RAW_POST_DATA = trim($HTTP_RAW_POST_DATA);
436  if ( strncmp($HTTP_RAW_POST_DATA, '<?xml', 5) == 0 )
437  {
438  }
439  else
440  {
441    $requestFormat = "json";
442  }
443}
444else
445{
446  $requestFormat = "rest";
447}
448
449if ( !isset($responseFormat) and isset($requestFormat) )
450{
451  $responseFormat = $requestFormat;
452}
453
454$service = new PwgServer();
455
456if (!is_null($requestFormat))
457{
458  $handler = null;
459  switch ($requestFormat)
460  {
461    case 'rest':
462      include_once(PHPWG_ROOT_PATH.'include/ws_protocols/rest_handler.php');
463      $handler = new PwgRestRequestHandler();
464      break;
465  }
466  $service->setHandler($requestFormat, $handler);
467}
468
469if (!is_null($responseFormat))
470{
471  $encoder = null;
472  switch ($responseFormat)
473  {
474    case 'rest':
475      include_once(PHPWG_ROOT_PATH.'include/ws_protocols/rest_encoder.php');
476      $encoder = new PwgRestEncoder();
477      break;
478    case 'php':
479      include_once(PHPWG_ROOT_PATH.'include/ws_protocols/php_encoder.php');
480      $encoder = new PwgSerialPhpEncoder();
481      break;
482    case 'json':
483      include_once(PHPWG_ROOT_PATH.'include/ws_protocols/json_encoder.php');
484      $encoder = new PwgJsonEncoder();
485      break;
486    case 'xmlrpc':
487      include_once(PHPWG_ROOT_PATH.'include/ws_protocols/xmlrpc_encoder.php');
488      $encoder = new PwgXmlRpcEncoder();
489      break;
490  }
491  $service->setEncoder($responseFormat, $encoder);
492}
493
494set_make_full_url();
495$service->run();
496
497?>
Note: See TracBrowser for help on using the repository browser.