18 use Luracast\Restler\RestException;
20 require_once DOL_DOCUMENT_ROOT.
'/ticket/class/ticket.class.php';
21 require_once DOL_DOCUMENT_ROOT.
'/core/lib/ticket.lib.php';
35 public static $FIELDS = array(
43 public static $FIELDS_MESSAGES = array(
60 $this->ticket =
new Ticket($this->
db);
75 public function get($id)
96 return $this->
getCommon(0, $track_id,
'');
127 private function getCommon($id = 0, $track_id =
'', $ref =
'')
129 if (!DolibarrApiAccess::$user->rights->ticket->read) {
130 throw new RestException(403);
134 if (($id < 0) && !$track_id && !$ref) {
135 throw new RestException(401,
'Wrong parameters');
138 $result = $this->ticket->initAsSpecimen();
140 $result = $this->ticket->fetch($id, $ref, $track_id);
143 throw new RestException(404,
'Ticket not found');
147 if ($this->ticket->fk_user_assign > 0) {
148 $userStatic =
new User($this->
db);
149 $userStatic->fetch($this->ticket->fk_user_assign);
150 $this->ticket->fk_user_assign_string = $userStatic->firstname.
' '.$userStatic->lastname;
155 $this->ticket->loadCacheMsgsTicket();
156 if (is_array($this->ticket->cache_msgs_ticket) && count($this->ticket->cache_msgs_ticket) > 0) {
157 $num = count($this->ticket->cache_msgs_ticket);
160 if ($this->ticket->cache_msgs_ticket[$i][
'fk_user_author'] > 0) {
161 $user_action =
new User($this->
db);
162 $user_action->fetch($this->ticket->cache_msgs_ticket[$i][
'fk_user_author']);
167 'id' => $this->ticket->cache_msgs_ticket[$i][
'id'],
168 'fk_user_action' => $this->ticket->cache_msgs_ticket[$i][
'fk_user_author'],
169 'fk_user_action_socid' => $user_action->socid,
170 'fk_user_action_string' =>
dolGetFirstLastname($user_action->firstname, $user_action->lastname),
171 'message' => $this->ticket->cache_msgs_ticket[$i][
'message'],
172 'datec' => $this->ticket->cache_msgs_ticket[$i][
'datec'],
173 'private' => $this->ticket->cache_msgs_ticket[$i][
'private']
177 $this->ticket->messages = $messages;
181 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
201 public function index($socid = 0, $sortfield =
"t.rowid", $sortorder =
"ASC", $limit = 100, $page = 0, $sqlfilters =
'')
205 if (!DolibarrApiAccess::$user->rights->ticket->read) {
206 throw new RestException(403);
211 if (!$socid && DolibarrApiAccess::$user->socid) {
212 $socid = DolibarrApiAccess::$user->socid;
218 if (!DolibarrApiAccess::$user->rights->societe->client->voir && !$socid) {
219 $search_sale = DolibarrApiAccess::$user->id;
222 $sql =
"SELECT t.rowid";
223 if ((!DolibarrApiAccess::$user->rights->societe->client->voir && !$socid) || $search_sale > 0) {
224 $sql .=
", sc.fk_soc, sc.fk_user";
226 $sql .=
" FROM ".MAIN_DB_PREFIX.
"ticket as t";
228 if ((!DolibarrApiAccess::$user->rights->societe->client->voir && !$socid) || $search_sale > 0) {
229 $sql .=
", ".MAIN_DB_PREFIX.
"societe_commerciaux as sc";
232 $sql .=
' WHERE t.entity IN ('.getEntity(
'ticket', 1).
')';
233 if ((!DolibarrApiAccess::$user->rights->societe->client->voir && !$socid) || $search_sale > 0) {
234 $sql .=
" AND t.fk_soc = sc.fk_soc";
237 $sql .=
" AND t.fk_soc = ".((int) $socid);
239 if ($search_sale > 0) {
240 $sql .=
" AND t.rowid = sc.fk_soc";
244 if ($search_sale > 0) {
245 $sql .=
" AND sc.fk_user = ".((int) $search_sale);
251 throw new RestException(503,
'Error when validating parameter sqlfilters -> '.$errormessage);
253 $regexstring =
'\(([^:\'\(\)]+:[^:\'\(\)]+:[^\(\)]+)\)';
254 $sql .=
" AND (".preg_replace_callback(
'/'.$regexstring.
'/',
'DolibarrApi::_forge_criteria_callback', $sqlfilters).
")";
257 $sql .= $this->
db->order($sortfield, $sortorder);
263 $offset = $limit * $page;
265 $sql .= $this->
db->plimit($limit, $offset);
268 $result = $this->
db->query($sql);
270 $num = $this->
db->num_rows($result);
273 $obj = $this->
db->fetch_object($result);
274 $ticket_static =
new Ticket($this->
db);
275 if ($ticket_static->fetch($obj->rowid)) {
276 if ($ticket_static->fk_user_assign > 0) {
277 $userStatic =
new User($this->
db);
278 $userStatic->fetch($ticket_static->fk_user_assign);
279 $ticket_static->fk_user_assign_string = $userStatic->firstname.
' '.$userStatic->lastname;
286 throw new RestException(503,
'Error when retrieve ticket list');
288 if (!count($obj_ret)) {
289 throw new RestException(404,
'No ticket found');
300 public function post($request_data =
null)
302 $ticketstatic =
new Ticket($this->
db);
303 if (!DolibarrApiAccess::$user->rights->ticket->write) {
304 throw new RestException(401);
307 $result = $this->
_validate($request_data);
309 foreach ($request_data as $field => $value) {
310 $this->ticket->$field = $value;
312 if (empty($this->ticket->ref)) {
313 $this->ticket->ref = $ticketstatic->getDefaultRef();
315 if (empty($this->ticket->track_id)) {
319 if ($this->ticket->create(DolibarrApiAccess::$user) < 0) {
320 throw new RestException(500,
"Error creating ticket", array_merge(array($this->ticket->error), $this->ticket->errors));
323 return $this->ticket->id;
335 $ticketstatic =
new Ticket($this->
db);
336 if (!DolibarrApiAccess::$user->rights->ticket->write) {
337 throw new RestException(401);
342 foreach ($request_data as $field => $value) {
343 $this->ticket->$field = $value;
345 $ticketMessageText = $this->ticket->message;
346 $result = $this->ticket->fetch(
'',
'', $this->ticket->track_id);
348 throw new RestException(404,
'Ticket not found');
350 $this->ticket->message = $ticketMessageText;
351 if (!$this->ticket->createTicketMessage(DolibarrApiAccess::$user)) {
352 throw new RestException(500,
'Error when creating ticket');
354 return $this->ticket->id;
365 public function put($id, $request_data =
null)
367 if (!DolibarrApiAccess::$user->rights->ticket->write) {
368 throw new RestException(401);
371 $result = $this->ticket->fetch($id);
373 throw new RestException(404,
'Ticket not found');
377 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
380 foreach ($request_data as $field => $value) {
381 $this->ticket->$field = $value;
384 if ($this->ticket->update($id, DolibarrApiAccess::$user)) {
385 return $this->
get($id);
398 public function delete($id)
400 if (!DolibarrApiAccess::$user->rights->ticket->delete) {
401 throw new RestException(401);
403 $result = $this->ticket->fetch($id);
405 throw new RestException(404,
'Ticket not found');
409 throw new RestException(401,
'Access not allowed for login '.DolibarrApiAccess::$user->login);
412 if (!$this->ticket->delete($id)) {
413 throw new RestException(500,
'Error when deleting ticket');
419 'message' =>
'Ticket deleted'
435 foreach (Tickets::$FIELDS as $field) {
436 if (!isset($data[$field])) {
437 throw new RestException(400,
"$field field missing");
439 $ticket[$field] = $data[$field];
455 foreach (Tickets::$FIELDS_MESSAGES as $field) {
456 if (!isset($data[$field])) {
457 throw new RestException(400,
"$field field missing");
459 $ticket[$field] = $data[$field];
477 $object = parent::_cleanObjectDatas($object);
486 "table_element_line",
493 "barcode_type_label",
494 "barcode_type_coder",
498 "fk_delivery_address",
499 "shipping_method_id",
512 "location_incoterms",
520 "cache_types_tickets",
521 "cache_category_tickets",
526 foreach ($attr2clean as $toclean) {
527 unset($object->$toclean);
531 if (isset($object->lines) && count($object->lines) > 0) {
532 $nboflines = count($object->lines);
533 for ($i = 0; $i < $nboflines; $i++) {
539 if (isset($object->linkedObjects) && count($object->linkedObjects) > 0) {
540 foreach ($object->linkedObjects as $type_object => $linked_object) {
541 foreach ($linked_object as $object2clean) {
static _checkAccessToResource($resource, $resource_id=0, $dbtablename='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid')
Check access by user to a given resource.
_checkFilters($sqlfilters, &$error='')
Return if a $sqlfilters parameter is valid.
getCommon($id=0, $track_id='', $ref='')
Get properties of a Ticket object Return an array with ticket informations.
getByRef($ref)
Get properties of a Ticket object from ref.
__construct()
Constructor.
_cleanObjectDatas($object)
Clean sensible object datas.
postNewMessage($request_data=null)
Create ticket object.
post($request_data=null)
Create ticket object.
put($id, $request_data=null)
Update ticket.
index($socid=0, $sortfield="t.rowid", $sortorder="ASC", $limit=100, $page=0, $sqlfilters='')
List tickets.
_validateMessage($data)
Validate fields before create or update object message.
getByTrackId($track_id)
Get properties of a Ticket object from track id.
_validate($data)
Validate fields before create or update object.
Class to manage Dolibarr users.
dolGetFirstLastname($firstname, $lastname, $nameorder=-1)
Return firstname and lastname in correct order.
Class to generate the form for creating a new ticket.
$conf db
API class for accounts.
generate_random_id($car=16)
Generate a random id.