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