1
0
mirror of synced 2024-11-21 20:16:03 +03:00
mg-bot-api-client-js/index.js

58 lines
1.8 KiB
JavaScript
Raw Permalink Normal View History

2019-02-06 14:54:15 +03:00
'use strict';
2019-03-01 13:46:30 +03:00
import v1 from './lib/v1/client'
import Request from './lib/request'
2019-03-06 14:03:41 +03:00
import * as consts from './lib/consts'
2019-03-01 13:46:30 +03:00
const lastApiVersion = 'v1';
2019-03-06 14:03:41 +03:00
export default class MgBotApiClient {
2019-03-01 13:46:30 +03:00
/**
* @param {Object} options
* @throws {Error}
*/
constructor(options) {
if (!options.host) {
throw new Error('Url is required');
}
if (options.host.indexOf('https') !== 0) {
throw new Error('HTTPS required');
}
if (!(options.token)) {
throw new Error('Token is required');
}
let currentVersion;
const clients = {
'v1': v1
};
if (options.apiVersion) {
currentVersion = options.apiVersion;
} else {
currentVersion = lastApiVersion;
}
this._client = new clients[currentVersion](new Request(options));
2019-02-06 14:54:15 +03:00
}
2019-03-01 13:46:30 +03:00
/**
* Get API client
* @returns {Client}
*/
get client() {
return this._client;
2019-02-06 14:54:15 +03:00
};
2019-03-06 14:03:41 +03:00
/**
* Get types
* @returns {{msgTypeOrder?: string, wsUserJoinedChat?: string, msgTypeImage?: string, wsDialogAssign?: string, msgTypeText?: string, messageScopePublic?: string, wsMessageDeleted?: string, msgTypeCommand?: string, msgTypeFile?: string, msgTypeSystem?: string, wsBotUpdated?: string, msgTypeProduct?: string, wsDialogClosed?: string, wsMessageNew?: string, wsMessageUpdated?: string, wsSettingsUpdated?: string, wsUserUpdated?: string, wsCustomerUpdated?: string, wsChatCreated?: string, wsUserLeftChat?: string, wsChannelUpdated?: string, wsDialogOpened?: string, messageScopePrivate?: string, wsUserOnlineUpdated?: string, wsChatUnreadUpdated?: string, wsChatUpdated?: string}}
*/
static types() {
return consts;
}
2019-02-08 13:31:38 +03:00
}