mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-04 15:44:07 +01:00
119 lines
2.7 KiB
PHP
119 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* sysPass
|
|
*
|
|
* @author nuxsmin
|
|
* @link http://syspass.org
|
|
* @copyright 2012-2017, Rubén Domínguez nuxsmin@$syspass.org
|
|
*
|
|
* This file is part of sysPass.
|
|
*
|
|
* sysPass 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.
|
|
*
|
|
* sysPass 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 sysPass. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
namespace SP\Controller;
|
|
|
|
use SP\Core\Messages\TaskMessage;
|
|
use SP\Core\Session;
|
|
use SP\Core\Task;
|
|
|
|
/**
|
|
* Class TaskController
|
|
*
|
|
* @package SP\Controller
|
|
*/
|
|
class TaskController
|
|
{
|
|
/**
|
|
* @var Task Instancia de la tarea
|
|
*/
|
|
protected $Task;
|
|
|
|
/**
|
|
* Realizar acción
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function doAction()
|
|
{
|
|
$count = 0;
|
|
|
|
do {
|
|
if ($count >= 30) {
|
|
return false;
|
|
}
|
|
|
|
$this->Task = Session::getTask();
|
|
$count++;
|
|
sleep(2);
|
|
} while (!is_object($this->Task));
|
|
|
|
session_write_close();
|
|
|
|
if ($this->checkFile()) {
|
|
$this->readTaskStatus();
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Comprobar si el archivo de salida de la tarea existe
|
|
*/
|
|
protected function checkFile()
|
|
{
|
|
return file_exists($this->Task->getFile());
|
|
}
|
|
|
|
/**
|
|
* Leer el estdo de una tarea y enviarlo
|
|
*/
|
|
protected function readTaskStatus()
|
|
{
|
|
$id = 0;
|
|
$file = $this->Task->getFile();
|
|
$interval = $this->Task->getInterval();
|
|
|
|
$Message = new TaskMessage();
|
|
$Message->setTask($this->Task->getTaskId());
|
|
$Message->setMessage(__('Esperando actualización de progreso ...'));
|
|
|
|
while (true) {
|
|
$content = file_get_contents($file);
|
|
|
|
if ($content !== false) {
|
|
$this->sendMessage($id, $content);
|
|
$id++;
|
|
} else {
|
|
$this->sendMessage($id, $Message->composeJson());
|
|
}
|
|
|
|
sleep($interval);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Enviar un mensaje
|
|
*
|
|
* @param $id
|
|
* @param $message
|
|
*/
|
|
protected function sendMessage($id, $message)
|
|
{
|
|
echo 'id: ', $id, PHP_EOL, 'data: ', $message, PHP_EOL, PHP_EOL;
|
|
|
|
ob_flush();
|
|
flush();
|
|
}
|
|
} |