alltube/classes/Controller/FrontController.php

319 lines
9.5 KiB
PHP
Raw Normal View History

2015-10-29 22:32:36 +01:00
<?php
2015-10-31 15:50:32 +01:00
/**
2016-09-08 00:28:28 +02:00
* FrontController class.
2016-08-01 13:29:13 +02:00
*/
2016-12-05 13:12:27 +01:00
2015-10-29 22:32:36 +01:00
namespace Alltube\Controller;
2016-03-30 01:49:08 +02:00
use Alltube\Library\Exception\PasswordException;
use Alltube\Library\Exception\AlltubeLibraryException;
use Alltube\Library\Exception\WrongPasswordException;
2017-05-30 23:30:21 +02:00
use Alltube\Locale;
use Exception;
2020-05-13 22:57:25 +02:00
use Symfony\Component\ErrorHandler\ErrorRenderer\HtmlErrorRenderer;
2019-11-27 23:49:01 +01:00
use Throwable;
2017-04-25 22:24:44 +02:00
use Psr\Container\ContainerInterface;
2016-07-22 13:58:33 +02:00
use Slim\Http\Request;
use Slim\Http\Response;
use Slim\Views\Smarty;
2016-03-30 01:49:08 +02:00
2015-10-31 15:50:32 +01:00
/**
2016-09-08 00:28:28 +02:00
* Main controller.
2016-08-01 13:29:13 +02:00
*/
class FrontController extends BaseController
2015-10-31 15:50:32 +01:00
{
2016-10-23 22:59:37 +02:00
/**
2016-10-23 23:08:32 +02:00
* Smarty view.
*
* @var Smarty
2016-10-23 22:59:37 +02:00
*/
private $view;
2016-08-01 13:29:13 +02:00
/**
* BaseController constructor.
2016-09-08 00:28:28 +02:00
*
* @param ContainerInterface $container Slim dependency container
2016-08-01 13:29:13 +02:00
*/
public function __construct(ContainerInterface $container)
2016-04-08 19:06:41 +02:00
{
parent::__construct($container);
$this->view = $this->container->get('view');
2016-04-08 19:06:41 +02:00
}
2015-10-29 22:32:36 +01:00
2015-10-31 15:50:32 +01:00
/**
2016-09-08 00:28:28 +02:00
* Display index page.
2016-02-28 23:04:53 +01:00
*
2020-05-13 22:28:05 +02:00
* @param Request $request PSR-7 request
2016-03-30 01:39:47 +02:00
* @param Response $response PSR-7 response
*
2017-01-16 17:47:26 +01:00
* @return Response HTTP response
2015-10-31 15:50:32 +01:00
*/
2016-07-22 13:58:33 +02:00
public function index(Request $request, Response $response)
2015-10-31 15:50:32 +01:00
{
$uri = $request->getUri()->withUserInfo('');
2016-10-23 22:59:37 +02:00
$this->view->render(
$response,
'index.tpl',
[
2020-05-13 22:28:05 +02:00
'config' => $this->config,
'class' => 'index',
'description' => $this->localeManager->t(
'Easily download videos from Youtube, Dailymotion, Vimeo and other websites.'
),
2020-05-13 22:28:05 +02:00
'domain' => $uri->getScheme() . '://' . $uri->getAuthority(),
'canonical' => $this->getCanonicalUrl($request),
'supportedLocales' => $this->localeManager->getSupportedLocales(),
2020-05-13 22:28:05 +02:00
'locale' => $this->localeManager->getLocale(),
2016-10-23 22:59:37 +02:00
]
);
2017-01-16 17:31:20 +01:00
2017-01-16 17:19:19 +01:00
return $response;
2015-10-29 22:32:36 +01:00
}
2017-05-30 22:20:16 +02:00
/**
* Switch locale.
*
2020-05-13 22:28:05 +02:00
* @param Request $request PSR-7 request
2017-05-30 22:20:16 +02:00
* @param Response $response PSR-7 response
2020-05-13 22:28:05 +02:00
* @param string[] $data Query parameters
2017-05-30 22:20:16 +02:00
*
* @return Response
*/
public function locale(Request $request, Response $response, array $data)
{
2017-05-30 23:49:38 +02:00
$this->localeManager->setLocale(new Locale($data['locale']));
2017-05-30 22:20:16 +02:00
return $response->withRedirect($this->container->get('router')->pathFor('index'));
}
2015-10-31 15:50:32 +01:00
/**
2016-09-08 00:28:28 +02:00
* Display a list of extractors.
2016-02-28 23:04:53 +01:00
*
2020-05-13 21:18:32 +02:00
* @param Request $request PSR-7 request
2016-03-30 01:39:47 +02:00
* @param Response $response PSR-7 response
*
2017-01-16 17:47:26 +01:00
* @return Response HTTP response
* @throws AlltubeLibraryException
2015-10-31 15:50:32 +01:00
*/
2016-07-22 13:58:33 +02:00
public function extractors(Request $request, Response $response)
2015-10-31 15:50:32 +01:00
{
2016-10-23 22:59:37 +02:00
$this->view->render(
$response,
'extractors.tpl',
[
2020-05-13 22:28:05 +02:00
'config' => $this->config,
'extractors' => $this->downloader->getExtractors(),
2020-05-13 22:28:05 +02:00
'class' => 'extractors',
'title' => $this->localeManager->t('Supported websites'),
'description' => $this->localeManager->t('List of all supported websites from which Alltube Download ' .
'can extract video or audio files'),
2017-10-29 23:21:13 +01:00
'canonical' => $this->getCanonicalUrl($request),
2020-05-13 22:28:05 +02:00
'locale' => $this->localeManager->getLocale(),
2016-10-23 22:59:37 +02:00
]
);
2017-01-16 17:31:20 +01:00
2017-01-16 17:19:19 +01:00
return $response;
2015-10-29 22:32:36 +01:00
}
/**
2016-10-20 23:03:13 +02:00
* Display a password prompt.
*
2020-05-13 22:28:05 +02:00
* @param Request $request PSR-7 request
2016-10-20 23:03:13 +02:00
* @param Response $response PSR-7 response
*
* @return Response HTTP response
*/
public function password(Request $request, Response $response)
{
2016-10-23 22:59:37 +02:00
$this->view->render(
$response,
'password.tpl',
[
2020-05-13 22:28:05 +02:00
'config' => $this->config,
'class' => 'password',
'title' => $this->localeManager->t('Password prompt'),
'description' => $this->localeManager->t(
'You need a password in order to download this video with Alltube Download'
),
2020-05-13 22:28:05 +02:00
'canonical' => $this->getCanonicalUrl($request),
'locale' => $this->localeManager->getLocale(),
2016-10-23 22:59:37 +02:00
]
);
2017-01-16 17:31:20 +01:00
return $response->withStatus(403);
2015-10-29 22:32:36 +01:00
}
2017-01-16 13:43:47 +01:00
/**
2017-01-16 17:31:20 +01:00
* Return the video description page.
*
2020-05-13 22:28:05 +02:00
* @param Request $request PSR-7 request
2017-01-16 17:31:20 +01:00
* @param Response $response PSR-7 response
*
2017-01-16 17:47:26 +01:00
* @return Response HTTP response
* @throws AlltubeLibraryException
2017-01-16 13:43:47 +01:00
*/
private function getInfoResponse(Request $request, Response $response)
2017-01-16 13:43:47 +01:00
{
try {
$this->video->getJson();
2017-01-16 13:43:47 +01:00
} catch (PasswordException $e) {
return $this->password($request, $response);
} catch (WrongPasswordException $e) {
return $this->displayError($request, $response, $this->localeManager->t('Wrong password'));
2017-01-16 13:43:47 +01:00
}
if (isset($this->video->entries)) {
2017-04-25 01:53:38 +02:00
$template = 'playlist.tpl';
} else {
$template = 'info.tpl';
2017-04-25 01:53:38 +02:00
}
$title = $this->localeManager->t('Video download');
$description = $this->localeManager->t(
'Download video from @extractor',
['@extractor' => $this->video->extractor_key]
);
if (isset($this->video->title)) {
$title = $this->video->title;
$description = $this->localeManager->t(
'Download @title from @extractor',
[
'@title' => $this->video->title,
'@extractor' => $this->video->extractor_key
]
);
2017-04-25 11:05:49 +02:00
}
2017-01-16 13:43:47 +01:00
$this->view->render(
$response,
2017-04-25 01:53:38 +02:00
$template,
2017-01-16 13:43:47 +01:00
[
2020-05-13 22:28:05 +02:00
'video' => $this->video,
'class' => 'info',
'title' => $title,
'description' => $description,
'config' => $this->config,
'canonical' => $this->getCanonicalUrl($request),
'locale' => $this->localeManager->getLocale(),
'defaultFormat' => $this->defaultFormat,
2017-01-16 13:43:47 +01:00
]
);
2017-01-16 17:31:20 +01:00
2017-01-16 17:19:19 +01:00
return $response;
2017-01-16 13:43:47 +01:00
}
2015-10-31 15:50:32 +01:00
/**
2016-09-08 00:28:28 +02:00
* Dislay information about the video.
2016-02-28 23:04:53 +01:00
*
2020-05-13 22:28:05 +02:00
* @param Request $request PSR-7 request
2016-03-30 01:39:47 +02:00
* @param Response $response PSR-7 response
*
2016-08-01 13:29:13 +02:00
* @return Response HTTP response
* @throws AlltubeLibraryException
2015-10-31 15:50:32 +01:00
*/
public function info(Request $request, Response $response)
2015-10-31 15:50:32 +01:00
{
$url = $request->getQueryParam('url') ?: $request->getQueryParam('v');
if (isset($url) && !empty($url)) {
$this->video = $this->downloader->getVideo($url, $this->getFormat($request), $this->getPassword($request));
if ($this->config->convert && $request->getQueryParam('audio')) {
// We skip the info page and get directly to the download.
return $response->withRedirect(
$this->container->get('router')->pathFor('download') .
'?' . http_build_query($request->getQueryParams())
);
2015-10-29 22:32:36 +01:00
} else {
return $this->getInfoResponse($request, $response);
2015-10-29 22:32:36 +01:00
}
2016-06-09 21:15:44 +02:00
} else {
2016-07-22 14:43:50 +02:00
return $response->withRedirect($this->container->get('router')->pathFor('index'));
2015-10-29 22:32:36 +01:00
}
2016-05-01 01:25:08 +02:00
}
/**
* Display an user-friendly error.
*
* @param Request $request PSR-7 request
* @param Response $response PSR-7 response
* @param string $message Error message
*
* @return Response HTTP response
*/
protected function displayError(Request $request, Response $response, $message)
{
$this->view->render(
$response,
'error.tpl',
[
'config' => $this->config,
'error' => $message,
'class' => 'video',
'title' => $this->localeManager->t('Error'),
'canonical' => $this->getCanonicalUrl($request),
'locale' => $this->localeManager->getLocale(),
]
);
return $response->withStatus(500);
}
2016-08-01 13:29:13 +02:00
/**
2016-09-08 00:28:28 +02:00
* Display an error page.
*
2020-05-13 22:28:05 +02:00
* @param Request $request PSR-7 request
* @param Response $response PSR-7 response
* @param Throwable $error Error to display
2016-09-08 00:28:28 +02:00
*
2016-08-01 13:29:13 +02:00
* @return Response HTTP response
*/
2019-12-02 22:04:14 +01:00
public function error(Request $request, Response $response, Throwable $error)
2016-05-01 01:25:08 +02:00
{
2019-11-27 21:22:23 +01:00
if ($this->config->debug) {
2020-05-13 22:57:25 +02:00
$renderer = new HtmlErrorRenderer(true);
$exception = $renderer->render($error);
2020-05-13 22:57:25 +02:00
$response->getBody()->write($exception->getAsString());
foreach ($exception->getHeaders() as $header => $value) {
$response = $response->withHeader($header, $value);
}
2015-10-31 11:48:14 +01:00
2019-12-02 22:04:14 +01:00
return $response->withStatus($exception->getStatusCode());
2019-11-27 23:49:01 +01:00
} else {
2019-12-02 22:04:14 +01:00
if ($error instanceof Exception) {
$message = $error->getMessage();
} else {
$message = '';
}
return $this->displayError($request, $response, $message);
2019-12-02 22:04:14 +01:00
}
2019-11-27 23:49:01 +01:00
}
2017-01-16 14:26:12 +01:00
/**
2017-01-16 17:31:20 +01:00
* Generate the canonical URL of the current page.
*
* @param Request $request PSR-7 Request
*
2017-01-16 14:26:12 +01:00
* @return string URL
*/
private function getCanonicalUrl(Request $request)
{
$uri = $request->getUri();
$return = 'https://alltubedownload.net/';
$path = $uri->getPath();
if ($path != '/') {
$return .= $path;
}
$query = $uri->getQuery();
if (!empty($query)) {
$return .= '?' . $query;
2017-01-16 14:26:12 +01:00
}
return $return;
}
2015-10-29 22:32:36 +01:00
}