File size: 4,154 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 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 |
//@flow
const { db } = require('shared/db');
// prettier-ignore
export const getPublicChannelIdsInCommunity = (communityId: string): Promise<Array<string>> => {
return db
.table('channels')
.getAll(communityId, { index: 'communityId' })
.filter(row =>
row
.hasFields('deletedAt')
.not()
.and(row('isPrivate').eq(false))
)
.map(row => row('id'))
.run();
};
// prettier-ignore
export const getPrivateChannelIdsInCommunity = (communityId: string): Promise<Array<string>> => {
return db
.table('channels')
.getAll(communityId, { index: 'communityId' })
.filter(row =>
row
.hasFields('deletedAt')
.not()
.and(row('isPrivate').eq(true))
)
.map(row => row('id'))
.run();
};
// prettier-ignore
export const getPublicChannelIdsForUsersThreads = (userId: string): Promise<Array<string>> => {
return db
.table('threads')
.getAll(userId, { index: 'creatorId' })
.filter(row => row.hasFields('deletedAt').not())
.eqJoin('channelId', db.table('channels'))
.filter(row => row('right')('isPrivate').eq(false))
.zip()
.map(row => row('channelId'))
.run();
};
export const getPublicCommunityIdsForUsersThreads = (
userId: string
): Promise<Array<string>> => {
return db
.table('threads')
.getAll(userId, { index: 'creatorId' })
.filter(row => row.hasFields('deletedAt').not())
.eqJoin('communityId', db.table('communities'))
.filter(row => row('right')('isPrivate').eq(false))
.zip()
.map(row => row('communityId'))
.run();
};
// prettier-ignore
export const getPrivateChannelIdsForUsersThreads = (userId: string): Promise<Array<string>> => {
return db
.table('threads')
.getAll(userId, { index: 'creatorId' })
.filter(row => row.hasFields('deletedAt').not())
.eqJoin('channelId', db.table('channels'))
.filter(row => row('right')('isPrivate').eq(true))
.zip()
.map(row => row('channelId'))
.run();
};
export const getPrivateCommunityIdsForUsersThreads = (
userId: string
): Promise<Array<string>> => {
return db
.table('threads')
.getAll(userId, { index: 'creatorId' })
.filter(row => row.hasFields('deletedAt').not())
.eqJoin('communityId', db.table('communities'))
.filter(row => row('right')('isPrivate').eq(true))
.zip()
.map(row => row('communityId'))
.run();
};
// prettier-ignore
export const getUsersJoinedChannels = (userId: string): Promise<Array<string>> => {
return db
.table('usersChannels')
.getAll([userId, "member"], [userId, "moderator"], [userId, "owner"], { index: 'userIdAndRole' })
.eqJoin('channelId', db.table('channels'))
.filter(row => row('right').hasFields('deletedAt').not())
.zip()
.map(row => row('channelId'))
.run();
};
// prettier-ignore
export const getUsersJoinedCommunities = (userId: string): Promise<Array<string>> => {
return db
.table('usersCommunities')
.getAll([userId, true], { index: 'userIdAndIsMember' })
.eqJoin('communityId', db.table('communities'))
.filter(row => row('right').hasFields('deletedAt').not())
.zip()
.map(row => row('communityId'))
.run();
};
// prettier-ignore
export const getUsersJoinedPrivateChannelIds = (userId: string): Promise<Array<string>> => {
return db
.table('usersChannels')
.getAll([userId, "member"], [userId, "moderator"], [userId, "owner"], { index: 'userIdAndRole' })
.eqJoin('channelId', db.table('channels'))
.filter(row => row('right')('isPrivate').eq(true).and(row('right').hasFields('deletedAt').not()))
.without({ left: ['id'] })
.zip()
.map(row => row('id'))
.run();
};
// prettier-ignore
export const getUsersJoinedPrivateCommunityIds = (userId: string): Promise<Array<string>> => {
return db
.table('usersCommunities')
.getAll([userId, true], { index: 'userIdAndIsMember' })
.eqJoin('communityId', db.table('communities'))
.filter(row => row('right')('isPrivate').eq(true).and(row('right').hasFields('deletedAt').not()))
.without({ left: ['id'] })
.zip()
.map(row => row('id'))
.run();
};
|