2021-03-25 07:31:29 -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.
|
|
|
|
*/
|
|
|
|
const bent = require('bent')
|
|
|
|
const bentReq = bent('GET')
|
|
|
|
|
2021-03-25 07:33:58 -06:00
|
|
|
module.exports = async (tweetId, opts) => {
|
2021-03-25 08:37:30 -06:00
|
|
|
let timeoutHandle
|
|
|
|
const timeoutPromise = new Promise((resolve, reject) => {
|
|
|
|
timeoutHandle = setTimeout(
|
|
|
|
() => reject(new Error('Request was timed out')),
|
|
|
|
5000
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-03-25 09:28:56 -06:00
|
|
|
const fetchPromise = new Promise((resolve, reject) => {
|
|
|
|
bentReq(
|
|
|
|
`https://api.twitter.com/1.1/statuses/show.json?id=${tweetId}&tweet_mode=extended`,
|
|
|
|
null,
|
|
|
|
{
|
|
|
|
Accept: 'application/json',
|
|
|
|
Authorization: `Bearer ${opts.bearerToken}`,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
.then(async (data) => {
|
|
|
|
return await data.json()
|
|
|
|
})
|
|
|
|
.then((data) => {
|
|
|
|
resolve(data.full_text)
|
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
reject(error)
|
|
|
|
})
|
|
|
|
})
|
2021-03-25 08:37:30 -06:00
|
|
|
|
|
|
|
return Promise.race([fetchPromise, timeoutPromise]).then((result) => {
|
|
|
|
clearTimeout(timeoutHandle)
|
|
|
|
return result
|
|
|
|
})
|
|
|
|
}
|