-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
53 lines (45 loc) · 1.13 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
const axios = require('axios')
function createClient(apikey) {
const url = `https://omdbapi.com/?apikey=${apikey}`
function findOneById(id, cb) {
let promise = axios.get(`${url}&i=${id}`)
return fetchMovie(promise, cb)
}
function findOneByTitle(title, cb) {
let promise = axios.get(`${url}&t=${title}`)
return fetchMovie(promise, cb)
}
function findManyByTitle(title, cb) {
let promise = axios.get(`${url}&s=${title}`)
return fetchMovie(promise, cb)
}
function fetchMovie(promise, cb) {
if (typeof cb === 'function') {
promise
.then(res => res.data)
.then(data => {
if (data.Error) {
throw Error(data.Error)
} else {
cb(null, data)
}
})
.catch(err => cb(err, null))
} else {
return promise
.then(res => res.data)
.catch(err => {
if (err.response.data.Error) {
throw Error(err.response.data.Error)
}
throw err
})
}
}
return {
findOneByTitle,
findOneById,
findManyByTitle
}
}
module.exports = { createClient }