Source
467
467
* Validate "from" and "to" parameters for allowed period.
468
468
*
469
469
* @param string|null from
470
470
* @param string|null to
471
471
*/
472
472
function validateTimeSelectorPeriod($from, $to) {
473
473
if ($from === null || $to === null) {
474
474
return;
475
475
}
476
476
477
-
$time_period = ['from' => $from, 'to' => $to];
477
+
$ts = [];
478
+
$ts['now'] = time();
479
+
$range_time_parser = new CRangeTimeParser();
478
480
479
-
$errors = CTimePeriodValidator::validate($time_period, [
480
-
'min_period' => CTimePeriodHelper::getMinPeriod(),
481
-
'max_period' => CTimePeriodHelper::getMaxPeriod()
482
-
]);
481
+
foreach (['from' => $from, 'to' => $to] as $field => $value) {
482
+
$range_time_parser->parse($value);
483
+
$ts[$field] = $range_time_parser
484
+
->getDateTime($field === 'from')
485
+
->getTimestamp();
486
+
}
483
487
484
-
if ($errors) {
485
-
foreach ($errors as $error) {
486
-
error($error);
487
-
}
488
+
$period = $ts['to'] - $ts['from'] + 1;
489
+
$range_time_parser->parse('now-'.CSettingsHelper::get(CSettingsHelper::MAX_PERIOD));
490
+
$max_period = 1 + $ts['now'] - $range_time_parser
491
+
->getDateTime(true)
492
+
->getTimestamp();
493
+
494
+
if ($period < ZBX_MIN_PERIOD) {
495
+
error(_n('Minimum time period to display is %1$s minute.',
496
+
'Minimum time period to display is %1$s minutes.', (int) (ZBX_MIN_PERIOD / SEC_PER_MIN)
497
+
));
498
+
499
+
invalid_url();
500
+
}
501
+
elseif ($period > $max_period) {
502
+
error(_n('Maximum time period to display is %1$s day.',
503
+
'Maximum time period to display is %1$s days.', (int) round($max_period / SEC_PER_DAY)
504
+
));
488
505
489
506
invalid_url();
490
507
}
491
508
}
492
509
493
510
function validatePortNumberOrMacro($port) {
494
511
return (validatePortNumber($port) || validateUserMacro($port));
495
512
}
496
513
497
514
function validatePortNumber($port) {