lbry.tech/app/helpers/upload-image.js

35 lines
601 B
JavaScript
Raw Normal View History

"use strict";
2018-11-30 21:46:22 +01:00
// I M P O R T
2018-11-30 21:46:22 +01:00
import got from "got";
// U T I L
2018-11-30 21:46:22 +01:00
const queryUrl = process.env.NODE_ENV === "development" ?
"http://localhost:5200/image" :
`https://${process.env.DAEMON_URL}/image`;
// E X P O R T
2018-11-30 21:46:22 +01:00
export default async(imageSource) => {
const options = {
body: {
authorization: process.env.LBRY_DAEMON_ACCESS_TOKEN,
image: imageSource
},
2018-11-30 21:46:22 +01:00
json: true
};
try {
2018-11-30 21:46:22 +01:00
const response = await got.post(queryUrl, options);
return response.body; // eslint-disable-line padding-line-between-statements
} catch (error) {
return error;
}
};