alltube/controllers/FrontController.php

309 lines
10 KiB
PHP
Raw Normal View History

2015-10-29 21:32:36 +00:00
<?php
2015-10-31 14:50:32 +00:00
/**
* FrontController class
*
* PHP Version 5.3.10
*
* @category Youtube-dl
* @package Youtubedl
* @author Pierre Rudloff <contact@rudloff.pro>
* @license GNU General Public License http://www.gnu.org/licenses/gpl.html
* @link http://rudloff.pro
* */
2015-10-29 21:32:36 +00:00
namespace Alltube\Controller;
2016-03-29 23:49:08 +00:00
2015-10-29 21:32:36 +00:00
use Alltube\VideoDownload;
2015-10-31 14:42:25 +00:00
use Alltube\Config;
use Symfony\Component\Process\ProcessBuilder;
use Chain\Chain;
use Slim\Http\Stream;
2016-07-22 11:58:33 +00:00
use Slim\Http\Request;
use Slim\Http\Response;
2016-03-29 23:49:08 +00:00
2015-10-31 14:50:32 +00:00
/**
* Main controller
*
* PHP Version 5.3.10
*
* @category Youtube-dl
* @package Youtubedl
* @author Pierre Rudloff <contact@rudloff.pro>
* @license GNU General Public License http://www.gnu.org/licenses/gpl.html
* @link http://rudloff.pro
* */
class FrontController
{
2016-07-22 12:43:50 +00:00
public function __construct($container)
2016-04-08 17:06:41 +00:00
{
$this->config = Config::getInstance();
$this->download = new VideoDownload();
2016-07-22 12:43:50 +00:00
$this->container = $container;
2016-04-08 17:06:41 +00:00
}
2015-10-29 21:32:36 +00:00
2015-10-31 14:50:32 +00:00
/**
* Display index page
2016-02-28 22:04:53 +00:00
*
2016-03-29 23:39:47 +00:00
* @param Request $request PSR-7 request
* @param Response $response PSR-7 response
*
2015-10-31 14:50:32 +00:00
* @return void
*/
2016-07-22 11:58:33 +00:00
public function index(Request $request, Response $response)
2015-10-31 14:50:32 +00:00
{
2016-07-22 12:43:50 +00:00
$this->container->view->render(
2016-03-29 23:39:47 +00:00
$response,
2015-10-29 21:32:36 +00:00
'head.tpl',
array(
'class'=>'index',
'description'=>'Easily download videos from Youtube, Dailymotion, Vimeo and other websites.'
2015-10-29 21:32:36 +00:00
)
);
2016-07-22 12:43:50 +00:00
$this->container->view->render(
2016-03-29 23:39:47 +00:00
$response,
2015-10-29 21:32:36 +00:00
'header.tpl'
);
2016-07-22 12:43:50 +00:00
$this->container->view->render(
2016-03-29 23:39:47 +00:00
$response,
2015-10-29 21:32:36 +00:00
'index.tpl',
array(
2016-04-08 17:06:41 +00:00
'convert'=>$this->config->convert
2015-10-29 21:32:36 +00:00
)
);
2016-07-22 12:43:50 +00:00
$this->container->view->render($response, 'footer.tpl');
2015-10-29 21:32:36 +00:00
}
2015-10-31 14:50:32 +00:00
/**
* Display a list of extractors
2016-02-28 22:04:53 +00:00
*
2016-03-29 23:39:47 +00:00
* @param Request $request PSR-7 request
* @param Response $response PSR-7 response
*
2015-10-31 14:50:32 +00:00
* @return void
*/
2016-07-22 11:58:33 +00:00
public function extractors(Request $request, Response $response)
2015-10-31 14:50:32 +00:00
{
2016-07-22 12:43:50 +00:00
$this->container->view->render(
2016-03-29 23:39:47 +00:00
$response,
2015-10-29 21:32:36 +00:00
'head.tpl',
array(
'class'=>'extractors',
'title'=>'Supported websites',
'description'
=>'List of all supported websites from which Alltube Download can extract video or audio files'
2015-10-29 21:32:36 +00:00
)
);
2016-07-22 12:43:50 +00:00
$this->container->view->render($response, 'header.tpl');
$this->container->view->render($response, 'logo.tpl');
$this->container->view->render(
2016-03-29 23:39:47 +00:00
$response,
2015-10-29 21:32:36 +00:00
'extractors.tpl',
array(
2016-04-08 17:06:41 +00:00
'extractors'=>$this->download->listExtractors()
2015-10-29 21:32:36 +00:00
)
);
2016-07-22 12:43:50 +00:00
$this->container->view->render($response, 'footer.tpl');
2015-10-29 21:32:36 +00:00
}
2015-10-31 14:50:32 +00:00
/**
* Dislay information about the video
2016-02-28 22:04:53 +00:00
*
2016-03-29 23:39:47 +00:00
* @param Request $request PSR-7 request
* @param Response $response PSR-7 response
*
2015-10-31 14:50:32 +00:00
* @return void
*/
2016-07-22 11:58:33 +00:00
public function video(Request $request, Response $response)
2015-10-31 14:50:32 +00:00
{
2016-04-08 22:47:51 +00:00
$params = $request->getQueryParams();
2016-04-08 17:06:41 +00:00
$this->config = Config::getInstance();
2016-04-08 22:47:51 +00:00
if (isset($params["url"])) {
if (isset($params['audio'])) {
2015-10-29 21:32:36 +00:00
try {
2016-05-04 14:13:32 +00:00
$url = $this->download->getURL($params["url"], 'mp3[protocol^=http]');
2016-04-30 23:25:08 +00:00
return $response->withRedirect($url);
} catch (\Exception $e) {
$video = $this->download->getJSON($params["url"], 'bestaudio/best');
if (!shell_exec('which '.$this->config->avconv)) {
throw(new \Exception('Can\'t find avconv or ffmpeg'));
}
2016-04-30 23:25:08 +00:00
$avconvProc = ProcessBuilder::create(
array(
$this->config->avconv,
'-v', 'quiet',
'-i', '-',
'-f', 'mp3',
'-vn',
'pipe:1'
)
);
2015-10-29 21:32:36 +00:00
2016-04-30 23:25:08 +00:00
//Vimeo needs a correct user-agent
ini_set(
'user_agent',
$video->http_headers->{'User-Agent'}
);
2016-04-14 10:42:13 +00:00
2016-04-30 23:25:08 +00:00
$response = $response->withHeader(
'Content-Disposition',
'attachment; filename="'.
html_entity_decode(
pathinfo(
$video->_filename,
PATHINFO_FILENAME
).'.mp3',
ENT_COMPAT,
'ISO-8859-1'
).'"'
);
$response = $response->withHeader('Content-Type', 'audio/mpeg');
2016-04-14 10:42:13 +00:00
2016-04-30 23:25:08 +00:00
if (parse_url($video->url, PHP_URL_SCHEME) == 'rtmp') {
if (!shell_exec('which '.$this->config->rtmpdump)) {
throw(new \Exception('Can\'t find rtmpdump'));
}
2016-04-30 23:25:08 +00:00
$builder = new ProcessBuilder(
array(
$this->config->rtmpdump,
'-q',
'-r',
$video->url,
'--pageUrl', $video->webpage_url
)
);
if (isset($video->player_url)) {
$builder->add('--swfVfy');
$builder->add($video->player_url);
2016-04-10 17:41:25 +00:00
}
2016-04-30 23:25:08 +00:00
if (isset($video->flash_version)) {
$builder->add('--flashVer');
$builder->add($video->flash_version);
2016-04-30 01:22:46 +00:00
}
2016-04-30 23:25:08 +00:00
if (isset($video->play_path)) {
$builder->add('--playpath');
$builder->add($video->play_path);
}
foreach ($video->rtmp_conn as $conn) {
$builder->add('--conn');
$builder->add($conn);
}
$chain = new Chain($builder->getProcess());
$chain->add('|', $avconvProc);
} else {
if (!shell_exec('which curl')) {
throw(new \Exception('Can\'t find curl'));
}
2016-04-30 23:25:08 +00:00
$chain = new Chain(
ProcessBuilder::create(
array_merge(
array(
'curl',
'--silent',
2016-07-27 01:06:06 +00:00
'--location',
2016-04-30 23:25:08 +00:00
'--user-agent', $video->http_headers->{'User-Agent'},
$video->url
),
$this->config->curl_params
)
)
);
$chain->add('|', $avconvProc);
2015-10-29 21:32:36 +00:00
}
2016-04-30 23:25:08 +00:00
if ($request->isGet()) {
$response = $response->withBody(new Stream(popen($chain->getProcess()->getCommandLine(), 'r')));
2016-04-30 23:25:08 +00:00
}
return $response;
2015-10-29 21:32:36 +00:00
}
} else {
2016-04-30 23:25:08 +00:00
$video = $this->download->getJSON($params["url"]);
2016-07-22 12:43:50 +00:00
$this->container->view->render(
2016-04-30 23:25:08 +00:00
$response,
'head.tpl',
array(
'class'=>'video',
'title'=>$video->title,
'description'=>'Download "'.$video->title.'" from '.$video->extractor_key
2016-04-30 23:25:08 +00:00
)
);
2016-07-22 12:43:50 +00:00
$this->container->view->render(
2016-04-30 23:25:08 +00:00
$response,
'video.tpl',
array(
'video'=>$video
)
);
2016-07-22 12:43:50 +00:00
$this->container->view->render($response, 'footer.tpl');
2015-10-29 21:32:36 +00:00
}
2016-06-09 19:15:44 +00:00
} else {
2016-07-22 12:43:50 +00:00
return $response->withRedirect($this->container->get('router')->pathFor('index'));
2015-10-29 21:32:36 +00:00
}
2016-04-30 23:25:08 +00:00
}
2016-07-22 11:58:33 +00:00
public function error(Request $request, Response $response, \Exception $exception)
2016-04-30 23:25:08 +00:00
{
2016-07-22 12:43:50 +00:00
$this->container->view->render(
2016-04-30 23:25:08 +00:00
$response,
'head.tpl',
array(
'class'=>'video',
'title'=>'Error'
2016-04-30 23:25:08 +00:00
)
);
2016-07-22 12:43:50 +00:00
$this->container->view->render(
2016-04-30 23:25:08 +00:00
$response,
'error.tpl',
array(
'errors'=>$exception->getMessage()
)
);
2016-07-22 12:43:50 +00:00
$this->container->view->render($response, 'footer.tpl');
return $response->withStatus(500);
2015-10-29 21:32:36 +00:00
}
2015-10-31 10:48:14 +00:00
2015-10-31 14:50:32 +00:00
/**
* Redirect to video file
2016-02-28 22:04:53 +00:00
*
2016-03-29 23:39:47 +00:00
* @param Request $request PSR-7 request
* @param Response $response PSR-7 response
*
2015-10-31 14:50:32 +00:00
* @return void
*/
2016-07-22 11:58:33 +00:00
public function redirect(Request $request, Response $response)
2015-10-31 14:50:32 +00:00
{
2016-04-08 22:47:51 +00:00
$params = $request->getQueryParams();
if (isset($params["url"])) {
2015-10-31 10:48:14 +00:00
try {
2016-04-10 19:42:38 +00:00
$url = $this->download->getURL($params["url"], $params["format"]);
2016-04-08 18:08:04 +00:00
return $response->withRedirect($url);
2015-10-31 10:48:14 +00:00
} catch (\Exception $e) {
2016-04-10 17:28:59 +00:00
$response->getBody()->write($e->getMessage());
2016-03-29 23:39:47 +00:00
return $response->withHeader('Content-Type', 'text/plain');
2015-10-31 10:48:14 +00:00
}
}
}
2015-10-31 14:50:32 +00:00
/**
* Output JSON info about the video
2016-02-28 22:04:53 +00:00
*
2016-03-29 23:39:47 +00:00
* @param Request $request PSR-7 request
* @param Response $response PSR-7 response
*
2015-10-31 14:50:32 +00:00
* @return void
*/
2016-07-22 11:58:33 +00:00
public function json(Request $request, Response $response)
2015-10-31 14:50:32 +00:00
{
2016-04-08 22:47:51 +00:00
$params = $request->getQueryParams();
if (isset($params["url"])) {
2015-10-31 10:48:14 +00:00
try {
2016-04-08 22:47:51 +00:00
$video = $this->download->getJSON($params["url"]);
2016-03-29 23:39:47 +00:00
return $response->withJson($video);
2015-10-31 10:48:14 +00:00
} catch (\Exception $e) {
2016-03-29 23:39:47 +00:00
return $response->withJson(
array('success'=>false, 'error'=>$e->getMessage())
);
2015-10-31 10:48:14 +00:00
}
}
}
2015-10-29 21:32:36 +00:00
}