dolibarr 23.0.3
ticket.lib.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2013-2018 Jean-François FERRY <hello@librethic.io>
3 * Copyright (C) 2016 Christophe Battarel <christophe@altairis.fr>
4 * Copyright (C) 2019-2025 Frédéric France <frederic.france@free.fr>
5 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
6 * Copyright (C) 2025 Benjamin Falière <benjamin@faliere.com>
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
34{
35 global $langs, $conf, $db;
36
37 $extrafields = new ExtraFields($db);
38 $extrafields->fetch_name_optionals_label('ticket');
39
40 $langs->load("ticket");
41
42 $h = 0;
43 $head = array();
44
45 $head[$h][0] = dolBuildUrl(DOL_URL_ROOT.'/admin/ticket.php');
46 $head[$h][1] = $langs->trans("TicketSettings");
47 $head[$h][2] = 'settings';
48 $h++;
49
50 $head[$h][0] = dolBuildUrl(DOL_URL_ROOT.'/admin/ticket_extrafields.php');
51 $head[$h][1] = $langs->trans("ExtraFieldsTicket");
52 $nbExtrafields = $extrafields->attributes['ticket']['count'];
53 if ($nbExtrafields > 0) {
54 $head[$h][1] .= '<span class="badge marginleftonlyshort">'.$nbExtrafields.'</span>';
55 }
56 $head[$h][2] = 'attributes';
57 $h++;
58
59 $head[$h][0] = dolBuildUrl(DOL_URL_ROOT.'/admin/ticket_public.php');
60 $head[$h][1] = $langs->trans("PublicInterface");
61 $head[$h][2] = 'public';
62 $h++;
63
64 // Show more tabs from modules
65 // Entries must be declared in modules descriptor with line
66 //$this->tabs = array(
67 // 'entity:+tabname:Title:@ticket:/ticket/mypage.php?id=__ID__'
68 //); // to add new tab
69 //$this->tabs = array(
70 // 'entity:-tabname:Title:@ticket:/ticket/mypage.php?id=__ID__'
71 //); // to remove a tab
72 complete_head_from_modules($conf, $langs, null, $head, $h, 'ticketadmin');
73
74 complete_head_from_modules($conf, $langs, null, $head, $h, 'ticketadmin', 'remove');
75
76 return $head;
77}
78
86{
87 global $langs, $conf, $user, $db;
88
89 $h = 0;
90 $head = array();
91 $head[$h][0] = dolBuildUrl(DOL_URL_ROOT.'/ticket/card.php', ['track_id' => $object->track_id]);
92 $head[$h][1] = $langs->trans("Ticket");
93 $head[$h][2] = 'tabTicket';
94 $h++;
95
96 if (!getDolGlobalInt('MAIN_DISABLE_CONTACTS_TAB') && empty($user->socid) && isModEnabled("societe")) {
97 $nbContact = count($object->liste_contact(-1, 'internal')) + count($object->liste_contact(-1, 'external'));
98 $head[$h][0] = dolBuildUrl(DOL_URL_ROOT.'/ticket/contact.php', ['track_id' => $object->track_id]);
99 $head[$h][1] = $langs->trans('ContactsAddresses');
100 if ($nbContact > 0) {
101 $head[$h][1] .= '<span class="badge marginleftonlyshort">'.$nbContact.'</span>';
102 }
103 $head[$h][2] = 'contact';
104 $h++;
105 }
106
107 // Notes
108 if (!getDolGlobalString('MAIN_DISABLE_NOTES_TAB')) {
109 $nbNote = 0;
110 if (!empty($object->note_private)) {
111 $nbNote++;
112 }
113 if (!empty($object->note_public)) {
114 $nbNote++;
115 }
116 $head[$h][0] = dolBuildUrl(DOL_URL_ROOT.'/ticket/note.php', ['id' => $object->id]);
117 $head[$h][1] = $langs->trans('Notes');
118 if ($nbNote > 0) {
119 $head[$h][1] .= '<span class="badge marginleftonlyshort">'.$nbNote.'</span>';
120 }
121 $head[$h][2] = 'note';
122 $h++;
123 }
124
125 complete_head_from_modules($conf, $langs, $object, $head, $h, 'ticket', 'add', 'core');
126
127 // Attached files
128 include_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
129 $upload_dir = $conf->ticket->dir_output."/".$object->ref;
130 $nbFiles = count(dol_dir_list($upload_dir, 'files'));
131 /* disabled. Too many bugs. All file of a ticket must be stored into ticket. File must be linked to an event by column agenda_id into llx_ecmfiles.
132 $sql = 'SELECT id FROM '.MAIN_DB_PREFIX.'actioncomm';
133 $sql .= " WHERE fk_element = ".(int) $object->id." AND elementtype = 'ticket'";
134 $resql = $db->query($sql);
135 if ($resql) {
136 $numrows = $db->num_rows($resql);
137 for ($i=0; $i < $numrows; $i++) {
138 $upload_msg_dir = $conf->agenda->dir_output.'/'.$db->fetch_row($resql)[0];
139 $nbFiles += count(dol_dir_list($upload_msg_dir, "files"));
140 }
141 }
142 */
143 $head[$h][0] = dolBuildUrl(DOL_URL_ROOT.'/ticket/document.php', ['id' => $object->id]);
144 $head[$h][1] = $langs->trans("Documents");
145 if ($nbFiles > 0) {
146 $head[$h][1] .= '<span class="badge marginleftonlyshort">'.$nbFiles.'</span>';
147 }
148
149 $head[$h][2] = 'tabTicketDocument';
150 $h++;
151
152
153 // History
154 $ticketViewType = "messaging";
155 if (empty($_SESSION['ticket-view-type'])) {
156 $_SESSION['ticket-view-type'] = $ticketViewType;
157 } else {
158 $ticketViewType = $_SESSION['ticket-view-type'];
159 }
160
161 if ($ticketViewType == "messaging") {
162 $head[$h][0] = dolBuildUrl(DOL_URL_ROOT.'/ticket/messaging.php', ['track_id' => $object->track_id]);
163 } else {
164 // $ticketViewType == "list"
165 $head[$h][0] = dolBuildUrl(DOL_URL_ROOT.'/ticket/agenda.php', ['track_id' => $object->track_id]);
166 }
167 $head[$h][1] = $langs->trans('Events');
168 if (isModEnabled('agenda') && ($user->hasRight('agenda', 'myactions', 'read') || $user->hasRight('agenda', 'allactions', 'read'))) {
169 $nbEvent = 0;
170 // Enable caching of ticket count actioncomm
171 require_once DOL_DOCUMENT_ROOT.'/core/lib/memory.lib.php';
172 $cachekey = 'count_events_ticket_'.$object->id;
173 $dataretrieved = dol_getcache($cachekey);
174 if (!is_null($dataretrieved)) {
175 $nbEvent = $dataretrieved;
176 } else {
177 $sql = "SELECT COUNT(id) as nb";
178 $sql .= " FROM ".MAIN_DB_PREFIX."actioncomm";
179 $sql .= " WHERE fk_element = ".((int) $object->id);
180 $sql .= " AND elementtype = 'ticket'";
181 $resql = $db->query($sql);
182 if ($resql) {
183 $obj = $db->fetch_object($resql);
184 $nbEvent = $obj->nb;
185 } else {
186 dol_syslog('Failed to count actioncomm '.$db->lasterror(), LOG_ERR);
187 }
188 dol_setcache($cachekey, $nbEvent, 120); // If setting cache fails, this is not a problem, so we do not test result.
189 }
190
191 $head[$h][1] .= '/';
192 $head[$h][1] .= $langs->trans("Agenda");
193 if ($nbEvent > 0) {
194 $head[$h][1] .= '<span class="badge marginleftonlyshort">'.$nbEvent.'</span>';
195 }
196 }
197 $head[$h][2] = 'tabTicketLogs';
198 $h++;
199
200
201 complete_head_from_modules($conf, $langs, $object, $head, $h, 'ticket', 'add', 'external');
202
203 complete_head_from_modules($conf, $langs, $object, $head, $h, 'ticket', 'remove');
204
205 return $head;
206}
207
215{
216 global $conf, $langs;
217
218 require_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
219 $email = CMailFile::getValidAddress($object->origin_email, 2);
220 $url = '';
221 if ($email) {
222 $url = getDolGlobalString('TICKET_URL_PUBLIC_INTERFACE', dol_buildpath('/public/ticket/', 3)).'view.php?track_id='.$object->track_id.'&email='.$email;
223 }
224
225 $out = '';
226 if (!getDolGlobalInt('TICKET_ENABLE_PUBLIC_INTERFACE')) {
227 $langs->load('errors');
228 $out .= '<span class="opacitymedium">'.$langs->trans("ErrorPublicInterfaceNotEnabled").'</span>';
229 } else {
230 $out .= img_picto('', 'object_globe.png').' <span class="opacitymedium">'.$langs->trans("TicketPublicAccess").'</span>';
231 if ($url) {
232 $out .= '<br><div class="urllink">';
233 $out .= '<input type="text" id="directpubliclink" class="quatrevingtpercentminusx" spellcheck="false" value="'.$url.'">';
234 $out .= '<a href="'.$url.'" target="_blank" rel="noopener noreferrer">'.img_picto('', 'object_globe.png', 'class="paddingleft"').'</a>';
235 $out .= '</div>';
236 $out .= ajax_autoselect("directpubliclink", '');
237 } else {
238 $out .= ': <span class="opacitymedium">'.$langs->trans("TicketNotCreatedFromPublicInterface").'</span>';
239 }
240 }
241
242 return $out;
243}
244
251function generate_random_id($car = 16)
252{
253 $string = "";
254 $chaine = "abcdefghijklmnopqrstuvwxyz123456789";
255 $max = strlen($chaine) - 1;
256
257 for ($i = 0; $i < $car; $i++) {
258 try {
259 $key = random_int(0, $max);
260 } catch (Exception $e) {
261 // Fallback. We let PHP makes the seed automatically (no manual mt_srand)
262 $key = mt_rand(0, $max);
263 }
264 $string .= $chaine[$key];
265 }
266 return $string;
267}
268
280function llxHeaderTicket($title, $head = "", $disablejs = 0, $disablehead = 0, $arrayofjs = [], $arrayofcss = [])
281{
282 global $conf, $langs, $mysoc;
283
284 top_htmlhead($head, $title, $disablejs, $disablehead, $arrayofjs, $arrayofcss, 0, 1); // Show html headers
285
286 print '<body id="mainbody" class="publicnewticketform">';
287 print '<div class="publicnewticketform2 centpercent" style="min-height: 100%;">';
288
289
290 htmlPrintOnlineHeader($mysoc, $langs, (getDolGlobalInt('TICKET_SHOW_COMPANY_LOGO') ? getDolGlobalString('TICKET_URL_PUBLIC_INTERFACE', dol_buildpath('/public/ticket/index.php?entity='.$conf->entity, 1)) : '0'), getDolGlobalString('TICKET_PUBLIC_INTERFACE_TOPIC', $langs->trans("TicketSystem")), 'TICKET_IMAGE_PUBLIC_INTERFACE');
291}
if(! $sortfield) if(! $sortorder) $object
Definition account.php:100
static getValidAddress($address, $format, $encode=0, $maxnumberofemail=0)
Return a formatted address string for SMTP protocol.
Class to manage standard extra fields.
htmlPrintOnlineHeader($mysoc, $langs, $showlogo=1, $alttext='', $subimageconst='', $altlogo1='', $altlogo2='')
Show the header of a company in HTML public pages.
global $mysoc
dol_dir_list($utf8_path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
Definition files.lib.php:64
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
dolBuildUrl($url, $params=[], $addtoken=false)
Return path of url.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
ajax_autoselect($htmlname, $addlink='', $textonlink='Link')
Make content of an input box selected when we click into input field.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
complete_head_from_modules($conf, $langs, $object, &$head, &$h, $type, $mode='add', $filterorigmodule='')
Complete or removed entries into a head array (used to build tabs).
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs=array(), $arrayofcss=array(), $disableforlogin=0, $disablenofollow=0, $disablenoindex=0)
Output html header of a page.
dol_setcache($memoryid, $data, $expire=0, $filecache=0, $replace=0)
Save data into a memory area shared by all users, all sessions on server.
dol_getcache($memoryid, $filecache=0)
Read a memory area shared by all users, all sessions on server.
generate_random_id($car=16)
Generate a random id.
llxHeaderTicket($title, $head="", $disablejs=0, $disablehead=0, $arrayofjs=[], $arrayofcss=[])
Show http header, open body tag and show HTML header banner for public pages for tickets.
ticketAdminPrepareHead()
Build tabs for admin page.
showDirectPublicLink($object)
Return string with full Url.
ticket_prepare_head($object)
Build tabs for a Ticket object.