mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-09 19:13:26 +00:00
356 lines
11 KiB
PHP
356 lines
11 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2014 Alchemy
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Alchemy\Phrasea\Controller\Admin;
|
|
|
|
use Alchemy\Phrasea\Exception\InvalidArgumentException;
|
|
use Alchemy\Phrasea\Form\TaskForm;
|
|
use Alchemy\Phrasea\Model\Entities\Task;
|
|
use Alchemy\Phrasea\TaskManager\TaskManagerStatus;
|
|
use Silex\Application;
|
|
use Silex\ControllerProviderInterface;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
|
|
class TaskManager implements ControllerProviderInterface
|
|
{
|
|
public function connect(Application $app)
|
|
{
|
|
$app['controller.admin.task'] = $this;
|
|
|
|
$controllers = $app['controllers_factory'];
|
|
|
|
$app['firewall']->addMandatoryAuthentication($controllers);
|
|
|
|
$controllers->before(function (Request $request) use ($app) {
|
|
$app['firewall']->requireRight('taskmanager');
|
|
})->convert('task', function ($id) use ($app) {
|
|
return $app['converter.task']->convert($id);
|
|
});
|
|
|
|
$controllers
|
|
->get('/', 'controller.admin.task:getRoot')
|
|
->bind('admin_tasks');
|
|
|
|
$controllers
|
|
->get('/tasks', 'controller.admin.task:getTasks')
|
|
->bind('admin_tasks_list');
|
|
|
|
$controllers
|
|
->get('/scheduler', 'controller.admin.task:getScheduler')
|
|
->bind('admin_scheduler');
|
|
|
|
$controllers
|
|
->get('/live', 'controller.admin.task:getLiveInformation')
|
|
->bind('admin_tasks_live_info');
|
|
|
|
$controllers
|
|
->post('/tasks/create', 'controller.admin.task:postCreateTask')
|
|
->bind('admin_tasks_task_create');
|
|
|
|
$controllers
|
|
->post('/scheduler/start','controller.admin.task:startScheduler')
|
|
->bind('admin_tasks_scheduler_start');
|
|
|
|
$controllers
|
|
->post('/scheduler/stop','controller.admin.task:stopScheduler')
|
|
->bind('admin_tasks_scheduler_stop');
|
|
|
|
$controllers
|
|
->get('/scheduler/log', 'controller.admin.task:getSchedulerLog')
|
|
->bind('admin_tasks_scheduler_log');
|
|
|
|
$controllers
|
|
->get('/task/{task}/log', 'controller.admin.task:getTaskLog')
|
|
->bind('admin_tasks_task_log');
|
|
|
|
$controllers
|
|
->post('/task/{task}/delete', 'controller.admin.task:postTaskDelete')
|
|
->bind('admin_tasks_task_delete');
|
|
|
|
$controllers
|
|
->post('/task/{task}/start', 'controller.admin.task:postStartTask')
|
|
->bind('admin_tasks_task_start');
|
|
|
|
$controllers
|
|
->post('/task/{task}/stop', 'controller.admin.task:postStopTask')
|
|
->bind('admin_tasks_task_stop');
|
|
|
|
$controllers
|
|
->post('/task/{task}/resetcrashcounter', 'controller.admin.task:postResetCrashes')
|
|
->bind('admin_tasks_task_reset');
|
|
|
|
$controllers
|
|
->post('/task/{task}/save', 'controller.admin.task:postSaveTask')
|
|
->bind('admin_tasks_task_save');
|
|
|
|
$controllers
|
|
->post('/task/{task}/facility', 'controller.admin.task:postTaskFacility')
|
|
->bind('admin_tasks_task_facility');
|
|
|
|
$controllers
|
|
->post('/task/{task}/xml-from-form', 'controller.admin.task:postXMLFromForm')
|
|
->bind('admin_tasks_xml_from_form');
|
|
|
|
$controllers
|
|
->get('/task/{task}', 'controller.admin.task:getTask')
|
|
->bind('admin_tasks_task_show');
|
|
|
|
$controllers
|
|
->post('/task/validate-xml', 'controller.admin.task:validateXML')
|
|
->bind('admin_tasks_validate_xml');
|
|
|
|
return $controllers;
|
|
}
|
|
|
|
public function startScheduler(Application $app, Request $request)
|
|
{
|
|
$app['task-manager.status']->start();
|
|
|
|
return $app->redirectPath('admin_tasks_list');
|
|
}
|
|
|
|
public function stopScheduler(Application $app, Request $request)
|
|
{
|
|
$app['task-manager.status']->stop();
|
|
|
|
return $app->redirectPath('admin_tasks_list');
|
|
}
|
|
|
|
public function getRoot(Application $app, Request $request)
|
|
{
|
|
return $app->redirectPath('admin_tasks_list');
|
|
}
|
|
|
|
public function getLiveInformation(Application $app, Request $request)
|
|
{
|
|
if ($request->getRequestFormat() !== "json") {
|
|
$app->abort(406, 'Only JSON format is accepted.');
|
|
}
|
|
|
|
$tasks = [];
|
|
foreach ($app['manipulator.task']->getRepository()->findAll() as $task) {
|
|
$tasks[$task->getId()] = $app['task-manager.live-information']->getTask($task);
|
|
}
|
|
|
|
return $app->json([
|
|
'manager' => $app['task-manager.live-information']->getManager(),
|
|
'tasks' => $tasks
|
|
]);
|
|
}
|
|
|
|
public function getScheduler(Application $app, Request $request)
|
|
{
|
|
if ($request->getRequestFormat() !== "json") {
|
|
$app->abort(406, 'Only JSON format is accepted.');
|
|
}
|
|
|
|
return $app->json([
|
|
'name' => $app->trans('Task Scheduler'),
|
|
'configuration' => $app['task-manager.status']->getStatus(),
|
|
'urls' => [
|
|
'start' => $app->path('admin_tasks_scheduler_start'),
|
|
'stop' => $app->path('admin_tasks_scheduler_stop'),
|
|
'log' => $app->path('admin_tasks_scheduler_log'),
|
|
]
|
|
]);
|
|
}
|
|
|
|
public function getTasks(Application $app, Request $request)
|
|
{
|
|
$tasks = [];
|
|
|
|
foreach ($app['repo.tasks']->findAll() as $task) {
|
|
$tasks[] = [
|
|
'id' => $task->getId(),
|
|
'name' => $task->getName(),
|
|
'status' => $task->getStatus()
|
|
];
|
|
}
|
|
|
|
if ($request->getRequestFormat() === "json") {
|
|
foreach ($tasks as $k => $task) {
|
|
$tasks[$k]['urls'] = $this->getTaskResourceUrls($app, $task['id']);
|
|
}
|
|
|
|
return $app->json($tasks);
|
|
}
|
|
|
|
return $app['twig']->render('admin/task-manager/index.html.twig', [
|
|
'available_jobs' => $app['task-manager.available-jobs'],
|
|
'tasks' => $tasks,
|
|
'scheduler' => [
|
|
'id' => null,
|
|
'name' => $app->trans('Task Scheduler'),
|
|
'status' => $app['task-manager.status']->getStatus(),
|
|
]
|
|
]);
|
|
}
|
|
|
|
public function postCreateTask(Application $app, Request $request)
|
|
{
|
|
try {
|
|
$job = $app['task-manager.job-factory']->create($request->request->get('job-name'));
|
|
} catch (InvalidArgumentException $e) {
|
|
$app->abort(400, $e->getMessage());
|
|
}
|
|
|
|
$task = $app['manipulator.task']->create(
|
|
$job->getName(),
|
|
$job->getJobId(),
|
|
$job->getEditor()->getDefaultSettings($app['conf']),
|
|
$job->getEditor()->getDefaultPeriod()
|
|
);
|
|
|
|
return $app->redirectPath('admin_tasks_task_show', ['task' => $task->getId()]);
|
|
}
|
|
|
|
public function getSchedulerLog(Application $app, Request $request)
|
|
{
|
|
$logFile = $app['task-manager.log-file.factory']->forManager();
|
|
if ($request->query->get('clr')) {
|
|
$logFile->clear();
|
|
}
|
|
|
|
return $app['twig']->render('admin/task-manager/log.html.twig', [
|
|
'logfile' => $logFile,
|
|
'logname' => 'Scheduler',
|
|
]);
|
|
}
|
|
|
|
public function getTaskLog(Application $app, Request $request, Task $task)
|
|
{
|
|
$logFile = $app['task-manager.log-file.factory']->forTask($task);
|
|
if ($request->query->get('clr')) {
|
|
$logFile->clear();
|
|
}
|
|
|
|
return $app['twig']->render('admin/task-manager/log.html.twig', [
|
|
'logfile' => $logFile,
|
|
'logname' => sprintf('%s (task id %d)', $task->getName(), $task->getId()),
|
|
]);
|
|
}
|
|
|
|
public function postTaskDelete(Application $app, Request $request, Task $task)
|
|
{
|
|
$app['manipulator.task']->delete($task);
|
|
|
|
return $app->redirectPath('admin_tasks_list');
|
|
}
|
|
|
|
public function postStartTask(Application $app, Request $request, Task $task)
|
|
{
|
|
$app['manipulator.task']->start($task);
|
|
|
|
return $app->redirectPath('admin_tasks_list');
|
|
}
|
|
|
|
public function postStopTask(Application $app, Request $request, Task $task)
|
|
{
|
|
$app['manipulator.task']->stop($task);
|
|
|
|
return $app->redirectPath('admin_tasks_list');
|
|
}
|
|
|
|
public function postResetCrashes(Application $app, Request $request, Task $task)
|
|
{
|
|
$app['manipulator.task']->resetCrashes($task);
|
|
|
|
return $app->json(['success' => true]);
|
|
}
|
|
|
|
public function postSaveTask(Application $app, Request $request, Task $task)
|
|
{
|
|
if (!$this->doValidateXML($request->request->get('settings'))) {
|
|
return $app->json(['success' => false, 'message' => sprintf('Unable to load XML %s', $request->request->get('xml'))]);
|
|
}
|
|
|
|
$form = $app->form(new TaskForm());
|
|
$form->setData($task);
|
|
$form->bind($request);
|
|
if ($form->isValid()) {
|
|
$app['manipulator.task']->update($task);
|
|
|
|
return $app->json(['success' => true]);
|
|
}
|
|
|
|
return $app->json([
|
|
'success' => false,
|
|
'message' => implode("\n", $form->getErrors())
|
|
]);
|
|
}
|
|
|
|
public function postTaskFacility(Application $app, Request $request, Task $task)
|
|
{
|
|
return $app['task-manager.job-factory']
|
|
->create($task->getJobId())
|
|
->getEditor()
|
|
->facility($app, $request);
|
|
}
|
|
|
|
public function postXMLFromForm(Application $app, Request $request, Task $task)
|
|
{
|
|
return $app['task-manager.job-factory']
|
|
->create($task->getJobId())
|
|
->getEditor()
|
|
->updateXMLWithRequest($request);
|
|
}
|
|
|
|
public function getTask(Application $app, Request $request, Task $task)
|
|
{
|
|
if ('json' === $request->getContentType()) {
|
|
return $app->json(array_replace([
|
|
'id' => $task->getId(),
|
|
'name' => $task->getName(),
|
|
'urls' => $this->getTaskResourceUrls($app, $task->getId())
|
|
],
|
|
$app['task-manager.live-information']->getTask($task)
|
|
));
|
|
}
|
|
|
|
$editor = $app['task-manager.job-factory']
|
|
->create($task->getJobId())
|
|
->getEditor();
|
|
|
|
$form = $app->form(new TaskForm());
|
|
$form->setData($task);
|
|
|
|
return $app['twig']->render($editor->getTemplatePath(), [
|
|
'task' => $task,
|
|
'form' => $form->createView(),
|
|
'view' => 'XML',
|
|
]);
|
|
}
|
|
|
|
public function validateXML(Application $app, Request $request)
|
|
{
|
|
return $app->json(['success' => $this->doValidateXML($request->getContent())]);
|
|
}
|
|
|
|
private function doValidateXML($string)
|
|
{
|
|
$dom = new \DOMDocument('1.0', 'UTF-8');
|
|
$dom->strictErrorChecking = true;
|
|
|
|
return (Boolean) @$dom->loadXML($string);
|
|
}
|
|
|
|
private function getTaskResourceUrls(Application $app, $taskId)
|
|
{
|
|
return [
|
|
'show' => $app->path('admin_tasks_task_show', ['task' => $taskId]),
|
|
'start' => $app->path('admin_tasks_task_start', ['task' => $taskId]),
|
|
'stop' => $app->path('admin_tasks_task_stop', ['task' => $taskId]),
|
|
'delete' => $app->path('admin_tasks_task_delete', ['task' => $taskId]),
|
|
'log' => $app->path('admin_tasks_task_log', ['task' => $taskId]),
|
|
];
|
|
}
|
|
}
|