-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.js
72 lines (58 loc) · 1.9 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
'use strict';
var connection = require('./lib/connection'),
identity = require('./lib/identity'),
sharingMessage = require('./lib/sharingMessage'),
shorturl = require('./lib/shorturl'),
user = require('./lib/user'),
sso = require('./lib/sso'),
analytics = require('./lib/analytics'),
provider = require('./lib/provider'),
discussion = require('./lib/discussion'),
Api = require('./lib/core/api'),
Config = require('./lib/config');
/**
* Oneall sdk, agregates all functions provided by Oneall rest API
* @param {Object} options Connection properties, and some other options {api: {endpoint:..., publickey:..., privatekey:...}, debug:false};
*/
function Oneall(cfg) {
var objects = [
'connection',
'identity',
'sharingMessage',
'shorturl',
'user',
'sso',
'analytics',
'provider',
'discussion'
];
if (cfg === undefined) {
throw new Error('cfg parameter is mandatory.');
}
if (cfg.endpoint === undefined) {
throw new Error('You must set a endpoint.');
}
if (cfg.publickey === undefined) {
throw new Error('You must set the publickey.');
}
if (cfg.privatekey === undefined) {
throw new Error('You must set the privatekey.');
}
var config = new Config(cfg);
this.api = new Api(config);
objects.forEach (function (obj) {
Object.keys(this[obj]).forEach(function (key) {
this[obj][key] = this[obj][key].bind(this);
}, this);
}, this);
}
Oneall.prototype.connection = connection;
Oneall.prototype.sharingMessage = sharingMessage;
Oneall.prototype.shorturl = shorturl;
Oneall.prototype.user = user;
Oneall.prototype.identity = identity;
Oneall.prototype.sso = sso;
Oneall.prototype.analytics = analytics;
Oneall.prototype.provider = provider;
Oneall.prototype.discussion = discussion;
module.exports = Oneall;