dolibarr  17.0.4
view.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2013-2016 Jean-François FERRY <hello@librethic.io>
3  * Copyright (C) 2018 Frédéric France <frederic.france@netlogic.fr>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <https://www.gnu.org/licenses/>.
17  */
18 
25 if (!defined('NOREQUIREMENU')) {
26  define('NOREQUIREMENU', '1');
27 }
28 // If there is no need to load and show top and left menu
29 if (!defined("NOLOGIN")) {
30  define("NOLOGIN", '1');
31 }
32 if (!defined('NOIPCHECK')) {
33  define('NOIPCHECK', '1'); // Do not check IP defined into conf $dolibarr_main_restrict_ip
34 }
35 if (!defined('NOBROWSERNOTIF')) {
36  define('NOBROWSERNOTIF', '1');
37 }
38 // If this page is public (can be called outside logged session)
39 
40 // For MultiCompany module.
41 // Do not use GETPOST here, function is not defined and define must be done before including main.inc.php
42 $entity = (!empty($_GET['entity']) ? (int) $_GET['entity'] : (!empty($_POST['entity']) ? (int) $_POST['entity'] : 1));
43 if (is_numeric($entity)) {
44  define("DOLENTITY", $entity);
45 }
46 
47 // Load Dolibarr environment
48 require '../../main.inc.php';
49 require_once DOL_DOCUMENT_ROOT.'/ticket/class/actions_ticket.class.php';
50 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formticket.class.php';
51 require_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
52 require_once DOL_DOCUMENT_ROOT.'/core/lib/ticket.lib.php';
53 require_once DOL_DOCUMENT_ROOT.'/core/lib/security.lib.php';
54 require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
55 require_once DOL_DOCUMENT_ROOT.'/core/lib/payments.lib.php';
56 
57 // Load translation files required by the page
58 $langs->loadLangs(array("companies", "other", "ticket"));
59 
60 // Get parameters
61 $action = GETPOST('action', 'aZ09');
62 $cancel = GETPOST('cancel', 'aZ09');
63 
64 $track_id = GETPOST('track_id', 'alpha');
65 $email = GETPOST('email', 'email');
66 $suffix = "";
67 
68 if (GETPOST('btn_view_ticket')) {
69  unset($_SESSION['email_customer']);
70 }
71 if (isset($_SESSION['email_customer'])) {
72  $email = $_SESSION['email_customer'];
73 }
74 
75 $object = new ActionsTicket($db);
76 
77 if (!isModEnabled('ticket')) {
78  httponly_accessforbidden('Module Ticket not enabled');
79 }
80 
81 
82 /*
83  * Actions
84  */
85 
86 if ($cancel) {
87  $backtopage = DOL_URL_ROOT.'/public/ticket/index.php';
88 
89  if (!empty($backtopage)) {
90  header("Location: ".$backtopage);
91  exit;
92  }
93  $action = 'view_ticket';
94 }
95 
96 if ($action == "view_ticket" || $action == "presend" || $action == "close" || $action == "confirm_public_close" || $action == "add_message") {
97  $error = 0;
98  $display_ticket = false;
99  if (!strlen($track_id)) {
100  $error++;
101  array_push($object->errors, $langs->trans("ErrorFieldRequired", $langs->transnoentities("TicketTrackId")));
102  $action = '';
103  }
104  if (!strlen($email)) {
105  $error++;
106  array_push($object->errors, $langs->trans("ErrorFieldRequired", $langs->transnoentities("Email")));
107  $action = '';
108  } else {
109  if (!isValidEmail($email)) {
110  $error++;
111  array_push($object->errors, $langs->trans("ErrorEmailInvalid"));
112  $action = '';
113  }
114  }
115 
116  if (!$error) {
117  $ret = $object->fetch('', '', $track_id);
118  if ($ret && $object->dao->id > 0) {
119  // Check if emails provided is the one of author
120  $emailofticket = CMailFile::getValidAddress($object->dao->origin_email, 2);
121  if (strtolower($emailofticket) == strtolower($email)) {
122  $display_ticket = true;
123  $_SESSION['email_customer'] = $email;
124  } else {
125  // Check if emails provided is inside list of contacts
126  $contacts = $object->dao->liste_contact(-1, 'external');
127  foreach ($contacts as $contact) {
128  if (strtolower($contact['email']) == strtolower($email)) {
129  $display_ticket = true;
130  $_SESSION['email_customer'] = $email;
131  break;
132  } else {
133  $display_ticket = false;
134  }
135  }
136  }
137  // Check email of thirdparty of ticket
138  if ($object->dao->fk_soc > 0 || $object->dao->socid > 0) {
139  $object->dao->fetch_thirdparty();
140  if ($email == $object->dao->thirdparty->email) {
141  $display_ticket = true;
142  $_SESSION['email_customer'] = $email;
143  }
144  }
145  // Check if email is email of creator
146  if ($object->dao->fk_user_create > 0) {
147  $tmpuser = new User($db);
148  $tmpuser->fetch($object->dao->fk_user_create);
149  if (strtolower($email) == strtolower($tmpuser->email)) {
150  $display_ticket = true;
151  $_SESSION['email_customer'] = $email;
152  }
153  }
154  // Check if email is email of creator
155  if ($object->dao->fk_user_assign > 0 && $object->dao->fk_user_assign != $object->dao->fk_user_create) {
156  $tmpuser = new User($db);
157  $tmpuser->fetch($object->dao->fk_user_assign);
158  if (strtolower($email) == strtolower($tmpuser->email)) {
159  $display_ticket = true;
160  $_SESSION['email_customer'] = $email;
161  }
162  }
163  } else {
164  $error++;
165  array_push($object->errors, $langs->trans("ErrorTicketNotFound", $track_id));
166  $action = '';
167  }
168  }
169 
170  if (!$error && $action == 'confirm_public_close' && $display_ticket) {
171  if ($object->dao->close($user)) {
172  setEventMessages($langs->trans('TicketMarkedAsClosed'), null, 'mesgs');
173 
174  $url = 'view.php?action=view_ticket&track_id='.GETPOST('track_id', 'alpha').(!empty($entity) && isModEnabled('multicompany')?'&entity='.$entity:'').'&token='.newToken();
175  header("Location: ".$url);
176  exit;
177  } else {
178  $action = '';
179  setEventMessages($object->error, $object->errors, 'errors');
180  }
181  }
182 
183  if (!$error && $action == "add_message" && $display_ticket && GETPOSTISSET('btn_add_message')) {
184  // TODO Add message...
185  $ret = $object->dao->newMessage($user, $action, 0, 1);
186 
187 
188  if (!$error) {
189  $action = 'view_ticket';
190  }
191  }
192 
193  if ($error || $errors) {
194  setEventMessages($object->error, $object->errors, 'errors');
195  if ($action == "add_message") {
196  $action = 'presend';
197  } else {
198  $action = '';
199  }
200  }
201 }
202 //var_dump($action);
203 //$object->doActions($action);
204 
205 // Actions to send emails (for ticket, we need to manage the addfile and removefile only)
206 $triggersendname = 'TICKET_SENTBYMAIL';
207 $paramname = 'id';
208 $autocopy = 'MAIN_MAIL_AUTOCOPY_TICKET_TO'; // used to know the automatic BCC to add
209 if (!empty($object->id)) $trackid = 'tic'.$object->id;
210 include DOL_DOCUMENT_ROOT.'/core/actions_sendmails.inc.php';
211 
212 
213 
214 /*
215  * View
216  */
217 
218 $form = new Form($db);
219 $formticket = new FormTicket($db);
220 
221 if (!$conf->global->TICKET_ENABLE_PUBLIC_INTERFACE) {
222  print '<div class="error">'.$langs->trans('TicketPublicInterfaceForbidden').'</div>';
223  $db->close();
224  exit();
225 }
226 
227 $arrayofjs = array();
228 $arrayofcss = array('/ticket/css/styles.css.php');
229 
230 llxHeaderTicket($langs->trans("Tickets"), "", 0, 0, $arrayofjs, $arrayofcss);
231 
232 print '<div class="ticketpublicarea">';
233 
234 if ($action == "view_ticket" || $action == "presend" || $action == "close" || $action == "confirm_public_close") {
235  if ($display_ticket) {
236  // Confirmation close
237  if ($action == 'close') {
238  print $form->formconfirm($_SERVER["PHP_SELF"]."?track_id=".$track_id.(!empty($entity) && isModEnabled('multicompany')?'&entity='.$entity:''), $langs->trans("CloseATicket"), $langs->trans("ConfirmCloseAticket"), "confirm_public_close", '', '', 1);
239  }
240 
241  print '<div id="form_view_ticket" class="margintoponly">';
242 
243  print '<table class="ticketpublictable centpercent tableforfield">';
244 
245  // Ref
246  print '<tr><td class="titlefield">'.$langs->trans("Ref").'</td><td>';
247  print img_picto('', 'ticket', 'class="pictofixedwidth"');
248  print dol_escape_htmltag($object->dao->ref);
249  print '</td></tr>';
250 
251  // Tracking ID
252  print '<tr><td>'.$langs->trans("TicketTrackId").'</td><td>';
253  print dol_escape_htmltag($object->dao->track_id);
254  print '</td></tr>';
255 
256  // Subject
257  print '<tr><td>'.$langs->trans("Subject").'</td><td>';
258  print '<span class="bold">';
259  print dol_escape_htmltag($object->dao->subject);
260  print '</span>';
261  print '</td></tr>';
262 
263  // Statut
264  print '<tr><td>'.$langs->trans("Status").'</td><td>';
265  print $object->dao->getLibStatut(2);
266  print '</td></tr>';
267 
268  // Type
269  print '<tr><td>'.$langs->trans("Type").'</td><td>';
270  print dol_escape_htmltag($object->dao->type_label);
271  print '</td></tr>';
272 
273  // Category
274  print '<tr><td>'.$langs->trans("Category").'</td><td>';
275  if ($object->dao->category_label) {
276  print img_picto('', 'category', 'class="pictofixedwidth"');
277  print dol_escape_htmltag($object->dao->category_label);
278  }
279  print '</td></tr>';
280 
281  // Severity
282  print '<tr><td>'.$langs->trans("Severity").'</td><td>';
283  print dol_escape_htmltag($object->dao->severity_label);
284  print '</td></tr>';
285 
286  // Creation date
287  print '<tr><td>'.$langs->trans("DateCreation").'</td><td>';
288  print dol_print_date($object->dao->datec, 'dayhour');
289  print '</td></tr>';
290 
291  // Author
292  print '<tr><td>'.$langs->trans("Author").'</td><td>';
293  if ($object->dao->fk_user_create > 0) {
294  $langs->load("users");
295  $fuser = new User($db);
296  $fuser->fetch($object->dao->fk_user_create);
297  print img_picto('', 'user', 'class="pictofixedwidth"');
298  print $fuser->getFullName($langs);
299  } else {
300  print img_picto('', 'email', 'class="pictofixedwidth"');
301  print dol_escape_htmltag($object->dao->origin_email);
302  }
303 
304  print '</td></tr>';
305 
306  // Read date
307  if (!empty($object->dao->date_read)) {
308  print '<tr><td>'.$langs->trans("TicketReadOn").'</td><td>';
309  print dol_print_date($object->dao->date_read, 'dayhour');
310  print '</td></tr>';
311  }
312 
313  // Close date
314  if (!empty($object->dao->date_close)) {
315  print '<tr><td>'.$langs->trans("TicketCloseOn").'</td><td>';
316  print dol_print_date($object->dao->date_close, 'dayhour');
317  print '</td></tr>';
318  }
319 
320  // User assigned
321  print '<tr><td>'.$langs->trans("AssignedTo").'</td><td>';
322  if ($object->dao->fk_user_assign > 0) {
323  $fuser = new User($db);
324  $fuser->fetch($object->dao->fk_user_assign);
325  print img_picto('', 'user', 'class="pictofixedwidth"');
326  print $fuser->getFullName($langs, 1);
327  }
328  print '</td></tr>';
329 
330  // Progression
331  print '<tr><td>'.$langs->trans("Progression").'</td><td>';
332  print ($object->dao->progress > 0 ? dol_escape_htmltag($object->dao->progress) : '0').'%';
333  print '</td></tr>';
334 
335  print '</table>';
336 
337  print '</div>';
338 
339  print '<div style="clear: both; margin-top: 1.5em;"></div>';
340 
341  if ($action == 'presend') {
342  print load_fiche_titre($langs->trans('TicketAddMessage'), '', 'conversation');
343 
344  $formticket = new FormTicket($db);
345 
346  $formticket->action = "add_message";
347  $formticket->track_id = $object->dao->track_id;
348  $formticket->id = $object->dao->id;
349 
350  $formticket->param = array('track_id' => $object->dao->track_id, 'fk_user_create' => '-1',
351  'returnurl' => DOL_URL_ROOT.'/public/ticket/view.php'.(!empty($entity) && isModEnabled('multicompany')?'?entity='.$entity:''));
352 
353  $formticket->withfile = 2;
354  $formticket->withcancel = 1;
355 
356  $formticket->showMessageForm('100%');
357  }
358 
359  if ($action != 'presend') {
360  print '<form method="post" id="form_view_ticket_list" name="form_view_ticket_list" action="'.DOL_URL_ROOT.'/public/ticket/list.php'.(!empty($entity) && isModEnabled('multicompany')?'?entity='.$entity:'').'">';
361  print '<input type="hidden" name="token" value="'.newToken().'">';
362  print '<input type="hidden" name="action" value="view_ticketlist">';
363  print '<input type="hidden" name="track_id" value="'.$object->dao->track_id.'">';
364  print '<input type="hidden" name="email" value="'.$_SESSION['email_customer'].'">';
365  //print '<input type="hidden" name="search_fk_status" value="non_closed">';
366  print "</form>\n";
367 
368  print '<div class="tabsAction">';
369 
370  // List ticket
371  print '<div class="inline-block divButAction"><a class="left" style="padding-right: 50px" href="javascript:$(\'#form_view_ticket_list\').submit();">'.$langs->trans('ViewMyTicketList').'</a></div>';
372 
373  if ($object->dao->fk_statut < Ticket::STATUS_CLOSED) {
374  // New message
375  print '<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER['PHP_SELF'].'?action=presend&mode=init&track_id='.$object->dao->track_id.(!empty($entity) && isModEnabled('multicompany')?'&entity='.$entity:'').'&token='.newToken().'">'.$langs->trans('TicketAddMessage').'</a></div>';
376 
377  // Close ticket
378  if ($object->dao->fk_statut >= Ticket::STATUS_NOT_READ && $object->dao->fk_statut < Ticket::STATUS_CLOSED) {
379  print '<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER['PHP_SELF'].'?action=close&track_id='.$object->dao->track_id.(!empty($entity) && isModEnabled('multicompany')?'&entity='.$entity:'').'&token='.newToken().'">'.$langs->trans('CloseTicket').'</a></div>';
380  }
381  }
382 
383  print '</div>';
384  }
385 
386  // Message list
387  print load_fiche_titre($langs->trans('TicketMessagesList'), '', 'conversation');
388  $object->viewTicketMessages(false, true, $object->dao);
389  } else {
390  print '<div class="error">Not Allowed<br><a href="'.$_SERVER['PHP_SELF'].'?track_id='.$object->dao->track_id.(!empty($entity) && isModEnabled('multicompany')?'?entity='.$entity:'').'" rel="nofollow noopener">'.$langs->trans('Back').'</a></div>';
391  }
392 } else {
393  print '<div class="center opacitymedium margintoponly marginbottomonly">'.$langs->trans("TicketPublicMsgViewLogIn").'</div>';
394 
395  print '<div id="form_view_ticket">';
396  print '<form method="post" name="form_view_ticket" action="'.$_SERVER['PHP_SELF'].(!empty($entity) && isModEnabled('multicompany')?'?entity='.$entity:'').'">';
397  print '<input type="hidden" name="token" value="'.newToken().'">';
398  print '<input type="hidden" name="action" value="view_ticket">';
399 
400  print '<p><label for="track_id" style="display: inline-block; width: 30%; "><span class="fieldrequired">'.$langs->trans("TicketTrackId").'</span></label>';
401  print '<input size="30" id="track_id" name="track_id" value="'.(GETPOST('track_id', 'alpha') ? GETPOST('track_id', 'alpha') : '').'" />';
402  print '</p>';
403 
404  print '<p><label for="email" style="display: inline-block; width: 30%; "><span class="fieldrequired">'.$langs->trans('Email').'</span></label>';
405  print '<input size="30" id="email" name="email" value="'.(GETPOST('email', 'alpha') ? GETPOST('email', 'alpha') : (!empty($_SESSION['customer_email']) ? $_SESSION['customer_email'] : "")).'" />';
406  print '</p>';
407 
408  print '<p style="text-align: center; margin-top: 1.5em;">';
409  print '<input type="submit" class="button" name="btn_view_ticket" value="'.$langs->trans('ViewTicket').'" />';
410  print ' &nbsp; ';
411  print '<input type="submit" class="button button-cancel" name="cancel" value="'.$langs->trans("Cancel").'">';
412  print "</p>\n";
413 
414  print "</form>\n";
415  print "</div>\n";
416 }
417 
418 print "</div>";
419 
420 // End of page
421 htmlPrintOnlinePaymentFooter($mysoc, $langs, 0, $suffix, $object);
422 
423 llxFooter('', 'public');
424 
425 $db->close();
llxFooter()
Empty footer.
Definition: wrapper.php:70
Class Actions of the module ticket.
static getValidAddress($address, $format, $encode=0, $maxnumberofemail=0)
Return a formatted address string for SMTP protocol.
Class to manage generation of HTML components Only common components must be here.
const STATUS_NOT_READ
Status.
Class to manage Dolibarr users.
Definition: user.class.php:47
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:143
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0)
Returns text escaped for inclusion in HTML alt or title tags, or into values of HTML input fields.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
newToken()
Return the value of token currently saved into session with name 'newtoken'.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
isValidEmail($address, $acceptsupervisorkey=0, $acceptuserkey=0)
Return true if email syntax is ok.
isModEnabled($module)
Is Dolibarr module enabled.
httponly_accessforbidden($message=1, $http_response_code=403, $stringalreadysanitized=0)
Show a message to say access is forbidden and stop program.
llxHeaderTicket($title, $head="", $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='')
Show header for public pages.
Definition: ticket.lib.php:216