Files
Phraseanet/lib/Alchemy/Phrasea/Controller/Prod/Order.php
Romain Neutron d8427e0c2c Merge pull request #403 from romainneutron/orders
[3.8] Update emails notifications
2013-06-17 10:38:22 -07:00

349 lines
10 KiB
PHP

<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2013 Alchemy
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Alchemy\Phrasea\Controller\Prod;
use Alchemy\Phrasea\Controller\RecordsRequest;
use Doctrine\Common\Collections\ArrayCollection;
use Silex\Application;
use Silex\ControllerProviderInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Response;
/**
*
* @license http://opensource.org/licenses/gpl-3.0 GPLv3
* @link www.phraseanet.com
*/
class Order implements ControllerProviderInterface
{
/**
* {@inheritDoc}
*/
public function connect(Application $app)
{
$controllers = $app['controllers_factory'];
$controllers->before(function(Request $request) use ($app) {
$app['firewall']->requireAuthentication()
->requireRight('order');
});
/**
* List all orders
*
* name : prod_orders
*
* description : Display all orders
*
* method : GET
*
* parameters : none
*
* return : HTML Response
*/
$controllers->get('/', $this->call('displayOrders'))
->before(function(Request $request) use ($app) {
$app['firewall']->requireOrdersAdmin();
})
->bind('prod_orders');
/**
* Create a new order
*
* name : prod_order_new
*
* description : Create a new order
*
* method : POST
*
* parameters : none
*
* return : HTML Response | JSON Response
*/
$controllers->post('/', $this->call('createOrder'))
->bind('prod_order_new');
/**
* Display one order
*
* name : prod_order
*
* description : Display one order
*
* method : GET
*
* parameters : none
*
* return : HTML Response
*/
$controllers->get('/{order_id}/', $this->call('displayOneOrder'))
->before(function(Request $request) use ($app) {
$app['firewall']->requireOrdersAdmin();
})
->bind('prod_order')
->assert('order_id', '\d+');
/**
* Send a new order
*
* name : prod_order_send
*
* description : Send an order
*
* method : POST
*
* parameters : none
*
* return : HTML Response | JSON Response
*/
$controllers->post('/{order_id}/send/', $this->call('sendOrder'))
->before(function(Request $request) use ($app) {
$app['firewall']->requireOrdersAdmin();
})
->bind('prod_order_send')
->assert('order_id', '\d+');
/**
* Deny an order
*
* name : prod_order_deny
*
* description : Deny an order
*
* method : POST
*
* parameters : none
*
* return : HTML Response | JSON Response
*/
$controllers->post('/{order_id}/deny/', $this->call('denyOrder'))
->before(function(Request $request) use ($app) {
$app['firewall']->requireOrdersAdmin();
})
->bind('prod_order_deny')
->assert('order_id', '\d+');
return $controllers;
}
/**
* Create a new order
*
* @param Application $app
* @param Request $request
*
* @return RedirectResponse|JsonResponse
*/
public function createOrder(Application $app, Request $request)
{
$success = false;
$collectionHasOrderAdmins = new ArrayCollection();
$toRemove = array();
try {
$records = RecordsRequest::fromRequest($app, $request, true, array('cancmd'));
$query = new \User_Query($app);
foreach ($records as $key => $record) {
if ($collectionHasOrderAdmins->containsKey($record->get_base_id())) {
if (!$collectionHasOrderAdmins->get($record->get_base_id())) {
$records->remove($key);
}
}
$hasOneAdmin = !!count($query->on_base_ids(array($record->get_base_id()))
->who_have_right(array('order_master'))
->execute()->get_results());
$collectionHasOrderAdmins->set($record->get_base_id(), $hasOneAdmin);
if (!$hasOneAdmin) {
$toRemove[] = $key;
}
}
foreach ($toRemove as $key) {
if ($records->containsKey($key)) {
$records->remove($key);
}
}
$noAdmins = $collectionHasOrderAdmins->forAll(function($key, $hasAdmin) {
return false === $hasAdmin;
});
if ($noAdmins) {
$msg = _('There is no one to validate orders, please contact an administrator');
}
if (count($records) > 0) {
$success = (Boolean) \set_order::create(
$app, $records, $app['authentication']->getUser(), $request->request->get('use', ''), ( (null !== $deadLine = $request->request->get('deadline')) ? new \DateTime($deadLine) : $deadLine)
);
if ($success) {
$msg = _('The records have been properly ordered');
} else {
$msg = _('An error occured');
}
} else {
$msg = _('There is no record eligible for an order');
}
} catch (\Exception $e) {
$msg = _('An error occured');
}
if ('json' === $app['request']->getRequestFormat()) {
return $app->json(array(
'success' => $success,
'msg' => $msg,
));
}
return $app->redirectPath('prod_orders', array(
'success' => (int) $success,
'action' => 'send'
));
}
/**
* Display list of orders
*
* @param Application $app
* @param Request $request
*
* @return Response
*/
public function displayOrders(Application $app, Request $request)
{
$page = (int) $request->query->get('page', 1);
$offsetStart = $page - 1;
$perPage = (int) $request->query->get('per-page', 10);
$sort = $request->query->get('sort');
$baseIds = array_keys($app['authentication']->getUser()->ACL()->get_granted_base(array('order_master')));
$ordersList = \set_order::listOrders($app, $baseIds, $offsetStart, $perPage, $sort);
$total = \set_order::countTotalOrder($app['phraseanet.appbox'], $baseIds);
return $app['twig']->render('prod/orders/order_box.html.twig', array(
'page' => $page,
'perPage' => $perPage,
'total' => $total,
'previousPage' => $page < 2 ? false : ($page - 1),
'nextPage' => $page >= ceil($total / $perPage) ? false : $page + 1,
'orders' => new ArrayCollection($ordersList)
));
}
/**
* Display a single order identified by its id
*
* @param Application $app
* @param Request $request
* @param integer $order_id
* @return Response
*/
public function displayOneOrder(Application $app, Request $request, $order_id)
{
$order = new \set_order($app, $order_id);
return $app['twig']->render('prod/orders/order_item.html.twig', array(
'order' => $order
));
}
/**
* Send an order
*
* @param Application $app
* @param Request $request
* @param integer $order_id
* @return RedirectResponse|JsonResponse
*/
public function sendOrder(Application $app, Request $request, $order_id)
{
$success = false;
$order = new \set_order($app, $order_id);
try {
$order->send_elements($app, $request->request->get('elements', array()), !!$request->request->get('force', false));
$success = true;
} catch (\Exception $e) {
}
if ('json' === $app['request']->getRequestFormat()) {
return $app->json(array(
'success' => $success,
'msg' => $success ? _('Order has been sent') : _('An error occured while sending, please retry or contact an admin if problem persists'),
'order_id' => $order_id
));
}
return $app->redirectPath('prod_orders', array(
'success' => (int) $success,
'action' => 'send'
));
}
/**
* Deny an order
*
* @param Application $app
* @param Request $request
* @param integer $order_id
* @return RedirectResponse|JsonResponse
*/
public function denyOrder(Application $app, Request $request, $order_id)
{
$success = false;
$order = new \set_order($app, $order_id);
try {
$order->deny_elements($request->request->get('elements', array()));
$success = true;
} catch (\Exception $e) {
}
if ('json' === $app['request']->getRequestFormat()) {
return $app->json(array(
'success' => $success,
'msg' => $success ? _('Order has been denied') : _('An error occured while denying, please retry or contact an admin if problem persists'),
'order_id' => $order_id
));
}
return $app->redirectPath('prod_orders', array(
'success' => (int) $success,
'action' => 'send'
));
}
/**
* Prefix the method to call with the controller class name
*
* @param string $method The method to call
* @return string
*/
private function call($method)
{
return sprintf('%s::%s', __CLASS__, $method);
}
}