2021-04-12 04:14:41 -06:00
|
|
|
/*
|
|
|
|
Copyright 2021 Yarmo Mackenbach
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
2022-02-08 11:10:23 -07:00
|
|
|
const axios = require('axios')
|
2021-04-15 11:07:56 -06:00
|
|
|
const E = require('../enums')
|
2021-04-12 04:14:41 -06:00
|
|
|
|
2021-04-22 07:14:21 -06:00
|
|
|
/**
|
|
|
|
* @module fetcher/http
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The request's timeout value in milliseconds
|
|
|
|
* @constant {number} timeout
|
|
|
|
*/
|
2021-04-15 14:30:11 -06:00
|
|
|
module.exports.timeout = 5000
|
|
|
|
|
2021-04-22 07:14:21 -06:00
|
|
|
/**
|
|
|
|
* Execute a fetch request
|
|
|
|
* @function
|
|
|
|
* @async
|
|
|
|
* @param {object} data - Data used in the request
|
|
|
|
* @param {string} data.url - The URL pointing at targeted content
|
|
|
|
* @param {string} data.format - The format of the targeted content
|
|
|
|
* @returns {object|string}
|
|
|
|
*/
|
2021-04-15 14:30:11 -06:00
|
|
|
module.exports.fn = async (data, opts) => {
|
2021-04-12 04:14:41 -06:00
|
|
|
let timeoutHandle
|
|
|
|
const timeoutPromise = new Promise((resolve, reject) => {
|
|
|
|
timeoutHandle = setTimeout(
|
|
|
|
() => reject(new Error('Request was timed out')),
|
2021-04-15 14:30:11 -06:00
|
|
|
data.fetcherTimeout ? data.fetcherTimeout : module.exports.timeout
|
2021-04-12 04:14:41 -06:00
|
|
|
)
|
|
|
|
})
|
|
|
|
|
|
|
|
const fetchPromise = new Promise((resolve, reject) => {
|
2021-04-12 08:14:18 -06:00
|
|
|
if (!data.url) {
|
2021-07-09 15:44:52 -06:00
|
|
|
reject(new Error('No valid URI provided'))
|
2021-04-12 04:14:41 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-04-15 11:07:56 -06:00
|
|
|
switch (data.format) {
|
|
|
|
case E.ProofFormat.JSON:
|
2022-02-08 11:10:23 -07:00
|
|
|
axios.get(data.url, {
|
|
|
|
headers: {
|
|
|
|
Accept: 'application/json',
|
|
|
|
'User-Agent': `doipjs/${require('../../package.json').version}`
|
|
|
|
},
|
|
|
|
validateStatus: function (status) {
|
|
|
|
return status >= 200 && status < 400
|
|
|
|
}
|
2021-04-12 04:14:41 -06:00
|
|
|
})
|
2022-02-08 11:10:23 -07:00
|
|
|
.then(res => {
|
|
|
|
resolve(res.data)
|
2021-04-12 04:14:41 -06:00
|
|
|
})
|
2022-02-08 11:10:23 -07:00
|
|
|
.catch(e => {
|
2021-04-12 04:14:41 -06:00
|
|
|
reject(e)
|
|
|
|
})
|
|
|
|
break
|
2021-04-15 11:07:56 -06:00
|
|
|
case E.ProofFormat.TEXT:
|
2022-02-08 11:10:23 -07:00
|
|
|
axios.get(data.url, {
|
|
|
|
validateStatus: function (status) {
|
|
|
|
return status >= 200 && status < 400
|
|
|
|
},
|
|
|
|
responseType: 'text'
|
|
|
|
})
|
|
|
|
.then(res => {
|
|
|
|
resolve(res.data)
|
2021-04-12 04:14:41 -06:00
|
|
|
})
|
2022-02-08 11:10:23 -07:00
|
|
|
.catch(e => {
|
2021-04-12 04:14:41 -06:00
|
|
|
reject(e)
|
|
|
|
})
|
|
|
|
break
|
|
|
|
default:
|
2021-07-09 15:44:52 -06:00
|
|
|
reject(new Error('No specified data format'))
|
2021-04-12 04:14:41 -06:00
|
|
|
break
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
return Promise.race([fetchPromise, timeoutPromise]).then((result) => {
|
|
|
|
clearTimeout(timeoutHandle)
|
|
|
|
return result
|
|
|
|
})
|
|
|
|
}
|