File size: 2,217 Bytes
1e92f2d |
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 |
// @flow
const { db } = require('shared/db');
import type { DBCommunitySettings } from 'shared/types';
const defaultSettings = {
brandedLogin: {
isEnabled: false,
message: null,
},
slackSettings: {
connectedAt: null,
connectedBy: null,
teamName: null,
teamId: null,
scope: null,
token: null,
invitesSentAt: null,
invitesMemberCount: null,
invitesCustomMessage: null,
},
joinSettings: {
tokenJoinEnabled: false,
token: null,
},
};
// prettier-ignore
export const getCommunitySettings = (id: string): Promise<DBCommunitySettings> => {
return db
.table('communitySettings')
.getAll(id, { index: 'communityId' })
.run()
.then(data => {
if (!data || data.length === 0) {
return defaultSettings;
}
return data[0];
});
};
// prettier-ignore
export const getCommunitiesSettings = (communityIds: Array<string>): Promise<?DBCommunitySettings> => {
return db
.table('communitySettings')
.getAll(...communityIds, { index: 'communityId' })
.run()
.then(data => {
if (!data || data.length === 0) {
return Array.from({ length: communityIds.length }, (_, index) => ({
...defaultSettings,
communityId: communityIds[index],
}));
}
if (data.length === communityIds.length) {
return data.map(
(rec, index) =>
rec
? rec
: {
...defaultSettings,
communityId: communityIds[index],
}
);
}
if (data.length < communityIds.length) {
return communityIds.map(communityId => {
const record = data.find(o => o.communityId === communityId);
if (record) return record;
return {
...defaultSettings,
communityId,
};
});
}
if (data.length > communityIds.length) {
return communityIds.map(communityId => {
const record = data.find(o => o.communityId === communityId);
if (record) return record;
return {
...defaultSettings,
communityId,
};
});
}
});
};
|