feat: デフォルトでフォローするユーザーを指定できるように
This commit is contained in:
parent
825d218692
commit
e06a6a1f19
15 changed files with 291 additions and 2 deletions
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and misskey-project
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class DefaultFollowUsers1728986848483 {
|
||||
name = 'defaultFollowUsers1728986848483'
|
||||
|
||||
async up(queryRunner) {
|
||||
await queryRunner.query(`ALTER TABLE "meta" ADD "defaultFollowedUsers" character varying(1024) array NOT NULL DEFAULT '{}'`);
|
||||
await queryRunner.query(`ALTER TABLE "meta" ADD "permanentFollowedUsers" character varying(1024) array NOT NULL DEFAULT '{}'`);
|
||||
}
|
||||
|
||||
async down(queryRunner) {
|
||||
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "permanentFollowedUsers"`);
|
||||
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "defaultFollowedUsers"`);
|
||||
}
|
||||
}
|
||||
|
|
@ -21,6 +21,7 @@ import { bindThis } from '@/decorators.js';
|
|||
import UsersChart from '@/core/chart/charts/users.js';
|
||||
import { UtilityService } from '@/core/UtilityService.js';
|
||||
import { UserService } from '@/core/UserService.js';
|
||||
import { UserFollowingService } from '@/core/UserFollowingService.js';
|
||||
|
||||
@Injectable()
|
||||
export class SignupService {
|
||||
|
|
@ -39,6 +40,7 @@ export class SignupService {
|
|||
|
||||
private utilityService: UtilityService,
|
||||
private userService: UserService,
|
||||
private userFollowingService: UserFollowingService,
|
||||
private userEntityService: UserEntityService,
|
||||
private idService: IdService,
|
||||
private instanceActorService: InstanceActorService,
|
||||
|
|
@ -151,6 +153,23 @@ export class SignupService {
|
|||
});
|
||||
|
||||
this.usersChart.update(account, true);
|
||||
|
||||
//#region Default following
|
||||
if (
|
||||
!isTheFirstUser &&
|
||||
(this.meta.defaultFollowedUsers.length > 0 || this.meta.permanentFollowedUsers.length > 0)
|
||||
) {
|
||||
const userIdsToFollow = [
|
||||
...this.meta.defaultFollowedUsers,
|
||||
...this.meta.permanentFollowedUsers,
|
||||
];
|
||||
|
||||
await Promise.allSettled(userIdsToFollow.map(async userId => {
|
||||
await this.userFollowingService.follow(account, { id: userId });
|
||||
}));
|
||||
}
|
||||
//#endregion
|
||||
|
||||
this.userService.notifySystemWebhook(account, 'userCreated');
|
||||
|
||||
return { account, secret };
|
||||
|
|
|
|||
|
|
@ -61,6 +61,22 @@ export class MiMeta {
|
|||
})
|
||||
public pinnedUsers: string[];
|
||||
|
||||
/**
|
||||
* アカウント作成の段階でデフォルトでフォローしているユーザー(あとから解除可能)
|
||||
*/
|
||||
@Column('varchar', {
|
||||
length: 1024, array: true, default: '{}',
|
||||
})
|
||||
public defaultFollowedUsers: string[];
|
||||
|
||||
/**
|
||||
* デフォルトでフォローしていて、フォロー解除・ブロック・ミュートができないユーザー
|
||||
*/
|
||||
@Column('varchar', {
|
||||
length: 1024, array: true, default: '{}',
|
||||
})
|
||||
public permanentFollowedUsers: string[];
|
||||
|
||||
@Column('varchar', {
|
||||
length: 1024, array: true, default: '{}',
|
||||
})
|
||||
|
|
|
|||
|
|
@ -149,6 +149,20 @@ export const meta = {
|
|||
type: 'string',
|
||||
},
|
||||
},
|
||||
defaultFollowedUsers: {
|
||||
type: 'array',
|
||||
optional: false, nullable: false,
|
||||
items: {
|
||||
type: 'string',
|
||||
},
|
||||
},
|
||||
permanentFollowedUsers: {
|
||||
type: 'array',
|
||||
optional: false, nullable: false,
|
||||
items: {
|
||||
type: 'string',
|
||||
},
|
||||
},
|
||||
hiddenTags: {
|
||||
type: 'array',
|
||||
optional: false, nullable: false,
|
||||
|
|
@ -591,6 +605,8 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
|||
cacheRemoteFiles: instance.cacheRemoteFiles,
|
||||
cacheRemoteSensitiveFiles: instance.cacheRemoteSensitiveFiles,
|
||||
pinnedUsers: instance.pinnedUsers,
|
||||
defaultFollowedUsers: instance.defaultFollowedUsers,
|
||||
permanentFollowedUsers: instance.permanentFollowedUsers,
|
||||
hiddenTags: instance.hiddenTags,
|
||||
blockedHosts: instance.blockedHosts,
|
||||
silencedHosts: instance.silencedHosts,
|
||||
|
|
|
|||
|
|
@ -3,11 +3,13 @@
|
|||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
import { Injectable } from '@nestjs/common';
|
||||
import { Injectable, Inject } from '@nestjs/common';
|
||||
import { DI } from '@/di-symbols.js';
|
||||
import type { MiMeta } from '@/models/Meta.js';
|
||||
import { ModerationLogService } from '@/core/ModerationLogService.js';
|
||||
import { Endpoint } from '@/server/api/endpoint-base.js';
|
||||
import { MetaService } from '@/core/MetaService.js';
|
||||
import { ApiError } from '../../error.js';
|
||||
|
||||
export const meta = {
|
||||
tags: ['admin'],
|
||||
|
|
@ -15,6 +17,14 @@ export const meta = {
|
|||
requireCredential: true,
|
||||
requireAdmin: true,
|
||||
kind: 'write:admin:meta',
|
||||
|
||||
errors: {
|
||||
followedUserDuplicated: {
|
||||
message: 'Some items in "defaultFollowedUsers" and "permanentFollowedUsers" are duplicated.',
|
||||
code: 'FOLLOWED_USER_DUPLICATED',
|
||||
id: 'bcf088ec-fec5-42d0-8b9e-16d3b4797a4d',
|
||||
},
|
||||
},
|
||||
} as const;
|
||||
|
||||
export const paramDef = {
|
||||
|
|
@ -26,6 +36,16 @@ export const paramDef = {
|
|||
type: 'string',
|
||||
},
|
||||
},
|
||||
defaultFollowedUsers: {
|
||||
type: 'array', nullable: true, items: {
|
||||
type: 'string',
|
||||
},
|
||||
},
|
||||
permanentFollowedUsers: {
|
||||
type: 'array', nullable: true, items: {
|
||||
type: 'string',
|
||||
},
|
||||
},
|
||||
hiddenTags: {
|
||||
type: 'array', nullable: true, items: {
|
||||
type: 'string',
|
||||
|
|
@ -192,6 +212,9 @@ export const paramDef = {
|
|||
@Injectable()
|
||||
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
||||
constructor(
|
||||
@Inject(DI.meta)
|
||||
private serverSettings: MiMeta,
|
||||
|
||||
private metaService: MetaService,
|
||||
private moderationLogService: ModerationLogService,
|
||||
) {
|
||||
|
|
@ -206,6 +229,22 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
|||
set.pinnedUsers = ps.pinnedUsers.filter(Boolean);
|
||||
}
|
||||
|
||||
if (Array.isArray(ps.defaultFollowedUsers)) {
|
||||
if (ps.defaultFollowedUsers.some(x => this.serverSettings.permanentFollowedUsers.includes(x) || ps.permanentFollowedUsers?.includes(x))) {
|
||||
throw new ApiError(meta.errors.followedUserDuplicated);
|
||||
}
|
||||
|
||||
set.defaultFollowedUsers = ps.defaultFollowedUsers.filter(Boolean);
|
||||
}
|
||||
|
||||
if (Array.isArray(ps.permanentFollowedUsers)) {
|
||||
if (ps.permanentFollowedUsers.some(x => this.serverSettings.defaultFollowedUsers.includes(x) || ps.defaultFollowedUsers?.includes(x))) {
|
||||
throw new ApiError(meta.errors.followedUserDuplicated);
|
||||
}
|
||||
|
||||
set.permanentFollowedUsers = ps.permanentFollowedUsers.filter(Boolean);
|
||||
}
|
||||
|
||||
if (Array.isArray(ps.hiddenTags)) {
|
||||
set.hiddenTags = ps.hiddenTags.filter(Boolean);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,10 @@ import ms from 'ms';
|
|||
import { Inject, Injectable } from '@nestjs/common';
|
||||
import { Endpoint } from '@/server/api/endpoint-base.js';
|
||||
import type { UsersRepository, BlockingsRepository } from '@/models/_.js';
|
||||
import type { MiMeta } from '@/models/Meta.js';
|
||||
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
||||
import { UserBlockingService } from '@/core/UserBlockingService.js';
|
||||
import { RoleService } from '@/core/RoleService.js';
|
||||
import { DI } from '@/di-symbols.js';
|
||||
import { GetterService } from '@/server/api/GetterService.js';
|
||||
import { ApiError } from '../../error.js';
|
||||
|
|
@ -43,6 +45,13 @@ export const meta = {
|
|||
code: 'ALREADY_BLOCKING',
|
||||
id: '787fed64-acb9-464a-82eb-afbd745b9614',
|
||||
},
|
||||
|
||||
cannotBlockDueToServerPolicy: {
|
||||
message: 'You cannot block that user due to server policy.',
|
||||
code: 'CANNOT_BLOCK_DUE_TO_SERVER_POLICY',
|
||||
id: 'e2f04d25-0d94-4ac3-a4d8-ba401062741b',
|
||||
httpStatusCode: 403,
|
||||
},
|
||||
},
|
||||
|
||||
res: {
|
||||
|
|
@ -63,12 +72,16 @@ export const paramDef = {
|
|||
@Injectable()
|
||||
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
||||
constructor(
|
||||
@Inject(DI.meta)
|
||||
private serverSettings: MiMeta,
|
||||
|
||||
@Inject(DI.usersRepository)
|
||||
private usersRepository: UsersRepository,
|
||||
|
||||
@Inject(DI.blockingsRepository)
|
||||
private blockingsRepository: BlockingsRepository,
|
||||
|
||||
private roleService: RoleService,
|
||||
private userEntityService: UserEntityService,
|
||||
private getterService: GetterService,
|
||||
private userBlockingService: UserBlockingService,
|
||||
|
|
@ -99,6 +112,13 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
|||
throw new ApiError(meta.errors.alreadyBlocking);
|
||||
}
|
||||
|
||||
if (
|
||||
this.serverSettings.permanentFollowedUsers.includes(blockee.id) &&
|
||||
!await this.roleService.isModerator(blocker)
|
||||
) {
|
||||
throw new ApiError(meta.errors.cannotBlockDueToServerPolicy);
|
||||
}
|
||||
|
||||
await this.userBlockingService.block(blocker, blockee);
|
||||
|
||||
return await this.userEntityService.pack(blockee.id, blocker, {
|
||||
|
|
|
|||
|
|
@ -7,8 +7,10 @@ import ms from 'ms';
|
|||
import { Inject, Injectable } from '@nestjs/common';
|
||||
import { Endpoint } from '@/server/api/endpoint-base.js';
|
||||
import type { FollowingsRepository } from '@/models/_.js';
|
||||
import type { MiMeta } from '@/models/Meta.js';
|
||||
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
||||
import { UserFollowingService } from '@/core/UserFollowingService.js';
|
||||
import { RoleService } from '@/core/RoleService.js';
|
||||
import { DI } from '@/di-symbols.js';
|
||||
import { GetterService } from '@/server/api/GetterService.js';
|
||||
import { ApiError } from '../../error.js';
|
||||
|
|
@ -43,6 +45,13 @@ export const meta = {
|
|||
code: 'NOT_FOLLOWING',
|
||||
id: '5dbf82f5-c92b-40b1-87d1-6c8c0741fd09',
|
||||
},
|
||||
|
||||
cannotUnfollowDueToServerPolicy: {
|
||||
message: 'You cannot unfollow that user due to server policy.',
|
||||
code: 'CANNOT_UNFOLLOW_DUE_TO_SERVER_POLICY',
|
||||
id: '19f25f61-0141-4683-99dc-217a88d633cb',
|
||||
httpStatusCode: 403,
|
||||
},
|
||||
},
|
||||
|
||||
res: {
|
||||
|
|
@ -63,9 +72,13 @@ export const paramDef = {
|
|||
@Injectable()
|
||||
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
||||
constructor(
|
||||
@Inject(DI.meta)
|
||||
private serverSettings: MiMeta,
|
||||
|
||||
@Inject(DI.followingsRepository)
|
||||
private followingsRepository: FollowingsRepository,
|
||||
|
||||
private roleService: RoleService,
|
||||
private userEntityService: UserEntityService,
|
||||
private getterService: GetterService,
|
||||
private userFollowingService: UserFollowingService,
|
||||
|
|
@ -96,6 +109,13 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
|||
throw new ApiError(meta.errors.notFollowing);
|
||||
}
|
||||
|
||||
if (
|
||||
this.serverSettings.permanentFollowedUsers.includes(followee.id) &&
|
||||
!await this.roleService.isModerator(follower)
|
||||
) {
|
||||
throw new ApiError(meta.errors.cannotUnfollowDueToServerPolicy);
|
||||
}
|
||||
|
||||
await this.userFollowingService.unfollow(follower, followee);
|
||||
|
||||
return await this.userEntityService.pack(followee.id, me);
|
||||
|
|
|
|||
|
|
@ -7,9 +7,11 @@ import { Inject, Injectable } from '@nestjs/common';
|
|||
import ms from 'ms';
|
||||
import { Endpoint } from '@/server/api/endpoint-base.js';
|
||||
import type { MutingsRepository } from '@/models/_.js';
|
||||
import type { MiMeta } from '@/models/Meta.js';
|
||||
import { DI } from '@/di-symbols.js';
|
||||
import { GetterService } from '@/server/api/GetterService.js';
|
||||
import { UserMutingService } from '@/core/UserMutingService.js';
|
||||
import { RoleService } from '@/core/RoleService.js';
|
||||
import { ApiError } from '../../error.js';
|
||||
|
||||
export const meta = {
|
||||
|
|
@ -43,6 +45,13 @@ export const meta = {
|
|||
code: 'ALREADY_MUTING',
|
||||
id: '7e7359cb-160c-4956-b08f-4d1c653cd007',
|
||||
},
|
||||
|
||||
cannotMuteDueToServerPolicy: {
|
||||
message: 'You cannot mute that user due to server policy.',
|
||||
code: 'CANNOT_MUTE_DUE_TO_SERVER_POLICY',
|
||||
id: '15273a89-374d-49fa-8df6-8bb3feeea455',
|
||||
httpStatusCode: 403,
|
||||
},
|
||||
},
|
||||
} as const;
|
||||
|
||||
|
|
@ -62,9 +71,13 @@ export const paramDef = {
|
|||
@Injectable()
|
||||
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
||||
constructor(
|
||||
@Inject(DI.meta)
|
||||
private serverSettings: MiMeta,
|
||||
|
||||
@Inject(DI.mutingsRepository)
|
||||
private mutingsRepository: MutingsRepository,
|
||||
|
||||
private roleService: RoleService,
|
||||
private getterService: GetterService,
|
||||
private userMutingService: UserMutingService,
|
||||
) {
|
||||
|
|
@ -94,6 +107,13 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
|||
throw new ApiError(meta.errors.alreadyMuting);
|
||||
}
|
||||
|
||||
if (
|
||||
this.serverSettings.permanentFollowedUsers.includes(mutee.id) &&
|
||||
!await this.roleService.isModerator(muter)
|
||||
) {
|
||||
throw new ApiError(meta.errors.cannotMuteDueToServerPolicy);
|
||||
}
|
||||
|
||||
if (ps.expiresAt && ps.expiresAt <= Date.now()) {
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,8 +9,10 @@ import { Endpoint } from '@/server/api/endpoint-base.js';
|
|||
import { DI } from '@/di-symbols.js';
|
||||
import { GetterService } from '@/server/api/GetterService.js';
|
||||
import { ApiError } from '../../error.js';
|
||||
import { UserRenoteMutingService } from "@/core/UserRenoteMutingService.js";
|
||||
import { RoleService } from '@/core/RoleService.js';
|
||||
import { UserRenoteMutingService } from '@/core/UserRenoteMutingService.js';
|
||||
import type { RenoteMutingsRepository } from '@/models/_.js';
|
||||
import type { MiMeta } from '@/models/Meta.js';
|
||||
|
||||
export const meta = {
|
||||
tags: ['account'],
|
||||
|
|
@ -43,6 +45,13 @@ export const meta = {
|
|||
code: 'ALREADY_MUTING',
|
||||
id: 'ccfecbe4-1f1c-4fc2-8a3d-c3ffee61cb7b',
|
||||
},
|
||||
|
||||
cannotMuteDueToServerPolicy: {
|
||||
message: 'You cannot mute that user due to server policy.',
|
||||
code: 'CANNOT_MUTE_DUE_TO_SERVER_POLICY',
|
||||
id: '15273a89-374d-49fa-8df6-8bb3feeea455',
|
||||
httpStatusCode: 403,
|
||||
},
|
||||
},
|
||||
} as const;
|
||||
|
||||
|
|
@ -57,9 +66,13 @@ export const paramDef = {
|
|||
@Injectable()
|
||||
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
||||
constructor(
|
||||
@Inject(DI.meta)
|
||||
private serverSettings: MiMeta,
|
||||
|
||||
@Inject(DI.renoteMutingsRepository)
|
||||
private renoteMutingsRepository: RenoteMutingsRepository,
|
||||
|
||||
private roleService: RoleService,
|
||||
private getterService: GetterService,
|
||||
private userRenoteMutingService: UserRenoteMutingService,
|
||||
) {
|
||||
|
|
@ -89,6 +102,13 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
|||
throw new ApiError(meta.errors.alreadyMuting);
|
||||
}
|
||||
|
||||
if (
|
||||
this.serverSettings.permanentFollowedUsers.includes(mutee.id) &&
|
||||
!await this.roleService.isModerator(muter)
|
||||
) {
|
||||
throw new ApiError(meta.errors.cannotMuteDueToServerPolicy);
|
||||
}
|
||||
|
||||
// Create mute
|
||||
await this.userRenoteMutingService.mute(muter, mutee);
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue