zepio/services/api.js

44 lines
969 B
JavaScript
Raw Normal View History

2018-12-05 06:43:34 -08:00
// @flow
import got from 'got';
/* eslint-disable-next-line */
import isDev from 'electron-is-dev';
2018-12-05 06:43:34 -08:00
import { METHODS, type APIMethods } from './utils';
import store from '../config/electron-store';
2018-12-05 06:43:34 -08:00
const RPC = {
host: '127.0.0.1',
port: isDev ? 18232 : 8232,
user: store.get('rpcuser'),
password: store.get('rpcpassword'),
2018-12-05 06:43:34 -08:00
};
const client = got.extend({
method: 'POST',
json: true,
auth: `${RPC.user}:${RPC.password}`,
});
// $FlowFixMe
const api: APIMethods = METHODS.reduce(
(obj, method) => ({
...obj,
[method]: (...args) => client
.post(`http://${RPC.host}:${RPC.port}`, {
body: {
method,
jsonrpc: '2.0',
id: Date.now(),
params: args,
},
})
.then(data => Promise.resolve(data.body && data.body.result))
.catch(payload => Promise.reject(
new Error(payload.body?.error.message || 'Something went wrong'),
)),
2018-12-05 06:43:34 -08:00
}),
{},
);
export default api;