21use Luracast\Restler\RestException;
25require_once DOL_DOCUMENT_ROOT.
'/societe/class/societe.class.php';
42 public static $FIELDS = array(
59 require_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
60 require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
62 $this->contact =
new Contact($this->db);
79 public function get(
$id, $includecount = 0, $includeroles = 0)
81 if (!DolibarrApiAccess::$user->hasRight(
'societe',
'contact',
'lire')) {
82 throw new RestException(403,
'No permission to read contacts');
86 $result = $this->contact->initAsSpecimen();
88 $result = $this->contact->fetch(
$id);
92 throw new RestException(404,
'Contact not found');
96 throw new RestException(403,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
100 $this->contact->load_ref_elements();
104 $this->contact->fetchRoles();
108 $this->contact->getNoEmail();
129 public function getByEmail($email, $includecount = 0, $includeroles = 0)
131 if (!DolibarrApiAccess::$user->hasRight(
'societe',
'contact',
'lire')) {
132 throw new RestException(403,
'No permission to read contacts');
136 $result = $this->contact->initAsSpecimen();
138 $result = $this->contact->fetch(0,
null,
'', $email);
142 throw new RestException(404,
'Contact not found');
146 throw new RestException(403,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
150 $this->contact->load_ref_elements();
154 $this->contact->fetchRoles();
158 $this->contact->getNoEmail();
186 public function index($sortfield =
"t.rowid", $sortorder =
'ASC', $limit = 100, $page = 0, $thirdparty_ids =
'', $category = 0, $sqlfilters =
'', $includecount = 0, $includeroles = 0, $properties =
'', $pagination_data =
false)
192 if (!DolibarrApiAccess::$user->hasRight(
'societe',
'contact',
'lire')) {
193 throw new RestException(403,
'No permission to read contacts');
197 $socids = DolibarrApiAccess::$user->socid ?: $thirdparty_ids;
201 if (!DolibarrApiAccess::$user->hasRight(
'societe',
'client',
'voir') && !$socids) {
202 $search_sale = DolibarrApiAccess::$user->id;
205 $sql =
"SELECT t.rowid";
206 $sql .=
" FROM ".MAIN_DB_PREFIX.
"socpeople as t";
207 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"socpeople_extrafields as te ON te.fk_object = t.rowid";
208 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"societe as s ON t.fk_soc = s.rowid";
209 $sql .=
' WHERE t.entity IN ('.getEntity(
'contact').
')';
211 $sql .=
" AND t.fk_soc IN (".$this->db->sanitize($socids).
")";
214 if ($search_sale && $search_sale !=
'-1') {
215 if ($search_sale == -2) {
216 $sql .=
" AND NOT EXISTS (SELECT sc.fk_soc FROM ".MAIN_DB_PREFIX.
"societe_commerciaux as sc WHERE sc.fk_soc = t.fk_soc)";
217 } elseif ($search_sale > 0) {
218 $sql .=
" AND EXISTS (SELECT sc.fk_soc FROM ".MAIN_DB_PREFIX.
"societe_commerciaux as sc WHERE sc.fk_soc = t.fk_soc AND sc.fk_user = ".((int) $search_sale).
")";
224 $searchCategoryContactList = $category ? array($category) : array();
227 if (!empty($searchCategoryContactList)) {
228 $searchCategoryContactSqlList = array();
230 foreach ($searchCategoryContactList as $searchCategoryContact) {
231 if (intval($searchCategoryContact) == -2) {
232 $searchCategoryContactSqlList[] =
"NOT EXISTS (SELECT ck.fk_socpeople FROM ".MAIN_DB_PREFIX.
"categorie_contact as ck WHERE t.rowid = ck.fk_socpeople)";
233 } elseif (intval($searchCategoryContact) > 0) {
235 $searchCategoryContactSqlList[] =
" EXISTS (SELECT ck.fk_socpeople FROM ".MAIN_DB_PREFIX.
"categorie_contact as ck WHERE t.rowid = ck.fk_socpeople AND ck.fk_categorie = ".((int) $searchCategoryContact).
")";
249 if (!empty($searchCategoryContactSqlList)) {
250 $sql .=
" AND (".implode(
' AND ', $searchCategoryContactSqlList).
")";
259 $sql .= forgeSQLFromUniversalSearchCriteria($sqlfilters, $errormessage);
261 throw new RestException(400,
'Error when validating parameter sqlfilters -> '.$errormessage);
266 $sqlTotals = str_replace(
'SELECT t.rowid',
'SELECT count(t.rowid) as total', $sql);
268 $sql .= $this->db->order($sortfield, $sortorder);
274 $offset = $limit * $page;
276 $sql .= $this->db->plimit($limit + 1, $offset);
278 $result = $this->db->query($sql);
280 $num = $this->db->num_rows($result);
281 $min = min($num, ($limit <= 0 ? $num : $limit));
284 $obj = $this->db->fetch_object($result);
285 $contact_static =
new Contact($this->db);
286 if ($contact_static->fetch($obj->rowid)) {
287 $contact_static->fetchRoles();
289 $contact_static->load_ref_elements();
292 $contact_static->fetchRoles();
295 $contact_static->getNoEmail();
304 throw new RestException(503,
'Error when retrieve contacts : '.$sql);
308 if ($pagination_data) {
309 $totalsResult = $this->db->query($sqlTotals);
310 $total = $this->db->fetch_object($totalsResult)->total;
315 $obj_ret[
'data'] = $tmp;
316 $obj_ret[
'pagination'] = [
317 'total' => (int) $total,
319 'page_count' => ceil((
int) $total / $limit),
339 public function post($request_data =
null)
341 if (!DolibarrApiAccess::$user->hasRight(
'societe',
'contact',
'creer')) {
342 throw new RestException(403,
'No permission to create/update contacts');
345 $result = $this->
_validate($request_data);
348 if (!isset($request_data[
'country_id']) && isset($request_data[
'country_code'])) {
349 $field = strlen($request_data[
'country_code']) > 2 ?
'code_iso' :
'code';
350 $id =
dol_getIdFromCode($this->db, $request_data[
'country_code'],
"c_country", $field,
"rowid");
352 throw new RestException(404,
'Country code not found in database: ' . $this->db->error);
354 $request_data[
'country_id'] =
$id;
357 foreach ($request_data as $field => $value) {
358 if ($field ===
'caller') {
360 $this->contact->context[
'caller'] =
sanitizeVal($request_data[
'caller'],
'aZ09');
363 if ($field ==
'array_options' && is_array($value)) {
364 $this->contact->fetch_optionals();
366 foreach ($value as $index => $val) {
371 if ($field ==
'socid') {
372 $new_socid = (int) $value;
373 $loopthirdpartytmp =
new Societe($this->db);
374 $new_thirdparty_result = $loopthirdpartytmp->fetch($new_socid);
375 if ($new_thirdparty_result < 1) {
376 throw new RestException(404,
'Thirdparty with id='.$new_socid.
' not found or not allowed');
379 throw new RestException(403,
'Access to socid/thirdparty='.$new_socid.
' is not allowed for login '.DolibarrApiAccess::$user->login);
383 $this->contact->$field = $this->
_checkValForAPI($field, $value, $this->contact);
385 if ($this->contact->create(DolibarrApiAccess::$user) < 0) {
386 throw new RestException(500,
"Error creating contact", array_merge(array($this->contact->error), $this->contact->errors));
388 if (
isModEnabled(
'mailing') && !empty($this->contact->email) && isset($this->contact->no_email)) {
389 $this->contact->setNoEmail($this->contact->no_email);
391 return $this->contact->id;
409 public function put(
$id, $request_data =
null)
411 if (!DolibarrApiAccess::$user->hasRight(
'societe',
'contact',
'creer')) {
412 throw new RestException(403,
'No permission to create/update contacts');
415 $result = $this->contact->fetch(
$id);
417 throw new RestException(404,
'Contact not found');
421 throw new RestException(403,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
424 foreach ($request_data as $field => $value) {
425 if ($field ==
'id') {
428 if ($field ===
'caller') {
430 $this->contact->context[
'caller'] =
sanitizeVal($request_data[
'caller'],
'aZ09');
433 if ($field ==
'array_options' && is_array($value)) {
434 foreach ($value as $index => $val) {
439 if ($field ==
'socid') {
440 $new_socid = (int) $value;
441 $loopthirdpartytmp =
new Societe($this->db);
442 $new_thirdparty_result = $loopthirdpartytmp->fetch($new_socid);
443 if ($new_thirdparty_result < 1) {
444 throw new RestException(404,
'Thirdparty with id='.$new_socid.
' not found or not allowed');
447 throw new RestException(403,
'Access to socid/thirdparty='.$new_socid.
' is not allowed for login '.DolibarrApiAccess::$user->login);
451 $this->contact->$field = $this->
_checkValForAPI($field, $value, $this->contact);
454 if (
isModEnabled(
'mailing') && !empty($this->contact->email) && isset($this->contact->no_email)) {
455 $this->contact->setNoEmail($this->contact->no_email);
458 if ($this->contact->update(
$id, DolibarrApiAccess::$user, 0,
'update') > 0) {
459 return $this->
get(
$id);
461 throw new RestException(500, $this->contact->error);
475 public function delete(
$id)
477 if (!DolibarrApiAccess::$user->hasRight(
'societe',
'contact',
'supprimer')) {
478 throw new RestException(403,
'No permission to delete contacts');
480 $result = $this->contact->fetch(
$id);
482 throw new RestException(404,
'Contact not found');
486 throw new RestException(403,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
488 $this->contact->oldcopy = clone $this->contact;
490 if ($this->contact->delete(DolibarrApiAccess::$user) <= 0) {
491 throw new RestException(500,
'Error when delete contact ' . $this->contact->error);
497 'message' =>
'Contact deleted'
522 if (!isset($request_data[
"login"])) {
523 throw new RestException(400,
"login field missing");
525 if (!isset($request_data[
"password"])) {
526 throw new RestException(400,
"password field missing");
529 if (!DolibarrApiAccess::$user->hasRight(
'societe',
'contact',
'lire')) {
530 throw new RestException(403,
'No permission to read contacts');
532 if (!DolibarrApiAccess::$user->hasRight(
'user',
'user',
'creer')) {
533 throw new RestException(403,
'No permission to create user');
536 $contact =
new Contact($this->db);
537 $contact->fetch(
$id);
538 if ($contact->id <= 0) {
539 throw new RestException(404,
'Contact not found');
543 throw new RestException(403,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
547 $login = $request_data[
"login"];
548 $password = $request_data[
"password"];
549 $useraccount =
new User($this->db);
550 $result = $useraccount->create_from_contact($contact, $login, $password);
552 throw new RestException(500,
"User not created");
555 $useraccount->setPassword($useraccount, $password);
575 public function getCategories(
$id, $sortfield =
"s.rowid", $sortorder =
'ASC', $limit = 0, $page = 0)
577 if (!DolibarrApiAccess::$user->hasRight(
'categorie',
'lire')) {
578 throw new RestException(403);
583 $result = $categories->getListForItem(
$id,
'contact', $sortfield, $sortorder, $limit, $page);
586 throw new RestException(503,
'Error when retrieve category list : '.$categories->error);
609 if (!DolibarrApiAccess::$user->hasRight(
'societe',
'contact',
'creer')) {
610 throw new RestException(403,
'Insufficient rights');
613 $result = $this->contact->fetch(
$id);
615 throw new RestException(404,
'Contact not found');
618 $result = $category->fetch($category_id);
620 throw new RestException(404,
'category not found');
624 throw new RestException(403,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
627 throw new RestException(403,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
630 $category->add_type($this->contact,
'contact');
651 if (!DolibarrApiAccess::$user->hasRight(
'societe',
'contact',
'creer')) {
652 throw new RestException(403,
'Insufficient rights');
655 $result = $this->contact->fetch(
$id);
657 throw new RestException(404,
'Contact not found');
660 $result = $category->fetch($category_id);
662 throw new RestException(404,
'category not found');
666 throw new RestException(403,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
669 throw new RestException(403,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
672 $category->del_type($this->contact,
'contact');
694 unset(
$object->total_localtax1);
695 unset(
$object->total_localtax2);
715 foreach (Contacts::$FIELDS as $field) {
716 if (!isset($data[$field])) {
717 throw new RestException(400,
"$field field missing");
719 $contact[$field] = $data[$field];
$id
Support class for third parties, contacts, members, users or resources.
if(! $sortfield) if(! $sortorder) $object
Class to manage categories.
_checkValExtrafieldsForAPI($field, $value, $object)
Check and convert a string depending on its type/name.
_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.
_checkValForAPI($field, $value, $object)
Check and convert a string depending on its type/name.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage Dolibarr users.
dol_getIdFromCode($db, $key, $tablename, $fieldkey='code', $fieldid='id', $entityfilter=0, $filters='', $useCache=true)
Return an id or code from a code or id.
sanitizeVal($out='', $check='alphanohtml', $filter=null, $options=null)
Return a sanitized or empty value after checking value against a rule.
isModEnabled($module)
Is Dolibarr module enabled.