dolibarr  x.y.z
api_contacts.class.php
1 <?php
2 /* Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
3  * Copyright (C) 2019 Frédéric France <frederic.france@netlogic.fr>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <https://www.gnu.org/licenses/>.
17  */
18 
19 use Luracast\Restler\RestException;
20 
21 //require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
22 //require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
23 
24 
31 class Contacts extends DolibarrApi
32 {
37  public static $FIELDS = array(
38  'lastname',
39  );
40 
44  public $contact;
45 
49  public function __construct()
50  {
51  global $db, $conf;
52  $this->db = $db;
53 
54  require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
55  require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
56 
57  $this->contact = new Contact($this->db);
58  }
59 
72  public function get($id, $includecount = 0, $includeroles = 0)
73  {
74  if (!DolibarrApiAccess::$user->rights->societe->contact->lire) {
75  throw new RestException(401, 'No permission to read contacts');
76  }
77 
78  if ($id === 0) {
79  $result = $this->contact->initAsSpecimen();
80  } else {
81  $result = $this->contact->fetch($id);
82  }
83 
84  if (!$result) {
85  throw new RestException(404, 'Contact not found');
86  }
87 
88  if (!DolibarrApi::_checkAccessToResource('contact', $this->contact->id, 'socpeople&societe')) {
89  throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
90  }
91 
92  if ($includecount) {
93  $this->contact->load_ref_elements();
94  }
95 
96  if ($includeroles) {
97  $this->contact->fetchRoles();
98  }
99 
100  if (isModEnabled('mailing')) {
101  $this->contact->getNoEmail();
102  }
103 
104  return $this->_cleanObjectDatas($this->contact);
105  }
106 
120  public function getByEmail($email, $includecount = 0, $includeroles = 0)
121  {
122  if (!DolibarrApiAccess::$user->rights->societe->contact->lire) {
123  throw new RestException(401, 'No permission to read contacts');
124  }
125 
126  if (empty($email)) {
127  $result = $this->contact->initAsSpecimen();
128  } else {
129  $result = $this->contact->fetch('', '', '', $email);
130  }
131 
132  if (!$result) {
133  throw new RestException(404, 'Contact not found');
134  }
135 
136  if (!DolibarrApi::_checkAccessToResource('contact', $this->contact->id, 'socpeople&societe')) {
137  throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
138  }
139 
140  if ($includecount) {
141  $this->contact->load_ref_elements();
142  }
143 
144  if ($includeroles) {
145  $this->contact->fetchRoles();
146  }
147 
148  if (isModEnabled('mailing')) {
149  $this->contact->getNoEmail();
150  }
151 
152  return $this->_cleanObjectDatas($this->contact);
153  }
154 
173  public function index($sortfield = "t.rowid", $sortorder = 'ASC', $limit = 100, $page = 0, $thirdparty_ids = '', $category = 0, $sqlfilters = '', $includecount = 0, $includeroles = 0)
174  {
175  global $db, $conf;
176 
177  $obj_ret = array();
178 
179  if (!DolibarrApiAccess::$user->rights->societe->contact->lire) {
180  throw new RestException(401, 'No permission to read contacts');
181  }
182 
183  // case of external user, $thirdparty_ids param is ignored and replaced by user's socid
184  $socids = DolibarrApiAccess::$user->socid ? DolibarrApiAccess::$user->socid : $thirdparty_ids;
185 
186  // If the internal user must only see his customers, force searching by him
187  $search_sale = 0;
188  if (!DolibarrApiAccess::$user->rights->societe->client->voir && !$socids) {
189  $search_sale = DolibarrApiAccess::$user->id;
190  }
191 
192  $sql = "SELECT t.rowid";
193  $sql .= " FROM ".MAIN_DB_PREFIX."socpeople as t";
194  if ($category > 0) {
195  $sql .= ", ".MAIN_DB_PREFIX."categorie_contact as c";
196  }
197  $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."socpeople_extrafields as te ON te.fk_object = t.rowid";
198  if ((!DolibarrApiAccess::$user->rights->societe->client->voir && !$socids) || $search_sale > 0) {
199  // We need this table joined to the select in order to filter by sale
200  $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
201  }
202  $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s ON t.fk_soc = s.rowid";
203  $sql .= ' WHERE t.entity IN ('.getEntity('contact').')';
204  if ($socids) {
205  $sql .= " AND t.fk_soc IN (".$this->db->sanitize($socids).")";
206  }
207 
208  if ((!DolibarrApiAccess::$user->rights->societe->client->voir && !$socids) || $search_sale > 0) {
209  $sql .= " AND t.fk_soc = sc.fk_soc";
210  }
211  if ($search_sale > 0) {
212  $sql .= " AND s.rowid = sc.fk_soc"; // Join for the needed table to filter by sale
213  }
214  // Insert sale filter
215  if ($search_sale > 0) {
216  $sql .= " AND sc.fk_user = ".((int) $search_sale);
217  }
218 
219  // Select contacts of given category
220  if ($category > 0) {
221  $sql .= " AND c.fk_categorie = ".((int) $category);
222  $sql .= " AND c.fk_socpeople = t.rowid ";
223  }
224 
225  // Add sql filters
226  if ($sqlfilters) {
227  $errormessage = '';
228  if (!DolibarrApi::_checkFilters($sqlfilters, $errormessage)) {
229  throw new RestException(503, 'Error when validating parameter sqlfilters -> '.$errormessage);
230  }
231  $regexstring = '\‍(([^:\'\‍(\‍)]+:[^:\'\‍(\‍)]+:[^\‍(\‍)]+)\‍)';
232  $sql .= " AND (".preg_replace_callback('/'.$regexstring.'/', 'DolibarrApi::_forge_criteria_callback', $sqlfilters).")";
233  }
234 
235  $sql .= $this->db->order($sortfield, $sortorder);
236 
237  if ($limit) {
238  if ($page < 0) {
239  $page = 0;
240  }
241  $offset = $limit * $page;
242 
243  $sql .= $this->db->plimit($limit + 1, $offset);
244  }
245  $result = $this->db->query($sql);
246  if ($result) {
247  $num = $this->db->num_rows($result);
248  $min = min($num, ($limit <= 0 ? $num : $limit));
249  $i = 0;
250  while ($i < $min) {
251  $obj = $this->db->fetch_object($result);
252  $contact_static = new Contact($this->db);
253  if ($contact_static->fetch($obj->rowid)) {
254  $contact_static->fetchRoles();
255  if ($includecount) {
256  $contact_static->load_ref_elements();
257  }
258  if ($includeroles) {
259  $contact_static->fetchRoles();
260  }
261  if (isModEnabled('mailing')) {
262  $contact_static->getNoEmail();
263  }
264 
265  $obj_ret[] = $this->_cleanObjectDatas($contact_static);
266  }
267 
268  $i++;
269  }
270  } else {
271  throw new RestException(503, 'Error when retrieve contacts : '.$sql);
272  }
273  if (!count($obj_ret)) {
274  throw new RestException(404, 'Contacts not found');
275  }
276  return $obj_ret;
277  }
278 
285  public function post($request_data = null)
286  {
287  if (!DolibarrApiAccess::$user->rights->societe->contact->creer) {
288  throw new RestException(401, 'No permission to create/update contacts');
289  }
290  // Check mandatory fields
291  $result = $this->_validate($request_data);
292 
293  foreach ($request_data as $field => $value) {
294  $this->contact->$field = $value;
295  }
296  if ($this->contact->create(DolibarrApiAccess::$user) < 0) {
297  throw new RestException(500, "Error creating contact", array_merge(array($this->contact->error), $this->contact->errors));
298  }
299  if (isModEnabled('mailing') && !empty($this->contact->email) && isset($this->contact->no_email)) {
300  $this->contact->setNoEmail($this->contact->no_email);
301  }
302  return $this->contact->id;
303  }
304 
312  public function put($id, $request_data = null)
313  {
314  if (!DolibarrApiAccess::$user->rights->societe->contact->creer) {
315  throw new RestException(401, 'No permission to create/update contacts');
316  }
317 
318  $result = $this->contact->fetch($id);
319  if (!$result) {
320  throw new RestException(404, 'Contact not found');
321  }
322 
323  if (!DolibarrApi::_checkAccessToResource('contact', $this->contact->id, 'socpeople&societe')) {
324  throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
325  }
326 
327  foreach ($request_data as $field => $value) {
328  if ($field == 'id') {
329  continue;
330  }
331  $this->contact->$field = $value;
332  }
333 
334  if (isModEnabled('mailing') && !empty($this->contact->email) && isset($this->contact->no_email)) {
335  $this->contact->setNoEmail($this->contact->no_email);
336  }
337 
338  if ($this->contact->update($id, DolibarrApiAccess::$user, 1, 'update')) {
339  return $this->get($id);
340  }
341 
342  return false;
343  }
344 
351  public function delete($id)
352  {
353  if (!DolibarrApiAccess::$user->rights->societe->contact->supprimer) {
354  throw new RestException(401, 'No permission to delete contacts');
355  }
356  $result = $this->contact->fetch($id);
357  if (!$result) {
358  throw new RestException(404, 'Contact not found');
359  }
360 
361  if (!DolibarrApi::_checkAccessToResource('contact', $this->contact->id, 'socpeople&societe')) {
362  throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
363  }
364  $this->contact->oldcopy = clone $this->contact;
365  return $this->contact->delete();
366  }
367 
377  public function createUser($id, $request_data = null)
378  {
379  //if (!DolibarrApiAccess::$user->rights->user->user->creer) {
380  //throw new RestException(401);
381  //}
382 
383  if (!isset($request_data["login"])) {
384  throw new RestException(400, "login field missing");
385  }
386  if (!isset($request_data["password"])) {
387  throw new RestException(400, "password field missing");
388  }
389 
390  if (!DolibarrApiAccess::$user->rights->societe->contact->lire) {
391  throw new RestException(401, 'No permission to read contacts');
392  }
393  if (!DolibarrApiAccess::$user->rights->user->user->creer) {
394  throw new RestException(401, 'No permission to create user');
395  }
396 
397  $contact = new Contact($this->db);
398  $contact->fetch($id);
399  if ($contact->id <= 0) {
400  throw new RestException(404, 'Contact not found');
401  }
402 
403  if (!DolibarrApi::_checkAccessToResource('contact', $contact->id, 'socpeople&societe')) {
404  throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
405  }
406 
407  // Check mandatory fields
408  $login = $request_data["login"];
409  $password = $request_data["password"];
410  $useraccount = new User($this->db);
411  $result = $useraccount->create_from_contact($contact, $login, $password);
412  if ($result <= 0) {
413  throw new RestException(500, "User not created");
414  }
415  // password parameter not used in create_from_contact
416  $useraccount->setPassword($useraccount, $password);
417 
418  return $result;
419  }
420 
434  public function getCategories($id, $sortfield = "s.rowid", $sortorder = 'ASC', $limit = 0, $page = 0)
435  {
436  if (!DolibarrApiAccess::$user->rights->categorie->lire) {
437  throw new RestException(401);
438  }
439 
440  $categories = new Categorie($this->db);
441 
442  $result = $categories->getListForItem($id, 'contact', $sortfield, $sortorder, $limit, $page);
443 
444  if (empty($result)) {
445  throw new RestException(404, 'No category found');
446  }
447 
448  if ($result < 0) {
449  throw new RestException(503, 'Error when retrieve category list : '.$categories->error);
450  }
451 
452  return $result;
453  }
454 
468  public function addCategory($id, $category_id)
469  {
470  if (!DolibarrApiAccess::$user->rights->societe->contact->creer) {
471  throw new RestException(401, 'Insufficient rights');
472  }
473 
474  $result = $this->contact->fetch($id);
475  if (!$result) {
476  throw new RestException(404, 'Contact not found');
477  }
478  $category = new Categorie($this->db);
479  $result = $category->fetch($category_id);
480  if (!$result) {
481  throw new RestException(404, 'category not found');
482  }
483 
484  if (!DolibarrApi::_checkAccessToResource('contact', $this->contact->id)) {
485  throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
486  }
487  if (!DolibarrApi::_checkAccessToResource('category', $category->id)) {
488  throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
489  }
490 
491  $category->add_type($this->contact, 'contact');
492 
493  return $this->_cleanObjectDatas($this->contact);
494  }
495 
508  public function deleteCategory($id, $category_id)
509  {
510  if (!DolibarrApiAccess::$user->rights->societe->contact->creer) {
511  throw new RestException(401, 'Insufficient rights');
512  }
513 
514  $result = $this->contact->fetch($id);
515  if (!$result) {
516  throw new RestException(404, 'Contact not found');
517  }
518  $category = new Categorie($this->db);
519  $result = $category->fetch($category_id);
520  if (!$result) {
521  throw new RestException(404, 'category not found');
522  }
523 
524  if (!DolibarrApi::_checkAccessToResource('contact', $this->contact->id)) {
525  throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
526  }
527  if (!DolibarrApi::_checkAccessToResource('category', $category->id)) {
528  throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
529  }
530 
531  $category->del_type($this->contact, 'contact');
532 
533  return $this->_cleanObjectDatas($this->contact);
534  }
535 
536  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
543  protected function _cleanObjectDatas($object)
544  {
545  // phpcs:enable
546  $object = parent::_cleanObjectDatas($object);
547 
548  unset($object->total_ht);
549  unset($object->total_tva);
550  unset($object->total_localtax1);
551  unset($object->total_localtax2);
552  unset($object->total_ttc);
553 
554  unset($object->note);
555  unset($object->lines);
556  unset($object->thirdparty);
557 
558  return $object;
559  }
560 
568  private function _validate($data)
569  {
570  $contact = array();
571  foreach (Contacts::$FIELDS as $field) {
572  if (!isset($data[$field])) {
573  throw new RestException(400, "$field field missing");
574  }
575  $contact[$field] = $data[$field];
576  }
577 
578  return $contact;
579  }
580 }
Class to manage categories.
Class to manage contact/addresses.
addCategory($id, $category_id)
Add a category to a contact.
put($id, $request_data=null)
Update contact.
index($sortfield="t.rowid", $sortorder='ASC', $limit=100, $page=0, $thirdparty_ids='', $category=0, $sqlfilters='', $includecount=0, $includeroles=0)
List contacts.
_validate($data)
Validate fields before create or update object.
deleteCategory($id, $category_id)
Remove the link between a category and a contact.
createUser($id, $request_data=null)
Create an user account object from contact (external user)
post($request_data=null)
Create contact object.
getByEmail($email, $includecount=0, $includeroles=0)
Get properties of a contact object by Email.
getCategories($id, $sortfield="s.rowid", $sortorder='ASC', $limit=0, $page=0)
Get categories for a contact.
_cleanObjectDatas($object)
Clean sensible object datas.
__construct()
Constructor.
Class for API REST v1.
Definition: api.class.php:31
static _checkAccessToResource($resource, $resource_id=0, $dbtablename='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid')
Check access by user to a given resource.
Definition: api.class.php:283
_checkFilters($sqlfilters, &$error='')
Return if a $sqlfilters parameter is valid.
Definition: api.class.php:310
Class to manage Dolibarr users.
Definition: user.class.php:45
isModEnabled($module)
Is Dolibarr module enabled.
$conf db
API class for accounts.
Definition: inc.php:41