19use Luracast\Restler\RestException;
21require_once DOL_DOCUMENT_ROOT.
'/user/class/user.class.php';
22require_once DOL_DOCUMENT_ROOT.
'/user/class/usergroup.class.php';
36 public static $FIELDS = array(
53 $this->useraccount =
new User($this->db);
72 public function index($sortfield =
"t.rowid", $sortorder =
'ASC', $limit = 100, $page = 0, $user_ids = 0, $category = 0, $sqlfilters =
'', $properties =
'')
76 if (empty(DolibarrApiAccess::$user->rights->user->user->lire) && empty(DolibarrApiAccess::$user->admin)) {
77 throw new RestException(401,
"You are not allowed to read list of users");
85 $sql =
"SELECT t.rowid";
86 $sql .=
" FROM ".MAIN_DB_PREFIX.
"user AS t LEFT JOIN ".MAIN_DB_PREFIX.
"user_extrafields AS ef ON (ef.fk_object = t.rowid)";
88 $sql .=
", ".$this->db->prefix().
"categorie_user as c";
90 $sql .=
' WHERE t.entity IN ('.getEntity(
'user').
')';
92 $sql .=
" AND t.rowid IN (".$this->db->sanitize($user_ids).
")";
97 $sql .=
" AND c.fk_categorie = ".((int) $category);
98 $sql .=
" AND c.fk_user = t.rowid";
106 throw new RestException(400,
'Error when validating parameter sqlfilters -> '.$errormessage);
110 $sql .= $this->db->order($sortfield, $sortorder);
115 $offset = $limit * $page;
117 $sql .= $this->db->plimit($limit + 1, $offset);
120 $result = $this->db->query($sql);
124 $num = $this->db->num_rows($result);
125 $min = min($num, ($limit <= 0 ? $num : $limit));
127 $obj = $this->db->fetch_object($result);
128 $user_static =
new User($this->db);
129 if ($user_static->fetch($obj->rowid)) {
135 throw new RestException(503,
'Error when retrieve User list : '.$this->db->lasterror());
151 public function get($id, $includepermissions = 0)
153 if (empty(DolibarrApiAccess::$user->rights->user->user->lire) && empty(DolibarrApiAccess::$user->admin) && $id != 0 && DolibarrApiAccess::$user->id != $id) {
154 throw new RestException(401,
'Not allowed');
158 $result = $this->useraccount->initAsSpecimen();
160 $result = $this->useraccount->fetch($id);
163 throw new RestException(404,
'User not found');
167 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
170 if ($includepermissions) {
171 $this->useraccount->getRights();
193 throw new RestException(400,
'Bad parameters');
196 if (empty(DolibarrApiAccess::$user->rights->user->user->lire) && empty(DolibarrApiAccess::$user->admin) && DolibarrApiAccess::$user->login != $login) {
197 throw new RestException(401,
'Not allowed');
200 $result = $this->useraccount->fetch(
'', $login);
202 throw new RestException(404,
'User not found');
206 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
209 if ($includepermissions) {
210 $this->useraccount->getRights();
232 throw new RestException(400,
'Bad parameters');
235 if (empty(DolibarrApiAccess::$user->rights->user->user->lire) && empty(DolibarrApiAccess::$user->admin) && DolibarrApiAccess::$user->email != $email) {
236 throw new RestException(401,
'Not allowed');
239 $result = $this->useraccount->fetch(
'',
'',
'', 0, -1, $email);
241 throw new RestException(404,
'User not found');
245 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
248 if ($includepermissions) {
249 $this->useraccount->getRights();
266 public function getInfo($includepermissions = 0)
268 if (empty(DolibarrApiAccess::$user->rights->user->self->creer) && empty(DolibarrApiAccess::$user->rights->user->user->lire) && empty(DolibarrApiAccess::$user->admin)) {
269 throw new RestException(401,
'Not allowed');
272 $apiUser = DolibarrApiAccess::$user;
274 $result = $this->useraccount->fetch($apiUser->id);
276 throw new RestException(404,
'User not found');
280 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
283 if ($includepermissions) {
284 $this->useraccount->getRights();
288 $userGroupList = $usergroup->listGroupsForUser($apiUser->id,
false);
289 if (!is_array($userGroupList)) {
290 throw new RestException(404,
'User group not found');
306 public function post($request_data =
null)
309 if (empty(DolibarrApiAccess::$user->rights->user->creer) && empty(DolibarrApiAccess::$user->admin)) {
310 throw new RestException(401,
"User creation not allowed for login ".DolibarrApiAccess::$user->login);
322 foreach ($request_data as $field => $value) {
323 if (in_array($field, array(
'pass_crypted',
'pass_indatabase',
'pass_indatabase_crypted',
'pass_temp',
'api_key'))) {
325 throw new RestException(401,
'The property '.$field.
" can't be set/modified using the APIs");
327 if ($field ===
'caller') {
329 $this->useraccount->context[
'caller'] = $request_data[
'caller'];
340 $this->useraccount->$field = $value;
343 if ($this->useraccount->create(DolibarrApiAccess::$user) < 0) {
344 throw new RestException(500,
'Error creating', array_merge(array($this->useraccount->error), $this->useraccount->errors));
346 return $this->useraccount->id;
361 public function put($id, $request_data =
null)
364 if (!DolibarrApiAccess::$user->hasRight(
'user',
'user',
'creer') && empty(DolibarrApiAccess::$user->admin)) {
365 throw new RestException(401,
"User update not allowed");
368 $result = $this->useraccount->fetch($id);
370 throw new RestException(404,
'Account not found');
374 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
377 foreach ($request_data as $field => $value) {
378 if (in_array($field, array(
'pass_crypted',
'pass_indatabase',
'pass_indatabase_crypted',
'pass_temp',
'api_key'))) {
380 throw new RestException(401,
'The property '.$field.
" can't be set/modified using the APIs");
382 if ($field ==
'id') {
385 if ($field ==
'pass') {
386 if ($this->useraccount->id != DolibarrApiAccess::$user->id && empty(DolibarrApiAccess::$user->rights->user->user->password)) {
387 throw new RestException(401,
'You are not allowed to modify password of other users');
389 if ($this->useraccount->id == DolibarrApiAccess::$user->id && empty(DolibarrApiAccess::$user->rights->user->self->password)) {
390 throw new RestException(401,
'You are not allowed to modify your own password');
393 if ($field ===
'caller') {
395 $this->useraccount->context[
'caller'] = $request_data[
'caller'];
399 if (DolibarrApiAccess::$user->admin) {
400 if ($field ==
'admin' && $value != $this->useraccount->admin && empty($value)) {
401 throw new RestException(401,
'Reseting the admin status of a user is not possible using the API');
404 if ($field ==
'admin' && $value != $this->useraccount->admin) {
405 throw new RestException(401,
'Only an admin user can modify the admin status of another user');
408 if ($field ==
'entity' && $value != $this->useraccount->entity) {
409 throw new RestException(401,
'Changing entity of a user using the APIs is not possible');
414 if ($field ==
'statut' || $field ==
'status') {
415 $result = $this->useraccount->setstatus($value);
417 throw new RestException(500,
'Error when updating status of user: '.$this->useraccount->error);
420 if ($field ==
'array_options' && is_array($value)) {
421 foreach ($value as $index => $val) {
422 $this->useraccount->array_options[$index] = $this->
_checkValForAPI($field, $val, $this->useraccount);
426 $this->useraccount->$field = $this->
_checkValForAPI($field, $value, $this->useraccount);
432 if ($this->useraccount->update(DolibarrApiAccess::$user) >= 0) {
433 return $this->
get($id);
435 throw new RestException(500, $this->useraccount->error);
453 if (empty(DolibarrApiAccess::$user->rights->user->user->lire) && empty(DolibarrApiAccess::$user->admin)) {
454 throw new RestException(403);
459 $user =
new User($this->db);
460 $result = $user->fetch($id);
462 throw new RestException(404,
'user not found');
466 $groups = $usergroup->listGroupsForUser($id,
false);
468 foreach ($groups as $group) {
493 if (!DolibarrApiAccess::$user->hasRight(
'user',
'user',
'creer') && empty(DolibarrApiAccess::$user->admin)) {
494 throw new RestException(401);
497 $result = $this->useraccount->fetch($id);
499 throw new RestException(404,
'User not found');
503 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
506 if (isModEnabled(
'multicompany') &&
getDolGlobalString(
'MULTICOMPANY_TRANSVERSE_MODE') && !empty(DolibarrApiAccess::$user->admin) && empty(DolibarrApiAccess::$user->entity)) {
507 $entity = (!empty($entity) ? $entity : $conf->entity);
511 $entity = (DolibarrApiAccess::$user->entity > 0 ? DolibarrApiAccess::$user->entity : $conf->entity);
514 $result = $this->useraccount->SetInGroup($group, $entity);
515 if (!($result > 0)) {
516 throw new RestException(500, $this->useraccount->error);
541 public function listGroups($sortfield =
"t.rowid", $sortorder =
'ASC', $limit = 100, $page = 0, $group_ids = 0, $sqlfilters =
'', $properties =
'')
547 if ((!
getDolGlobalString(
'MAIN_USE_ADVANCED_PERMS') && empty(DolibarrApiAccess::$user->rights->user->user->lire) && empty(DolibarrApiAccess::$user->admin)) ||
548 getDolGlobalString(
'MAIN_USE_ADVANCED_PERMS') && empty(DolibarrApiAccess::$user->rights->user->group_advance->read) && empty(DolibarrApiAccess::$user->admin)) {
549 throw new RestException(401,
"You are not allowed to read groups");
555 $sql =
"SELECT t.rowid";
556 $sql .=
" FROM ".MAIN_DB_PREFIX.
"usergroup AS t LEFT JOIN ".MAIN_DB_PREFIX.
"usergroup_extrafields AS ef ON (ef.fk_object = t.rowid)";
557 $sql .=
' WHERE t.entity IN ('.getEntity(
'user').
')';
559 $sql .=
" AND t.rowid IN (".$this->db->sanitize($group_ids).
")";
566 throw new RestException(400,
'Error when validating parameter sqlfilters -> '.$errormessage);
570 $sql .= $this->db->order($sortfield, $sortorder);
575 $offset = $limit * $page;
577 $sql .= $this->db->plimit($limit + 1, $offset);
580 $result = $this->db->query($sql);
584 $num = $this->db->num_rows($result);
585 $min = min($num, ($limit <= 0 ? $num : $limit));
587 $obj = $this->db->fetch_object($result);
588 $group_static =
new UserGroup($this->db);
589 if ($group_static->fetch($obj->rowid)) {
595 throw new RestException(503,
'Error when retrieve Group list : '.$this->db->lasterror());
619 if ((!
getDolGlobalString(
'MAIN_USE_ADVANCED_PERMS') && empty(DolibarrApiAccess::$user->rights->user->user->lire) && empty(DolibarrApiAccess::$user->admin)) ||
620 getDolGlobalString(
'MAIN_USE_ADVANCED_PERMS') && empty(DolibarrApiAccess::$user->rights->user->group_advance->read) && empty(DolibarrApiAccess::$user->admin)) {
621 throw new RestException(401,
"You are not allowed to read groups");
624 $group_static =
new UserGroup($this->db);
625 $result = $group_static->fetch($group,
'', $load_members);
628 throw new RestException(404,
'Group not found');
643 public function delete($id)
645 if (empty(DolibarrApiAccess::$user->rights->user->user->supprimer) && empty(DolibarrApiAccess::$user->admin)) {
646 throw new RestException(401,
'Not allowed');
648 $result = $this->useraccount->fetch($id);
650 throw new RestException(404,
'User not found');
654 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
656 $this->useraccount->oldcopy = clone $this->useraccount;
658 if (!$this->useraccount->delete(DolibarrApiAccess::$user)) {
659 throw new RestException(500);
665 'message' =>
'Ticket deleted'
682 $object = parent::_cleanObjectDatas($object);
684 unset($object->default_values);
685 unset($object->lastsearch_values);
686 unset($object->lastsearch_values_tmp);
688 unset($object->total_ht);
689 unset($object->total_tva);
690 unset($object->total_localtax1);
691 unset($object->total_localtax2);
692 unset($object->total_ttc);
694 unset($object->label_incoterms);
695 unset($object->location_incoterms);
697 unset($object->fk_delivery_address);
698 unset($object->fk_incoterms);
699 unset($object->all_permissions_are_loaded);
700 unset($object->shipping_method_id);
701 unset($object->nb_rights);
702 unset($object->search_sid);
703 unset($object->ldap_sid);
704 unset($object->clicktodial_loaded);
707 unset($object->pass);
708 unset($object->pass_indatabase);
709 unset($object->pass_indatabase_crypted);
710 unset($object->pass_temp);
711 unset($object->api_key);
712 unset($object->clicktodial_password);
713 unset($object->openid);
715 unset($object->lines);
716 unset($object->model_pdf);
718 $canreadsalary = ((isModEnabled(
'salaries') && !empty(DolibarrApiAccess::$user->rights->salaries->read)) || (empty($conf->salaries->enabled)));
720 if (!$canreadsalary) {
721 unset($object->salary);
722 unset($object->salaryextra);
738 $cleanObjectList = array();
740 foreach ($objectList as $object) {
741 $cleanObject = parent::_cleanObjectDatas($object);
743 unset($cleanObject->default_values);
744 unset($cleanObject->lastsearch_values);
745 unset($cleanObject->lastsearch_values_tmp);
747 unset($cleanObject->total_ht);
748 unset($cleanObject->total_tva);
749 unset($cleanObject->total_localtax1);
750 unset($cleanObject->total_localtax2);
751 unset($cleanObject->total_ttc);
753 unset($cleanObject->libelle_incoterms);
754 unset($cleanObject->location_incoterms);
756 unset($cleanObject->fk_delivery_address);
757 unset($cleanObject->fk_incoterms);
758 unset($cleanObject->all_permissions_are_loaded);
759 unset($cleanObject->shipping_method_id);
760 unset($cleanObject->nb_rights);
761 unset($cleanObject->search_sid);
762 unset($cleanObject->ldap_sid);
763 unset($cleanObject->clicktodial_loaded);
765 unset($cleanObject->datec);
766 unset($cleanObject->tms);
767 unset($cleanObject->members);
768 unset($cleanObject->note);
769 unset($cleanObject->note_private);
771 $cleanObjectList[] = $cleanObject;
774 return $cleanObjectList;
787 foreach (Users::$FIELDS as $field) {
788 if (!isset($data[$field])) {
789 throw new RestException(400,
"$field field missing");
791 $account[$field] = $data[$field];
_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 user groups.
Class to manage Dolibarr users.
put($id, $request_data=null)
Update user account.
_cleanObjectDatas($object)
Clean sensible object datas.
getInfo($includepermissions=0)
Get more properties of a user.
_cleanUserGroupListDatas($objectList)
Clean sensible user group list datas.
setGroup($id, $group, $entity=1)
Add a user into a group.
infoGroups($group, $load_members=0)
Get properties of an group object.
index($sortfield="t.rowid", $sortorder='ASC', $limit=100, $page=0, $user_ids=0, $category=0, $sqlfilters='', $properties='')
List Users.
_validate($data)
Validate fields before create or update object.
getByEmail($email, $includepermissions=0)
Get properties of an user object by Email.
getGroups($id)
List the groups of a user.
post($request_data=null)
Create user account.
listGroups($sortfield="t.rowid", $sortorder='ASC', $limit=100, $page=0, $group_ids=0, $sqlfilters='', $properties='')
List Groups.
getByLogin($login, $includepermissions=0)
Get properties of an user object by login.
__construct()
Constructor.
forgeSQLFromUniversalSearchCriteria($filter, &$errorstr='', $noand=0, $nopar=0, $noerror=0)
forgeSQLFromUniversalSearchCriteria
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.