dolibarr  17.0.4
modTicket.class.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) - 2013-2018 Jean-François FERRY <hello@librethic.io>
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <https://www.gnu.org/licenses/>.
16  *
17  * Module descriptor for ticket system
18  */
19 
27 require_once DOL_DOCUMENT_ROOT."/core/modules/DolibarrModules.class.php";
28 
29 
34 {
40  public function __construct($db)
41  {
42  global $langs, $conf;
43  $langs->load("ticket");
44 
45  $this->db = $db;
46 
47  // Id for module (must be unique).
48  // Use a free id here
49  // (See in Home -> System information -> Dolibarr for list of used modules id).
50  $this->numero = 56000;
51  // Key text used to identify module (for permissions, menus, etc...)
52  $this->rights_class = 'ticket';
53 
54  // Family can be 'crm','financial','hr','projects','products','ecm','technic','other'
55  // It is used to group modules in module setup page
56  $this->family = "crm";
57  // Module position in the family
58  $this->module_position = '60';
59  // Module label (no space allowed)
60  // used if translation string 'ModuleXXXName' not found
61  // (where XXX is value of numeric property 'numero' of module)
62  $this->name = preg_replace('/^mod/i', '', get_class($this));
63  // Module description
64  // used if translation string 'ModuleXXXDesc' not found
65  // (where XXX is value of numeric property 'numero' of module)
66  $this->description = "Incident/support ticket management";
67  // Possible values for version are: 'development', 'experimental' or version
68  $this->version = 'dolibarr';
69  // Key used in llx_const table to save module status enabled/disabled
70  // (where MYMODULE is value of property name of module in uppercase)
71  $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
72  // Name of image file used for this module.
73  // If file is in theme/yourtheme/img directory under name object_pictovalue.png
74  // use this->picto='pictovalue'
75  // If file is in module/img directory under name object_pictovalue.png
76  // use this->picto='pictovalue@module'
77  $this->picto = 'ticket'; // mypicto@ticket
78  // Defined all module parts (triggers, login, substitutions, menus, css, etc...)
79  // for default path (eg: /ticket/core/xxxxx) (0=disable, 1=enable)
80  // for specific path of parts (eg: /ticket/core/modules/barcode)
81  // for specific css file (eg: /ticket/css/ticket.css.php)
82  $this->module_parts = array(
83  // Set this to 1 if module has its own trigger directory
84  'triggers' => 1,
85  );
86 
87  // Data directories to create when module is enabled.
88  // Example: this->dirs = array("/ticket/temp");
89  $this->dirs = array();
90 
91  // Config pages. Put here list of php pages
92  // stored into ticket/admin directory, used to setup module.
93  $this->config_page_url = array("ticket.php");
94 
95  // Dependencies
96  $this->hidden = false; // A condition to hide module
97  $this->depends = array('modAgenda'); // List of module class names as string that must be enabled if this module is enabled
98  $this->requiredby = array(); // List of module ids to disable if this one is disabled
99  $this->conflictwith = array(); // List of module class names as string this module is in conflict with
100  $this->phpmin = array(7, 0); // Minimum version of PHP required by module
101  $this->langfiles = array("ticket");
102 
103  // Constants
104  // List of particular constants to add when module is enabled
105  // (key, 'chaine', value, desc, visible, 'current' or 'allentities', deleteonunactive)
106  // Example:
107  $default_footer = $langs->trans('TicketMessageMailFooterText', getDolGlobalString('MAIN_INFO_SOCIETE_NOM'));
108  $this->const = array(
109  1 => array('TICKET_ENABLE_PUBLIC_INTERFACE', 'chaine', '0', 'Enable ticket public interface', 0),
110  2 => array('TICKET_ADDON', 'chaine', 'mod_ticket_simple', 'Ticket ref module', 0),
111  3 => array('TICKET_ADDON_PDF_ODT_PATH', 'chaine', 'DOL_DATA_ROOT/doctemplates/tickets', 'Ticket templates ODT/ODS directory for templates', 0),
112  4 => array('TICKET_AUTO_READ_WHEN_CREATED_FROM_BACKEND', 'chaine', 0, 'Automatically mark ticket as read when created from backend', 0),
113  5 => array('TICKET_DELAY_BEFORE_FIRST_RESPONSE', 'chaine', '0', 'Maximum wanted elapsed time before a first answer to a ticket (in hours). Display a warning in tickets list if not respected.', 0),
114  6 => array('TICKET_DELAY_SINCE_LAST_RESPONSE', 'chaine', '0', 'Maximum wanted elapsed time between two answers on the same ticket (in hours). Display a warning in tickets list if not respected.', 0),
115  7 => array('TICKET_NOTIFY_AT_CLOSING', 'chaine', '0', 'Default notify contacts when closing a module', 0),
116  8 => array('TICKET_PRODUCT_CATEGORY', 'chaine', 0, 'The category of product that is being used for ticket accounting', 0),
117  9 => array('TICKET_NOTIFICATION_EMAIL_FROM', 'chaine', getDolGlobalString('MAIN_MAIL_EMAIL_FROM'), 'Email to use by default as sender for messages sent from Dolibarr', 0),
118  10 => array('TICKET_MESSAGE_MAIL_INTRO', 'chaine', $langs->trans('TicketMessageMailIntroText'), 'Introduction text of ticket replies sent from Dolibarr', 0),
119  11 => array('TICKET_MESSAGE_MAIL_SIGNATURE', 'chaine', $default_footer, 'Signature to use by default for messages sent from Dolibarr', 0),
120  12 => array('MAIN_EMAILCOLLECTOR_MAIL_WITHOUT_HEADER', 'chaine', "1", 'Disable the rendering of headers in tickets', 0),
121  13 => array('MAIN_SECURITY_ENABLECAPTCHA_TICKET', 'chaine', getDolGlobalInt('MAIN_SECURITY_ENABLECAPTCHA_TICKET'), 'Enable captcha code by default', 0)
122  );
123 
124 
125  $this->tabs = array(
126  'thirdparty:+ticket:Tickets:ticket:$user->rights->ticket->read:/ticket/list.php?socid=__ID__',
127  );
128 
129  // Dictionaries
130  if (!isset($conf->ticket->enabled)) {
131  $conf->ticket = new stdClass();
132  $conf->ticket->enabled = 0;
133  }
134  $this->dictionaries = array(
135  'langs' => 'ticket',
136  'tabname' => array(
137  "c_ticket_type",
138  "c_ticket_severity",
139  "c_ticket_category",
140  "c_ticket_resolution"
141  ),
142  'tablib' => array(
143  "TicketDictType",
144  "TicketDictSeverity",
145  "TicketDictCategory",
146  "TicketDictResolution"
147  ),
148  'tabsql' => array(
149  'SELECT f.rowid as rowid, f.code, f.pos, f.label, f.active, f.use_default FROM '.MAIN_DB_PREFIX.'c_ticket_type as f',
150  'SELECT f.rowid as rowid, f.code, f.pos, f.label, f.active, f.use_default FROM '.MAIN_DB_PREFIX.'c_ticket_severity as f',
151  'SELECT f.rowid as rowid, f.code, f.pos, f.label, f.active, f.use_default, f.public, f.fk_parent FROM '.MAIN_DB_PREFIX.'c_ticket_category as f',
152  'SELECT f.rowid as rowid, f.code, f.pos, f.label, f.active, f.use_default FROM '.MAIN_DB_PREFIX.'c_ticket_resolution as f'
153  ),
154  'tabsqlsort' => array("pos ASC", "pos ASC", "pos ASC", "pos ASC"),
155  'tabfield' => array("code,label,pos,use_default", "code,label,pos,use_default", "code,label,pos,use_default,public,fk_parent", "code,label,pos,use_default"),
156  'tabfieldvalue' => array("code,label,pos,use_default", "code,label,pos,use_default", "code,label,pos,use_default,public,fk_parent", "code,label,pos,use_default"),
157  'tabfieldinsert' => array("code,label,pos,use_default", "code,label,pos,use_default", "code,label,pos,use_default,public,fk_parent", "code,label,pos,use_default"),
158  'tabrowid' => array("rowid", "rowid", "rowid", "rowid"),
159  'tabcond' => array($conf->ticket->enabled, $conf->ticket->enabled, $conf->ticket->enabled, $conf->ticket->enabled && getDolGlobalString('TICKET_ENABLE_RESOLUTION')),
160  'tabhelp' => array(
161  array('code'=>$langs->trans("EnterAnyCode"), 'use_default'=>$langs->trans("Enter0or1")),
162  array('code'=>$langs->trans("EnterAnyCode"), 'use_default'=>$langs->trans("Enter0or1")),
163  array('code'=>$langs->trans("EnterAnyCode"), 'use_default'=>$langs->trans("Enter0or1"), 'public'=>$langs->trans("Enter0or1").'<br>'.$langs->trans("TicketGroupIsPublicDesc"), 'fk_parent'=>$langs->trans("IfThisCategoryIsChildOfAnother")),
164  array('code'=>$langs->trans("EnterAnyCode"), 'use_default'=>$langs->trans("Enter0or1"))
165  ),
166  );
167 
168  // Boxes
169  // Add here list of php file(s) stored in core/boxes that contains class to show a box.
170  $this->boxes = array(
171  0=>array('file'=>'box_last_ticket.php', 'enabledbydefaulton'=>'Home'),
172  1=>array('file'=>'box_last_modified_ticket.php', 'enabledbydefaulton'=>'Home'),
173  2=>array('file'=>'box_ticket_by_severity.php', 'enabledbydefaulton'=>'ticketindex'),
174  3=>array('file'=>'box_graph_nb_ticket_last_x_days.php', 'enabledbydefaulton'=>'ticketindex'),
175  4=>array('file'=>'box_graph_nb_tickets_type.php', 'enabledbydefaulton'=>'ticketindex'),
176  5=>array('file'=>'box_new_vs_close_ticket.php', 'enabledbydefaulton'=>'ticketindex')
177  ); // Boxes list
178 
179  // Permissions
180  $this->rights = array(); // Permission array used by this module
181 
182  $r = 0;
183  $this->rights[$r][0] = 56001; // id de la permission
184  $this->rights[$r][1] = "Read ticket"; // libelle de la permission
185  $this->rights[$r][2] = 'r'; // type de la permission (deprecie a ce jour)
186  $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
187  $this->rights[$r][4] = 'read';
188 
189  $r++;
190  $this->rights[$r][0] = 56002; // id de la permission
191  $this->rights[$r][1] = "Create les tickets"; // libelle de la permission
192  $this->rights[$r][2] = 'w'; // type de la permission (deprecie a ce jour)
193  $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
194  $this->rights[$r][4] = 'write';
195 
196  $r++;
197  $this->rights[$r][0] = 56003; // id de la permission
198  $this->rights[$r][1] = "Delete les tickets"; // libelle de la permission
199  $this->rights[$r][2] = 'd'; // type de la permission (deprecie a ce jour)
200  $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
201  $this->rights[$r][4] = 'delete';
202 
203  $r++;
204  $this->rights[$r][0] = 56004; // id de la permission
205  $this->rights[$r][1] = "Manage tickets"; // libelle de la permission
206  //$this->rights[$r][2] = 'd'; // type de la permission (deprecie a ce jour)
207  $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
208  $this->rights[$r][4] = 'manage';
209 
210  /* Seems not used and in conflict with societe->client->voir (see all thirdparties)
211  $r++;
212  $this->rights[$r][0] = 56005; // id de la permission
213  $this->rights[$r][1] = 'See all tickets, even if not assigned to (not effective for external users, always restricted to the thirdpardy they depends on)'; // libelle de la permission
214  $this->rights[$r][2] = 'r'; // type de la permission (deprecie a ce jour)
215  $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
216  $this->rights[$r][4] = 'view';
217  $this->rights[$r][5] = 'all';
218  */
219 
220  // Main menu entries
221  $this->menus = array(); // List of menus to add
222  $r = 0;
223 
224  /*$this->menu[$r] = array('fk_menu' => 0, // Put 0 if this is a top menu
225  'type' => 'top', // This is a Top menu entry
226  'titre' => 'Ticket',
227  'prefix' => img_picto('', $this->picto, 'class="paddingright pictofixedwidth em092"'),
228  'mainmenu' => 'ticket',
229  'leftmenu' => '1', // Use 1 if you also want to add left menu entries using this descriptor.
230  'url' => '/ticket/index.php',
231  'langs' => 'ticket', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory.
232  'position' => 88,
233  'enabled' => '$conf->ticket->enabled',
234  'perms' => '$user->rights->ticket->read', // Use 'perms'=>'$user->rights->ticket->level1->level2' if you want your menu with a permission rules
235  'target' => '',
236  'user' => 2); // 0=Menu for internal users, 1=external users, 2=both
237  $r++;*/
238 
239  $this->menu[$r] = array('fk_menu' => 'fk_mainmenu=ticket',
240  'type' => 'left',
241  'titre' => 'Ticket',
242  'prefix' => img_picto('', $this->picto, 'class="paddingright pictofixedwidth em092"'),
243  'mainmenu' => 'ticket',
244  'leftmenu' => 'ticket',
245  'url' => '/ticket/index.php',
246  'langs' => 'ticket',
247  'position' => 101,
248  'enabled' => '$conf->ticket->enabled',
249  'perms' => '$user->rights->ticket->read',
250  'target' => '',
251  'user' => 2);
252  $r++;
253 
254  $this->menu[$r] = array('fk_menu' => 'fk_mainmenu=ticket,fk_leftmenu=ticket',
255  'type' => 'left',
256  'titre' => 'NewTicket',
257  'mainmenu' => 'ticket',
258  'url' => '/ticket/card.php?action=create',
259  'langs' => 'ticket',
260  'position' => 102,
261  'enabled' => '$conf->ticket->enabled',
262  'perms' => '$user->rights->ticket->write',
263  'target' => '',
264  'user' => 2);
265  $r++;
266 
267  $this->menu[$r] = array('fk_menu' => 'fk_mainmenu=ticket,fk_leftmenu=ticket',
268  'type' => 'left',
269  'titre' => 'List',
270  'mainmenu' => 'ticket',
271  'leftmenu' => 'ticketlist',
272  'url' => '/ticket/list.php?search_fk_status=non_closed',
273  'langs' => 'ticket',
274  'position' => 103,
275  'enabled' => '$conf->ticket->enabled',
276  'perms' => '$user->rights->ticket->read',
277  'target' => '',
278  'user' => 2);
279  $r++;
280 
281  $this->menu[$r] = array('fk_menu' => 'fk_mainmenu=ticket,fk_leftmenu=ticket',
282  'type' => 'left',
283  'titre' => 'MenuTicketMyAssign',
284  'mainmenu' => 'ticket',
285  'leftmenu' => 'ticketmy',
286  'url' => '/ticket/list.php?mode=mine&search_fk_status=non_closed',
287  'langs' => 'ticket',
288  'position' => 105,
289  'enabled' => '$conf->ticket->enabled',
290  'perms' => '$user->rights->ticket->read',
291  'target' => '',
292  'user' => 0);
293  $r++;
294 
295  $this->menu[$r] = array('fk_menu' => 'fk_mainmenu=ticket,fk_leftmenu=ticket',
296  'type' => 'left',
297  'titre' => 'Statistics',
298  'mainmenu' => 'ticket',
299  'url' => '/ticket/stats/index.php',
300  'langs' => 'ticket',
301  'position' => 107,
302  'enabled' => '$conf->ticket->enabled',
303  'perms' => '$user->rights->ticket->read',
304  'target' => '',
305  'user' => 0);
306  $r++;
307 
308  $this->menu[$r] = array('fk_menu' => 'fk_mainmenu=ticket,fk_leftmenu=ticket',
309  'type' => 'left',
310  'titre' => 'Categories',
311  'mainmenu' => 'ticket',
312  'url' => '/categories/index.php?type=12',
313  'langs' => 'ticket',
314  'position' => 107,
315  'enabled' => '$conf->categorie->enabled',
316  'perms' => '$user->rights->ticket->read',
317  'target' => '',
318  'user' => 0);
319  $r++;
320  }
321 
330  public function init($options = '')
331  {
332  global $conf, $langs;
333 
334  $result = $this->_load_tables('/install/mysql/', 'ticket');
335  if ($result < 0) {
336  return -1; // Do not activate module if error 'not allowed' returned when loading module SQL queries (the _load_table run sql with run_sql with the error allowed parameter set to 'default')
337  }
338 
339  // Permissions
340  $this->remove($options);
341 
342  //ODT template
343  $src = DOL_DOCUMENT_ROOT.'/install/doctemplates/tickets/template_ticket.odt';
344  $dirodt = DOL_DATA_ROOT.'/doctemplates/tickets';
345  $dest = $dirodt.'/template_order.odt';
346 
347  if (file_exists($src) && !file_exists($dest)) {
348  require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
349  dol_mkdir($dirodt);
350  $result = dol_copy($src, $dest, 0, 0);
351  if ($result < 0) {
352  $langs->load("errors");
353  $this->error = $langs->trans('ErrorFailToCopyFile', $src, $dest);
354  return 0;
355  }
356  }
357 
358  $sql = array(
359  array("sql" => "insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (110120, 'ticket', 'internal', 'SUPPORTTEC', 'Utilisateur assigné au ticket', 1);", "ignoreerror" => 1),
360  array("sql" => "insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (110121, 'ticket', 'internal', 'CONTRIBUTOR', 'Intervenant', 1);", "ignoreerror" => 1),
361  array("sql" => "insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (110122, 'ticket', 'external', 'SUPPORTCLI', 'Contact client suivi incident', 1);", "ignoreerror" => 1),
362  array("sql" => "insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (110123, 'ticket', 'external', 'CONTRIBUTOR', 'Intervenant', 1);", "ignoreerror" => 1),
363  "DELETE FROM ".MAIN_DB_PREFIX."document_model WHERE nom = 'TICKET_ADDON_PDF_ODT_PATH' AND type = 'ticket' AND entity = ".((int) $conf->entity),
364  "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity) VALUES('TICKET_ADDON_PDF_ODT_PATH','ticket',".((int) $conf->entity).")"
365  );
366 
367  return $this->_init($sql, $options);
368  }
369 }
Class DolibarrModules.
_init($array_sql, $options='')
Enables a module.
_load_tables($reldir, $onlywithsuffix='')
Create tables and keys required by module:
Description and activation class for module Ticket.
init($options='')
Function called when module is enabled.
__construct($db)
Constructor.
print *****$script_file(".$version.") pid cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
dol_copy($srcfile, $destfile, $newmask=0, $overwriteifexists=1)
Copy a file to another file.
Definition: files.lib.php:713
getDolGlobalInt($key, $default=0)
Return dolibarr global constant int value.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
if(!function_exists('utf8_encode')) if(!function_exists('utf8_decode')) getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition: repair.php:122
$conf db
API class for accounts.
Definition: inc.php:41