Files
Phraseanet/lib/Alchemy/Phrasea/ControllerProvider/Admin/Publications.php
2015-03-27 12:55:43 +01:00

268 lines
9.7 KiB
PHP

<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2015 Alchemy
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Alchemy\Phrasea\ControllerProvider\Admin;
use Alchemy\Phrasea\Application as PhraseaApplication;
use Alchemy\Phrasea\Model\Entities\Feed;
use Alchemy\Phrasea\Model\Entities\FeedPublisher;
use Silex\Application;
use Silex\ControllerProviderInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
class Publications implements ControllerProviderInterface
{
public function connect(Application $app)
{
$app['controller.admin.publications'] = $this;
$controllers = $app['controllers_factory'];
$app['firewall']->addMandatoryAuthentication($controllers);
$controllers->before(function (Request $request) use ($app) {
$app['firewall']->requireAccessToModule('admin')
->requireRight('bas_chupub');
});
$controllers->get('/list/', function (PhraseaApplication $app) {
$feeds = $app['repo.feeds']->getAllForUser(
$app['acl']->get($app['authentication']->getUser())
);
return $app['twig']
->render('admin/publications/list.html.twig', ['feeds' => $feeds]);
})->bind('admin_feeds_list');
$controllers->post('/create/', function (PhraseaApplication $app, Request $request) {
if ('' === $title = trim($request->request->get('title', ''))) {
$app->abort(400, "Bad request");
}
$publisher = new FeedPublisher();
$feed = new Feed();
$publisher->setFeed($feed);
$publisher->setUser($app['authentication']->getUser());
$publisher->setIsOwner(true);
$feed->addPublisher($publisher);
$feed->setTitle($title);
$feed->setSubtitle($request->request->get('subtitle', ''));
if ($request->request->get('public') == '1') {
$feed->setIsPublic(true);
} elseif ($request->request->get('base_id')) {
$feed->setCollection(\collection::get_from_base_id($app, $request->request->get('base_id')));
}
$publisher->setFeed($feed);
$app['orm.em']->persist($feed);
$app['orm.em']->persist($publisher);
$app['orm.em']->flush();
return $app->redirectPath('admin_feeds_list');
})->bind('admin_feeds_create');
$controllers->get('/feed/{id}/', function (PhraseaApplication $app, Request $request, $id) {
$feed = $app["repo.feeds"]->find($id);
return $app['twig']
->render('admin/publications/fiche.html.twig', ['feed' => $feed, 'error' => $app['request']->query->get('error')]);
})
->bind('admin_feeds_feed')
->assert('id', '\d+');
$controllers->post('/feed/{id}/update/', function (PhraseaApplication $app, Request $request, $id) {
if ('' === $title = trim($request->request->get('title', ''))) {
$app->abort(400, "Bad request");
}
$feed = $app["repo.feeds"]->find($id);
try {
$collection = \collection::get_from_base_id($app, $request->request->get('base_id'));
} catch (\Exception $e) {
$collection = null;
}
$feed->setTitle($title);
$feed->setSubtitle($request->request->get('subtitle', ''));
$feed->setCollection($collection);
$feed->setIsPublic('1' === $request->request->get('public'));
$app['orm.em']->persist($feed);
$app['orm.em']->flush();
return $app->redirectPath('admin_feeds_list');
})->before(function (Request $request) use ($app) {
$feed = $app["repo.feeds"]->find($request->attributes->get('id'));
if (!$feed->isOwner($app['authentication']->getUser())) {
return $app->redirectPath('admin_feeds_feed', ['id' => $request->attributes->get('id'), 'error' => $app->trans('You are not the owner of this feed, you can not edit it')]);
}
})
->bind('admin_feeds_feed_update')
->assert('id', '\d+');
$controllers->post('/feed/{id}/iconupload/', function (PhraseaApplication $app, Request $request, $id) {
$datas = [
'success' => false,
'message' => '',
];
$feed = $app["repo.feeds"]->find($id);
if (null === $feed) {
$app->abort(404, "Feed not found");
}
$request = $app["request"];
if (!$feed->isOwner($app['authentication']->getUser())) {
$app->abort(403, "Access Forbidden");
}
try {
if (!$request->files->get('files')) {
throw new BadRequestHttpException('Missing file parameter');
}
if (count($request->files->get('files')) > 1) {
throw new BadRequestHttpException('Upload is limited to 1 file per request');
}
$file = current($request->files->get('files'));
if (!$file->isValid()) {
throw new BadRequestHttpException('Uploaded file is invalid');
}
$media = $app['mediavorus']->guess($file->getPathname());
if ($media->getType() !== \MediaVorus\Media\MediaInterface::TYPE_IMAGE) {
throw new BadRequestHttpException('Bad filetype');
}
$spec = new \MediaAlchemyst\Specification\Image();
$spec->setResizeMode(\MediaAlchemyst\Specification\Image::RESIZE_MODE_OUTBOUND);
$spec->setDimensions(32, 32);
$spec->setStrip(true);
$spec->setQuality(72);
$tmpname = tempnam(sys_get_temp_dir(), 'feed_icon').'.png';
try {
$app['media-alchemyst']->turnInto($media->getFile()->getPathname(), $tmpname, $spec);
} catch (\MediaAlchemyst\Exception\ExceptionInterface $e) {
throw new \Exception_InternalServerError('Error while resizing');
}
unset($media);
$feed->setIconUrl(true);
$app['orm.em']->persist($feed);
$app['orm.em']->flush();
$app['filesystem']->copy($tmpname, $app['root.path'] . '/config/feed_' . $feed->getId() . '.jpg');
$app['filesystem']->copy($tmpname, sprintf('%s/www/custom/feed_%d.jpg', $app['root.path'], $feed->getId()));
$app['filesystem']->remove($tmpname);
$datas['success'] = true;
} catch (\Exception $e) {
$datas['message'] = $app->trans('Unable to add file to Phraseanet');
}
return $app->json($datas);
})
->bind('admin_feeds_feed_icon')
->assert('id', '\d+');
$controllers->post('/feed/{id}/addpublisher/', function (PhraseaApplication $app, $id) {
$error = '';
try {
$request = $app['request'];
$user = $app['repo.users']->find($request->request->get('usr_id'));
$feed = $app["repo.feeds"]->find($id);
$publisher = new FeedPublisher();
$publisher->setUser($user);
$publisher->setFeed($feed);
$feed->addPublisher($publisher);
$app['orm.em']->persist($feed);
$app['orm.em']->persist($publisher);
$app['orm.em']->flush();
} catch (\Exception $e) {
$error = "An error occured";
}
return $app->redirectPath('admin_feeds_feed', ['id' => $id, 'error' => $error]);
})
->bind('admin_feeds_feed_add_publisher')
->assert('id', '\d+');
$controllers->post('/feed/{id}/removepublisher/', function (PhraseaApplication $app, $id) {
try {
$request = $app['request'];
$feed = $app["repo.feeds"]->find($id);
$publisher = $app["repo.feed-publishers"]->find($request->request->get('publisher_id'));
if (null === $publisher) {
$app->abort(404, "Feed Publisher not found");
}
$user = $publisher->getUser();
if ($feed->isPublisher($user) && !$feed->isOwner($user)) {
$feed->removePublisher($publisher);
$app['orm.em']->remove($publisher);
$app['orm.em']->flush();
}
} catch (\Exception $e) {
$error = "An error occured";
}
return $app->redirectPath('admin_feeds_feed', ['id' => $id, 'error' => $error]);
})
->bind('admin_feeds_feed_remove_publisher')
->assert('id', '\d+');
$controllers->post('/feed/{id}/delete/', function (PhraseaApplication $app, $id) {
$feed = $app["repo.feeds"]->find($id);
if (null === $feed) {
$app->abort(404);
}
if (true === $feed->getIconURL()) {
unlink($app['root.path'] . '/config/feed_' . $feed->getId() . '.jpg');
unlink('custom/feed_' . $feed->getId() . '.jpg');
}
$app['orm.em']->remove($feed);
$app['orm.em']->flush();
return $app->redirectPath('admin_feeds_list');
})
->bind('admin_feeds_feed_delete')
->assert('id', '\d+');
return $controllers;
}
}