22use Luracast\Restler\RestException;
24require_once DOL_DOCUMENT_ROOT.
'/comm/action/class/actioncomm.class.php';
25require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
41 public static $FIELDS = array(
74 public function get(
$id)
76 if (!DolibarrApiAccess::$user->hasRight(
'agenda',
'myactions',
'read')) {
77 throw new RestException(403,
"Insufficient rights to read an event");
80 $result = $this->actioncomm->initAsSpecimen();
82 $result = $this->actioncomm->fetch(
$id);
84 $this->actioncomm->fetch_optionals();
85 $this->actioncomm->fetchObjectLinked();
89 throw new RestException(404,
'Agenda Events not found');
92 if (!DolibarrApiAccess::$user->hasRight(
'agenda',
'allactions',
'read') && $this->actioncomm->userownerid != DolibarrApiAccess::$user->id) {
93 throw new RestException(403,
'Insufficient rights to read event of this owner id. Your id is '.DolibarrApiAccess::$user->
id);
97 throw new RestException(403,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
124 public function index($sortfield =
"t.id", $sortorder =
'ASC', $limit = 100, $page = 0, $user_ids =
'', $sqlfilters =
'', $properties =
'', $pagination_data =
false)
130 if (!DolibarrApiAccess::$user->hasRight(
'agenda',
'myactions',
'read')) {
131 throw new RestException(403,
"Insufficient rights to read events");
135 $socid = DolibarrApiAccess::$user->socid ?: 0;
139 if (!DolibarrApiAccess::$user->hasRight(
'societe',
'client',
'voir') && !$socid) {
140 $search_sale = DolibarrApiAccess::$user->id;
146 $sql =
"SELECT t.id";
147 $sql .=
" FROM ".MAIN_DB_PREFIX.
"actioncomm AS t";
148 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"actioncomm_extrafields AS ef ON (ef.fk_object = t.id)";
149 $sql .=
' WHERE t.entity IN ('.getEntity(
'agenda').
')';
151 $sql .=
" AND t.fk_user_action IN (".$this->db->sanitize($user_ids).
")";
154 $sql .=
" AND t.fk_soc = ".((int) $socid);
157 if ($search_sale && $search_sale !=
'-1') {
158 if ($search_sale == -2) {
159 $sql .=
" AND ".getSalesRepresentativeSqlFilter(
't.fk_soc', 0, 1);
160 } elseif ($search_sale > 0) {
161 $sql .=
" AND (t.fk_soc IS NULL OR ".getSalesRepresentativeSqlFilter(
't.fk_soc', (
int) $search_sale).
")";
169 throw new RestException(400,
'Error when validating parameter sqlfilters -> '.$errormessage);
174 $sqlTotals = str_replace(
'SELECT t.id',
'SELECT count(t.id) as total', $sql);
176 $sql .= $this->db->order($sortfield, $sortorder);
181 $offset = $limit * $page;
183 $sql .= $this->db->plimit($limit + 1, $offset);
186 $result = $this->db->query($sql);
190 $num = $this->db->num_rows($result);
191 $min = min($num, ($limit <= 0 ? $num : $limit));
193 $obj = $this->db->fetch_object($result);
194 $actioncomm_static =
new ActionComm($this->db);
195 if ($actioncomm_static->fetch($obj->id)) {
201 throw new RestException(503,
'Error when retrieve Agenda Event list : '.$this->db->lasterror());
205 if ($pagination_data) {
206 $totalsResult = $this->db->query($sqlTotals);
207 $total = $this->db->fetch_object($totalsResult)->total;
212 $obj_ret[
'data'] = $tmp;
213 $obj_ret[
'pagination'] = [
214 'total' => (int) $total,
216 'page_count' => (
int) ceil((
int) $total / $limit),
236 public function post($request_data =
null)
238 if (!DolibarrApiAccess::$user->hasRight(
'agenda',
'myactions',
'create')) {
239 throw new RestException(403,
"Insufficient rights to create your Agenda Event");
241 if (!DolibarrApiAccess::$user->hasRight(
'agenda',
'allactions',
'create') && DolibarrApiAccess::$user->
id != $request_data[
'userownerid']) {
242 throw new RestException(403,
"Insufficient rights to create an Agenda Event for owner id ".$request_data[
'userownerid'].
' Your id is '.DolibarrApiAccess::$user->
id);
246 $result = $this->
_validate($request_data);
248 foreach ($request_data as $field => $value) {
249 if ($field ===
'caller') {
251 $this->actioncomm->context[
'caller'] =
sanitizeVal($request_data[
'caller'],
'aZ09');
255 $this->actioncomm->$field = $this->
_checkValForAPI($field, $value, $this->actioncomm);
265 if ($this->actioncomm->create(DolibarrApiAccess::$user) < 0) {
266 throw new RestException(500,
"Error creating event", array_merge(array($this->actioncomm->error), $this->actioncomm->errors));
269 return $this->actioncomm->id;
286 public function put(
$id, $request_data =
null)
288 if (!DolibarrApiAccess::$user->hasRight(
'agenda',
'myactions',
'create')) {
289 throw new RestException(403,
"Insufficient rights to create your Agenda Event");
291 if (!DolibarrApiAccess::$user->hasRight(
'agenda',
'allactions',
'create') && DolibarrApiAccess::$user->
id != $request_data[
'userownerid']) {
292 throw new RestException(403,
"Insufficient rights to create an Agenda Event for owner id ".$request_data[
'userownerid'].
' Your id is '.DolibarrApiAccess::$user->
id);
295 $result = $this->actioncomm->fetch(
$id);
297 $this->actioncomm->fetch_optionals();
298 $this->actioncomm->fetch_userassigned();
299 $this->actioncomm->oldcopy = clone $this->actioncomm;
302 throw new RestException(404,
'actioncomm not found');
306 throw new RestException(403,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
308 foreach ($request_data as $field => $value) {
309 if ($field ==
'id') {
312 if ($field ===
'caller') {
314 $this->actioncomm->context[
'caller'] =
sanitizeVal($request_data[
'caller'],
'aZ09');
318 if ($field ==
'array_options' && is_array($value)) {
319 foreach ($value as $index => $val) {
324 $this->actioncomm->$field = $this->
_checkValForAPI($field, $value, $this->actioncomm);
327 if ($this->actioncomm->update(DolibarrApiAccess::$user, 1) > 0) {
328 return $this->
get(
$id);
347 public function delete(
$id)
349 if (!DolibarrApiAccess::$user->hasRight(
'agenda',
'myactions',
'delete')) {
350 throw new RestException(403,
"Insufficient rights to delete your Agenda Event");
353 $result = $this->actioncomm->fetch(
$id);
355 $this->actioncomm->fetch_optionals();
356 $this->actioncomm->fetch_userassigned();
357 $this->actioncomm->oldcopy = clone $this->actioncomm;
360 if (!DolibarrApiAccess::$user->hasRight(
'agenda',
'allactions',
'delete') && DolibarrApiAccess::$user->
id != $this->actioncomm->userownerid) {
361 throw new RestException(403,
"Insufficient rights to delete an Agenda Event of owner id ".$this->actioncomm->userownerid.
' Your id is '.DolibarrApiAccess::$user->id);
365 throw new RestException(404,
'Agenda Event not found');
369 throw new RestException(403,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
372 if (!$this->actioncomm->delete(DolibarrApiAccess::$user)) {
373 throw new RestException(500,
'Error when delete Agenda Event : '.$this->actioncomm->error);
379 'message' =>
'Agenda Event deleted'
393 if ($data ===
null) {
397 foreach (AgendaEvents::$FIELDS as $field) {
398 if (!isset($data[$field])) {
399 throw new RestException(400,
"$field field missing");
401 $event[$field] = $data[$field];
443 unset(
$object->barcode_type_code);
444 unset(
$object->barcode_type_label);
445 unset(
$object->barcode_type_coder);
446 unset(
$object->mode_reglement_id);
447 unset(
$object->cond_reglement_id);
448 unset(
$object->cond_reglement);
449 unset(
$object->fk_delivery_address);
450 unset(
$object->shipping_method_id);
454 unset(
$object->total_localtax1);
455 unset(
$object->total_localtax2);
458 unset(
$object->label_incoterms);
459 unset(
$object->location_incoterms);
466 unset(
$object->demand_reason_id);
467 unset(
$object->transport_mode_id);
$id
Support class for third parties, contacts, members, users or resources.
if(! $sortfield) if(! $sortorder) $object
Class to manage agenda events (actions)
_cleanObjectDatas($object)
Clean sensible object datas @phpstan-template T.
_validate($data)
Validate fields before create or update object.
__construct()
Constructor.
put($id, $request_data=null)
Update an agenda event.
index($sortfield="t.id", $sortorder='ASC', $limit=100, $page=0, $user_ids='', $sqlfilters='', $properties='', $pagination_data=false)
List agenda events.
post($request_data=null)
Create an agenda event.
_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.
_checkValForAPI($field, $value, $object)
Check and convert a string depending on its type/name.
static _checkAccessToResource($resource, $resource_id=0, $dbtablename='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $parenttableforentity='')
Check access by user to a given resource.
forgeSQLFromUniversalSearchCriteria($filter, &$errorstr='', $noand=0, $nopar=0, $noerror=0, $forbiddenfields=array())
forgeSQLFromUniversalSearchCriteria
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.