-
Notifications
You must be signed in to change notification settings - Fork 219
/
Copy pathqbMain.js
275 lines (249 loc) · 10.2 KB
/
qbMain.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
'use strict';
/*
* QuickBlox JavaScript SDK
*
* Main SDK Module
*
*/
var config = require('./qbConfig');
var Utils = require('./qbUtils');
// Actual QuickBlox API starts here
function QuickBlox() {}
QuickBlox.prototype = {
/**
* Return current version of QuickBlox JavaScript SDK
* @memberof QB
* */
version: config.version,
/**
* Return current build number of QuickBlox JavaScript SDK
* @memberof QB
* */
buildNumber: config.buildNumber,
_getOS: Utils.getOS.bind(Utils),
/**
* @memberof QB
* @param {Number | String} appIdOrToken - Application ID (from your admin panel) or Session Token.
* @param {String | Number} authKeyOrAppId - Authorization key or Application ID. You need to set up Application ID if you use session token as appIdOrToken parameter.
* @param {String} authSecret - Authorization secret key (from your admin panel).
* @param {Object} configMap - Settings object for QuickBlox SDK.
*/
init: function(appIdOrToken, authKeyOrAppId, authSecret, accountKey, configMap) {
if (typeof accountKey === 'string' && accountKey.length) {
if (configMap && typeof configMap === 'object') {
config.set(configMap);
}
config.creds.accountKey = accountKey;
} else {
console.warn('Parameter "accountKey" is missing. This will lead to error in next major release');
console.warn('NOTE: Account migration will not work without "accountKey"');
if (typeof accountKey === 'object') {
config.set(accountKey);
}
}
var SHARED_API_ENDPOINT = "api.quickblox.com";
var SHARED_CHAT_ENDPOINT = "chat.quickblox.com";
/** include dependencies */
var Proxy = require('./qbProxy'),
Auth = require('./modules/qbAuth'),
Users = require('./modules/qbUsers'),
Content = require('./modules/qbContent'),
PushNotifications = require('./modules/qbPushNotifications'),
Data = require('./modules/qbData'),
AddressBook = require('./modules/qbAddressBook'),
Chat = require('./modules/chat/qbChat'),
DialogProxy = require('./modules/chat/qbDialog'),
MessageProxy = require('./modules/chat/qbMessage');
this.service = new Proxy();
this.auth = new Auth(this.service);
this.users = new Users(this.service);
this.content = new Content(this.service);
this.pushnotifications = new PushNotifications(this.service);
this.data = new Data(this.service);
this.addressbook = new AddressBook(this.service);
this.chat = new Chat(this.service);
this.chat.dialog = new DialogProxy(this.service);
this.chat.message = new MessageProxy(this.service);
if (Utils.getEnv().browser) {
/** add adapter.js*/
require('webrtc-adapter');
/** add WebRTC API if API is avaible */
if( Utils.isWebRTCAvailble() ) {
var WebRTCClient = require('./modules/webrtc/qbWebRTCClient');
this.webrtc = new WebRTCClient(this.service, this.chat);
} else {
this.webrtc = false;
}
} else {
this.webrtc = false;
}
// Initialization by outside token
if (typeof appIdOrToken === 'string' && (!authKeyOrAppId || typeof authKeyOrAppId === 'number') && !authSecret) {
if(typeof authKeyOrAppId === 'number'){
config.creds.appId = authKeyOrAppId;
}
this.service.setSession({ token: appIdOrToken });
} else {
config.creds.appId = appIdOrToken;
config.creds.authKey = authKeyOrAppId;
config.creds.authSecret = authSecret;
}
var shouldGetSettings = config.creds.accountKey && (
!config.endpoints.api ||
config.endpoints.api === SHARED_API_ENDPOINT ||
!config.endpoints.chat ||
config.endpoints.chat === SHARED_CHAT_ENDPOINT
);
if (shouldGetSettings) {
var accountSettingsUrl = [
'https://', SHARED_API_ENDPOINT, '/',
config.urls.account,
config.urls.type
].join('');
// account settings
this.service.ajax({
url: accountSettingsUrl
}, function (err, response) {
if (!err && typeof response === 'object') {
var update = {
endpoints: {
api: response.api_endpoint.replace(/^https?:\/\//, ''),
chat: response.chat_endpoint
}
};
config.set(update);
}
});
}
},
/**
* Init QuickBlox SDK with User Account data for start session with token.
* @memberof QB
* @param {Number} appId - Application ID (from your admin panel).
* @param {String | Number} accountKey - Account key (from your admin panel).
* @param {Object} configMap - Settings object for QuickBlox SDK.
*/
initWithAppId: function(appId, accountKey, configMap) {
//добавить проверку типа параметров
if (typeof appId !== 'number') {
throw new Error('Type of appId must be a number');
}
if (appId === '' || appId === undefined || appId === null ||
accountKey === '' || accountKey === undefined || accountKey === null) {
throw new Error('Cannot init QuickBlox without app credentials (app ID, auth key)');
} else {
this.init('', appId, null, accountKey, configMap);
}
},
/**
* Return current session
* @memberof QB
* @param {getSessionCallback} callback - The getSessionCallback function.
* */
getSession: function(callback) {
/**
* This callback return session object.
* @callback getSessionCallback
* @param {Object} error - The error object
* @param {Object} session - Contains of session object
* */
this.auth.getSession(callback);
},
/**
* Set up user session token to current session and return it
* @memberof QB
* @param {String} token - a User Session Token
* @param {getSessionCallback} callback - The getSessionCallback function.
* @callback getSessionCallback
* @param {Object} error - The error object
* @param {Object} session - Contains of session object
* */
startSessionWithToken: function(token, callback) {
if (token === undefined) throw new Error('Cannot start session with undefined token');
else if (token === '') throw new Error('Cannot start session with empty string token');
else if (token === null) throw new Error('Cannot start session with null value token');
else if (typeof callback !== 'function') throw new Error('Cannot start session without callback function');
else {
try {
this.service.setSession({token: token});
} catch (err) {
callback(err, null);
}
if (typeof callback === 'function') {
try{
this.auth.getSession(callback);
// TODO: pay attention on it, if we decide to remove application_id from QB.init:
// artan 06-09-2022
// should set value application_id from session model into config.creds.appId
}
catch(er){
callback(er, null);
}
}
}
},
/**
* Creat new session. {@link https://quickblox.com/developers/Javascript#Authorization More info}
* @memberof QB
* @param {String} appIdOrToken Should be applecationID or QBtoken.
* @param {createSessionCallback} callback -
* */
createSession: function(params, callback) {
/**
* This callback return session object.
* @callback createSession
* @param {Object} error - The error object
* @param {Object} session - Contains of session object
* */
this.auth.createSession(params, callback);
},
/**
* Destroy current session. {@link https://quickblox.com/developers/Authentication_and_Authorization#API_Session_Destroy More info}
* @memberof QB
* @param {destroySessionCallback} callback - The destroySessionCallback function.
* */
destroySession: function(callback) {
/**
* This callback returns error or empty string.
* @callback destroySessionCallback
* @param {Object | Null} error - The error object if got en error and null if success.
* @param {Null | String} result - String (" ") if session was removed successfully.
* */
this.auth.destroySession(callback);
},
/**
* Login to QuickBlox application. {@link https://quickblox.com/developers/Javascript#Authorization More info}
* @memberof QB
* @param {Object} params - Params object for login into the session.
* @param {loginCallback} callback - The loginCallback function.
* */
login: function(params, callback) {
/**
* This callback return error or user Object.
* @callback loginCallback
* @param {Object | Null} error - The error object if got en error and null if success.
* @param {Null | Object} result - User data object if everything goes well and null on error.
* */
this.auth.login(params, callback);
},
/**
* Remove user from current session, but doesn't destroy it.
* @memberof QB
* @param {logoutCallback} callback - The logoutCallback function.
* */
logout: function(callback) {
/**
* This callback return error or user Object.
* @callback logoutCallback
* @param {Object | Null} error - The error object if got en error and null if success.
* @param {Null | String} result - String (" ") if session was removed successfully.
* */
this.auth.logout(callback);
}
};
/**
* @namespace
*/
var QB = new QuickBlox();
QB.QuickBlox = QuickBlox;
module.exports = QB;