alltube/controllers/FrontController.php

248 lines
7.4 KiB
PHP
Raw Normal View History

2015-10-29 22:32:36 +01:00
<?php
2015-10-31 15:50:32 +01: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 22:32:36 +01:00
namespace Alltube\Controller;
use Alltube\VideoDownload;
2015-10-31 15:42:25 +01:00
use Alltube\Config;
2015-10-31 15:50:32 +01: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
{
2015-10-29 22:32:36 +01:00
2015-10-31 15:50:32 +01: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-03-30 01:39:47 +02:00
static function index($request, $response)
2015-10-31 15:50:32 +01:00
{
2016-03-30 01:39:47 +02:00
global $container;
2015-10-31 15:42:25 +01:00
$config = Config::getInstance();
2016-03-30 01:39:47 +02:00
$container->view->render(
$response,
2015-10-29 22:32:36 +01:00
'head.tpl',
array(
'class'=>'index'
)
);
2016-03-30 01:39:47 +02:00
$container->view->render(
$response,
2015-10-29 22:32:36 +01:00
'header.tpl'
);
2016-03-30 01:39:47 +02:00
$container->view->render(
$response,
2015-10-29 22:32:36 +01:00
'index.tpl',
array(
2015-10-31 15:42:25 +01:00
'convert'=>$config->convert
2015-10-29 22:32:36 +01:00
)
);
2016-03-30 01:39:47 +02:00
$container->view->render($response, 'footer.tpl');
2015-10-29 22:32:36 +01:00
}
2015-10-31 15:50:32 +01: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-03-30 01:39:47 +02:00
static function extractors($request, $response)
2015-10-31 15:50:32 +01:00
{
2016-03-30 01:39:47 +02:00
global $container;
$container->view->render(
$response,
2015-10-29 22:32:36 +01:00
'head.tpl',
array(
'class'=>'extractors'
)
);
2016-03-30 01:39:47 +02:00
$container->view->render($response, 'header.tpl');
$container->view->render($response, 'logo.tpl');
$container->view->render(
$response,
2015-10-29 22:32:36 +01:00
'extractors.tpl',
array(
'extractors'=>VideoDownload::listExtractors()
)
);
2016-03-30 01:39:47 +02:00
$container->view->render($response, 'footer.tpl');
2015-10-29 22:32:36 +01:00
}
2015-10-31 15:50:32 +01: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
*
2015-10-31 15:50:32 +01:00
* @return void
*/
2016-03-30 01:39:47 +02:00
static function video($request, $response)
2015-10-31 15:50:32 +01:00
{
2016-03-30 01:39:47 +02:00
global $container;
2015-10-31 15:42:25 +01:00
$config = Config::getInstance();
2015-10-29 22:32:36 +01:00
if (isset($_GET["url"])) {
if (isset($_GET['audio'])) {
try {
$video = VideoDownload::getJSON($_GET["url"]);
//Vimeo needs a correct user-agent
$UA = VideoDownload::getUA();
ini_set(
'user_agent',
$UA
);
$url_info = parse_url($video->url);
if ($url_info['scheme'] == 'rtmp') {
ob_end_flush();
2015-10-29 22:32:36 +01:00
header(
'Content-Disposition: attachment; filename="'.
html_entity_decode(
pathinfo(
VideoDownload::getFilename(
$video->webpage_url
), PATHINFO_FILENAME
).'.mp3', ENT_COMPAT, 'ISO-8859-1'
).'"'
);
header("Content-Type: audio/mpeg");
passthru(
'/usr/bin/rtmpdump -q -r '.escapeshellarg($video->url).
2015-10-31 15:50:32 +01:00
' | '.$config->avconv.
' -v quiet -i - -f mp3 -vn pipe:1'
2015-10-29 22:32:36 +01:00
);
exit;
} else {
ob_end_flush();
2015-10-29 22:32:36 +01:00
header(
'Content-Disposition: attachment; filename="'.
html_entity_decode(
pathinfo(
VideoDownload::getFilename(
$video->webpage_url
), PATHINFO_FILENAME
).'.mp3', ENT_COMPAT, 'ISO-8859-1'
).'"'
);
header("Content-Type: audio/mpeg");
passthru(
2016-02-28 23:04:53 +01:00
'curl '.$config->curl_params.
' --user-agent '.escapeshellarg($UA).
2015-10-29 22:32:36 +01:00
' '.escapeshellarg($video->url).
2015-10-31 15:50:32 +01:00
' | '.$config->avconv.
' -v quiet -i - -f mp3 -vn pipe:1'
2015-10-29 22:32:36 +01:00
);
exit;
}
} catch (\Exception $e) {
$error = $e->getMessage();
}
} else {
try {
$video = VideoDownload::getJSON($_GET["url"]);
2016-03-30 01:39:47 +02:00
$container->view->render(
$response,
2015-10-29 22:32:36 +01:00
'head.tpl',
array(
'class'=>'video'
)
);
2016-03-30 01:39:47 +02:00
$container->view->render(
$response,
2015-10-29 22:32:36 +01:00
'video.tpl',
array(
'video'=>$video
)
);
2016-03-30 01:39:47 +02:00
$container->view->render($response, 'footer.tpl');
2015-10-29 22:32:36 +01:00
} catch (\Exception $e) {
$error = $e->getMessage();
}
}
}
if (isset($error)) {
2016-03-30 01:39:47 +02:00
$container->view->render(
$response,
2015-10-29 22:32:36 +01:00
'head.tpl',
array(
'class'=>'video'
)
);
2016-03-30 01:39:47 +02:00
$container->view->render(
$response,
2015-10-29 22:32:36 +01:00
'error.tpl',
array(
'errors'=>$error
)
);
2016-03-30 01:39:47 +02:00
$container->view->render($response, 'footer.tpl');
2015-10-29 22:32:36 +01:00
}
}
2015-10-31 11:48:14 +01:00
2015-10-31 15:50:32 +01: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
*
2015-10-31 15:50:32 +01:00
* @return void
*/
2016-03-30 01:39:47 +02:00
static function redirect($request, $response)
2015-10-31 15:50:32 +01:00
{
2015-10-31 11:48:14 +01:00
global $app;
if (isset($_GET["url"])) {
try {
$video = VideoDownload::getURL($_GET["url"]);
2016-03-30 01:39:47 +02:00
return $response->withRedirect($video['url']);
2015-10-31 11:48:14 +01:00
} catch (\Exception $e) {
2015-11-22 19:31:38 +01:00
echo $e->getMessage().PHP_EOL;
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
/**
* 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
*
2015-10-31 15:50:32 +01:00
* @return void
*/
2016-03-30 01:39:47 +02:00
static function json($request, $response)
2015-10-31 15:50:32 +01:00
{
2015-10-31 11:48:14 +01:00
global $app;
if (isset($_GET["url"])) {
try {
$video = VideoDownload::getJSON($_GET["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(
array('success'=>false, 'error'=>$e->getMessage())
);
2015-10-31 11:48:14 +01:00
}
}
}
2015-10-29 22:32:36 +01:00
}