Remove ability in channels.php to download whole archive for not leaking API keys used

This commit is contained in:
Benjamin Loison 2023-02-07 22:42:24 +01:00
parent b4cb072770
commit a0ba474fcc
Signed by: Benjamin_Loison
SSH Key Fingerprint: SHA256:BtnEgYTlHdOg1u+RmYcDE0mnfz1rhv5dSbQ2gyxW8B8

View File

@ -14,12 +14,10 @@
$uri = $_SERVER['REQUEST_URI'];
$uri = str_replace('/channels/', '', $uri);
$uri = str_replace('/', '#', $uri);
$uri = "/mnt/HDD0/YouTube_captions_search_engine/channels/$uri";
if (str_contains('/', $uri)) {
$uri = str_replace('/', '#', $uri);
header('Content-Type: application/json; charset=UTF-8');
echo file_get_contents("zip://$uri");
} else {
header("Content-Type: application/zip");
echo readfile($uri);
}
header('Content-Type: application/json; charset=UTF-8');
$content = file_get_contents("zip://$uri");
echo stripFirstLine($content);
?>