mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-18 07:23:13 +00:00

move code to services added "download" report change services to factory added excel lib added prod/report routes (download) cleanup api routes add : allow anonymized (user, fonction, societe... are "-") removed : xls support (memory eating lib) in favor of xlsx add : report download only on "document" and "preview" subdef classes cs : report factory add : restored "site" filter (see todos in src) remove debug, cs todo : doc
80 lines
2.2 KiB
PHP
80 lines
2.2 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2016 Alchemy
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Alchemy\Phrasea\Report\ControllerProvider;
|
|
|
|
use Alchemy\Phrasea\Application as PhraseaApplication;
|
|
use Alchemy\Phrasea\ControllerProvider\ControllerProviderTrait;
|
|
use Alchemy\Phrasea\Report\Controller\ProdReportController;
|
|
use Alchemy\Phrasea\Report\ReportFactory;
|
|
use Silex\Application;
|
|
use Silex\ControllerProviderInterface;
|
|
use Silex\ServiceProviderInterface;
|
|
|
|
|
|
class ProdReportControllerProvider implements ControllerProviderInterface, ServiceProviderInterface
|
|
{
|
|
use ControllerProviderTrait;
|
|
|
|
public function register(Application $app)
|
|
{
|
|
$app['controller.prod.report'] = $app->share(
|
|
function (PhraseaApplication $app) {
|
|
return (new ProdReportController(
|
|
$app['report.factory'],
|
|
$app['conf']->get(['registry', 'modules', 'anonymous-report']),
|
|
$app->getAclForUser($app->getAuthenticatedUser())
|
|
));
|
|
}
|
|
);
|
|
|
|
$app['report.factory'] = $app->share(
|
|
function (PhraseaApplication $app) {
|
|
return (new ReportFactory(
|
|
$app['conf']->get(['main', 'key']),
|
|
$app['phraseanet.appbox'],
|
|
$app->getAclForUser($app->getAuthenticatedUser())
|
|
));
|
|
}
|
|
);
|
|
}
|
|
|
|
public function boot(Application $app)
|
|
{
|
|
// no-op
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function connect(Application $app)
|
|
{
|
|
$controllers = $this->createAuthenticatedCollection($app);
|
|
|
|
$controllers
|
|
->get('/connections/{sbasId}/', 'controller.prod.report:connectionsAction')
|
|
->assert('sbasId', '\d+')
|
|
;
|
|
|
|
$controllers
|
|
->get('/downloads/{sbasId}/', 'controller.prod.report:downloadsAction')
|
|
->assert('sbasId', '\d+')
|
|
;
|
|
|
|
$controllers
|
|
->get('/records/{sbasId}/', 'controller.prod.report:recordsAction')
|
|
->assert('sbasId', '\d+')
|
|
;
|
|
|
|
return $controllers;
|
|
}
|
|
}
|