mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
[AppleMusicBridge] fix some errors, remove getFeedItems
This commit is contained in:
parent
dcfae73d4e
commit
b12b321a84
@ -24,9 +24,8 @@ class AppleMusicBridge extends BridgeAbstract
|
|||||||
|
|
||||||
public function collectData()
|
public function collectData()
|
||||||
{
|
{
|
||||||
$json = $this->getJson();
|
$items = $this->getJson();
|
||||||
$items = $this->getFeedItems($json);
|
$artist = $this->getArtist($items);
|
||||||
$artist = $this->getArtist($json);
|
|
||||||
|
|
||||||
$this->title = $artist->artistName;
|
$this->title = $artist->artistName;
|
||||||
|
|
||||||
@ -45,7 +44,7 @@ class AppleMusicBridge extends BridgeAbstract
|
|||||||
'content' => '<figure>'
|
'content' => '<figure>'
|
||||||
. '<img'
|
. '<img'
|
||||||
. ' srcset="'
|
. ' srcset="'
|
||||||
. $$item->artworkUrl60 . ' 60w'
|
. $item->artworkUrl60 . ' 60w'
|
||||||
. ', ' . $item->artworkUrl100 . ' 100w'
|
. ', ' . $item->artworkUrl100 . ' 100w'
|
||||||
. ', ' . $artworkUrl500 . ' 500w'
|
. ', ' . $artworkUrl500 . ' 500w'
|
||||||
. ', ' . $artworkUrl2000 . ' 2000w"'
|
. ', ' . $artworkUrl2000 . ' 2000w"'
|
||||||
@ -75,12 +74,6 @@ class AppleMusicBridge extends BridgeAbstract
|
|||||||
$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);
|
$html = getSimpleHTMLDOM($url);
|
||||||
$json = json_decode($html);
|
$json = json_decode($html);
|
||||||
|
|
||||||
return $json;
|
|
||||||
}
|
|
||||||
|
|
||||||
private function getFeedItems($json)
|
|
||||||
{
|
|
||||||
$result = $json->results;
|
$result = $json->results;
|
||||||
|
|
||||||
if (!is_array($result) || count($result) == 0) {
|
if (!is_array($result) || count($result) == 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user