This commit is contained in:
GamerClassN7 2021-01-04 16:51:34 +01:00
parent c4f36235ab
commit a3a87d39d2
2 changed files with 11 additions and 1 deletions

View File

@ -12,6 +12,11 @@ class CronApi extends ApiController
$backupWorker = new DatabaseBackup(); $backupWorker = new DatabaseBackup();
$backupWorker->purge(5); $backupWorker->purge(5);
//Old Records Cleanup
foreach (SubDeviceManager::getAllSubDevices() as $key => $value) {
RecordManager::setHistory($value['subdevice_id']);
}
$this->response(['Value' => 'OK']); $this->response(['Value' => 'OK']);
} }

View File

@ -102,7 +102,7 @@ class RecordManager{
public static function clean ($day) { public static function clean ($day) {
if (isset($day)) { if (isset($day)) {
Db::command ('DELETE FROM records WHERE `time` < ADDDATE(NOW(), INTERVAL -? DAY);', array($day)); Db::command ('DELETE FROM records WHERE `time` < ADDDATE(NOW(), INTERVAL ? DAY);', array($day));
} }
} }
@ -110,5 +110,10 @@ class RecordManager{
public static function cleanSubdeviceRecords ($subDeviceId) { public static function cleanSubdeviceRecords ($subDeviceId) {
Db::command ('DELETE FROM records WHERE subdevice_id = ?);', array($subDeviceId)); Db::command ('DELETE FROM records WHERE subdevice_id = ?);', array($subDeviceId));
} }
public static function setHistory($subDeviceId){
$history = SubDeviceManager::getSubDevice($subDeviceId)['history'];
if ($history > 0) self::clean(-abs($history));
}
} }
?> ?>