Skip to content

Commit

Permalink
Merge pull request #12 from anatawa12/niri-la/mute-channel-from-featured
Browse files Browse the repository at this point in the history
chore: ハイライトから写真のないおはnoteとチャンネル投稿を除外する
  • Loading branch information
anatawa12 authored Jul 27, 2023
2 parents 0b17d57 + 72f24f0 commit 21b3edc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
- identicon生成を無効にしてパフォーマンスを向上させることができるようになりました
- サーバーのマシン情報の公開を無効にしてパフォーマンスを向上させることができるようになりました
- 管理者専用の他人を見るwebhookが増えました
- ハイライトからおはnoteとチャンネル投稿を除外するようになりました

### Client
- ドライブファイルのメニューで画像をクロップできるように
Expand Down
13 changes: 13 additions & 0 deletions packages/backend/src/server/api/endpoints/notes/featured.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Inject, Injectable } from '@nestjs/common';
import { Brackets } from 'typeorm';
import type { NotesRepository } from '@/models/index.js';
import { Endpoint } from '@/server/api/endpoint-base.js';
import { QueryService } from '@/core/QueryService.js';
Expand Down Expand Up @@ -60,6 +61,18 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {

if (ps.channelId) query.andWhere('note.channelId = :channelId', { channelId: ps.channelId });

if (!ps.channelId) {
// featured for welcome page. filter some notes
query.andWhere('note.channelId IS NULL', { channelId: ps.channelId });
query.andWhere(
new Brackets(qb => {
qb.where('note.text NOT LIKE \'%おはよう%\'')
.andWhere('note.text NOT LIKE \'%:ohayo_nirila_misskey:%\'')
.orWhere('note.fileIds != \'{}\'');
}),
);
}

if (me) this.queryService.generateMutedUserQuery(query, me);
if (me) this.queryService.generateBlockedUserQuery(query, me);

Expand Down

0 comments on commit 21b3edc

Please sign in to comment.