proxitok/routes/assets.php

39 lines
1,002 B
PHP
Raw Normal View History

<?php
use Steampixel\Route;
2022-01-08 15:03:57 +00:00
const VALID_TIKTOK_DOMAINS = [
"tiktokcdn.com", "tiktokcdn-us.com", "tiktok.com"
];
2022-01-05 19:16:50 +00:00
/**
* Check if an url has a valid domain
* @param string $url URL you want to check
* @return bool
*/
function isValidDomain(string $url): bool {
$host = parse_url($url, PHP_URL_HOST);
$host_split = explode('.', $host);
2022-01-08 15:03:57 +00:00
return count($host_split) === 3 && in_array($host_split[1] . '.' . $host_split[2], VALID_TIKTOK_DOMAINS);
2022-01-05 19:16:50 +00:00
}
Route::add('/stream', function () {
if (!isset($_GET['url'])) {
die('You need to send a url!');
}
$url = $_GET['url'];
2022-01-05 19:16:50 +00:00
if (!filter_var($url, FILTER_VALIDATE_URL) || !isValidDomain($url)) {
die('Not a valid URL');
}
if (isset($_GET['download'])) {
2022-01-05 20:25:49 +00:00
// Download (video only)
2022-01-03 22:28:36 +00:00
$downloader = new \Sovit\TikTok\Download();
2022-01-05 20:25:49 +00:00
$downloader->url($url, "tiktok-video", 'mp4');
2022-01-03 22:28:36 +00:00
} else {
// Stream
$streamer = new \Sovit\TikTok\Stream();
$streamer->stream($url);
}
});