1
0
forked from lolcat/4get
Files
api
audio
banner
data
docker
docs
icons
lib
oracles
scraper
static
template
.gitignore
Dockerfile
README.md
about.php
ami4get.php
api.txt
captcha.php
docker-compose.yaml
favicon.ico
favicon.php
images.php
index.php
instances.php
license.txt
music.php
news.php
opensearch.php
proxy.php
robots.txt
settings.php
sitemap.php
videos.php
web.php
4get/instances.php
2023-11-07 08:04:56 -05:00

56 lines
860 B
PHP

<?php
include "lib/frontend.php";
$frontend = new frontend();
include "data/config.php";
$params = "";
$first = true;
foreach($_GET as $key => $value){
if(
!is_string($value) ||
$key == "target"
){
continue;
}
if($first === true){
$first = false;
$params = "?";
}else{
$params .= "&";
}
$params .= urlencode($key) . "=" . urlencode($value);
}
if(
!isset($_GET["target"]) ||
!is_string($_GET["target"])
){
$target = "";
}else{
$target = "/" . urlencode($_GET["target"]);
}
$instances = "";
foreach(config::INSTANCES as $instance){
$instances .= '<tr><td class="expand"><a href="' . htmlspecialchars($instance) . $target . $params . '" target="_BLANK" rel="noreferer">' . htmlspecialchars($instance) . '</a></td></tr>';
}
echo
$frontend->load(
"instances.html",
[
"instances_html" => $instances
]
);