only create preflight channel if channels are enabled

This commit is contained in:
Ryan Tharp 2020-07-02 05:26:47 +00:00
parent 7232d7f8f8
commit d0edde7452
1 changed files with 111 additions and 102 deletions

View File

@ -11,6 +11,7 @@ const config = require('./lib.config');
const logic = require('./logic');
const dialect = require('./lib.dialect');
const loki_crypt = require('./lib.loki_crypt');
const platformConfigUtil = require('./server/lib/lib.config');
// used for creating a default token for user 1
const ADN_SCOPES = 'basic stream write_post follow messages update_profile files export';
@ -85,118 +86,126 @@ const setup = (cache, dispatcher) => {
dialect.setup({ dispatcher });
storage.start(disk_config);
dataAccess.getChannel(1, {}, async (err, chnl, meta) => {
if (err) console.error('channel 1 get err', err);
if (chnl && chnl.id) {
const configWhitelistEnabled = !!disk_config.whitelist;
// do read permissions match?
// write shouldn't matter, if you can't get a token/user, you can't write
const channelWhitelistEnabled = chnl.reader !== 0;
console.log('configWhitelistEnabled', configWhitelistEnabled);
console.log('channelWhitelistEnabled', channelWhitelistEnabled);
if (configWhitelistEnabled != channelWhitelistEnabled) {
console.log('Need to fix up channel permissions');
// this will disable public reading of the channel
// only set up a channels, if channels enabled (open group mode)
if (platformConfigUtil.moduleEnabled('channels')) {
console.log('Open group mode detected')
dataAccess.getChannel(1, {}, async (err, chnl, meta) => {
if (err) console.error('channel 1 get err', err);
if (chnl && chnl.id) {
const configWhitelistEnabled = !!disk_config.whitelist;
// do read permissions match?
// write shouldn't matter, if you can't get a token/user, you can't write
const channelWhitelistEnabled = chnl.reader !== 0;
console.log('configWhitelistEnabled', configWhitelistEnabled);
console.log('channelWhitelistEnabled', channelWhitelistEnabled);
if (configWhitelistEnabled != channelWhitelistEnabled) {
console.log('Need to fix up channel permissions');
// this will disable public reading of the channel
// would this work with proxy-admin system?
// 0 = public, 1 = any user (has token)
dataAccess.updateChannel(1, { reader: configWhitelistEnabled ? 1 : 0 }, function(err, channel) {
if (err) console.error('overlay updateChannel err', err);
else console.log('updated channel permissions', channel);
});
}
if (configWhitelistEnabled) {
// just make sure our owner is whitelisted for proxy mod actions
console.log('checking', chnl.ownerid);
if (chnl.ownerid) {
const alreadyWhitelisted = await storage.isWhitelisted(chnl.ownerid);
if (!alreadyWhitelisted) {
console.log('whitelisting channel owner, userid:', chnl.ownerid);
logic.whitelistUserForServer(chnl.ownerid);
// would this work with proxy-admin system?
// 0 = public, 1 = any user (has token)
dataAccess.updateChannel(1, { reader: configWhitelistEnabled ? 1 : 0 }, function(err, channel) {
if (err) console.error('overlay updateChannel err', err);
else console.log('updated channel permissions', channel);
});
}
if (configWhitelistEnabled) {
// just make sure our owner is whitelisted for proxy mod actions
console.log('checking', chnl.ownerid);
if (chnl.ownerid) {
const alreadyWhitelisted = await storage.isWhitelisted(chnl.ownerid);
if (!alreadyWhitelisted) {
console.log('whitelisting channel owner, userid:', chnl.ownerid);
logic.whitelistUserForServer(chnl.ownerid);
}
}
}
return;
}
return;
}
console.log('need to create initial channel');
// FIXME: user token_helpers's findOrCreateUser?
dataAccess.getUser(1, async (err2, user, meta2) => {
if (err2) console.error('get user 1 err', err2);
// if no user, create the user...
// user === null when D.N.E.
// console.log('user', user);
var privKey, pubKey;
if (!user || !user.length) {
console.log('need to create initial user');
// block until this is complete
user = await new Promise((resolve, rej) => {
const ourKey = libsignal.curve.generateKeyPair();
privKey = ourKey.privKey;
pubKey = ourKey.pubKey;
var pubKeyhex = bb.wrap(ourKey.pubKey).toString('hex')
dataAccess.addUser(pubKeyhex, '', async function(err4, user, meta4) {
if (err4) console.error('add user 1 err', err4);
// maybe some annotation to set the profile name...
// maybe a session icon?
// console.log('schemaType', storage.schemaType)
if (storage.schemaType === 'memory') {
// lets prompt him to mod too...
console.log('Giving temp mod to', user.id)
config.addTempModerator(user.id)
if (config.inWhiteListMode()) {
// add them to the white list...
const result = await logic.whitelistUserForServer(user.id);
if (!result) {
console.warn('could not whitelist!')
console.log('need to create initial channel');
// FIXME: user token_helpers's findOrCreateUser?
dataAccess.getUser(1, async (err2, user, meta2) => {
if (err2) console.error('get user 1 err', err2);
// if no user, create the user...
// user === null when D.N.E.
// console.log('user', user);
var privKey, pubKey;
if (!user || !user.length) {
console.log('need to create initial user');
// block until this is complete
user = await new Promise((resolve, rej) => {
const ourKey = libsignal.curve.generateKeyPair();
privKey = ourKey.privKey;
pubKey = ourKey.pubKey;
var pubKeyhex = bb.wrap(ourKey.pubKey).toString('hex')
dataAccess.addUser(pubKeyhex, '', async function(err4, user, meta4) {
if (err4) console.error('add user 1 err', err4);
// maybe some annotation to set the profile name...
// maybe a session icon?
// console.log('schemaType', storage.schemaType)
if (storage.schemaType === 'memory') {
// lets prompt him to mod too...
console.log('Giving temp mod to', user.id)
config.addTempModerator(user.id)
if (config.inWhiteListMode()) {
// add them to the white list...
const result = await logic.whitelistUserForServer(user.id);
if (!result) {
console.warn('could not whitelist!')
}
}
// generate a token for server/tests
cache.createOrFindUserToken(user.id, 'messenger', ADN_SCOPES, function(err5, token) {
if (err5) console.error('add user 1 token err', err5);
console.log('generated token', JSON.parse(JSON.stringify(token)));
})
}
// generate a token for server/tests
cache.createOrFindUserToken(user.id, 'messenger', ADN_SCOPES, function(err5, token) {
if (err5) console.error('add user 1 token err', err5);
console.log('generated token', JSON.parse(JSON.stringify(token)));
})
}
resolve(user);
resolve(user);
});
});
console.log('user', user.id, 'created!');
}
// no channel, so we need to create this public channel
dataAccess.addChannel(1, {
type: 'network.loki.messenger.chat.public',
reader: 0,
writer: 1,
readedit: 1,
writeedit: 1,
editedit: 1,
readers: [],
writers: [],
editors: [],
}, (err3, chnl, meta3) => {
if (err3) console.error('addChannel err', err3);
if (chnl && chnl.id) {
console.log('channel', chnl.id, 'created');
addChannelNote(chnl.id);
// only can do this if we just created the userid 1
if (privKey) {
//console.log('need to create message 1!')
addChannelMessage(privKey, chnl.id);
}
} else {
console.error('Unable to set up channel')
}
});
console.log('user', user.id, 'created!');
}
// no channel, so we need to create this public channel
dataAccess.addChannel(1, {
type: 'network.loki.messenger.chat.public',
reader: 0,
writer: 1,
readedit: 1,
writeedit: 1,
editedit: 1,
readers: [],
writers: [],
editors: [],
}, (err3, chnl, meta3) => {
if (err3) console.error('addChannel err', err3);
if (chnl && chnl.id) {
console.log('channel', chnl.id, 'created');
}
addChannelNote(chnl.id);
// only can do this if we just created the userid 1
if (privKey) {
//console.log('need to create message 1!')
addChannelMessage(privKey, chnl.id);
}
});
});
});
// the race was causing this to create a duplicate annotation
/*
dataAccess.getAnnotations('channel', 1, (notes, err, meta) => {
if (err) console.error('getAnnotations channel err', err);
//console.log('notes', notes);
if (!notes || !notes.length) {
console.log('adding note')
addChannelNote(1);
}
});
*/
// the race was causing this to create a duplicate annotation
/*
dataAccess.getAnnotations('channel', 1, (notes, err, meta) => {
if (err) console.error('getAnnotations channel err', err);
//console.log('notes', notes);
if (!notes || !notes.length) {
console.log('adding note')
addChannelNote(1);
}
});
*/
} else {
console.log('File server mode detected')
}
}
return { storage, logic, config, dialect, cache };