Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
// @flow
const { db } = require('shared/db');
import type { DBChannel } from 'shared/types';
// reusable query parts -- begin
const channelsByCommunitiesQuery = (...communityIds: string[]) =>
db
.table('channels')
.getAll(...communityIds, { index: 'communityId' })
.filter(channel => channel.hasFields('deletedAt').not());
const channelsByIdsQuery = (...channelIds: string[]) =>
db
.table('channels')
.getAll(...channelIds)
.filter(channel => channel.hasFields('deletedAt').not());
const threadsByChannelsQuery = (...channelIds: string[]) =>
channelsByIdsQuery(...channelIds)
.eqJoin('id', db.table('threads'), { index: 'channelId' })
.map(row => row('right'))
.filter(thread => db.not(thread.hasFields('deletedAt')));
const membersByChannelsQuery = (...channelIds: string[]) =>
channelsByIdsQuery(...channelIds)
.eqJoin('id', db.table('usersChannels'), { index: 'channelId' })
.map(row => row('right'))
.filter({ isBlocked: false, isPending: false, isMember: true });
// reusable query parts -- end
// prettier-ignore
const getChannelsByCommunity = (communityId: string): Promise<Array<DBChannel>> => {
return channelsByCommunitiesQuery(communityId).run();
};
/*
If a non-user is viewing a community page, they should only see threads
from public channels. We use this function to return an array of channelIds
that are public, and pass them into a getThreads function
*/
// prettier-ignore
const getPublicChannelsByCommunity = (communityId: string): Promise<Array<string>> => {
return channelsByCommunitiesQuery(communityId)
.filter({ isPrivate: false })
.filter(row => row.hasFields('archivedAt').not())
.map(c => c('id'))
.run();
};
/*
If a user is viewing a community, they should see threads from all public channels as well as from private channels they are a member of.
This function returns an array of objects with the field 'id' that corresponds
to a channelId. This array of IDs will be passed into a threads method which
will only return threads in those channels
*/
// prettier-ignore
const getChannelsByUserAndCommunity = async (communityId: string, userId: string): Promise<Array<string>> => {
const channels = await channelsByCommunitiesQuery(communityId).run();
const unarchived = channels.filter(channel => !channel.archivedAt)
const channelIds = unarchived.map(channel => channel.id)
return db
.table('usersChannels')
.getAll(...channelIds.map(id => ([userId, id])), {
index: 'userIdAndChannelId',
})
.filter({ isMember: true })('channelId')
.run();
};
const getChannelsByUser = (userId: string): Promise<Array<DBChannel>> => {
return db
.table('usersChannels')
.getAll([userId, 'member'], [userId, 'moderator'], [userId, 'owner'], {
index: 'userIdAndRole',
})
.eqJoin('channelId', db.table('channels'))
.without({ left: ['id', 'channelId', 'userId', 'createdAt'] })
.zip()
.filter(channel => db.not(channel.hasFields('deletedAt')))
.run();
};
const getChannelBySlug = async (
channelSlug: string,
communitySlug: string
): Promise<?DBChannel> => {
const [communityId] = await db
.table('communities')
.getAll(communitySlug, { index: 'slug' })('id')
.run();
if (!communityId) return null;
return db
.table('channels')
.getAll(communityId, { index: 'communityId' })
.filter(channel =>
channel('slug')
.eq(channelSlug)
.and(db.not(channel.hasFields('deletedAt')))
)
.run()
.then(res => {
if (Array.isArray(res) && res.length > 0) return res[0];
return null;
});
};
const getChannelById = async (id: string) => {
return (await channelsByIdsQuery(id).run())[0] || null;
};
type GetChannelByIdArgs = {|
id: string,
|};
type GetChannelBySlugArgs = {|
slug: string,
communitySlug: string,
|};
export type GetChannelArgs = GetChannelByIdArgs | GetChannelBySlugArgs;
const getChannels = (channelIds: Array<string>): Promise<Array<DBChannel>> => {
return channelsByIdsQuery(...channelIds).run();
};
export type EditChannelInput = {
input: {
channelId: string,
name: string,
description: string,
slug: string,
isPrivate: Boolean,
},
};
// prettier-ignore
const editChannel = async ({ input }: EditChannelInput): Promise<DBChannel> => {
const { name, slug, description, isPrivate, channelId } = input;
const channelRecord = await db
.table('channels')
.get(channelId)
.run()
.then(result => {
return Object.assign({}, result, {
name,
description,
slug,
isPrivate,
});
});
return db
.table('channels')
.get(channelId)
.update({ ...channelRecord }, { returnChanges: 'always' })
.run()
.then(result => {
// if an update happened
if (result.replaced === 1) {
return result.changes[0].new_val;
}
// an update was triggered from the client, but no data was changed
if (result.unchanged === 1) {
return result.changes[0].old_val;
}
return null;
});
};
const deleteChannel = (channelId: string, userId: string): Promise<Boolean> => {
return db
.table('channels')
.get(channelId)
.update(
{
deletedBy: userId,
deletedAt: new Date(),
slug: db.uuid(),
},
{
returnChanges: true,
nonAtomic: true,
}
)
.run();
};
const setMemberCount = (
channelId: string,
value: number
): Promise<DBChannel> => {
return db
.table('channels')
.get(channelId)
.update(
{
memberCount: value,
},
{ returnChanges: true }
)
.run()
.then(result => result.changes[0].new_val || result.changes[0].old_val);
};
const decrementMemberCount = (channelId: string): Promise<DBChannel> => {
return db
.table('channels')
.get(channelId)
.update(
{
memberCount: db
.row('memberCount')
.default(1)
.sub(1),
},
{ returnChanges: true }
)
.run()
.then(result => result.changes[0].new_val || result.changes[0].old_val);
};
type GroupedCount = {
group: string,
reduction: number,
};
// prettier-ignore
const getChannelsThreadCounts = (channelIds: Array<string>): Promise<Array<GroupedCount>> => {
return threadsByChannelsQuery(...channelIds)
.group('channelId')
.count()
.run();
};
module.exports = {
getChannelBySlug,
getChannelById,
getChannelsByUser,
getChannelsByCommunity,
getPublicChannelsByCommunity,
getChannelsByUserAndCommunity,
editChannel,
deleteChannel,
getChannels,
setMemberCount,
decrementMemberCount,
getChannelsThreadCounts,
__forQueryTests: {
channelsByCommunitiesQuery,
channelsByIdsQuery,
threadsByChannelsQuery,
membersByChannelsQuery,
},
};