From f9a51b676896126ea70ee73ff1027cbd43531d8f Mon Sep 17 00:00:00 2001
From: Jonas Taedcke <1809673+jonastaedcke@users.noreply.github.com>
Date: Fri, 18 Oct 2024 08:29:07 +0200
Subject: [PATCH] [AppleMusicBridge] Further data request to receive artist
information. (#4271)
---
bridges/AppleMusicBridge.php | 101 +++++++++++++++++++++++++++--------
1 file changed, 78 insertions(+), 23 deletions(-)
diff --git a/bridges/AppleMusicBridge.php b/bridges/AppleMusicBridge.php
index 900a7009..fb1164ec 100644
--- a/bridges/AppleMusicBridge.php
+++ b/bridges/AppleMusicBridge.php
@@ -18,9 +18,42 @@ class AppleMusicBridge extends BridgeAbstract
'required' => true,
],
]];
- const CACHE_TIMEOUT = 21600; // 6 hours
+ const CACHE_TIMEOUT = 60 * 60 * 6; // 6 hours
+
+ private $title;
public function collectData()
+ {
+ $items = $this->getJson();
+ $artist = $this->getArtist($items);
+
+ $this->title = $artist->artistName;
+
+ foreach ($items as $item) {
+ if ($item->wrapperType === 'collection') {
+ $copyright = $item->copyright ?? '';
+ $artworkUrl500 = str_replace('/100x100', '/500x500', $item->artworkUrl100);
+ $artworkUrl2000 = str_replace('/100x100', '/2000x2000', $item->artworkUrl100);
+ $escapedCollectionName = htmlspecialchars($item->collectionName);
+
+ $this->items[] = [
+ 'title' => $item->collectionName,
+ 'uri' => $item->collectionViewUrl,
+ 'timestamp' => $item->releaseDate,
+ 'enclosures' => $artworkUrl500,
+ 'author' => $item->artistName,
+ 'content' => "
+
artworkUrl60 60w, $item->artworkUrl100 100w, $artworkUrl500 500w, $artworkUrl2000 2000w\" sizes=\"100%\" src=\"$artworkUrl2000\" alt=\"Cover of $escapedCollectionName\" style=\"display: block; margin: 0 auto;\" />
+
+ from artistLinkUrl\">$item->artistName
$copyright
+
+",
+ ];
+ }
+ }
+ }
+
+ private function getJson()
{
# Limit the amount of releases to 50
if ($this->getInput('limit') > 50) {
@@ -29,31 +62,53 @@ class AppleMusicBridge extends BridgeAbstract
$limit = $this->getInput('limit');
}
- $url = 'https://itunes.apple.com/lookup?id='
- . $this->getInput('artist')
- . '&entity=album&limit='
- . $limit .
- '&sort=recent';
+ $url = 'https://itunes.apple.com/lookup?id=' . $this->getInput('artist') . '&entity=album&limit=' . $limit . '&sort=recent';
$html = getSimpleHTMLDOM($url);
-
$json = json_decode($html);
+ $result = $json->results;
- foreach ($json->results as $obj) {
- if ($obj->wrapperType === 'collection') {
- $copyright = $obj->copyright ?? '';
-
- $this->items[] = [
- 'title' => $obj->artistName . ' - ' . $obj->collectionName,
- 'uri' => $obj->collectionViewUrl,
- 'timestamp' => $obj->releaseDate,
- 'enclosures' => $obj->artworkUrl100,
- 'content' => '
'
- . $obj->artistName . ' - ' . $obj->collectionName
- . '
'
- . $copyright,
- ];
- }
+ if (!is_array($result) || count($result) == 0) {
+ returnServerError('There is no artist with id "' . $this->getInput('artist') . '".');
}
+
+ return $result;
+ }
+
+ private function getArtist($json)
+ {
+ $nameArray = array_filter($json, function ($obj) {
+ return $obj->wrapperType == 'artist';
+ });
+
+ if (count($nameArray) === 1) {
+ return $nameArray[0];
+ }
+
+ return parent::getName();
+ }
+
+ public function getName()
+ {
+ if (isset($this->title)) {
+ return $this->title;
+ }
+
+ return parent::getName();
+ }
+
+ public function getIcon()
+ {
+ if (empty($this->getInput('artist'))) {
+ return parent::getIcon();
+ }
+
+ // it isn't necessary to set the correct artist name into the url
+ $url = 'https://music.apple.com/us/artist/jon-bellion/' . $this->getInput('artist');
+ $html = getSimpleHTMLDOMCached($url);
+ $image = $html->find('meta[property="og:image"]', 0)->content;
+
+ $imageUpdatedSize = preg_replace('/\/\d*x\d*cw/i', '/144x144-999', $image);
+
+ return $imageUpdatedSize;
}
}