19 use Luracast\Restler\RestException;
37 public static $FIELDS = array(
54 require_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
55 require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
57 $this->contact =
new Contact($this->db);
72 public function get($id, $includecount = 0, $includeroles = 0)
74 if (!DolibarrApiAccess::$user->rights->societe->contact->lire) {
75 throw new RestException(401,
'No permission to read contacts');
79 $result = $this->contact->initAsSpecimen();
81 $result = $this->contact->fetch($id);
85 throw new RestException(404,
'Contact not found');
89 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
93 $this->contact->load_ref_elements();
97 $this->contact->fetchRoles();
101 $this->contact->getNoEmail();
120 public function getByEmail($email, $includecount = 0, $includeroles = 0)
122 if (!DolibarrApiAccess::$user->rights->societe->contact->lire) {
123 throw new RestException(401,
'No permission to read contacts');
127 $result = $this->contact->initAsSpecimen();
129 $result = $this->contact->fetch(
'',
'',
'', $email);
133 throw new RestException(404,
'Contact not found');
137 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
141 $this->contact->load_ref_elements();
145 $this->contact->fetchRoles();
149 $this->contact->getNoEmail();
173 public function index($sortfield =
"t.rowid", $sortorder =
'ASC', $limit = 100, $page = 0, $thirdparty_ids =
'', $category = 0, $sqlfilters =
'', $includecount = 0, $includeroles = 0)
179 if (!DolibarrApiAccess::$user->rights->societe->contact->lire) {
180 throw new RestException(401,
'No permission to read contacts');
184 $socids = DolibarrApiAccess::$user->socid ? DolibarrApiAccess::$user->socid : $thirdparty_ids;
188 if (!DolibarrApiAccess::$user->rights->societe->client->voir && !$socids) {
189 $search_sale = DolibarrApiAccess::$user->id;
192 $sql =
"SELECT t.rowid";
193 $sql .=
" FROM ".MAIN_DB_PREFIX.
"socpeople as t";
195 $sql .=
", ".MAIN_DB_PREFIX.
"categorie_contact as c";
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) {
200 $sql .=
", ".MAIN_DB_PREFIX.
"societe_commerciaux as sc";
202 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"societe as s ON t.fk_soc = s.rowid";
203 $sql .=
' WHERE t.entity IN ('.getEntity(
'contact').
')';
205 $sql .=
" AND t.fk_soc IN (".$this->db->sanitize($socids).
")";
208 if ((!DolibarrApiAccess::$user->rights->societe->client->voir && !$socids) || $search_sale > 0) {
209 $sql .=
" AND t.fk_soc = sc.fk_soc";
211 if ($search_sale > 0) {
212 $sql .=
" AND s.rowid = sc.fk_soc";
215 if ($search_sale > 0) {
216 $sql .=
" AND sc.fk_user = ".((int) $search_sale);
221 $sql .=
" AND c.fk_categorie = ".((int) $category);
222 $sql .=
" AND c.fk_socpeople = t.rowid ";
230 throw new RestException(400,
'Error when validating parameter sqlfilters -> '.$errormessage);
234 $sql .= $this->db->order($sortfield, $sortorder);
240 $offset = $limit * $page;
242 $sql .= $this->db->plimit($limit + 1, $offset);
244 $result = $this->db->query(
$sql);
246 $num = $this->db->num_rows($result);
247 $min = min($num, ($limit <= 0 ? $num : $limit));
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();
255 $contact_static->load_ref_elements();
258 $contact_static->fetchRoles();
261 $contact_static->getNoEmail();
270 throw new RestException(503,
'Error when retrieve contacts : '.
$sql);
272 if (!count($obj_ret)) {
273 throw new RestException(404,
'Contacts not found');
284 public function post($request_data =
null)
286 if (!DolibarrApiAccess::$user->rights->societe->contact->creer) {
287 throw new RestException(401,
'No permission to create/update contacts');
290 $result = $this->
_validate($request_data);
292 foreach ($request_data as $field => $value) {
293 $this->contact->$field = $value;
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));
298 if (
isModEnabled(
'mailing') && !empty($this->contact->email) && isset($this->contact->no_email)) {
299 $this->contact->setNoEmail($this->contact->no_email);
301 return $this->contact->id;
311 public function put($id, $request_data =
null)
313 if (!DolibarrApiAccess::$user->rights->societe->contact->creer) {
314 throw new RestException(401,
'No permission to create/update contacts');
317 $result = $this->contact->fetch($id);
319 throw new RestException(404,
'Contact not found');
323 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
326 foreach ($request_data as $field => $value) {
327 if ($field ==
'id') {
329 } elseif ($field ==
'array_options' && is_array($value)) {
330 foreach ($value as $index => $val) {
331 $this->contact->array_options[$index] = $val;
334 $this->contact->$field = $value;
338 if (
isModEnabled(
'mailing') && !empty($this->contact->email) && isset($this->contact->no_email)) {
339 $this->contact->setNoEmail($this->contact->no_email);
342 if ($this->contact->update($id, DolibarrApiAccess::$user, 1,
'update')) {
343 return $this->
get($id);
355 public function delete($id)
357 if (!DolibarrApiAccess::$user->rights->societe->contact->supprimer) {
358 throw new RestException(401,
'No permission to delete contacts');
360 $result = $this->contact->fetch($id);
362 throw new RestException(404,
'Contact not found');
366 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
368 $this->contact->oldcopy = clone $this->contact;
369 return $this->contact->delete();
387 if (!isset($request_data[
"login"])) {
388 throw new RestException(400,
"login field missing");
390 if (!isset($request_data[
"password"])) {
391 throw new RestException(400,
"password field missing");
394 if (!DolibarrApiAccess::$user->rights->societe->contact->lire) {
395 throw new RestException(401,
'No permission to read contacts');
397 if (!DolibarrApiAccess::$user->rights->user->user->creer) {
398 throw new RestException(401,
'No permission to create user');
401 $contact =
new Contact($this->db);
402 $contact->fetch($id);
403 if ($contact->id <= 0) {
404 throw new RestException(404,
'Contact not found');
408 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
412 $login = $request_data[
"login"];
413 $password = $request_data[
"password"];
414 $useraccount =
new User($this->db);
415 $result = $useraccount->create_from_contact($contact, $login, $password);
417 throw new RestException(500,
"User not created");
420 $useraccount->setPassword($useraccount, $password);
438 public function getCategories($id, $sortfield =
"s.rowid", $sortorder =
'ASC', $limit = 0, $page = 0)
440 if (!DolibarrApiAccess::$user->rights->categorie->lire) {
441 throw new RestException(401);
446 $result = $categories->getListForItem($id,
'contact', $sortfield, $sortorder, $limit, $page);
448 if (empty($result)) {
449 throw new RestException(404,
'No category found');
453 throw new RestException(503,
'Error when retrieve category list : '.$categories->error);
474 if (!DolibarrApiAccess::$user->rights->societe->contact->creer) {
475 throw new RestException(401,
'Insufficient rights');
478 $result = $this->contact->fetch($id);
480 throw new RestException(404,
'Contact not found');
483 $result = $category->fetch($category_id);
485 throw new RestException(404,
'category not found');
489 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
492 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
495 $category->add_type($this->contact,
'contact');
514 if (!DolibarrApiAccess::$user->rights->societe->contact->creer) {
515 throw new RestException(401,
'Insufficient rights');
518 $result = $this->contact->fetch($id);
520 throw new RestException(404,
'Contact not found');
523 $result = $category->fetch($category_id);
525 throw new RestException(404,
'category not found');
529 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
532 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
535 $category->del_type($this->contact,
'contact');
550 $object = parent::_cleanObjectDatas($object);
552 unset($object->total_ht);
553 unset($object->total_tva);
554 unset($object->total_localtax1);
555 unset($object->total_localtax2);
556 unset($object->total_ttc);
558 unset($object->note);
559 unset($object->lines);
560 unset($object->thirdparty);
575 foreach (Contacts::$FIELDS as $field) {
576 if (!isset($data[$field])) {
577 throw new RestException(400,
"$field field missing");
579 $contact[$field] = $data[$field];