Source of file TimeLineHelper.php
Size: 2,877 Bytes - Last Modified: 2020-10-24T02:46:31+00:00
/home/travis/build/NextDom/nextdom-core/src/Helpers/TimeLineHelper.php
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 | <?php /* This file is part of Jeedom. * * Jeedom 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. * * Jeedom 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 Jeedom. If not, see <http://www.gnu.org/licenses/>. */ /* This file is part of NextDom Software. * * NextDom 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. * * NextDom Software 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 NextDom Software. If not, see <http://www.gnu.org/licenses/>. */ namespace NextDom\Helpers; use NextDom\Com\ComShell; use NextDom\Managers\ConfigManager; /** * Class TimeLineHelper * @package NextDom\Helpers */ class TimeLineHelper { /** * Add an event in the timeline * * @param $event */ public static function addTimelineEvent($event) { file_put_contents(NEXTDOM_DATA . '/data/timeline.json', json_encode($event) . "\n", FILE_APPEND); } /** * Get all event in timeline * * @return array * @throws \Exception */ public static function getTimelineEvent(): array { $path = NEXTDOM_DATA . '/data/timeline.json'; if (!file_exists($path)) { $result = []; } else { ComShell::execute(SystemHelper::getCmdSudo() . 'chmod 666 ' . $path . ' > /dev/null 2>&1;echo "$(tail -n ' . ConfigManager::byKey('timeline::maxevent') . ' ' . $path . ')" > ' . $path); $lines = explode("\n", trim(file_get_contents($path))); $result = []; foreach ($lines as $line) { $result[] = json_decode($line, true); } } return $result; } /** * Remove event from the timeline */ public static function removeTimelineEvent() { $path = NEXTDOM_DATA . '/data/timeline.json'; if (file_exists($path)) { ComShell::execute(SystemHelper::getCmdSudo() . 'chmod 666 ' . $path . ' > /dev/null 2>&1;'); unlink($path); } } } |