mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-04 16:49:35 +00:00
[DiscogsBridge] Add optional image, if personal access token is configured (#3083)
This commit is contained in:
parent
4520ab6835
commit
400e137673
@ -14,6 +14,12 @@ class DiscogsBridge extends BridgeAbstract
|
|||||||
'required' => true,
|
'required' => true,
|
||||||
'exampleValue' => '28104',
|
'exampleValue' => '28104',
|
||||||
'title' => 'Only the ID from an artist page. EG /artist/28104-Aesop-Rock is 28104'
|
'title' => 'Only the ID from an artist page. EG /artist/28104-Aesop-Rock is 28104'
|
||||||
|
],
|
||||||
|
'image' => [
|
||||||
|
'name' => 'Include Image',
|
||||||
|
'type' => 'checkbox',
|
||||||
|
'defaultValue' => 'checked',
|
||||||
|
'title' => 'Whether to include image (if bridge is configured with a personal access token)',
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
'Label Releases' => [
|
'Label Releases' => [
|
||||||
@ -23,6 +29,12 @@ class DiscogsBridge extends BridgeAbstract
|
|||||||
'required' => true,
|
'required' => true,
|
||||||
'exampleValue' => '8201',
|
'exampleValue' => '8201',
|
||||||
'title' => 'Only the ID from a label page. EG /label/8201-Rhymesayers-Entertainment is 8201'
|
'title' => 'Only the ID from a label page. EG /label/8201-Rhymesayers-Entertainment is 8201'
|
||||||
|
],
|
||||||
|
'image' => [
|
||||||
|
'name' => 'Include Image',
|
||||||
|
'type' => 'checkbox',
|
||||||
|
'defaultValue' => 'checked',
|
||||||
|
'title' => 'Whether to include image (if bridge is configured with a personal access token)',
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
'User Wantlist' => [
|
'User Wantlist' => [
|
||||||
@ -31,6 +43,12 @@ class DiscogsBridge extends BridgeAbstract
|
|||||||
'type' => 'text',
|
'type' => 'text',
|
||||||
'required' => true,
|
'required' => true,
|
||||||
'exampleValue' => 'TheBlindMaster',
|
'exampleValue' => 'TheBlindMaster',
|
||||||
|
],
|
||||||
|
'image' => [
|
||||||
|
'name' => 'Include Image',
|
||||||
|
'type' => 'checkbox',
|
||||||
|
'defaultValue' => 'checked',
|
||||||
|
'title' => 'Whether to include image (if bridge is configured with a personal access token)',
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
'User Folder' => [
|
'User Folder' => [
|
||||||
@ -41,24 +59,50 @@ class DiscogsBridge extends BridgeAbstract
|
|||||||
'folderid' => [
|
'folderid' => [
|
||||||
'name' => 'Folder ID',
|
'name' => 'Folder ID',
|
||||||
'type' => 'number',
|
'type' => 'number',
|
||||||
|
],
|
||||||
|
'image' => [
|
||||||
|
'name' => 'Include Image',
|
||||||
|
'type' => 'checkbox',
|
||||||
|
'defaultValue' => 'checked',
|
||||||
|
'title' => 'Whether to include image (if bridge is configured with a personal access token)',
|
||||||
]
|
]
|
||||||
]
|
],
|
||||||
|
];
|
||||||
|
const CONFIGURATION = [
|
||||||
|
/**
|
||||||
|
* When a personal access token is provided, Discogs' API will
|
||||||
|
* return images as part of artist and label information.
|
||||||
|
*
|
||||||
|
* @see https://www.discogs.com/settings/developers
|
||||||
|
*/
|
||||||
|
'personal_access_token' => [
|
||||||
|
'required' => false,
|
||||||
|
],
|
||||||
];
|
];
|
||||||
|
|
||||||
public function collectData()
|
public function collectData()
|
||||||
{
|
{
|
||||||
|
$headers = [];
|
||||||
|
|
||||||
|
if ($this->getOption('personal_access_token')) {
|
||||||
|
$headers = ['Authorization: Discogs token=' . $this->getOption('personal_access_token')];
|
||||||
|
}
|
||||||
|
|
||||||
if (!empty($this->getInput('artistid')) || !empty($this->getInput('labelid'))) {
|
if (!empty($this->getInput('artistid')) || !empty($this->getInput('labelid'))) {
|
||||||
if (!empty($this->getInput('artistid'))) {
|
if (!empty($this->getInput('artistid'))) {
|
||||||
$data = getContents('https://api.discogs.com/artists/'
|
$url = 'https://api.discogs.com/artists/'
|
||||||
. $this->getInput('artistid')
|
. $this->getInput('artistid')
|
||||||
. '/releases?sort=year&sort_order=desc');
|
. '/releases?sort=year&sort_order=desc';
|
||||||
|
$data = getContents($url, $headers);
|
||||||
} elseif (!empty($this->getInput('labelid'))) {
|
} elseif (!empty($this->getInput('labelid'))) {
|
||||||
$data = getContents('https://api.discogs.com/labels/'
|
$url = 'https://api.discogs.com/labels/'
|
||||||
. $this->getInput('labelid')
|
. $this->getInput('labelid')
|
||||||
. '/releases?sort=year&sort_order=desc');
|
. '/releases?sort=year&sort_order=desc';
|
||||||
|
$data = getContents($url, $headers);
|
||||||
}
|
}
|
||||||
|
|
||||||
$jsonData = json_decode($data, true);
|
$jsonData = json_decode($data, true);
|
||||||
|
|
||||||
foreach ($jsonData['releases'] as $release) {
|
foreach ($jsonData['releases'] as $release) {
|
||||||
$item = [];
|
$item = [];
|
||||||
$item['author'] = $release['artist'];
|
$item['author'] = $release['artist'];
|
||||||
@ -72,20 +116,31 @@ class DiscogsBridge extends BridgeAbstract
|
|||||||
}
|
}
|
||||||
|
|
||||||
$item['content'] = $item['author'] . ' - ' . $item['title'];
|
$item['content'] = $item['author'] . ' - ' . $item['title'];
|
||||||
|
|
||||||
|
if (isset($release['thumb']) && $this->getInput('image') === true) {
|
||||||
|
$item['content'] = sprintf(
|
||||||
|
'<img src="%s"/><br/><br/>%s',
|
||||||
|
$release['thumb'],
|
||||||
|
$item['content'],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
$this->items[] = $item;
|
$this->items[] = $item;
|
||||||
}
|
}
|
||||||
} elseif (!empty($this->getInput('username_wantlist')) || !empty($this->getInput('username_folder'))) {
|
} elseif (!empty($this->getInput('username_wantlist')) || !empty($this->getInput('username_folder'))) {
|
||||||
if (!empty($this->getInput('username_wantlist'))) {
|
if (!empty($this->getInput('username_wantlist'))) {
|
||||||
$data = getContents('https://api.discogs.com/users/'
|
$url = 'https://api.discogs.com/users/'
|
||||||
. $this->getInput('username_wantlist')
|
. $this->getInput('username_wantlist')
|
||||||
. '/wants?sort=added&sort_order=desc');
|
. '/wants?sort=added&sort_order=desc';
|
||||||
|
$data = getContents($url, $headers);
|
||||||
$jsonData = json_decode($data, true)['wants'];
|
$jsonData = json_decode($data, true)['wants'];
|
||||||
} elseif (!empty($this->getInput('username_folder'))) {
|
} elseif (!empty($this->getInput('username_folder'))) {
|
||||||
$data = getContents('https://api.discogs.com/users/'
|
$url = 'https://api.discogs.com/users/'
|
||||||
. $this->getInput('username_folder')
|
. $this->getInput('username_folder')
|
||||||
. '/collection/folders/'
|
. '/collection/folders/'
|
||||||
. $this->getInput('folderid')
|
. $this->getInput('folderid')
|
||||||
. '/releases?sort=added&sort_order=desc');
|
. '/releases?sort=added&sort_order=desc';
|
||||||
|
$data = getContents($url, $headers);
|
||||||
$jsonData = json_decode($data, true)['releases'];
|
$jsonData = json_decode($data, true)['releases'];
|
||||||
}
|
}
|
||||||
foreach ($jsonData as $element) {
|
foreach ($jsonData as $element) {
|
||||||
@ -97,6 +152,15 @@ class DiscogsBridge extends BridgeAbstract
|
|||||||
$item['uri'] = self::URI . $infos['artists'][0]['id'] . '/release/' . $infos['id'];
|
$item['uri'] = self::URI . $infos['artists'][0]['id'] . '/release/' . $infos['id'];
|
||||||
$item['timestamp'] = strtotime($element['date_added']);
|
$item['timestamp'] = strtotime($element['date_added']);
|
||||||
$item['content'] = $item['author'] . ' - ' . $item['title'];
|
$item['content'] = $item['author'] . ' - ' . $item['title'];
|
||||||
|
|
||||||
|
if (isset($infos['thumb']) && $this->getInput('image') === true) {
|
||||||
|
$item['content'] = sprintf(
|
||||||
|
'<img src="%s"/><br/><br/>%s',
|
||||||
|
$infos['thumb'],
|
||||||
|
$item['content'],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
$this->items[] = $item;
|
$this->items[] = $item;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -93,3 +93,13 @@ file = "cache.sqlite"
|
|||||||
[MemcachedCache]
|
[MemcachedCache]
|
||||||
host = "localhost"
|
host = "localhost"
|
||||||
port = 11211
|
port = 11211
|
||||||
|
|
||||||
|
; --- Bridge specific configuration ------
|
||||||
|
|
||||||
|
[DiscogsBridge]
|
||||||
|
|
||||||
|
; Sets the personal access token for interactions with Discogs. When
|
||||||
|
; provided, images can be included in generated feeds.
|
||||||
|
;
|
||||||
|
; "" = no token used (default)
|
||||||
|
personal_access_token = ""
|
||||||
|
Loading…
Reference in New Issue
Block a user