alltube/controllers/FrontController.php

279 lines
8.8 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;
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-04-08 17:06:41 +00:00
public function __construct()
{
$this->config = Config::getInstance();
$this->download = new VideoDownload();
}
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-04-08 17:06:41 +00:00
public function index($request, $response)
2015-10-31 14:50:32 +00:00
{
2016-03-29 23:39:47 +00:00
global $container;
$container->view->render(
$response,
2015-10-29 21:32:36 +00:00
'head.tpl',
array(
'class'=>'index'
)
);
2016-03-29 23:39:47 +00:00
$container->view->render(
$response,
2015-10-29 21:32:36 +00:00
'header.tpl'
);
2016-03-29 23:39:47 +00:00
$container->view->render(
$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-03-29 23:39:47 +00:00
$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-04-08 17:06:41 +00:00
public function extractors($request, $response)
2015-10-31 14:50:32 +00:00
{
2016-03-29 23:39:47 +00:00
global $container;
$container->view->render(
$response,
2015-10-29 21:32:36 +00:00
'head.tpl',
array(
'class'=>'extractors'
)
);
2016-03-29 23:39:47 +00:00
$container->view->render($response, 'header.tpl');
$container->view->render($response, 'logo.tpl');
$container->view->render(
$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-03-29 23:39:47 +00:00
$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-04-08 17:06:41 +00:00
public function video($request, $response)
2015-10-31 14:50:32 +00:00
{
2016-03-29 23:39:47 +00:00
global $container;
2016-04-07 00:09:34 +00:00
$params = $request->getQueryParams();
2016-04-08 17:06:41 +00:00
$this->config = Config::getInstance();
2016-04-07 00:09:34 +00:00
if (isset($params["url"])) {
if (isset($params['audio'])) {
2015-10-29 21:32:36 +00:00
try {
$video = $this->download->getJSON($params["url"]);
2015-10-29 21:32:36 +00:00
//Vimeo needs a correct user-agent
ini_set(
'user_agent',
2016-04-08 21:01:07 +00:00
$video->http_headers->{'User-Agent'}
2015-10-29 21:32:36 +00:00
);
$url_info = parse_url($video->url);
2016-04-08 21:01:07 +00:00
try {
return $this->getStream($params["url"], 'bestaudio', $response, $request);
} catch (\Exception $e) {
if ($url_info['scheme'] == 'rtmp') {
ob_end_flush();
header(
'Content-Disposition: attachment; filename="'.
html_entity_decode(
pathinfo(
$video->_filename,
PATHINFO_FILENAME
).'.mp3',
ENT_COMPAT,
'ISO-8859-1'
).'"'
);
header("Content-Type: audio/mpeg");
passthru(
'/usr/bin/rtmpdump -q -r '.escapeshellarg($video->url).
' | '.$this->config->avconv.
' -v quiet -i - -f mp3 -vn pipe:1'
);
exit;
} else {
ob_end_flush();
header(
'Content-Disposition: attachment; filename="'.
html_entity_decode(
pathinfo(
$video->_filename,
PATHINFO_FILENAME
).'.mp3',
ENT_COMPAT,
'ISO-8859-1'
).'"'
);
header("Content-Type: audio/mpeg");
passthru(
'curl '.$this->config->curl_params.
' --user-agent '.escapeshellarg($video->http_headers->{'User-Agent'}).
' '.escapeshellarg($video->url).
' | '.$this->config->avconv.
' -v quiet -i - -f mp3 -vn pipe:1'
);
exit;
}
2015-10-29 21:32:36 +00:00
}
} catch (\Exception $e) {
$error = $e->getMessage();
}
} else {
try {
$video = $this->download->getJSON($params["url"]);
2016-03-29 23:39:47 +00:00
$container->view->render(
$response,
2015-10-29 21:32:36 +00:00
'head.tpl',
array(
'class'=>'video'
)
);
2016-03-29 23:39:47 +00:00
$container->view->render(
$response,
2015-10-29 21:32:36 +00:00
'video.tpl',
array(
'video'=>$video
)
);
2016-03-29 23:39:47 +00:00
$container->view->render($response, 'footer.tpl');
2015-10-29 21:32:36 +00:00
} catch (\Exception $e) {
$error = $e->getMessage();
}
}
}
if (isset($error)) {
2016-03-29 23:39:47 +00:00
$container->view->render(
$response,
2015-10-29 21:32:36 +00:00
'head.tpl',
array(
'class'=>'video'
)
);
2016-03-29 23:39:47 +00:00
$container->view->render(
$response,
2015-10-29 21:32:36 +00:00
'error.tpl',
array(
'errors'=>$error
)
);
2016-03-29 23:39:47 +00:00
$container->view->render($response, 'footer.tpl');
2015-10-29 21:32:36 +00:00
}
}
2015-10-31 10:48:14 +00:00
2016-04-08 21:01:07 +00:00
private function getStream($url, $format, $response, $request)
{
if (!isset($format)) {
$format = 'best';
}
$video = $this->download->getJSON($url, $format);
$client = new \GuzzleHttp\Client();
$stream = $client->request('GET', $video->url, array('stream'=>true));
2016-04-08 22:12:57 +00:00
$response = $response->withHeader('Content-Disposition', 'attachment; filename="'.$video->_filename.'"');
2016-04-08 21:01:07 +00:00
$response = $response->withHeader('Content-Type', $stream->getHeader('Content-Type'));
2016-04-08 22:12:57 +00:00
//$response = $response->withHeader('Content-Length', $stream->getHeader('Content-Length'));
2016-04-08 21:01:07 +00:00
if ($request->isGet()) {
$response = $response->withBody($stream->getBody());
}
return $response;
}
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-04-08 17:06:41 +00:00
public function redirect($request, $response)
2015-10-31 14:50:32 +00:00
{
2015-10-31 10:48:14 +00:00
global $app;
2016-04-07 00:09:34 +00:00
$params = $request->getQueryParams();
if (isset($params["url"])) {
2015-10-31 10:48:14 +00:00
try {
2016-04-08 21:01:07 +00:00
return $this->getStream($params["url"], $params["format"], $response, $request);
2015-10-31 10:48:14 +00:00
} catch (\Exception $e) {
2016-04-07 00:09:34 +00:00
$response->getBody()->write($e->getMessage().PHP_EOL);
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-04-08 17:06:41 +00:00
public function json($request, $response)
2015-10-31 14:50:32 +00:00
{
2015-10-31 10:48:14 +00:00
global $app;
2016-04-07 00:09:34 +00:00
$params = $request->getQueryParams();
if (isset($params["url"])) {
2015-10-31 10:48:14 +00:00
try {
$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
}