Files
Phraseanet/lib/Alchemy/Phrasea/ControllerProvider/Datafiles.php
Benoît Burnichon 51023c5533 bump copyright year
2016-01-05 13:38:14 +01:00

56 lines
1.7 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\ControllerProvider;
use Alchemy\Phrasea\Application as PhraseaApplication;
use Alchemy\Phrasea\Controller\DatafileController;
use Alchemy\Phrasea\Controller\LazyLocator;
use Silex\Application;
use Silex\ControllerProviderInterface;
use Silex\ServiceProviderInterface;
use Symfony\Component\HttpFoundation\Request;
class Datafiles implements ControllerProviderInterface, ServiceProviderInterface
{
public function register(Application $app)
{
$app['controller.datafiles'] = $app->share(function (PhraseaApplication $app) {
return (new DatafileController($app, $app->getApplicationBox(), $app['acl'], $app->getAuthenticator()))
->setDataboxLoggerLocator($app['phraseanet.logger'])
->setDelivererLocator(new LazyLocator($app, 'phraseanet.file-serve'))
;
});
}
public function boot(Application $app)
{
}
public function connect(Application $app)
{
$controllers = $app['controllers_factory'];
$controllers->before(function (Request $request) use ($app) {
if (!$app->getAuthenticator()->isAuthenticated()) {
$app->abort(403, sprintf('You are not authorized to access %s', $request->getRequestUri()));
}
});
$controllers->get('/{sbas_id}/{record_id}/{subdef}/', 'controller.datafiles:getAction')
->bind('datafile')
->assert('sbas_id', '\d+')
->assert('record_id', '\d+');
return $controllers;
}
}