mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-15 05:51:28 +01:00
203 lines
6.2 KiB
PHP
203 lines
6.2 KiB
PHP
<?php
|
|
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2005-2017 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2005-2011 Regis Houssin <regis.houssin@inodbox.com>
|
|
* Copyright (C) 2017 Nicolas Zabouri <info@inovea-conseil.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/core/boxes/box_scheduled_jobs.php
|
|
* \ingroup task
|
|
* \brief Widget of scheduled jobs
|
|
*/
|
|
|
|
include_once DOL_DOCUMENT_ROOT . '/core/boxes/modules_boxes.php';
|
|
|
|
|
|
/**
|
|
* Class to manage the box to show last contracted products/services lines
|
|
*/
|
|
class box_scheduled_jobs extends ModeleBoxes
|
|
{
|
|
public $boxcode = "scheduledjobs";
|
|
public $boximg = "object_cron";
|
|
public $boxlabel = "BoxScheduledJobs";
|
|
public $depends = array("cron");
|
|
|
|
/**
|
|
* @var DoliDB Database handler.
|
|
*/
|
|
public $db;
|
|
|
|
/**
|
|
* @var string params
|
|
*/
|
|
public $param;
|
|
|
|
public $info_box_head = array();
|
|
public $info_box_contents = array();
|
|
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param DoliDB $db Database handler
|
|
* @param string $param More parameters
|
|
*/
|
|
public function __construct($db, $param)
|
|
{
|
|
global $user;
|
|
|
|
$this->db = $db;
|
|
|
|
$this->hidden = !($user->rights->service->lire && $user->rights->contrat->lire);
|
|
}
|
|
|
|
/**
|
|
* Load data into info_box_contents array to show array later.
|
|
*
|
|
* @param int $max Maximum number of records to load
|
|
* @return void
|
|
*/
|
|
public function loadBox($max = 5)
|
|
{
|
|
global $user, $langs, $conf, $form;
|
|
|
|
$langs->load("cron");
|
|
$this->info_box_head = array('text' => $langs->trans("BoxScheduledJobs", $max));
|
|
|
|
if ($user->rights->cron->read) {
|
|
include_once DOL_DOCUMENT_ROOT . '/cron/class/cronjob.class.php';
|
|
$cronstatic = new Cronjob($this->db);
|
|
$resultarray = array();
|
|
|
|
$result = 0;
|
|
$sql = "SELECT t.rowid, t.datelastrun, t.datenextrun, t.datestart,";
|
|
$sql .= " t.label, t.status, t.test, t.lastresult";
|
|
$sql .= " FROM " . MAIN_DB_PREFIX . "cronjob as t";
|
|
$sql .= " WHERE status <> ".$cronstatic::STATUS_DISABLED;
|
|
$sql .= " AND entity IN (0, ".$conf->entity.")";
|
|
$sql .= $this->db->order("t.datelastrun", "DESC");
|
|
|
|
$result = $this->db->query($sql);
|
|
$line = 0;
|
|
$nbjobsinerror = 0;
|
|
if ($result) {
|
|
$num = $this->db->num_rows($result);
|
|
|
|
$i = 0;
|
|
while ($i < $num) {
|
|
$objp = $this->db->fetch_object($result);
|
|
|
|
if (dol_eval($objp->test, 1, 1)) {
|
|
$nextrun = $this->db->jdate($objp->datenextrun);
|
|
if (empty($nextrun)) {
|
|
$nextrun = $this->db->jdate($objp->datestart);
|
|
}
|
|
|
|
if ($line == 0 || ($nextrun < $cronstatic->datenextrun && (empty($objp->nbrun) || empty($objp->maxrun) || $objp->nbrun < $objp->maxrun))) {
|
|
$cronstatic->id = $objp->rowid;
|
|
$cronstatic->ref = $objp->rowid;
|
|
$cronstatic->label = $langs->trans($objp->label);
|
|
$cronstatic->status = $objp->status;
|
|
$cronstatic->datenextrun = $this->db->jdate($objp->datenextrun);
|
|
$cronstatic->datelastrun = $this->db->jdate($objp->datelastrun);
|
|
}
|
|
if ($line == 0) {
|
|
$resultarray[$line] = array(
|
|
$langs->trans("LastExecutedScheduledJob"),
|
|
$cronstatic->getNomUrl(1),
|
|
$cronstatic->datelastrun,
|
|
$cronstatic->status,
|
|
$cronstatic->getLibStatut(3)
|
|
);
|
|
$line++;
|
|
}
|
|
|
|
if (!empty($objp->lastresult)) {
|
|
$nbjobsinerror++;
|
|
}
|
|
}
|
|
$i++;
|
|
}
|
|
|
|
if ($line) {
|
|
$resultarray[$line] = array(
|
|
$langs->trans("NextScheduledJobExecute"),
|
|
$cronstatic->getNomUrl(1),
|
|
$cronstatic->datenextrun,
|
|
$cronstatic->status,
|
|
$cronstatic->getLibStatut(3)
|
|
);
|
|
}
|
|
|
|
foreach ($resultarray as $line => $value) {
|
|
$this->info_box_contents[$line][] = array(
|
|
'td' => 'class="tdoverflowmax200"',
|
|
'text' => $resultarray[$line][0]
|
|
);
|
|
|
|
$this->info_box_contents[$line][] = array(
|
|
'td' => 'class="nowraponall"',
|
|
'textnoformat' => $resultarray[$line][1]
|
|
);
|
|
$this->info_box_contents[$line][] = array(
|
|
'td' => 'class="right"',
|
|
'textnoformat' => (empty($resultarray[$line][2]) ? '' : $form->textwithpicto(dol_print_date($resultarray[$line][2], "dayhoursec", 'tzserver'), $langs->trans("CurrentTimeZone")))
|
|
);
|
|
$this->info_box_contents[$line][] = array(
|
|
'td' => 'class="center" ',
|
|
'textnoformat' => $resultarray[$line][4]
|
|
);
|
|
$line++;
|
|
}
|
|
$this->info_box_contents[$line][] = array(
|
|
'td' => 'class="tdoverflowmax300" colspan="3"',
|
|
'text' => $langs->trans("NumberScheduledJobError")
|
|
);
|
|
$this->info_box_contents[$line][] = array(
|
|
'td' => 'class="center"',
|
|
'textnoformat' => ($nbjobsinerror ? '<a href="'.DOL_URL_ROOT.'/cron/list.php?search_lastresult='.urlencode('<>0').'"><div class="badge badge-danger"><i class="fa fa-exclamation-triangle"></i> '.$nbjobsinerror.'</div></a>' : '<div class="center badge-status4">0</div>')
|
|
);
|
|
} else {
|
|
$this->info_box_contents[0][0] = array(
|
|
'td' => '',
|
|
'maxlength' => 500,
|
|
'text' => ($this->db->lasterror() . ' sql=' . $sql)
|
|
);
|
|
}
|
|
} else {
|
|
$this->info_box_contents[0][0] = array(
|
|
'td' => 'class="nohover opacitymedium left"',
|
|
'text' => $langs->trans("ReadPermissionNotAllowed")
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Method to show box
|
|
*
|
|
* @param array $head Array with properties of box title
|
|
* @param array $contents Array with properties of box lines
|
|
* @param int $nooutput No print, only return string
|
|
* @return string
|
|
*/
|
|
public function showBox($head = null, $contents = null, $nooutput = 0)
|
|
{
|
|
return parent::showBox($this->info_box_head, $this->info_box_contents, $nooutput);
|
|
}
|
|
}
|