dolibarr  17.0.4
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  $sql .= forgeSQLFromUniversalSearchCriteria($sqlfilters, $errormessage);
229  if ($errormessage) {
230  throw new RestException(400, 'Error when validating parameter sqlfilters -> '.$errormessage);
231  }
232  }
233 
234  $sql .= $this->db->order($sortfield, $sortorder);
235 
236  if ($limit) {
237  if ($page < 0) {
238  $page = 0;
239  }
240  $offset = $limit * $page;
241 
242  $sql .= $this->db->plimit($limit + 1, $offset);
243  }
244  $result = $this->db->query($sql);
245  if ($result) {
246  $num = $this->db->num_rows($result);
247  $min = min($num, ($limit <= 0 ? $num : $limit));
248  $i = 0;
249  while ($i < $min) {
250  $obj = $this->db->fetch_object($result);
251  $contact_static = new Contact($this->db);
252  if ($contact_static->fetch($obj->rowid)) {
253  $contact_static->fetchRoles();
254  if ($includecount) {
255  $contact_static->load_ref_elements();
256  }
257  if ($includeroles) {
258  $contact_static->fetchRoles();
259  }
260  if (isModEnabled('mailing')) {
261  $contact_static->getNoEmail();
262  }
263 
264  $obj_ret[] = $this->_cleanObjectDatas($contact_static);
265  }
266 
267  $i++;
268  }
269  } else {
270  throw new RestException(503, 'Error when retrieve contacts : '.$sql);
271  }
272  if (!count($obj_ret)) {
273  throw new RestException(404, 'Contacts not found');
274  }
275  return $obj_ret;
276  }
277 
284  public function post($request_data = null)
285  {
286  if (!DolibarrApiAccess::$user->rights->societe->contact->creer) {
287  throw new RestException(401, 'No permission to create/update contacts');
288  }
289  // Check mandatory fields
290  $result = $this->_validate($request_data);
291 
292  foreach ($request_data as $field => $value) {
293  $this->contact->$field = $value;
294  }
295  if ($this->contact->create(DolibarrApiAccess::$user) < 0) {
296  throw new RestException(500, "Error creating contact", array_merge(array($this->contact->error), $this->contact->errors));
297  }
298  if (isModEnabled('mailing') && !empty($this->contact->email) && isset($this->contact->no_email)) {
299  $this->contact->setNoEmail($this->contact->no_email);
300  }
301  return $this->contact->id;
302  }
303 
311  public function put($id, $request_data = null)
312  {
313  if (!DolibarrApiAccess::$user->rights->societe->contact->creer) {
314  throw new RestException(401, 'No permission to create/update contacts');
315  }
316 
317  $result = $this->contact->fetch($id);
318  if (!$result) {
319  throw new RestException(404, 'Contact not found');
320  }
321 
322  if (!DolibarrApi::_checkAccessToResource('contact', $this->contact->id, 'socpeople&societe')) {
323  throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
324  }
325 
326  foreach ($request_data as $field => $value) {
327  if ($field == 'id') {
328  continue;
329  }
330  $this->contact->$field = $value;
331  }
332 
333  if (isModEnabled('mailing') && !empty($this->contact->email) && isset($this->contact->no_email)) {
334  $this->contact->setNoEmail($this->contact->no_email);
335  }
336 
337  if ($this->contact->update($id, DolibarrApiAccess::$user, 1, 'update')) {
338  return $this->get($id);
339  }
340 
341  return false;
342  }
343 
350  public function delete($id)
351  {
352  if (!DolibarrApiAccess::$user->rights->societe->contact->supprimer) {
353  throw new RestException(401, 'No permission to delete contacts');
354  }
355  $result = $this->contact->fetch($id);
356  if (!$result) {
357  throw new RestException(404, 'Contact not found');
358  }
359 
360  if (!DolibarrApi::_checkAccessToResource('contact', $this->contact->id, 'socpeople&societe')) {
361  throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
362  }
363  $this->contact->oldcopy = clone $this->contact;
364  return $this->contact->delete();
365  }
366 
376  public function createUser($id, $request_data = null)
377  {
378  //if (!DolibarrApiAccess::$user->rights->user->user->creer) {
379  //throw new RestException(401);
380  //}
381 
382  if (!isset($request_data["login"])) {
383  throw new RestException(400, "login field missing");
384  }
385  if (!isset($request_data["password"])) {
386  throw new RestException(400, "password field missing");
387  }
388 
389  if (!DolibarrApiAccess::$user->rights->societe->contact->lire) {
390  throw new RestException(401, 'No permission to read contacts');
391  }
392  if (!DolibarrApiAccess::$user->rights->user->user->creer) {
393  throw new RestException(401, 'No permission to create user');
394  }
395 
396  $contact = new Contact($this->db);
397  $contact->fetch($id);
398  if ($contact->id <= 0) {
399  throw new RestException(404, 'Contact not found');
400  }
401 
402  if (!DolibarrApi::_checkAccessToResource('contact', $contact->id, 'socpeople&societe')) {
403  throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
404  }
405 
406  // Check mandatory fields
407  $login = $request_data["login"];
408  $password = $request_data["password"];
409  $useraccount = new User($this->db);
410  $result = $useraccount->create_from_contact($contact, $login, $password);
411  if ($result <= 0) {
412  throw new RestException(500, "User not created");
413  }
414  // password parameter not used in create_from_contact
415  $useraccount->setPassword($useraccount, $password);
416 
417  return $result;
418  }
419 
433  public function getCategories($id, $sortfield = "s.rowid", $sortorder = 'ASC', $limit = 0, $page = 0)
434  {
435  if (!DolibarrApiAccess::$user->rights->categorie->lire) {
436  throw new RestException(401);
437  }
438 
439  $categories = new Categorie($this->db);
440 
441  $result = $categories->getListForItem($id, 'contact', $sortfield, $sortorder, $limit, $page);
442 
443  if (empty($result)) {
444  throw new RestException(404, 'No category found');
445  }
446 
447  if ($result < 0) {
448  throw new RestException(503, 'Error when retrieve category list : '.$categories->error);
449  }
450 
451  return $result;
452  }
453 
467  public function addCategory($id, $category_id)
468  {
469  if (!DolibarrApiAccess::$user->rights->societe->contact->creer) {
470  throw new RestException(401, 'Insufficient rights');
471  }
472 
473  $result = $this->contact->fetch($id);
474  if (!$result) {
475  throw new RestException(404, 'Contact not found');
476  }
477  $category = new Categorie($this->db);
478  $result = $category->fetch($category_id);
479  if (!$result) {
480  throw new RestException(404, 'category not found');
481  }
482 
483  if (!DolibarrApi::_checkAccessToResource('contact', $this->contact->id)) {
484  throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
485  }
486  if (!DolibarrApi::_checkAccessToResource('category', $category->id)) {
487  throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
488  }
489 
490  $category->add_type($this->contact, 'contact');
491 
492  return $this->_cleanObjectDatas($this->contact);
493  }
494 
507  public function deleteCategory($id, $category_id)
508  {
509  if (!DolibarrApiAccess::$user->rights->societe->contact->creer) {
510  throw new RestException(401, 'Insufficient rights');
511  }
512 
513  $result = $this->contact->fetch($id);
514  if (!$result) {
515  throw new RestException(404, 'Contact not found');
516  }
517  $category = new Categorie($this->db);
518  $result = $category->fetch($category_id);
519  if (!$result) {
520  throw new RestException(404, 'category not found');
521  }
522 
523  if (!DolibarrApi::_checkAccessToResource('contact', $this->contact->id)) {
524  throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
525  }
526  if (!DolibarrApi::_checkAccessToResource('category', $category->id)) {
527  throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
528  }
529 
530  $category->del_type($this->contact, 'contact');
531 
532  return $this->_cleanObjectDatas($this->contact);
533  }
534 
535  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
542  protected function _cleanObjectDatas($object)
543  {
544  // phpcs:enable
545  $object = parent::_cleanObjectDatas($object);
546 
547  unset($object->total_ht);
548  unset($object->total_tva);
549  unset($object->total_localtax1);
550  unset($object->total_localtax2);
551  unset($object->total_ttc);
552 
553  unset($object->note);
554  unset($object->lines);
555  unset($object->thirdparty);
556 
557  return $object;
558  }
559 
567  private function _validate($data)
568  {
569  $contact = array();
570  foreach (Contacts::$FIELDS as $field) {
571  if (!isset($data[$field])) {
572  throw new RestException(400, "$field field missing");
573  }
574  $contact[$field] = $data[$field];
575  }
576 
577  return $contact;
578  }
579 }
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
Class to manage Dolibarr users.
Definition: user.class.php:47
forgeSQLFromUniversalSearchCriteria($filter, &$error='')
forgeSQLFromUniversalSearchCriteria
isModEnabled($module)
Is Dolibarr module enabled.
$conf db
API class for accounts.
Definition: inc.php:41