mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 10:03:09 +02:00
d071d18dd7
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
24 lines
932 B
TypeScript
24 lines
932 B
TypeScript
import { User } from '@/models/entities/user.js';
|
|
import { ChannelFollowings } from '@/models/index.js';
|
|
import { Brackets, SelectQueryBuilder } from 'typeorm';
|
|
|
|
export function generateChannelQuery(q: SelectQueryBuilder<any>, me?: { id: User['id'] } | null) {
|
|
if (me == null) {
|
|
q.andWhere('note.channelId IS NULL');
|
|
} else {
|
|
q.leftJoinAndSelect('note.channel', 'channel');
|
|
|
|
const channelFollowingQuery = ChannelFollowings.createQueryBuilder('channelFollowing')
|
|
.select('channelFollowing.followeeId')
|
|
.where('channelFollowing.followerId = :followerId', { followerId: me.id });
|
|
|
|
q.andWhere(new Brackets(qb => { qb
|
|
// チャンネルのノートではない
|
|
.where('note.channelId IS NULL')
|
|
// または自分がフォローしているチャンネルのノート
|
|
.orWhere(`note.channelId IN (${ channelFollowingQuery.getQuery() })`);
|
|
}));
|
|
|
|
q.setParameters(channelFollowingQuery.getParameters());
|
|
}
|
|
}
|