Refactor remux logic in controller
This commit is contained in:
parent
71978e54e2
commit
8d65cf44e3
1 changed files with 42 additions and 28 deletions
|
@ -348,6 +348,39 @@ class FrontController
|
||||||
return $response;
|
return $response;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get a remuxed stream piped through the server.
|
||||||
|
*
|
||||||
|
* @param string $urls URLs of the video and audio files
|
||||||
|
* @param string $webpageUrl URL of the webpage containing the video
|
||||||
|
* @param Response $response PSR-7 response
|
||||||
|
* @param Request $request PSR-7 request
|
||||||
|
*
|
||||||
|
* @return Response HTTP response
|
||||||
|
*/
|
||||||
|
private function getRemuxStream(array $urls, $format, Response $response, Request $request)
|
||||||
|
{
|
||||||
|
if (!$this->config->remux) {
|
||||||
|
throw new \Exception('You need to enable remux mode to merge two formats.');
|
||||||
|
}
|
||||||
|
$stream = $this->download->getRemuxStream($urls);
|
||||||
|
$response = $response->withHeader('Content-Type', 'video/x-matroska');
|
||||||
|
if ($request->isGet()) {
|
||||||
|
$response = $response->withBody(new Stream($stream));
|
||||||
|
}
|
||||||
|
$webpageUrl = $request->getQueryParam('url');
|
||||||
|
|
||||||
|
return $response->withHeader('Content-Disposition', 'attachment; filename="'.pathinfo(
|
||||||
|
$this->download->getFileNameWithExtension(
|
||||||
|
'mkv',
|
||||||
|
$webpageUrl,
|
||||||
|
$format,
|
||||||
|
$this->sessionSegment->getFlash($webpageUrl)
|
||||||
|
),
|
||||||
|
PATHINFO_FILENAME
|
||||||
|
).'.mkv"');
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Redirect to video file.
|
* Redirect to video file.
|
||||||
*
|
*
|
||||||
|
@ -366,7 +399,14 @@ class FrontController
|
||||||
}
|
}
|
||||||
if (isset($params['url'])) {
|
if (isset($params['url'])) {
|
||||||
try {
|
try {
|
||||||
if ($this->config->stream) {
|
$urls = $this->download->getURL(
|
||||||
|
$params['url'],
|
||||||
|
$format,
|
||||||
|
$this->sessionSegment->getFlash($params['url'])
|
||||||
|
);
|
||||||
|
if (count($urls) > 1) {
|
||||||
|
return $this->getRemuxStream($urls, $format, $response, $request);
|
||||||
|
} elseif ($this->config->stream) {
|
||||||
return $this->getStream(
|
return $this->getStream(
|
||||||
$params['url'],
|
$params['url'],
|
||||||
$format,
|
$format,
|
||||||
|
@ -374,35 +414,9 @@ class FrontController
|
||||||
$request,
|
$request,
|
||||||
$this->sessionSegment->getFlash($params['url'])
|
$this->sessionSegment->getFlash($params['url'])
|
||||||
);
|
);
|
||||||
} else {
|
|
||||||
$urls = $this->download->getURL(
|
|
||||||
$params['url'],
|
|
||||||
$format,
|
|
||||||
$this->sessionSegment->getFlash($params['url'])
|
|
||||||
);
|
|
||||||
if (count($urls) > 1) {
|
|
||||||
if (!$this->config->remux) {
|
|
||||||
throw new \Exception('You need to enable remux mode to merge two formats.');
|
|
||||||
}
|
|
||||||
$stream = $this->download->getRemuxStream($urls);
|
|
||||||
$response = $response->withHeader('Content-Type', 'video/x-matroska');
|
|
||||||
if ($request->isGet()) {
|
|
||||||
$response = $response->withBody(new Stream($stream));
|
|
||||||
}
|
|
||||||
|
|
||||||
return $response->withHeader('Content-Disposition', 'attachment; filename="'.pathinfo(
|
|
||||||
$this->download->getFileNameWithExtension(
|
|
||||||
'mkv',
|
|
||||||
$params['url'],
|
|
||||||
$format,
|
|
||||||
$this->sessionSegment->getFlash($params['url'])
|
|
||||||
),
|
|
||||||
PATHINFO_FILENAME
|
|
||||||
).'.mkv"');
|
|
||||||
} else {
|
} else {
|
||||||
return $response->withRedirect($urls[0]);
|
return $response->withRedirect($urls[0]);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
} catch (PasswordException $e) {
|
} catch (PasswordException $e) {
|
||||||
return $response->withRedirect(
|
return $response->withRedirect(
|
||||||
$this->container->get('router')->pathFor('video').'?url='.urlencode($params['url'])
|
$this->container->get('router')->pathFor('video').'?url='.urlencode($params['url'])
|
||||||
|
|
Loading…
Reference in a new issue