-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
82 lines (70 loc) · 2.51 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
ini_set('display_errors', false);
require_once('config.php');
$cache_timeout = 30;
$cache_name = '_cache';
$cache = unserialize(file_get_contents($cache_name));
function loadCoverLastfm(string $artist, string $album)
{
$data = json_decode(
file_get_contents("http://ws.audioscrobbler.com/2.0/?method=album.getinfo&api_key=b58e18fa4eb27f124bace67b01ecac76&artist=" . $artist . "&album=" . $album . "&format=json"), true);
return array_values(array_slice($data['album']['image'], -1))[0]['#text'];
}
function loadCoverAmazon(string $artist, string $album)
{
global $amazon_public_key, $amazon_private_key;
require_once('amazon_api.class.php');
/** @noinspection PhpUndefinedClassInspection */
$amazon = new AmazonAPI("de", $amazon_public_key, $amazon_private_key);
$amazon->Titel = $album;
$amazon->Artist = $artist;
/** @noinspection PhpUndefinedMethodInspection */
$pxml = $amazon->search("Music");
if (isset($pxml)) {
if (isset($pxml[0]->MediumImage["URL"])) {
$http_url = $pxml[0]->MediumImage["URL"];
$http_url = str_replace('SL160', 'SL250', $http_url);
$https_url = preg_replace('/http:\/\/(.*?)amazon\.com/', 'https://images-na.ssl-images-amazon.com', $http_url);
return $https_url;
}
}
return null;
}
function loadCover(?string $full_title): string
{
$song_title = urlencode(explode(" - ", $full_title)[1]);
$song_artist = urlencode(explode(" - ", $full_title)[0]);
$image = loadCoverLastfm($song_artist, $song_title);
if (empty($image)) {
$image = loadCoverAmazon($song_artist, $song_title);
}
if (empty($image)) {
$image = 'https://streamdata.radiohitwave.com/api/placeholder-cover.jpg';
}
return $image;
}
function loadTitle(): ?string
{
$data = json_decode(file_get_contents('https://stream-public.radiohitwave.com/status-json.xsl'));
$title = $data->icestats->source->title;
return $title;
}
if (!$cache || $cache->timestamp + $cache_timeout < time()) {
$cache->title = loadTitle();
$cache->cover = loadCover($cache->title);
$cache->timestamp = time();
file_put_contents($cache_name, serialize($cache));
}
header("Access-Control-Allow-Origin: *");
if (isset($_GET['cover'])) {
if (isset($_GET['string'])) {
die($cache->cover);
} elseif (isset($_GET['redirect'])) {
header('Location: ' . $cache->cover);
}
} elseif (isset($_GET['title'])) {
die($cache->title);
} else {
die(json_encode($cache));
}
?>