dolibarr 21.0.0-alpha
api.class.php
1<?php
2/* Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
3 * Copyright (C) 2016 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2020 Frédéric France <frederic.france@netlogic.fr>
5 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
21use Luracast\Restler\Restler;
22use Luracast\Restler\Defaults;
23
24require_once DOL_DOCUMENT_ROOT.'/user/class/user.class.php';
25
30{
34 protected $db;
35
39 public $r;
40
48 public function __construct($db, $cachedir = '', $refreshCache = false)
49 {
50 global $conf, $dolibarr_main_url_root;
51
52 if (empty($cachedir)) {
53 $cachedir = $conf->api->dir_temp;
54 }
55 Defaults::$cacheDirectory = $cachedir;
56
57 $this->db = $db;
58 $production_mode = (!getDolGlobalString('API_PRODUCTION_MODE') ? false : true);
59 $this->r = new Restler($production_mode, $refreshCache);
60
61 $urlwithouturlroot = preg_replace('/'.preg_quote(DOL_URL_ROOT, '/').'$/i', '', trim($dolibarr_main_url_root));
62 $urlwithroot = $urlwithouturlroot.DOL_URL_ROOT; // This is to use external domain name found into config file
63
64 $urlwithouturlrootautodetect = preg_replace('/'.preg_quote(DOL_URL_ROOT, '/').'$/i', '', trim(DOL_MAIN_URL_ROOT));
65 $urlwithrootautodetect = $urlwithouturlroot.DOL_URL_ROOT; // This is to use local domain autodetected by dolibarr from url
66
67 $this->r->setBaseUrls($urlwithouturlroot, $urlwithouturlrootautodetect);
68 $this->r->setAPIVersion(1);
69 //$this->r->setSupportedFormats('json');
70 //$this->r->setSupportedFormats('jsonFormat');
71 }
72
73 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
82 protected function _checkValForAPI($field, $value, $object)
83 {
84 // phpcs:enable
85 if (!is_array($value)) {
86 // Sanitize the value using its type declared into ->fields of $object
87 if (!empty($object->fields) && !empty($object->fields[$field]) && !empty($object->fields[$field]['type'])) {
88 if (strpos($object->fields[$field]['type'], 'int') || strpos($object->fields[$field]['type'], 'double') || in_array($object->fields[$field]['type'], array('real', 'price', 'stock'))) {
89 return sanitizeVal($value, 'int');
90 }
91 if ($object->fields[$field]['type'] == 'html') {
92 return sanitizeVal($value, 'restricthtml');
93 }
94 if ($object->fields[$field]['type'] == 'select') {
95 // Check values are in the list of possible 'options'
96 // TODO
97 }
98 if ($object->fields[$field]['type'] == 'sellist' || $object->fields[$field]['type'] == 'checkbox') {
99 // TODO
100 }
101 if ($object->fields[$field]['type'] == 'boolean' || $object->fields[$field]['type'] == 'radio') {
102 // TODO
103 }
104 if ($object->fields[$field]['type'] == 'email') {
105 return sanitizeVal($value, 'email');
106 }
107 if ($object->fields[$field]['type'] == 'password') {
108 return sanitizeVal($value, 'none');
109 }
110 // Others will use 'alphanohtml'
111 }
112
113 if (in_array($field, array('note', 'note_private', 'note_public', 'desc', 'description'))) {
114 return sanitizeVal($value, 'restricthtml');
115 } else {
116 return sanitizeVal($value, 'alphanohtml');
117 }
118 } else { // Example when $field = 'extrafields' and $value = content of $object->array_options
119 $newarrayvalue = array();
120 foreach ($value as $tmpkey => $tmpvalue) {
121 $newarrayvalue[$tmpkey] = $this->_checkValForAPI($tmpkey, $tmpvalue, $object);
122 }
123
124 return $newarrayvalue;
125 }
126 }
127
128 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
136 protected function _filterObjectProperties($object, $properties)
137 {
138 // phpcs:enable
139 // If properties is empty, we return all properties
140 if (empty($properties)) {
141 return $object;
142 }
143
144 // Copy of exploded array for efficiency
145 $arr_properties = explode(',', $properties);
146 $magic_properties = array();
147 $real_properties = get_object_vars($object);
148
149 // Unsetting real properties may unset magic properties.
150 // We keep a copy of the requested magic properties
151 foreach ($arr_properties as $key) {
152 if (!array_key_exists($key, $real_properties)) {
153 // Not a real property,
154 // check if $key is a magic property (we want to keep '$obj->$key')
155 if (property_exists($object, $key) && isset($object->$key)) {
156 $magic_properties[$key] = $object->$key;
157 }
158 }
159 }
160
161 // Filter real properties (may indirectly unset magic properties)
162 foreach (get_object_vars($object) as $key => $value) {
163 if (!in_array($key, $arr_properties)) {
164 unset($object->$key);
165 }
166 }
167
168 // Restore the magic properties
169 foreach ($magic_properties as $key => $value) {
170 $object->$key = $value;
171 }
172
173 return $object;
174 }
175
176 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
183 protected function _cleanObjectDatas($object)
184 {
185 // phpcs:enable
186 // Remove $db object property for object
187 unset($object->db);
188 unset($object->isextrafieldmanaged);
189 unset($object->ismultientitymanaged);
190 unset($object->restrictiononfksoc);
191 unset($object->table_rowid);
192 unset($object->pass);
193 unset($object->pass_indatabase);
194
195 // Remove linkedObjects. We should already have and keep only linkedObjectsIds that avoid huge responses
196 unset($object->linkedObjects);
197 //unset($object->lines[$i]->linked_objects); // This is the array to create linked object during create
198
199 unset($object->fields);
200 unset($object->oldline);
201
202 unset($object->error);
203 unset($object->errors);
204 unset($object->errorhidden);
205
206 unset($object->ref_previous);
207 unset($object->ref_next);
208 unset($object->imgWidth);
209 unset($object->imgHeight);
210 unset($object->barcode_type_code);
211 unset($object->barcode_type_label);
212
213 unset($object->mode_reglement); // We use mode_reglement_id now
214 unset($object->cond_reglement); // We use cond_reglement_id now
215 unset($object->note); // We use note_public or note_private now
216 unset($object->contact); // We use contact_id now
217 unset($object->thirdparty); // We use thirdparty_id or fk_soc or socid now
218
219 unset($object->projet); // Should be fk_project
220 unset($object->project); // Should be fk_project
221 unset($object->fk_projet); // Should be fk_project
222 unset($object->author); // Should be fk_user_author
223 unset($object->timespent_old_duration);
224 unset($object->timespent_id);
225 unset($object->timespent_duration);
226 unset($object->timespent_date);
227 unset($object->timespent_datehour);
228 unset($object->timespent_withhour);
229 unset($object->timespent_fk_user);
230 unset($object->timespent_note);
231 unset($object->fk_delivery_address);
232 unset($object->model_pdf);
233 unset($object->sendtoid);
234 unset($object->name_bis);
235 unset($object->newref);
236 unset($object->oldref);
237 unset($object->alreadypaid);
238 unset($object->openid);
239 unset($object->fk_bank);
240 unset($object->showphoto_on_popup);
241 unset($object->nb);
242 unset($object->nbphoto);
243 unset($object->output);
244 unset($object->tpl);
245 //unset($object->libelle);
246
247 unset($object->stats_propale);
248 unset($object->stats_commande);
249 unset($object->stats_contrat);
250 unset($object->stats_facture);
251 unset($object->stats_commande_fournisseur);
252 unset($object->stats_reception);
253 unset($object->stats_mrptoconsume);
254 unset($object->stats_mrptoproduce);
255
256 unset($object->origin_object);
257 unset($object->origin);
258 unset($object->element);
259 unset($object->element_for_permission);
260 unset($object->fk_element);
261 unset($object->table_element);
262 unset($object->table_element_line);
263 unset($object->class_element_line);
264 unset($object->picto);
265 unset($object->linked_objects);
266
267 unset($object->fieldsforcombobox);
268 unset($object->regeximgext);
269
270 unset($object->skip_update_total);
271 unset($object->context);
272 unset($object->next_prev_filter);
273
274 unset($object->region);
275 unset($object->region_code);
276 unset($object->country);
277 unset($object->state);
278 unset($object->state_code);
279 unset($object->fk_departement);
280 unset($object->departement);
281 unset($object->departement_code);
282
283 unset($object->libelle_statut);
284 unset($object->libelle_paiement);
285 unset($object->labelStatus);
286 unset($object->labelStatusShort);
287
288 unset($object->actionmsg);
289 unset($object->actionmsg2);
290
291 unset($object->prefix_comm);
292
293 if (!isset($object->table_element) || $object->table_element != 'ticket') {
294 unset($object->comments);
295 }
296
297 // Remove the $oldcopy property because it is not supported by the JSON
298 // encoder. The following error is generated when trying to serialize
299 // it: "Error encoding/decoding JSON: Type is not supported"
300 // Note: Event if this property was correctly handled by the JSON
301 // encoder, it should be ignored because keeping it would let the API
302 // have a very strange behavior: calling PUT and then GET on the same
303 // resource would give different results:
304 // PUT /objects/{id} -> returns object with oldcopy = previous version of the object
305 // GET /objects/{id} -> returns object with oldcopy empty
306 unset($object->oldcopy);
307
308 // If object has lines, remove $db property
309 if (isset($object->lines) && is_array($object->lines) && count($object->lines) > 0) {
310 $nboflines = count($object->lines);
311 for ($i = 0; $i < $nboflines; $i++) {
312 $this->_cleanObjectDatas($object->lines[$i]);
313
314 unset($object->lines[$i]->contact);
315 unset($object->lines[$i]->contact_id);
316 unset($object->lines[$i]->country);
317 unset($object->lines[$i]->country_id);
318 unset($object->lines[$i]->country_code);
319 unset($object->lines[$i]->mode_reglement_id);
320 unset($object->lines[$i]->mode_reglement_code);
321 unset($object->lines[$i]->mode_reglement);
322 unset($object->lines[$i]->cond_reglement_id);
323 unset($object->lines[$i]->cond_reglement_code);
324 unset($object->lines[$i]->cond_reglement);
325 unset($object->lines[$i]->fk_delivery_address);
326 unset($object->lines[$i]->fk_projet);
327 unset($object->lines[$i]->fk_project);
328 unset($object->lines[$i]->thirdparty);
329 unset($object->lines[$i]->user);
330 unset($object->lines[$i]->model_pdf);
331 unset($object->lines[$i]->note_public);
332 unset($object->lines[$i]->note_private);
333 unset($object->lines[$i]->fk_incoterms);
334 unset($object->lines[$i]->label_incoterms);
335 unset($object->lines[$i]->location_incoterms);
336 unset($object->lines[$i]->name);
337 unset($object->lines[$i]->lastname);
338 unset($object->lines[$i]->firstname);
339 unset($object->lines[$i]->civility_id);
340 unset($object->lines[$i]->fk_multicurrency);
341 unset($object->lines[$i]->multicurrency_code);
342 unset($object->lines[$i]->shipping_method_id);
343 }
344 }
345
346 if (!empty($object->thirdparty) && is_object($object->thirdparty)) {
347 $this->_cleanObjectDatas($object->thirdparty);
348 }
349
350 if (!empty($object->product) && is_object($object->product)) {
351 $this->_cleanObjectDatas($object->product);
352 }
353
354 return $object;
355 }
356
357 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
369 protected static function _checkAccessToResource($resource, $resource_id = 0, $dbtablename = '', $feature2 = '', $dbt_keyfield = 'fk_soc', $dbt_select = 'rowid')
370 {
371 // phpcs:enable
372 // Features/modules to check
373 $featuresarray = array($resource);
374 if (preg_match('/&/', $resource)) {
375 $featuresarray = explode("&", $resource);
376 } elseif (preg_match('/\|/', $resource)) {
377 $featuresarray = explode("|", $resource);
378 }
379
380 // More subfeatures to check
381 if (!empty($feature2)) {
382 $feature2 = explode("|", $feature2);
383 }
384
385 return checkUserAccessToObject(DolibarrApiAccess::$user, $featuresarray, $resource_id, $dbtablename, $feature2, $dbt_keyfield, $dbt_select);
386 }
387
388 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
397 protected function _checkFilters($sqlfilters, &$error = '')
398 {
399 // phpcs:enable
400 $firstandlastparenthesis = 0;
401 return dolCheckFilters($sqlfilters, $error, $firstandlastparenthesis);
402 }
403
404 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
405 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
415 protected static function _forge_criteria_callback($matches)
416 {
417 return dolForgeCriteriaCallback($matches);
418 }
419}
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
Class for API REST v1.
Definition api.class.php:30
__construct($db, $cachedir='', $refreshCache=false)
Constructor.
Definition api.class.php:48
_filterObjectProperties($object, $properties)
Filter properties that will be returned on object.
static _checkAccessToResource($resource, $resource_id=0, $dbtablename='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid')
Check access by user to a given resource.
_checkFilters($sqlfilters, &$error='')
Return if a $sqlfilters parameter is valid Function no more used.
_checkValForAPI($field, $value, $object)
Check and convert a string depending on its type/name.
Definition api.class.php:82
_cleanObjectDatas($object)
Clean sensible object datas.
static _forge_criteria_callback($matches)
Function to forge a SQL criteria from a Generic filter string.
dolCheckFilters($sqlfilters, &$error='', &$parenthesislevel=0)
Return if a $sqlfilters parameter has a valid balance of parenthesis.
dolForgeCriteriaCallback($matches)
Function to forge a SQL criteria from a Dolibarr filter syntax string.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
sanitizeVal($out='', $check='alphanohtml', $filter=null, $options=null)
Return a sanitized or empty value after checking value against a rule.
checkUserAccessToObject($user, array $featuresarray, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='', $dbt_select='rowid', $parenttableforentity='')
Check that access by a given user to an object is ok.