alltube/controllers/FrontController.php

344 lines
11 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\PasswordException;
2016-09-08 00:28:28 +02:00
use Alltube\VideoDownload;
use Interop\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;
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
/**
2016-09-08 00:28:28 +02:00
* VideoDownload instance.
*
2016-08-01 13:29:13 +02:00
* @var VideoDownload
*/
2016-08-01 03:16:48 +02:00
private $download;
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.
*
2016-10-20 23:27:13 +02:00
* @var \Aura\Session\Segment
*/
private $sessionSegment;
2016-10-23 22:59:37 +02:00
/**
2016-10-23 23:08:32 +02:00
* Smarty view.
*
2016-10-23 22:59:37 +02:00
* @var \Slim\Views\Smarty
*/
private $view;
2016-08-01 13:29:13 +02:00
/**
2016-09-08 00:28:28 +02:00
* FrontController constructor.
*
2016-08-01 13:29:13 +02:00
* @param Container $container Slim dependency container
*/
public function __construct(ContainerInterface $container)
2016-04-08 19:06:41 +02:00
{
$this->config = Config::getInstance();
$this->download = new VideoDownload();
$this->container = $container;
2016-10-23 22:59:37 +02:00
$this->view = $this->container->get('view');
2016-10-20 23:03:13 +02:00
$session_factory = new \Aura\Session\SessionFactory();
$session = $session_factory->newInstance($_COOKIE);
$this->sessionSegment = $session->getSegment('Alltube\Controller\FrontController');
if ($this->config->stream) {
$this->defaultFormat = 'best';
} else {
$this->defaultFormat = 'best[protocol^=http]';
}
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
*
2015-10-31 15:50:32 +01:00
* @return void
*/
2016-07-22 13:58:33 +02:00
public function index(Request $request, Response $response)
2015-10-31 15:50:32 +01:00
{
2017-01-16 01:57:44 +01:00
$uri = $request->getUri();
2016-10-23 22:59:37 +02:00
$this->view->render(
$response,
'index.tpl',
[
2017-01-10 23:39:58 +01:00
'convert' => $this->config->convert,
'uglyUrls' => $this->config->uglyUrls,
2017-01-10 23:39:58 +01:00
'class' => 'index',
'description' => 'Easily download videos from Youtube, Dailymotion, Vimeo and other websites.',
2017-01-16 01:57:44 +01:00
'domain' => $uri->getScheme().'://'.$uri->getAuthority(),
2016-10-23 22:59:37 +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 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
*
2015-10-31 15:50:32 +01:00
* @return void
*/
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',
[
'extractors' => $this->download->listExtractors(),
'class' => 'extractors',
'title' => 'Supported websites',
'description' => 'List of all supported websites from which Alltube Download '.
'can extract video or audio files',
]
);
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',
[
'class' => 'password',
'title' => 'Password prompt',
'description' => 'You need a password in order to download this video with Alltube Download',
]
);
2015-10-29 22:32:36 +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
{
2016-04-07 02:09:34 +02:00
$params = $request->getQueryParams();
2016-09-08 00:28:28 +02:00
if (isset($params['url'])) {
$password = $request->getParam('password');
if (isset($password)) {
$this->sessionSegment->setFlash($params['url'], $password);
}
2016-04-07 02:09:34 +02:00
if (isset($params['audio'])) {
2015-10-29 22:32:36 +01:00
try {
if ($this->config->stream) {
return $this->getStream($params['url'], 'mp3', $response, $request, $password);
} else {
$url = $this->download->getURL($params['url'], 'mp3[protocol^=http]', $password);
return $response->withRedirect($url);
}
} catch (PasswordException $e) {
return $this->password($request, $response);
2016-05-01 01:25:08 +02:00
} catch (\Exception $e) {
$response = $response->withHeader(
'Content-Disposition',
'attachment; filename="'.
$this->download->getAudioFilename($params['url'], 'bestaudio/best', $password).'"'
2016-05-01 01:25:08 +02:00
);
$response = $response->withHeader('Content-Type', 'audio/mpeg');
2016-04-14 12:42:13 +02:00
if ($request->isGet() || $request->isPost()) {
$process = $this->download->getAudioStream($params['url'], 'bestaudio/best', $password);
$response = $response->withBody(new Stream($process));
2016-05-01 01:25:08 +02:00
}
2016-09-08 00:28:28 +02:00
2016-05-01 01:25:08 +02:00
return $response;
2015-10-29 22:32:36 +01:00
}
} else {
try {
$video = $this->download->getJSON($params['url'], $this->defaultFormat, $password);
} catch (PasswordException $e) {
return $this->password($request, $response);
}
if ($this->config->stream) {
$protocol = '';
} else {
$protocol = '[protocol^=http]';
}
2016-10-23 22:59:37 +02:00
$this->view->render(
$response,
'video.tpl',
[
'video' => $video,
'class' => 'video',
'title' => $video->title,
'description' => 'Download "'.$video->title.'" from '.$video->extractor_key,
'protocol' => $protocol,
'config' => $this->config,
2016-10-23 22:59:37 +02:00
]
);
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-08-01 13:29:13 +02:00
* @return Response HTTP response
*/
2016-07-22 13:58:33 +02:00
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',
[
'errors' => $exception->getMessage(),
'class' => 'video',
'title' => 'Error',
]
);
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 string $url URL of the video
* @param string $format Requested format
* @param Response $response PSR-7 response
* @param Request $request PSR-7 request
* @param string $password Video password
*
2016-12-26 15:58:07 +01:00
* @return Response
*/
2016-12-26 13:23:47 +01:00
private function getStream($url, $format, $response, $request, $password = null)
2016-04-08 23:01:07 +02:00
{
if (!isset($format)) {
$format = 'best';
}
2016-12-26 13:23:47 +01:00
$video = $this->download->getJSON($url, $format, $password);
2016-12-26 15:50:26 +01:00
if ($video->protocol == 'm3u8') {
$stream = $this->download->getM3uStream($video);
$response = $response->withHeader('Content-Type', 'video/'.$video->ext);
if ($request->isGet()) {
$response = $response->withBody(new Stream($stream));
}
} else {
$client = new \GuzzleHttp\Client();
$stream = $client->request('GET', $video->url, ['stream' => true]);
$response = $response->withHeader('Content-Type', $stream->getHeader('Content-Type'));
$response = $response->withHeader('Content-Length', $stream->getHeader('Content-Length'));
if ($request->isGet()) {
$response = $response->withBody($stream->getBody());
}
2016-04-08 23:01:07 +02:00
}
2016-12-26 15:50:26 +01:00
$response = $response->withHeader('Content-Disposition', 'attachment; filename="'.$video->_filename.'"');
2016-09-11 19:03:51 +02:00
2016-04-08 23:01:07 +02:00
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
{
2016-04-07 02:09:34 +02:00
$params = $request->getQueryParams();
2016-09-08 00:28:28 +02:00
if (isset($params['url'])) {
2015-10-31 11:48:14 +01:00
try {
if ($this->config->stream) {
return $this->getStream(
$params['url'],
$request->getParam('format'),
$response,
$request,
$this->sessionSegment->getFlash($params['url'])
);
} else {
$url = $this->download->getURL(
$params['url'],
$request->getParam('format'),
$this->sessionSegment->getFlash($params['url'])
);
return $response->withRedirect($url);
}
} catch (PasswordException $e) {
2016-12-03 14:01:35 +01:00
return $response->withRedirect(
$this->container->get('router')->pathFor('video').'?url='.urlencode($params['url'])
);
2015-10-31 11:48:14 +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
2016-03-30 01:39:47 +02:00
return $response->withHeader('Content-Type', 'text/plain');
2015-10-31 11:48:14 +01:00
}
}
}
2015-10-31 15:50:32 +01:00
/**
2016-09-08 00:28:28 +02:00
* Output JSON info 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 json(Request $request, Response $response)
2015-10-31 15:50:32 +01:00
{
2016-04-07 02:09:34 +02:00
$params = $request->getQueryParams();
2016-09-08 00:28:28 +02:00
if (isset($params['url'])) {
2015-10-31 11:48:14 +01:00
try {
2016-09-08 00:28:28 +02:00
$video = $this->download->getJSON($params['url']);
2016-03-30 01:39:47 +02:00
return $response->withJson($video);
2015-10-31 11:48:14 +01:00
} catch (\Exception $e) {
2016-03-30 01:39:47 +02:00
return $response->withJson(
2016-09-08 00:28:28 +02:00
['success' => false, 'error' => $e->getMessage()]
2016-03-30 01:39:47 +02:00
);
2015-10-31 11:48:14 +01:00
}
}
}
2015-10-29 22:32:36 +01:00
}