32 lines
879 B
JavaScript
32 lines
879 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const note = require('note-log');
|
||
|
const util = require('util');
|
||
|
const config = require('config');
|
||
|
const fetch = require('node-fetch');
|
||
|
|
||
|
function imgurImage(post) {
|
||
|
return fetch(`https://api.gfycat.com/v1/gfycats/${post.host.id}`, {
|
||
|
headers: {
|
||
|
'Authorization': `Bearer ${config.methods.gfycat.key}`
|
||
|
}
|
||
|
}).then(res => res.json()).then(res => {
|
||
|
return {
|
||
|
album: null,
|
||
|
items: [{
|
||
|
id: res.gfyItem.gfyName,
|
||
|
url: res.gfyItem.webmUrl,
|
||
|
title: res.gfyItem.title,
|
||
|
description: res.gfyItem.description,
|
||
|
type: 'video/webm',
|
||
|
datetime: res.gfyItem.createDate * 1000,
|
||
|
original: res.gfyItem
|
||
|
}]
|
||
|
};
|
||
|
}).catch(error => {
|
||
|
note(error);
|
||
|
});
|
||
|
};
|
||
|
|
||
|
module.exports = imgurImage;
|