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';
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') {
330 $this->contact->$field = $value;
333 if (
isModEnabled(
'mailing') && !empty($this->contact->email) && isset($this->contact->no_email)) {
334 $this->contact->setNoEmail($this->contact->no_email);
337 if ($this->contact->update($id, DolibarrApiAccess::$user, 1,
'update')) {
338 return $this->
get($id);
350 public function delete($id)
352 if (!DolibarrApiAccess::$user->rights->societe->contact->supprimer) {
353 throw new RestException(401,
'No permission to delete contacts');
355 $result = $this->contact->fetch($id);
357 throw new RestException(404,
'Contact not found');
361 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
363 $this->contact->oldcopy = clone $this->contact;
364 return $this->contact->delete();
382 if (!isset($request_data[
"login"])) {
383 throw new RestException(400,
"login field missing");
385 if (!isset($request_data[
"password"])) {
386 throw new RestException(400,
"password field missing");
389 if (!DolibarrApiAccess::$user->rights->societe->contact->lire) {
390 throw new RestException(401,
'No permission to read contacts');
392 if (!DolibarrApiAccess::$user->rights->user->user->creer) {
393 throw new RestException(401,
'No permission to create user');
397 $contact->fetch($id);
398 if ($contact->id <= 0) {
399 throw new RestException(404,
'Contact not found');
403 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
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);
412 throw new RestException(500,
"User not created");
415 $useraccount->setPassword($useraccount, $password);
433 public function getCategories($id, $sortfield =
"s.rowid", $sortorder =
'ASC', $limit = 0, $page = 0)
435 if (!DolibarrApiAccess::$user->rights->categorie->lire) {
436 throw new RestException(401);
441 $result = $categories->getListForItem($id,
'contact', $sortfield, $sortorder, $limit, $page);
443 if (empty($result)) {
444 throw new RestException(404,
'No category found');
448 throw new RestException(503,
'Error when retrieve category list : '.$categories->error);
469 if (!DolibarrApiAccess::$user->rights->societe->contact->creer) {
470 throw new RestException(401,
'Insufficient rights');
473 $result = $this->contact->fetch($id);
475 throw new RestException(404,
'Contact not found');
478 $result = $category->fetch($category_id);
480 throw new RestException(404,
'category not found');
484 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
487 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
490 $category->add_type($this->contact,
'contact');
509 if (!DolibarrApiAccess::$user->rights->societe->contact->creer) {
510 throw new RestException(401,
'Insufficient rights');
513 $result = $this->contact->fetch($id);
515 throw new RestException(404,
'Contact not found');
518 $result = $category->fetch($category_id);
520 throw new RestException(404,
'category not found');
524 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
527 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
530 $category->del_type($this->contact,
'contact');
545 $object = parent::_cleanObjectDatas($object);
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);
553 unset($object->note);
554 unset($object->lines);
555 unset($object->thirdparty);
570 foreach (Contacts::$FIELDS as $field) {
571 if (!isset($data[$field])) {
572 throw new RestException(400,
"$field field missing");
574 $contact[$field] = $data[$field];