mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-16 14:33:14 +00:00
49 lines
1.4 KiB
PHP
49 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\ControllerProvider\Api;
|
|
|
|
use Alchemy\Phrasea\Application as PhraseaApplication;
|
|
use Alchemy\Phrasea\Controller\Api\V3Controller;
|
|
use Alchemy\Phrasea\Core\Event\Listener\OAuthListener;
|
|
use Silex\Application;
|
|
use Silex\ControllerCollection;
|
|
use Silex\ControllerProviderInterface;
|
|
use Silex\ServiceProviderInterface;
|
|
|
|
class V3 extends Api implements ControllerProviderInterface, ServiceProviderInterface
|
|
{
|
|
const VERSION = '3.0.0';
|
|
|
|
public function register(Application $app)
|
|
{
|
|
$app['controller.api.v3'] = $app->share(function (PhraseaApplication $app) {
|
|
return (new V3Controller($app));
|
|
});
|
|
}
|
|
|
|
public function boot(Application $app)
|
|
{
|
|
}
|
|
|
|
public function connect(Application $app)
|
|
{
|
|
if (! $this->isApiEnabled($app)) {
|
|
return $app['controllers_factory'];
|
|
}
|
|
|
|
/** @var ControllerCollection $controllers */
|
|
$controllers = $app['controllers_factory'];
|
|
|
|
$controllers->before(new OAuthListener());
|
|
|
|
$controllers->get('/stories/{databox_id}/{record_id}/', 'controller.api.v3:getStoryAction')
|
|
->before('controller.api.v1:ensureCanAccessToRecord')
|
|
->assert('databox_id', '\d+')
|
|
->assert('record_id', '\d+');
|
|
|
|
$controllers->match('/search/', 'controller.api.v3:searchAction');
|
|
|
|
return $controllers;
|
|
}
|
|
}
|