Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Account.ts « src - github.com/jsxc/jsxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ebacf5b5262455b30e56c1f5bcad95328950004 (plain)
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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
import Storage from './Storage';
import { IConnection } from './connection/Connection.interface';
import Connector from './connection/xmpp/Connector';
import StorageConnection from './connection/storage/Connection';
import JID from './JID';
import Contact from './Contact';
import { Presence } from './connection/AbstractConnection';
import Client from './Client';
import { NoticeManager } from './NoticeManager';
import PluginRepository from './plugin/PluginRepository';
import DiscoInfoRepository from './DiscoInfoRepository';
import DiscoInfoChangeable from './DiscoInfoChangeable';
import HookRepository from './util/HookRepository';
import Options from './Options';
import UUID from './util/UUID';
import Pipe from './util/Pipe';
import ChatWindow from '@ui/ChatWindow';
import { IJID } from './JID.interface';
import { IContact } from './Contact.interface';
import RosterContactProvider from './RosterContactProvider';
import ContactManager from './ContactManager';
import FallbackContactProvider from './FallbackContactProvider';
import Log from '@util/Log';
import CommandRepository from './CommandRepository';
import AvatarSet from '@ui/AvatarSet';
import { IAvatar } from './Avatar.interface';
import CallManager from './CallManager';

type ConnectionCallback = (status: number, condition?: string) => void;

export default class Account {
   private storage: Storage;

   private sessionStorage: Storage;

   private sessionId: string;

   private uid: string;

   private connection: IConnection;

   private connector: Connector;

   private contact: Contact;

   private noticeManager: NoticeManager;

   private pluginRepository: PluginRepository;

   private discoInfoRepository: DiscoInfoRepository;

   private ownDiscoInfo: DiscoInfoChangeable;

   private hookRepository = new HookRepository<any>();

   private contactManager: ContactManager;

   private commandRepository: CommandRepository;

   private callManager: CallManager;

   private options: Options;

   private pipes = {};

   constructor(url: string, jid: string, sid: string, rid: string);
   constructor(url: string, jid: string, password: string);
   constructor(uid: string);
   constructor() {
      if (arguments.length === 1) {
         this.uid = arguments[0];
         this.sessionId = this.getStorage().getItem('sessionId');
      } else if (arguments.length === 3 || arguments.length === 4) {
         let jid = new JID(arguments[1]);

         // anonymous accounts start without node
         this.uid = jid.node ? jid.bare : UUID.v4().slice(0, 8) + '=' + jid.domain;
         this.sessionId = UUID.v4();

         let oldSessionId = this.getStorage().getItem('sessionId');
         this.getStorage().setItem('sessionId', this.sessionId);

         if (oldSessionId) {
            Storage.clear(this.uid + '@' + oldSessionId);
         }
      } else {
         throw new Error('Unsupported number of arguments');
      }

      this.options = new Options(this.getStorage());

      this.connector = new Connector(this, arguments[0], arguments[1], arguments[2], arguments[3]);
      this.connection = new StorageConnection(this);

      if (arguments.length === 1) {
         this.pluginRepository = new PluginRepository(this);
      }

      this.contact = new Contact(this, new JID(this.uid), this.uid);

      let rosterContactProvider = new RosterContactProvider(this.getContactManager(), this);
      this.getContactManager().registerContactProvider(rosterContactProvider);

      let fallbackContactProvider = new FallbackContactProvider(this.getContactManager(), this);
      this.getContactManager().registerContactProvider(fallbackContactProvider);

      let connectionCallback = this.getOption('connectionCallback');

      if (typeof connectionCallback === 'function') {
         this.registerConnectionHook((status, condition) => {
            connectionCallback(this.uid, status, condition);
         });
      }

      this.getContactManager().restoreCache();
      this.getNoticeManager();
   }

   public getOptions(): Options {
      return this.options;
   }

   public getOption(key: string) {
      return this.options.get(key);
   }

   public setOption(key: string, value: any) {
      this.options.set(key, value);
   }

   public connect = (pause: boolean = false): Promise<void> => {
      let targetPresence = Client.getPresenceController().getTargetPresence();

      if (targetPresence === Presence.offline) {
         Client.getPresenceController().setTargetPresence(Presence.online);
      }

      return this.connector
         .connect()
         .then(async ([status, connection]) => {
            this.connection = connection;

            if (pause) {
               connection.pause();
            }

            let storage = this.getSessionStorage();

            if (!storage.getItem('connection', 'created')) {
               storage.setItem('connection', 'created', new Date());
            }

            if (!storage.getItem('options', 'loaded')) {
               let jid = this.connector.getJID();
               await Options.load(jid.bare, this.connector.getPassword(), jid);
               this.connector.clearPassword();

               storage.setItem('options', 'loaded', true);
            }

            if (!pause) {
               this.initConnection(status);
            }
         })
         .catch(err => {
            if (Client.getAccountManager().getAccounts().length <= 1) {
               Client.getPresenceController().setTargetPresence(Presence.offline);
            }

            throw err;
         });
   };

   private async initConnection(status): Promise<void> {
      let storage = this.getSessionStorage();

      if (storage.getItem('connection', 'inited')) {
         return;
      }

      await this.getContactManager().loadContacts();

      let targetPresence = Client.getPresenceController().getTargetPresence();
      this.getConnection().sendPresence(targetPresence);

      storage.setItem('connection', 'inited', true);
   }

   public triggerPresenceHook = (contact: IContact, presence, oldPresence) => {
      this.hookRepository.trigger('presence', contact, presence, oldPresence);
   };

   public registerPresenceHook = func => {
      this.hookRepository.registerHook('presence', func);
   };

   public triggerConnectionHook = (status: number, condition?: string) => {
      this.hookRepository.trigger('connection', status, condition);
   };

   public registerConnectionHook = (func: ConnectionCallback) => {
      this.hookRepository.registerHook('connection', func);
   };

   public triggerChatWindowInitializedHook = (chatWindow: ChatWindow, contact: Contact) => {
      this.hookRepository.trigger('chatWindowInitialized', chatWindow, contact);
   };

   public registerChatWindowInitializedHook = (func: (chatWindow?: ChatWindow, contact?: Contact) => void) => {
      this.hookRepository.registerHook('chatWindowInitialized', func);
   };

   public triggerChatWindowClearedHook = (chatWindow: ChatWindow, contact: Contact) => {
      this.hookRepository.trigger('chatWindowCleared', chatWindow, contact);
   };

   public registerChatWindowClearedHook = (func: (chatWindow?: ChatWindow, contact?: Contact) => void) => {
      this.hookRepository.registerHook('chatWindowCleared', func);
   };

   public getContactManager(): ContactManager {
      if (!this.contactManager) {
         this.contactManager = new ContactManager(this);
      }

      return this.contactManager;
   }

   public getPluginRepository(): PluginRepository {
      return this.pluginRepository;
   }

   public getDiscoInfoRepository(): DiscoInfoRepository {
      if (!this.discoInfoRepository) {
         this.discoInfoRepository = new DiscoInfoRepository(this);
      }

      return this.discoInfoRepository;
   }

   public getDiscoInfo(): DiscoInfoChangeable {
      if (!this.ownDiscoInfo) {
         this.ownDiscoInfo = new DiscoInfoChangeable(this.uid);
      }

      return this.ownDiscoInfo;
   }

   public getCommandRepository(): CommandRepository {
      if (!this.commandRepository) {
         this.commandRepository = new CommandRepository();
      }

      return this.commandRepository;
   }

   public getCallManager() {
      if (!this.callManager) {
         this.callManager = new CallManager(this);
      }

      return this.callManager;
   }

   public getContact(jid?: IJID): IContact {
      return jid && jid.bare !== this.getJID().bare ? this.getContactManager().getContact(jid) : this.contact;
   }

   public getNoticeManager(): NoticeManager {
      if (!this.noticeManager) {
         this.noticeManager = new NoticeManager(this.getStorage());
      }

      return this.noticeManager;
   }

   public getStorage() {
      if (!this.storage) {
         this.storage = new Storage(this.uid);
      }

      return this.storage;
   }

   public getSessionStorage() {
      if (!this.sessionStorage) {
         let name = this.uid + '@' + this.sessionId;

         this.sessionStorage = new Storage(name);
      }

      return this.sessionStorage;
   }

   public getPresence(): Presence {
      let sessionStorage = this.getSessionStorage();
      let presence = sessionStorage.getItem('presence');

      return typeof presence === 'number' ? presence : Presence.offline;
   }

   public setPresence(presence: Presence) {
      this.getSessionStorage().setItem('presence', presence);
   }

   public getConnection(): IConnection {
      return this.connection;
   }

   public getUid(): string {
      return this.uid;
   }

   public getSessionId(): string {
      return this.sessionId;
   }

   public getJID(): JID {
      let jid = this.connector.getJID();

      if (!jid) {
         Log.warn('Empty JID for account', this.getUid());
      }

      return jid;
   }

   public getConnectionUrl(): string {
      return this.connector.getUrl();
   }

   public async updateAvatar(avatar: IAvatar | null) {
      const pipe = this.getPipe<[IAvatar]>('publishAvatar');

      const [processedAvatar] = await pipe.run(avatar);

      if (processedAvatar && avatar !== null) {
         Log.warn('Avatar could not be updated');

         return;
      }

      let avatarUI = AvatarSet.get(this.getContact());
      avatarUI.reload();

      this.getConnection().sendPresence();
   }

   public getPipe<params extends any[] = any[]>(name: string): Pipe<params> {
      if (!this.pipes[name]) {
         this.pipes[name] = new Pipe<params>();
      }

      return this.pipes[name];
   }

   public remove() {
      this.destroy();

      Client.getAccountManager().removeAccount(this);
   }

   public destroy() {
      this.getContactManager().removeAllContactsFromCache();

      this.getConnection().close();
      this.getStorage().destroy();
      this.getSessionStorage().destroy();
      this.getNoticeManager().removeAll();

      for (const name in this.pipes) {
         this.pipes[name].destroy();
      }

      if (this.getPluginRepository()) {
         this.getPluginRepository().destroyAllPlugins();
      }
   }

   public connectionDisconnected() {
      this.setPresence(Presence.offline);

      this.remove();
   }
}