-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpresence.js
116 lines (96 loc) · 3.72 KB
/
presence.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
/*©agpl*************************************************************************
* *
* This file is part of FRIEND UNIFYING PLATFORM. *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU Affero General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Affero General Public License for more details. *
* *
* You should have received a copy of the GNU Affero General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
* *
*****************************************************************************©*/
'use strict';
require( './component/Config' ); // writes to global.config
const log = require( './component/Log' )( 'main' );
const MySQLPool = require( './component/MysqlPool' );
const IdCache = require( './component/IdentityCache' );
const WorgCtrl = require( './component/WorgCtrl' );
const UserCtrl = require( './component/UserCtrl' );
const RoomCtrl = require( './component/RoomCtrl' );
const NML = require( './component/NoMansLand' );
const FService = require( './api/FService' );
let service = null;
const presence = {
conn : null,
db : null,
idc : null,
worgs : null,
users : null,
rooms : null,
};
//const fcReq = require( './component/FCRequest' )( global.config.server.friendcore );
presence.db = new MySQLPool( global.config.server.mysql, dbReady );
function dbReady( ok ) {
if ( !ok )
throw new Error( 'db failed! Run for the hills!' );
presence.idc = new IdCache( presence.db );
presence.worgs = new WorgCtrl( presence.db, presence.idc );
presence.rooms = new RoomCtrl( presence.db, presence.idc, presence.worgs );
presence.users = new UserCtrl( presence.db, presence.idc, presence.worgs, presence.rooms );
connectFC();
}
function connectFC() {
if ( !global.config.server.friendcore.serviceKey ) {
openComms();
return;
}
service = new FService(
global.config.server.friendcore,
'FriendChat',
);
const oId = service.on( 'ready', e => loadFromFC( e ));
}
async function loadFromFC( fcInfo ) {
let users = null;
let worgs = null;
try {
users = await service.getUserList();
} catch( ex ) {
log( 'loadFromFC - failed to get user list, ABORTING startup', ex );
process.exit( 1 );
return;
}
await presence.users.refresh( users );
try {
worgs = await service.getWorkgroupList();
} catch( ex ) {
log( 'loadFromFC - failed to get worg list, ABORTING startup', ex );
process.exit( 1 );
return;
}
await presence.worgs.refresh( worgs );
openComms();
}
function openComms() {
if ( presence.conn )
return;
const fcReq = require( './component/FCRequest' )( global.config.server.friendcore );
presence.conn = new NML(
presence.db,
presence.users,
presence.rooms,
fcReq
);
log( 'now listening for client connections' );
}
process.on( 'unhandledRejection', err => {
log( 'unhandled promise rejection - ERRPR', err, 3 );
process.exit( 666 );
});