41 lines
834 B
JavaScript
41 lines
834 B
JavaScript
|
const credentials = require('../../credentials.json');
|
||
|
|
||
|
const auth = require('smartdc-auth');
|
||
|
const cloudapi = require('triton/lib/cloudapi2');
|
||
|
const bunyan = require('bunyan');
|
||
|
|
||
|
var log = bunyan.createLogger({
|
||
|
name: 'triton-graphql'
|
||
|
});
|
||
|
|
||
|
var client = cloudapi.createClient({
|
||
|
log: log,
|
||
|
url: credentials.url,
|
||
|
account: credentials.account,
|
||
|
user: credentials.user,
|
||
|
sign: auth.cliSigner({
|
||
|
log: log,
|
||
|
keyId: credentials.keyId,
|
||
|
user: credentials.account,
|
||
|
subuser: credentials.user
|
||
|
})
|
||
|
});
|
||
|
|
||
|
module.exports = (method, args) => {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
const fn = client[method].bind(client);
|
||
|
|
||
|
const cb = (err, res) => {
|
||
|
if (err) {
|
||
|
return reject(err);
|
||
|
}
|
||
|
|
||
|
resolve(res);
|
||
|
};
|
||
|
|
||
|
return args ? fn(args, cb) : fn(cb);
|
||
|
});
|
||
|
};
|
||
|
|
||
|
module.exports.client = client;
|