alltube/controllers/FrontController.php

619 lines
19 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
2015-10-31 15:42:25 +01:00
use Alltube\Config;
use Alltube\EmptyUrlException;
2017-05-30 23:30:21 +02:00
use Alltube\Locale;
2017-11-12 16:39:56 +01:00
use Alltube\LocaleManager;
use Alltube\PasswordException;
use Alltube\PlaylistArchiveStream;
use Alltube\Video;
use Aura\Session\Segment;
use Aura\Session\SessionFactory;
use Exception;
use GuzzleHttp\Client;
2017-04-25 22:24:44 +02:00
use Psr\Container\ContainerInterface;
2016-09-08 00:28:28 +02:00
use Slim\Container;
2016-07-22 13:58:33 +02:00
use Slim\Http\Request;
use Slim\Http\Response;
2016-09-08 00:28:28 +02:00
use Slim\Http\Stream;
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
*/
2015-10-31 15:50:32 +01:00
class FrontController
{
2016-08-01 13:29:13 +02:00
/**
2016-09-08 00:28:28 +02:00
* Config instance.
*
2016-08-01 13:29:13 +02:00
* @var Config
*/
2016-08-01 03:16:48 +02:00
private $config;
2016-08-01 13:29:13 +02:00
/**
* Current video.
2016-09-08 00:28:28 +02:00
*
* @var Video
2016-08-01 13:29:13 +02:00
*/
private $video;
2016-08-01 13:29:13 +02:00
/**
2016-09-08 00:28:28 +02:00
* Slim dependency container.
*
2016-10-13 16:53:23 +02:00
* @var ContainerInterface
2016-08-01 13:29:13 +02:00
*/
2016-08-01 03:16:48 +02:00
private $container;
2016-10-20 23:27:13 +02:00
/**
2016-10-20 23:27:56 +02:00
* Session segment used to store session variables.
*
* @var Segment
2016-10-20 23:27:13 +02:00
*/
private $sessionSegment;
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;
2017-01-16 17:48:32 +01:00
/**
2017-01-16 17:50:58 +01:00
* Default youtube-dl format.
*
2017-01-16 17:48:32 +01:00
* @var string
*/
private $defaultFormat = 'best[protocol=https]/best[protocol=http]';
2017-01-16 17:48:32 +01:00
2017-05-30 23:49:38 +02:00
/**
* LocaleManager instance.
*
* @var LocaleManager
*/
private $localeManager;
2016-08-01 13:29:13 +02:00
/**
2016-09-08 00:28:28 +02:00
* FrontController constructor.
*
* @param ContainerInterface $container Slim dependency container
* @param array $cookies Cookie array
2016-08-01 13:29:13 +02:00
*/
public function __construct(ContainerInterface $container, array $cookies = [])
2016-04-08 19:06:41 +02:00
{
$this->config = Config::getInstance();
$this->container = $container;
2016-10-23 22:59:37 +02:00
$this->view = $this->container->get('view');
2017-05-30 23:49:38 +02:00
$this->localeManager = $this->container->get('locale');
$session_factory = new SessionFactory();
$session = $session_factory->newInstance($cookies);
$this->sessionSegment = $session->getSegment(self::class);
if ($this->config->stream) {
$this->defaultFormat = 'best';
}
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
*
2016-03-30 01:39:47 +02:00
* @param Request $request PSR-7 request
* @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',
[
'config' => $this->config,
'class' => 'index',
'description' => _('Easily download videos from Youtube, Dailymotion, Vimeo and other websites.'),
'domain' => $uri->getScheme().'://'.$uri->getAuthority(),
'canonical' => $this->getCanonicalUrl($request),
'supportedLocales' => $this->localeManager->getSupportedLocales(),
'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.
*
* @param Request $request PSR-7 request
* @param Response $response PSR-7 response
* @param array $data Query parameters
*
* @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
*
2016-03-30 01:39:47 +02:00
* @param Request $request PSR-7 request
* @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 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',
[
'config' => $this->config,
'extractors' => Video::getExtractors(),
2016-10-23 22:59:37 +02:00
'class' => 'extractors',
'title' => _('Supported websites'),
'description' => _('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),
'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.
*
* @param Request $request PSR-7 request
* @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',
[
'config' => $this->config,
2016-10-23 22:59:37 +02:00
'class' => 'password',
'title' => _('Password prompt'),
'description' => _('You need a password in order to download this video with Alltube Download'),
2017-01-16 14:26:12 +01:00
'canonical' => $this->getCanonicalUrl($request),
2017-05-30 23:49:38 +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-01-16 13:43:47 +01:00
/**
2018-07-03 19:47:35 +02:00
* Return a converted MP3 file.
*
* @param Request $request PSR-7 request
* @param Response $response PSR-7 response
*
* @return Response HTTP response
*/
private function getConvertedAudioResponse(Request $request, Response $response)
2018-07-03 19:47:35 +02:00
{
$from = $request->getQueryParam('from');
$to = $request->getQueryParam('to');
2018-07-03 19:52:24 +02:00
2018-07-03 19:47:35 +02:00
$response = $response->withHeader(
'Content-Disposition',
'attachment; filename="'.
$this->video->getFileNameWithExtension('mp3').'"'
2018-07-03 19:47:35 +02:00
);
$response = $response->withHeader('Content-Type', 'audio/mpeg');
if ($request->isGet() || $request->isPost()) {
try {
$process = $this->video->getAudioStream($from, $to);
2018-07-03 19:47:35 +02:00
} catch (Exception $e) {
// Fallback to default format.
$this->video = $this->video->withFormat($this->defaultFormat);
$process = $this->video->getAudioStream($from, $to);
2018-07-03 19:47:35 +02:00
}
$response = $response->withBody(new Stream($process));
}
return $response;
}
/**
* Return the MP3 file.
2017-01-16 17:31:20 +01:00
*
* @param Request $request PSR-7 request
* @param Response $response PSR-7 response
*
2017-01-16 17:47:26 +01:00
* @return Response HTTP response
2017-01-16 13:43:47 +01:00
*/
private function getAudioResponse(Request $request, Response $response)
2017-01-16 13:43:47 +01:00
{
try {
// First, we try to get a MP3 file directly.
if (!empty($request->getQueryParam('from')) || !empty($request->getQueryParam('to'))) {
2018-07-03 19:47:35 +02:00
throw new Exception('Force convert when we need to seek.');
}
2017-01-16 13:43:47 +01:00
if ($this->config->stream) {
$this->video = $this->video->withFormat('mp3');
return $this->getStream($request, $response);
2017-01-16 13:43:47 +01:00
} else {
$this->video = $this->video->withFormat('mp3[protocol=https]/mp3[protocol=http]');
$urls = $this->video->getUrl();
2017-01-16 13:43:47 +01:00
2017-04-25 00:40:24 +02:00
return $response->withRedirect($urls[0]);
2017-01-16 13:43:47 +01:00
}
} catch (PasswordException $e) {
return $this->password($request, $response);
} catch (Exception $e) {
// If MP3 is not available, we convert it.
$this->video = $this->video->withFormat($this->defaultFormat);
return $this->getConvertedAudioResponse($request, $response);
2017-01-16 13:43:47 +01:00
}
}
/**
2017-01-16 17:31:20 +01:00
* Return the video description page.
*
* @param Request $request PSR-7 request
* @param Response $response PSR-7 response
*
2017-01-16 17:47:26 +01:00
* @return Response HTTP response
2017-01-16 13:43:47 +01:00
*/
private function getVideoResponse(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);
}
if (isset($this->video->entries)) {
2017-04-25 01:53:38 +02:00
$template = 'playlist.tpl';
} else {
$template = 'video.tpl';
}
$title = _('Video download');
$description = _('Download video from ').$this->video->extractor_key;
if (isset($this->video->title)) {
$title = $this->video->title;
$description = _('Download').' "'.$this->video->title.'" '._('from').' '.$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
[
'video' => $this->video,
'class' => 'video',
'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
*
2016-03-30 01:39:47 +02:00
* @param Request $request PSR-7 request
* @param Response $response PSR-7 response
*
2016-08-01 13:29:13 +02:00
* @return Response HTTP response
2015-10-31 15:50:32 +01:00
*/
2016-07-22 13:58:33 +02:00
public function video(Request $request, Response $response)
2015-10-31 15:50:32 +01:00
{
$url = $request->getQueryParam('url') ?: $request->getQueryParam('v');
if (isset($url) && !empty($url)) {
$password = $request->getParam('password');
if (isset($password)) {
$this->sessionSegment->setFlash($url, $password);
}
$this->video = new Video($url, $this->defaultFormat, $password);
if ($request->getQueryParam('audio')) {
return $this->getAudioResponse($request, $response);
2015-10-29 22:32:36 +01:00
} else {
return $this->getVideoResponse($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
}
2016-08-01 13:29:13 +02:00
/**
2016-09-08 00:28:28 +02:00
* Display an error page.
*
* @param Request $request PSR-7 request
* @param Response $response PSR-7 response
* @param Exception $exception Error to display
2016-09-08 00:28:28 +02:00
*
2016-08-01 13:29:13 +02:00
* @return Response HTTP response
*/
public function error(Request $request, Response $response, Exception $exception)
2016-05-01 01:25:08 +02:00
{
2016-10-23 22:59:37 +02:00
$this->view->render(
$response,
'error.tpl',
[
'config' => $this->config,
2017-01-16 14:26:12 +01:00
'errors' => $exception->getMessage(),
'class' => 'video',
'title' => _('Error'),
2017-01-16 14:26:12 +01:00
'canonical' => $this->getCanonicalUrl($request),
2017-05-30 23:49:38 +02:00
'locale' => $this->localeManager->getLocale(),
2016-10-23 22:59:37 +02:00
]
);
2016-09-08 00:28:28 +02:00
return $response->withStatus(500);
2015-10-29 22:32:36 +01:00
}
2015-10-31 11:48:14 +01:00
2016-12-26 15:58:07 +01:00
/**
* Get a video/audio stream piped through the server.
2016-12-26 15:59:16 +01:00
*
* @param Response $response PSR-7 response
* @param Request $request PSR-7 request
*
2017-01-16 17:47:26 +01:00
* @return Response HTTP response
2016-12-26 15:58:07 +01:00
*/
private function getStream(Request $request, Response $response)
2016-04-08 23:01:07 +02:00
{
if (isset($this->video->entries)) {
$stream = new PlaylistArchiveStream($this->video);
$response = $response->withHeader('Content-Type', 'application/zip');
2017-05-02 17:04:55 +02:00
$response = $response->withHeader(
'Content-Disposition',
'attachment; filename="'.$this->video->title.'.zip"'
2017-05-02 17:04:55 +02:00
);
return $response->withBody($stream);
} elseif ($this->video->protocol == 'rtmp') {
$response = $response->withHeader('Content-Type', 'video/'.$this->video->ext);
$body = new Stream($this->video->getRtmpStream());
} elseif ($this->video->protocol == 'm3u8' || $this->video->protocol == 'm3u8_native') {
$response = $response->withHeader('Content-Type', 'video/'.$this->video->ext);
$body = new Stream($this->video->getM3uStream());
2016-12-26 15:50:26 +01:00
} else {
$client = new Client();
$stream = $client->request(
'GET',
$this->video->getUrl(),
[
'stream' => true,
'headers' => ['Range' => $request->getHeader('Range')],
]
);
2016-12-26 15:50:26 +01:00
$response = $response->withHeader('Content-Type', $stream->getHeader('Content-Type'));
$response = $response->withHeader('Content-Length', $stream->getHeader('Content-Length'));
$response = $response->withHeader('Accept-Ranges', $stream->getHeader('Accept-Ranges'));
$response = $response->withHeader('Content-Range', $stream->getHeader('Content-Range'));
if ($stream->getStatusCode() == 206) {
$response = $response->withStatus(206);
}
2017-05-05 00:25:08 +02:00
$body = $stream->getBody();
}
if ($request->isGet()) {
$response = $response->withBody($body);
2016-04-08 23:01:07 +02:00
}
2017-04-25 01:53:38 +02:00
$response = $response->withHeader(
'Content-Disposition',
'attachment; filename="'.
$this->video->getFilename().'"'
2017-04-25 01:53:38 +02:00
);
2016-09-11 19:03:51 +02:00
2016-04-08 23:01:07 +02:00
return $response;
}
2017-04-25 22:12:11 +02:00
/**
* Get a remuxed stream piped through the server.
*
2017-04-25 22:49:28 +02:00
* @param Response $response PSR-7 response
* @param Request $request PSR-7 request
2017-04-25 22:12:11 +02:00
*
* @return Response HTTP response
*/
private function getRemuxStream(Request $request, Response $response)
2017-04-25 22:12:11 +02:00
{
if (!$this->config->remux) {
throw new Exception(_('You need to enable remux mode to merge two formats.'));
2017-04-25 22:12:11 +02:00
}
$stream = $this->video->getRemuxStream();
2017-04-25 22:12:11 +02:00
$response = $response->withHeader('Content-Type', 'video/x-matroska');
if ($request->isGet()) {
$response = $response->withBody(new Stream($stream));
}
return $response->withHeader(
'Content-Disposition',
'attachment; filename="'.$this->video->getFileNameWithExtension('mkv')
);
2017-04-25 22:12:11 +02:00
}
2017-04-25 22:47:52 +02:00
/**
2017-04-25 22:49:28 +02:00
* Get video format from request parameters or default format if none is specified.
2017-04-25 22:47:52 +02:00
*
* @param Request $request PSR-7 request
*
* @return string format
*/
private function getFormat(Request $request)
{
$format = $request->getQueryParam('format');
if (!isset($format)) {
$format = $this->defaultFormat;
}
return $format;
}
/**
* Get approriate HTTP response to redirect query
2017-04-25 22:49:28 +02:00
* Depends on whether we want to stream, remux or simply redirect.
2017-04-25 22:47:52 +02:00
*
* @param Response $response PSR-7 response
* @param Request $request PSR-7 request
*
* @return Response HTTP response
*/
private function getRedirectResponse(Request $request, Response $response)
2017-04-25 22:47:52 +02:00
{
try {
$videoUrls = $this->video->getUrl();
} catch (EmptyUrlException $e) {
/*
If this happens it is probably a playlist
2018-05-26 14:48:15 +02:00
so it will either be handled by getStream() or throw an exception anyway.
*/
$videoUrls = [];
}
2017-04-25 22:47:52 +02:00
if (count($videoUrls) > 1) {
return $this->getRemuxStream($request, $response);
2017-04-25 22:47:52 +02:00
} elseif ($this->config->stream) {
return $this->getStream($request, $response);
2017-04-25 22:47:52 +02:00
} else {
2017-05-02 17:04:55 +02:00
if (empty($videoUrls[0])) {
throw new Exception(_("Can't find URL of video."));
2017-05-02 17:04:55 +02:00
}
2017-04-25 22:47:52 +02:00
return $response->withRedirect($videoUrls[0]);
}
}
/**
* Return a converted video file.
*
* @param Request $request PSR-7 request
* @param Response $response PSR-7 response
*
* @return Response HTTP response
*/
private function getConvertedResponse(Request $request, Response $response)
{
$response = $response->withHeader(
'Content-Disposition',
'attachment; filename="'.
$this->video->getFileNameWithExtension($request->getQueryParam('customFormat')).'"'
);
$response = $response->withHeader('Content-Type', 'video/'.$request->getQueryParam('customFormat'));
if ($request->isGet() || $request->isPost()) {
$process = $this->video->getConvertedStream(
$request->getQueryParam('customBitrate'),
$request->getQueryParam('customFormat')
);
$response = $response->withBody(new Stream($process));
}
return $response;
}
2015-10-31 15:50:32 +01:00
/**
2016-09-08 00:28:28 +02:00
* Redirect to video file.
2016-02-28 23:04:53 +01:00
*
2016-03-30 01:39:47 +02:00
* @param Request $request PSR-7 request
* @param Response $response PSR-7 response
*
2016-08-01 13:29:13 +02:00
* @return Response HTTP response
2015-10-31 15:50:32 +01:00
*/
2016-07-22 13:58:33 +02:00
public function redirect(Request $request, Response $response)
2015-10-31 15:50:32 +01:00
{
2017-04-25 22:47:52 +02:00
$format = $this->getFormat($request);
$url = $request->getQueryParam('url');
if (isset($url)) {
$this->video = new Video($url, $format, $this->sessionSegment->getFlash($url));
2015-10-31 11:48:14 +01:00
try {
if ($this->config->convertAdvanced && !is_null($request->getQueryParam('customConvert'))) {
return $this->getConvertedResponse($request, $response);
}
return $this->getRedirectResponse($request, $response);
} catch (PasswordException $e) {
2016-12-03 14:01:35 +01:00
return $response->withRedirect(
$this->container->get('router')->pathFor('video').'?url='.urlencode($url)
2016-12-03 14:01:35 +01:00
);
} catch (Exception $e) {
2016-04-10 19:28:59 +02:00
$response->getBody()->write($e->getMessage());
2016-09-08 00:28:28 +02:00
2017-01-16 17:19:19 +01:00
return $response->withHeader('Content-Type', 'text/plain')->withStatus(500);
2015-10-31 11:48:14 +01:00
}
2017-01-16 17:19:19 +01:00
} else {
return $response->withRedirect($this->container->get('router')->pathFor('index'));
2015-10-31 11:48:14 +01:00
}
}
2018-03-20 12:02:21 +01:00
/**
* Return the JSON object generated by youtube-dl.
*
* @param Request $request PSR-7 request
* @param Response $response PSR-7 response
*
* @return Response HTTP response
*/
public function json(Request $request, Response $response)
{
$format = $this->getFormat($request);
$url = $request->getQueryParam('url');
if (isset($url)) {
2018-03-20 12:02:21 +01:00
try {
$this->video = new Video($url, $format);
return $response->withJson($this->video->getJson());
2018-03-20 12:02:21 +01:00
} catch (Exception $e) {
return $response->withJson(['error' => $e->getMessage()])
->withStatus(500);
}
} else {
return $response->withJson(['error' => 'You need to provide the url parameter'])
->withStatus(400);
}
}
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;
}
return $return;
}
2015-10-29 22:32:36 +01:00
}