Improve error handling

This commit is contained in:
Jonathan Cremin 2017-11-11 19:18:42 +00:00
parent ca1fbf9e66
commit 82fa61f5d5

View file

@ -14,9 +14,10 @@ const queue = kue.createQueue({
export default function* () {
const url = parse(this.request.body.url);
debug(`URL ${url}`);
debug(`URL ${url.href}`);
this.assert(url.host, 400, { error: { message: 'You need to submit a url.' } });
try {
const music = yield lookup(this.request.body.url);
this.assert(music, 400, { error: { message: 'No supported music found at that link :(' } });
@ -26,14 +27,13 @@ export default function* () {
if (!share) {
share = yield create(music);
for (const service of services) {
if (service.id === share.service) {
continue; // eslint-disable-line no-continue
}
const job = queue.create('search', { share: share, service: service }).save((err) => {
if (!err) console.log(job.id);
services.forEach((service) => {
if (service.id !== share.service) {
const job = queue.create('search', { share, service }).save((err) => {
debug(err || job.id);
});
}
});
}
share = share.toJSON();
@ -53,4 +53,8 @@ export default function* () {
share.matches = share.matches.sort(a => !!a.externalId);
this.body = share;
} catch (e) {
this.throw(400, { error: { message: 'Unexpected error looking up music. Please try again later.' } });
throw e;
}
}