Hello @Christian-Groß ! We do offer custom development and theming services as part of our company. Please get in touch with us by contacting [email protected] and we can discuss and prepare a quote for you 😄
A question regarding my next plugin
-
@julian said:
var imageUrl = whatever; imageUrl.replace('api.discogs', 's.pixogs');
Object #<Object> has no method 'replace'
I didn't actually use whatever, but it was either a not defined error, or this one. I also tried using things like
$('img[src="http://api.discogs.com"]').attr('src','http://s.pixogs.com');
But nothing changed.
-
@julian Can I just clarify where the best place to put this is? Also,
whatever;
is undefined.Ok, so I did
var imageUrl = []; // imageUrl.replace('api.discogs', 's.pixogs'); console.log('@@@@@ omgomgomg, the image is of type: ', typeof imageUrl);
and it comes back as object.
Same if I do
{}
Everything else comes back as undefined. I even tried
worknowplskthx
-
Mmm.. this is what I get back from discogs (it's in the
albumData
variable now):{ style: [ 'Drum n Bass' ], thumb: 'http://api.discogs.com/image/R-90-3514574-1343107301-6843.jpeg', format: [ 'Vinyl', 'LP' ], country: 'UK, Europe & US', ...
So, you can get the image url:
var imageUrl = albumData.thumb
... and replace it with the new CDN url:
imageUrl = imageUrl.replace('api.discogs', 's.pixogs');
... or all-in-one:
var imageUrl = albumData.thumb.replace('api.discogs', 's.pixogs');
-
albumData
here? https://github.com/a5mith/nodebb-plugin-discogs/blob/579186035c9db7911ab230044a2bcdea5f4a32fa/index.js#L27I don't know how much it has changed in the interim
-
Okay, I got it.
I did this instead:
callback(null, { uri: albumData.uri, thumbnail: albumData.thumb.replace('api.discogs.com/image/R-90-', 's.pixogs.com/image/R-'), catno: albumData.catno, title: albumData.title, style: Array.isArray(albumData.style) ? albumData.style[0] : albumData.style, label: Array.isArray(albumData.label) ? albumData.label[0] : albumData.label, year: albumData.year });
-
OK, works great, one teeny tiny issue.
How do I stop it crashing while people type the discog number in?
TypeError: Cannot read property 'uri' of undefined at Request._callback (/home/a_5mith/35hz/node_modules/nodebb-plugin-discogs/index.js:30:35) at Request.self.callback (/home/a_5mith/35hz/node_modules/nodebb-plugin-discogs/node_modules/request/request.js:123:22) at Request.emit (events.js:98:17) at Request.<anonymous> (/home/a_5mith/35hz/node_modules/nodebb-plugin-discogs/node_modules/request/request.js:1047:14) at Request.emit (events.js:117:20) at IncomingMessage.<anonymous> (/home/a_5mith/35hz/node_modules/nodebb-plugin-discogs/node_modules/request/request.js:998:12) at IncomingMessage.emit (events.js:117:20) at _stream_readable.js:929:16 at process._tickDomainCallback (node.js:463:13)
Should add that's the first callback action.
As the api responds with 200, even if there's no data. Is there was way of backing out if uri is undefined. Rather than crashing.
-
Maybe
var albumData = JSON.parse(body).results[0]; if (!albumData) { return callback(null, {}); } callback(null, { uri: albumData.uri,
-
@julian Unfortunately they weren't, but @psychobunny's suggestion worked a treat.