feat(Download): adds streaming and local download options
This commit is contained in:
1
assets/icons/bi/camera-video.svg
Normal file
1
assets/icons/bi/camera-video.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="currentColor" fill-rule="evenodd" d="M0 5a2 2 0 0 1 2-2h7.5a2 2 0 0 1 1.983 1.738l3.11-1.382A1 1 0 0 1 16 4.269v7.462a1 1 0 0 1-1.406.913l-3.111-1.382A2 2 0 0 1 9.5 13H2a2 2 0 0 1-2-2zm11.5 5.175l3.5 1.556V4.269l-3.5 1.556zM2 4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h7.5a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1z"/></svg>
|
||||
|
After Width: | Height: | Size: 374 B |
1
assets/icons/bi/cloud-download.svg
Normal file
1
assets/icons/bi/cloud-download.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 16 16"><g fill="currentColor"><path d="M4.406 1.342A5.53 5.53 0 0 1 8 0c2.69 0 4.923 2 5.166 4.579C14.758 4.804 16 6.137 16 7.773C16 9.569 14.502 11 12.687 11H10a.5.5 0 0 1 0-1h2.688C13.979 10 15 8.988 15 7.773c0-1.216-1.02-2.228-2.313-2.228h-.5v-.5C12.188 2.825 10.328 1 8 1a4.53 4.53 0 0 0-2.941 1.1c-.757.652-1.153 1.438-1.153 2.055v.448l-.445.049C2.064 4.805 1 5.952 1 7.318C1 8.785 2.23 10 3.781 10H6a.5.5 0 0 1 0 1H3.781C1.708 11 0 9.366 0 7.318c0-1.763 1.266-3.223 2.942-3.593c.143-.863.698-1.723 1.464-2.383"/><path d="M7.646 15.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 14.293V5.5a.5.5 0 0 0-1 0v8.793l-2.146-2.147a.5.5 0 0 0-.708.708z"/></g></svg>
|
||||
|
After Width: | Height: | Size: 720 B |
1
assets/icons/bi/download.svg
Normal file
1
assets/icons/bi/download.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 16 16"><g fill="currentColor"><path d="M.5 9.9a.5.5 0 0 1 .5.5v2.5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2.5a.5.5 0 0 1 1 0v2.5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-2.5a.5.5 0 0 1 .5-.5"/><path d="M7.646 11.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V1.5a.5.5 0 0 0-1 0v8.793L5.354 8.146a.5.5 0 1 0-.708.708z"/></g></svg>
|
||||
|
After Width: | Height: | Size: 377 B |
@@ -5,6 +5,7 @@ when@prod:
|
||||
|
||||
options:
|
||||
release: '%app.version%'
|
||||
environment: '%env(APP_ENV)%'
|
||||
traces_sample_rate: 1
|
||||
profiles_sample_rate: 1
|
||||
attach_stacktrace: true
|
||||
|
||||
@@ -68,4 +68,10 @@ class Torrentio
|
||||
|
||||
return $results;
|
||||
}
|
||||
|
||||
public function getDestinationUrl(string $url)
|
||||
{
|
||||
$request = get_headers($url)[8];
|
||||
return explode(' ', $request)[1];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,6 +7,7 @@ use App\Torrentio\Action\Handler\GetMovieOptionsHandler;
|
||||
use App\Torrentio\Action\Handler\GetTvShowOptionsHandler;
|
||||
use App\Torrentio\Action\Input\GetMovieOptionsInput;
|
||||
use App\Torrentio\Action\Input\GetTvShowOptionsInput;
|
||||
use App\Torrentio\Client\Torrentio;
|
||||
use App\Torrentio\Exception\TorrentioRateLimitException;
|
||||
use Carbon\Carbon;
|
||||
use OneToMany\RichBundle\Contract\ResultInterface;
|
||||
@@ -21,6 +22,8 @@ use Symfony\UX\Turbo\TurboBundle;
|
||||
|
||||
final class WebController extends AbstractController
|
||||
{
|
||||
const REAL_DEBRID_STREAM_URL = 'https://real-debrid.com/streaming-%s';
|
||||
|
||||
public function __construct(
|
||||
private readonly GetMovieOptionsHandler $getMovieOptionsHandler,
|
||||
private readonly GetTvShowOptionsHandler $getTvShowOptionsHandler,
|
||||
@@ -99,4 +102,14 @@ final class WebController extends AbstractController
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
#[Route('/torrentio/stream/{url}', name: 'app.torrentio.stream')]
|
||||
public function streamVideo(string $url, Torrentio $torrentio): Response
|
||||
{
|
||||
$destinationUrl = $torrentio->getDestinationUrl(\base64_decode($url));
|
||||
$urlPathParts = explode('/', parse_url($destinationUrl)['path']);
|
||||
$videoId = $urlPathParts[2];
|
||||
$url = sprintf(self::REAL_DEBRID_STREAM_URL, $videoId);
|
||||
return $this->redirect($url);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -120,4 +120,10 @@ class UtilExtension
|
||||
return $sentryConfig['javascript_url'] !== null &&
|
||||
$sentryConfig['javascript_url'] !== '';
|
||||
}
|
||||
|
||||
#[AsTwigFilter('base64_encode')]
|
||||
public function base64_encode(string $data): string
|
||||
{
|
||||
return \base64_encode($data);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -86,9 +86,18 @@
|
||||
{{ result.languageFlags|raw }}
|
||||
</td>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm text-end text-gray-800 dark:text-gray-50 flex flex-row gap-2 items-center justify-start mb:justify-end">
|
||||
<button class="download-btn p-1.5 bg-green-600 rounded-md text-gray-50">
|
||||
Download
|
||||
<a href="{{ url('app.torrentio.stream', {url: result.url|base64_encode}) }}" title="Stream in your browser." class="p-1.5 bg-blue-600 rounded-md text-gray-50">
|
||||
<twig:ux:icon name="bi:camera-video" width="20"/>
|
||||
</a>
|
||||
|
||||
<button class="download-btn p-1.5 bg-green-600 rounded-md text-gray-50" title="Download to your mounted directory.">
|
||||
<twig:ux:icon name="bi:cloud-download" width="20" />
|
||||
</button>
|
||||
|
||||
<a href="{{ result.url }}" title="Download to your local device." class="p-1.5 bg-orange-500 rounded-md text-gray-50">
|
||||
<twig:ux:icon name="bi:download" width="20" />
|
||||
</a>
|
||||
|
||||
<label for="select">
|
||||
<input id="select" type="checkbox" name="select" />
|
||||
</label>
|
||||
|
||||
7
templates/torrentio/stream.html.twig
Normal file
7
templates/torrentio/stream.html.twig
Normal file
@@ -0,0 +1,7 @@
|
||||
{% extends 'base.html.twig' %}
|
||||
|
||||
{% block title %}Streaming — Torrentio{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<iframe width="100%" height="100%" src="{{ stream_url }}"></iframe>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user