session-open-group-server-l.../lib.overlay.js

137 lines
4.9 KiB
JavaScript
Raw Normal View History

// even though we want to conform to the dialect API
// we need to amend data_access and dispatcher with our own models and api
//
// best we have a single entry point for all our common dialect to reduce set up in them
const storage = require('./storage');
const config = require('./lib.config');
const logic = require('./logic');
const dialect = require('./lib.dialect');
// Look for a config file
const disk_config = config.getDiskConfig();
storage.start(disk_config);
2019-12-30 09:38:06 +01:00
preflight = false
const setup = (cache, dispatcher) => {
config.setup({ cache, storage });
logic.setup({ storage, cache, config });
dialect.setup({ dispatcher });
2019-12-30 09:38:06 +01:00
// I guess we're do preflight checks here...
const dataAccess = cache;
// preflight checks
const addChannelNote = (channelId) => {
var defaultObj = {"name":"Your Public Chat","description":"Your public chat room","avatar":"images/group_default.png"};
dataAccess.addAnnotation('channel', channelId, 'net.patter-app.settings', defaultObj, function(rec, err, meta) {
if (err) console.error('err', err);
console.log('rec', rec, 'meta', meta);
});
}
if (!preflight) {
preflight = true
2020-02-17 09:48:42 +01:00
dataAccess.getChannel(1, {}, async (chnl, err, meta) => {
2019-12-30 09:38:06 +01:00
if (err) console.error('channel 1 get err', err);
if (chnl && chnl.id) {
2020-02-17 09:48:42 +01:00
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(channel, err) {
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);
}
}
}
2019-12-30 09:38:06 +01:00
return;
}
console.log('need to create channel 1!');
// FIXME: user token_helpers's findOrCreateUser?
dataAccess.getUser(1, async (user, err2, meta2) => {
if (err2) console.error('get user 1 err', err2);
// if no user, create the user...
console.log('user', user);
if (!user || !user.length) {
console.log('need to create user 1!');
user = await new Promise((resolve, rej) => {
dataAccess.addUser('root', '', function(user, err4, meta4) {
if (err4) console.error('add user 1 err', err4);
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: [],
}, (chnl, err3, meta3) => {
if (err3) console.error('addChannel err', err3);
if (chnl && chnl.id) {
console.log('channel', chnl.id, 'created');
}
addChannelNote(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);
}
});
*/
}
return { storage, logic, config, dialect, cache };
}
2020-02-17 09:48:42 +01:00
const getUserAccess = async (userid) => {
const globMod = await storage.isGlobalModerator(userid);
if (globMod) return true;
// just get a list a channels I'm a mod for...
const channels = await storage.getChannelModerator(userid);
if (channels.length) {
return channels.join(',');
}
// finally check local disk config
const configVal = config.globalAllow(userid);
return configVal ? configVal : false;
}
module.exports = {
2020-02-17 09:48:42 +01:00
setup,
getUserAccess
};