1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392: 393: 394: 395: 396: 397: 398: 399: 400: 401: 402: 403: 404: 405: 406: 407: 408: 409: 410: 411: 412: 413: 414: 415: 416: 417: 418: 419: 420: 421: 422: 423: 424: 425: 426: 427: 428: 429: 430: 431: 432: 433: 434: 435: 436: 437: 438: 439: 440: 441: 442: 443: 444: 445: 446: 447: 448: 449: 450: 451: 452: 453: 454: 455: 456: 457: 458: 459: 460: 461: 462: 463: 464: 465: 466: 467: 468: 469: 470: 471: 472: 473: 474: 475: 476: 477: 478: 479: 480: 481: 482: 483: 484: 485: 486: 487: 488: 489: 490: 491: 492: 493: 494: 495: 496: 497: 498: 499: 500: 501: 502: 503: 504: 505: 506: 507: 508: 509: 510: 511: 512: 513: 514: 515: 516: 517: 518: 519: 520: 521: 522: 523: 524: 525: 526: 527: 528: 529: 530: 531: 532: 533: 534: 535: 536: 537: 538: 539: 540: 541: 542: 543: 544: 545: 546: 547: 548: 549: 550: 551: 552: 553: 554:
<?php
if (!defined('GLPI_ROOT')) {
die("Sorry. You can't access this file directly");
}
class TicketRecurrent extends CommonDropdown {
public $dohistory = true;
public $first_level_menu = "helpdesk";
public $second_level_menu = "ticketrecurrent";
public $display_dropdowntitle = false;
static $rightname = 'ticketrecurrent';
public $can_be_translated = false;
static function getTypeName($nb = 0) {
return __('Recurrent tickets');
}
static function displayTabContentForItem(CommonGLPI $item, $tabnum = 1, $withtemplate = 0) {
switch ($item->getType()) {
case 'TicketRecurrent' :
switch ($tabnum) {
case 1 :
$item->showInfos();
return true;
}
break;
}
return false;
}
function getTabNameForItem(CommonGLPI $item, $withtemplate = 0) {
if (Session::haveRight('tickettemplate', READ)) {
switch ($item->getType()) {
case 'TicketRecurrent' :
$ong[1] = _n('Information', 'Information', Session::getPluralNumber());
return $ong;
}
}
return '';
}
function defineTabs($options = []) {
$ong = [];
$this->addDefaultFormTab($ong);
$this->addStandardTab(__CLASS__, $ong, $options);
$this->addStandardTab('Log', $ong, $options);
return $ong;
}
function prepareInputForAdd($input) {
$input['next_creation_date'] = $this->computeNextCreationDate($input['begin_date'],
$input['end_date'],
$input['periodicity'],
$input['create_before'],
$input['calendars_id']);
return $input;
}
function prepareInputForUpdate($input) {
if (isset($input['begin_date'])
&& isset($input['periodicity'])
&& isset($input['create_before'])) {
$input['next_creation_date'] = $this->computeNextCreationDate($input['begin_date'],
$input['end_date'],
$input['periodicity'],
$input['create_before'],
$input['calendars_id']);
}
return $input;
}
function getAdditionalFields() {
return [['name' => 'is_active',
'label' => __('Active'),
'type' => 'bool',
'list' => false],
['name' => 'tickettemplates_id',
'label' => _n('Ticket template', 'Ticket templates', 1),
'type' => 'dropdownValue',
'list' => true],
['name' => 'begin_date',
'label' => __('Start date'),
'type' => 'datetime',
'list' => false],
['name' => 'end_date',
'label' => __('End date'),
'type' => 'datetime',
'list' => false],
['name' => 'periodicity',
'label' => __('Periodicity'),
'type' => 'specific_timestamp',
'min' => DAY_TIMESTAMP,
'step' => DAY_TIMESTAMP,
'max' => 2*MONTH_TIMESTAMP],
['name' => 'create_before',
'label' => __('Preliminary creation'),
'type' => 'timestamp',
'max' => 7*DAY_TIMESTAMP,
'step' => HOUR_TIMESTAMP],
['name' => 'calendars_id',
'label' => _n('Calendar', 'Calendars', 1),
'type' => 'dropdownValue',
'list' => true],
];
}
function displaySpecificTypeField($ID, $field = []) {
switch ($field['name']) {
case 'periodicity' :
$possible_values = [];
for ($i=1; $i<24; $i++) {
$possible_values[$i*HOUR_TIMESTAMP] = sprintf(_n('%d hour', '%d hours', $i), $i);
}
for ($i=1; $i<=30; $i++) {
$possible_values[$i*DAY_TIMESTAMP] = sprintf(_n('%d day', '%d days', $i), $i);
}
for ($i=1; $i<12; $i++) {
$possible_values[$i.'MONTH'] = sprintf(_n('%d month', '%d months', $i), $i);
}
for ($i=1; $i<11; $i++) {
$possible_values[$i.'YEAR'] = sprintf(_n('%d year', '%d years', $i), $i);
}
Dropdown::showFromArray($field['name'], $possible_values,
['value' => $this->fields[$field['name']]]);
break;
}
}
static function getSpecificValueToDisplay($field, $values, array $options = []) {
if (!is_array($values)) {
$values = [$field => $values];
}
switch ($field) {
case 'periodicity' :
if (preg_match('/([0-9]+)MONTH/', $values[$field], $matches)) {
return sprintf(_n('%d month', '%d months', $matches[1]), $matches[1]);
}
if (preg_match('/([0-9]+)YEAR/', $values[$field], $matches)) {
return sprintf(_n('%d year', '%d years', $matches[1]), $matches[1]);
}
return Html::timestampToString($values[$field], false);
break;
}
return parent::getSpecificValueToDisplay($field, $values, $options);
}
function rawSearchOptions() {
$tab = parent::rawSearchOptions();
$tab[] = [
'id' => '11',
'table' => $this->getTable(),
'field' => 'is_active',
'name' => __('Active'),
'datatype' => 'bool'
];
$tab[] = [
'id' => '12',
'table' => 'glpi_tickettemplates',
'field' => 'name',
'name' => _n('Ticket template', 'Ticket templates', 1),
'datatype' => 'itemlink'
];
$tab[] = [
'id' => '13',
'table' => $this->getTable(),
'field' => 'begin_date',
'name' => __('Start date'),
'datatype' => 'datetime'
];
$tab[] = [
'id' => '17',
'table' => $this->getTable(),
'field' => 'end_date',
'name' => __('End date'),
'datatype' => 'datetime'
];
$tab[] = [
'id' => '15',
'table' => $this->getTable(),
'field' => 'periodicity',
'name' => __('Periodicity'),
'datatype' => 'specific'
];
$tab[] = [
'id' => '14',
'table' => $this->getTable(),
'field' => 'create_before',
'name' => __('Preliminary creation'),
'datatype' => 'timestamp'
];
$tab[] = [
'id' => '18',
'table' => 'glpi_calendars',
'field' => 'name',
'name' => _n('Calendar', 'Calendars', 1),
'datatype' => 'itemlink'
];
return $tab;
}
function showInfos() {
if (!is_null($this->fields['next_creation_date'])) {
echo "<div class='center'>";
echo sprintf(__('Next creation on %s'),
Html::convDateTime($this->fields['next_creation_date']));
echo "</div>";
}
}
function computeNextCreationDate($begin_date, $end_date, $periodicity, $create_before,
$calendars_id) {
$now = time();
$periodicity_pattern = '/([0-9]+)(MONTH|YEAR)/';
if (false === DateTime::createFromFormat('Y-m-d H:i:s', $begin_date)) {
return 'NULL';
}
$has_end_date = false !== DateTime::createFromFormat('Y-m-d H:i:s', $end_date);
if ($has_end_date && strtotime($end_date) < $now) {
return 'NULL';
}
if (!is_int($periodicity) && !preg_match('/^\d+$/', $periodicity)
&& !preg_match($periodicity_pattern, $periodicity)) {
return 'NULL';
}
$periodicity_as_interval = null;
$periodicity_in_seconds = $periodicity;
$matches = [];
if (preg_match($periodicity_pattern, $periodicity, $matches)) {
$periodicity_as_interval = "{$matches[1]} {$matches[2]}";
$periodicity_in_seconds = $matches[1]
* MONTH_TIMESTAMP
* ('YEAR' === $matches[2] ? 12 : 1);
} else if ($periodicity % DAY_TIMESTAMP == 0) {
$periodicity_as_interval = ($periodicity / DAY_TIMESTAMP) . ' DAY';
} else {
$periodicity_as_interval = ($periodicity / HOUR_TIMESTAMP) . ' HOUR';
}
if ($create_before > $periodicity_in_seconds) {
Session::addMessageAfterRedirect(
__('Invalid frequency. It must be greater than the preliminary creation.'),
false,
ERROR
);
return 'NULL';
}
$calendar = new Calendar();
if ($calendars_id && $calendar->getFromDB($calendars_id) && $calendar->hasAWorkingDay()) {
$occurence_date = $calendar->computeEndDate(
$begin_date,
0,
0,
false
);
$occurence_time = strtotime($occurence_date);
$creation_time = $occurence_time - $create_before;
while ($creation_time < $now) {
$occurence_date = $calendar->computeEndDate(
date('Y-m-d H:i:s', $occurence_time),
$periodicity_in_seconds,
0,
$periodicity_in_seconds >= DAY_TIMESTAMP
);
$occurence_time = strtotime($occurence_date);
$creation_time = $occurence_time - $create_before;
if ($has_end_date && $occurence_time > strtotime($end_date)) {
return 'NULL';
}
};
} else {
$occurence_time = strtotime($begin_date);
$creation_time = $occurence_time - $create_before;
while ($creation_time < $now) {
$creation_time = strtotime("+ $periodicity_as_interval", $creation_time);
$occurence_time = $creation_time + $create_before;
if ($has_end_date && $occurence_time > strtotime($end_date)) {
return 'NULL';
}
}
}
return date("Y-m-d H:i:s", $creation_time);
}
static function cronInfo($name) {
switch ($name) {
case 'ticketrecurrent' :
return ['description' => self::getTypeName(Session::getPluralNumber())];
}
return [];
}
static function cronTicketRecurrent($task) {
global $DB;
$tot = 0;
$query = "SELECT *
FROM `glpi_ticketrecurrents`
WHERE `glpi_ticketrecurrents`.`next_creation_date` < NOW()
AND `glpi_ticketrecurrents`.`is_active` = 1
AND (`glpi_ticketrecurrents`.`end_date` IS NULL
OR `glpi_ticketrecurrents`.`end_date` > NOW())";
foreach ($DB->request($query) as $data) {
if (self::createTicket($data)) {
$tot++;
} else {
$task->log(sprintf(__('Failed to create recurrent ticket %s'),
$data['name']));
}
}
$task->setVolume($tot);
return ($tot > 0 ? 1 : 0);
}
static function createTicket($data) {
$result = false;
$tt = new TicketTemplate();
if ($tt->getFromDB($data['tickettemplates_id'])) {
$input = Ticket::getDefaultValues($data['entities_id']);
$ttp = new TicketTemplatePredefinedField();
$predefined = $ttp->getPredefinedFields($data['tickettemplates_id'], true);
if (count($predefined)) {
foreach ($predefined as $predeffield => $predefvalue) {
$input[$predeffield] = $predefvalue;
}
}
$createtime = strtotime($data['next_creation_date'])+$data['create_before'];
$input['date'] = date('Y-m-d H:i:s', $createtime);
if (isset($predefined['date'])) {
$input['date'] = Html::computeGenericDateTimeSearch($predefined['date'], false,
$createtime);
}
if (isset($predefined['time_to_resolve'])) {
$input['time_to_resolve'] = Html::computeGenericDateTimeSearch($predefined['time_to_resolve'], false,
$createtime);
}
if (isset($predefined['internal_time_to_resolve'])) {
$input['internal_time_to_resolve'] = Html::computeGenericDateTimeSearch($predefined['internal_time_to_resolve'], false,
$createtime);
}
$input['entities_id'] = $data['entities_id'];
$input['_auto_import'] = true;
$ticket = new Ticket();
$input = Toolbox::addslashes_deep($input);
if ($tid = $ticket->add($input)) {
$msg = sprintf(__('Ticket %d successfully created'), $tid);
$result = true;
} else {
$msg = __('Ticket creation failed (check mandatory fields)');
}
} else {
$msg = __('Ticket creation failed (no template)');
}
$changes[0] = 0;
$changes[1] = '';
$changes[2] = addslashes($msg);
Log::history($data['id'], __CLASS__, $changes, '', Log::HISTORY_LOG_SIMPLE_MESSAGE);
$tr = new self();
if ($tr->getFromDB($data['id'])) {
$input = [];
$input['id'] = $data['id'];
$input['next_creation_date'] = $tr->computeNextCreationDate($data['begin_date'],
$data['end_date'],
$data['periodicity'],
$data['create_before'],
$data['calendars_id']);
$tr->update($input);
}
return $result;
}
}