Files
Phraseanet/lib/Alchemy/Phrasea/Controller/Prod/DoDownload.php
2013-04-30 18:44:35 +02:00

248 lines
6.9 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 Silex\Application;
use Silex\ControllerProviderInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
class DoDownload implements ControllerProviderInterface
{
/**
* {@inheritDoc}
*/
public function connect(Application $app)
{
$controllers = $app['controllers_factory'];
/**
* Prepare a set of documents for download
*
* name : prepare_download
*
* description : Prepare a set of documents for download
*
* method : GET
*
* parameters : none
*
* return : HTML Response
*/
$controllers->get('/{token}/prepare/', $this->call('prepareDownload'))
->bind('prepare_download')
->assert('token', '[a-zA-Z0-9]{8,16}');
/**
* Download a set of documents
*
* name : document_download
*
* description : Download a set of documents
*
* method : POST
*
* parameters : none
*
* return : HTML Response
*/
$controllers->post('/{token}/get/', $this->call('downloadDocuments'))
->bind('document_download')
->assert('token', '[a-zA-Z0-9]{8,16}');
/**
* Build a zip with all downloaded documents
*
* name : execute_download
*
* description : Build a zip with all downloaded documents
*
* method : POST
*
* parameters : none
*
* return : JSON Response
*/
$controllers->post('/{token}/execute/', $this->call('downloadExecute'))
->bind('execute_download')
->assert('token', '[a-zA-Z0-9]{8,16}');
return $controllers;
}
/**
* Prepare a set of documents for download
*
* @param Application $app
* @param Request $request
* @param String $token
*
* @return Response
*/
public function prepareDownload(Application $app, Request $request, $token)
{
try {
$datas = $app['tokens']->helloToken($token);
} catch (\Exception_NotFound $e) {
$app->abort(404, 'Invalid token');
}
if (false === $list = @unserialize((string) $datas['datas'])) {
$app->abort(500, 'Invalid datas');
}
$records = array();
foreach ($list['files'] as $file) {
if (!is_array($file) || !isset($file['base_id']) || !isset($file['record_id'])) {
continue;
}
$sbasId = \phrasea::sbasFromBas($app, $file['base_id']);
try {
$record = new \record_adapter($app, $sbasId, $file['record_id']);
} catch (\Exception $e) {
continue;
}
$records[sprintf('%s_%s', $sbasId, $file['record_id'])] = $record;
}
return new Response($app['twig']->render(
'/prod/actions/Download/prepare.html.twig', array(
'module_name' => _('Export download'),
'module' => _('Export'),
'list' => $list,
'records' => $records,
'token' => $token,
'anonymous' => $request->query->get('anonymous', false)
)));
}
/**
* Download a set of documents
*
* @param Application $app
* @param Request $request
* @param String $token
*
* @return Response
*/
public function downloadDocuments(Application $app, Request $request, $token)
{
try {
$datas = $app['tokens']->helloToken($token);
} catch (\Exception_NotFound $e) {
$app->abort(404, 'Invalid token');
}
if (false === $list = @unserialize((string) $datas['datas'])) {
$app->abort(500, 'Invalid datas');
}
$exportName = $list['export_name'];
if ($list['count'] === 1) {
$file = end($list['files']);
$subdef = end($file['subdefs']);
$exportName = sprintf('%s%s.%s', $file['export_name'], $subdef['ajout'], $subdef['exportExt']);
$exportFile = \p4string::addEndSlash($subdef['path']) . $subdef['file'];
$mime = $subdef['mime'];
$list['complete'] = true;
} else {
$exportFile = __DIR__ . '/../../../../../tmp/download/' . $datas['value'] . '.zip';
$mime = 'application/zip';
}
if (!$app['filesystem']->exists($exportFile)) {
$app->abort(404, 'Download file not found');
}
$app->finish(function ($request, $response) use ($list, $app) {
\set_export::log_download(
$app,
$list,
$request->request->get('type'),
(null !== $request->request->get('anonymous') ? true : false),
(isset($list['email']) ? $list['email'] : '')
);
});
$response = \set_export::stream_file(
$app,
$exportFile,
$exportName,
$mime,
'attachment'
);
return $response;
}
/**
* Build a zip of downloaded documents
*
* @param Application $app
* @param Request $request
* @param String $token
*
* @return Response
*/
public function downloadExecute(Application $app, Request $request, $token)
{
try {
$datas = $app['tokens']->helloToken($token);
} catch (\Exception_NotFound $e) {
return $app->json(array(
'success' => false,
'message' => 'Invalid token'
));
}
if (false === $list = @unserialize((string) $datas['datas'])) {
return $app->json(array(
'success' => false,
'message' => 'Invalid datas'
));
}
set_time_limit(0);
// Force the session to be saved and closed.
$app['session']->save();
ignore_user_abort(true);
\set_export::build_zip(
$app,
$token,
$list,
sprintf('%s/../../../../../tmp/download/%s.zip', __DIR__, $datas['value']) // Dest file
);
return $app->json(array(
'success' => true,
'message' => ''
));
}
/**
* 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);
}
}