refactor: fix type
This commit is contained in:
parent
6b31ea1992
commit
02bb36cdc4
|
@ -271,7 +271,7 @@ export async function createPerson(uri: string, resolver?: Resolver): Promise<Us
|
||||||
* @param resolver Resolver
|
* @param resolver Resolver
|
||||||
* @param hint Hint of Person object (この値が正当なPersonの場合、Remote resolveをせずに更新に利用します)
|
* @param hint Hint of Person object (この値が正当なPersonの場合、Remote resolveをせずに更新に利用します)
|
||||||
*/
|
*/
|
||||||
export async function updatePerson(uri: string, resolver?: Resolver | null, hint?: Record<string, unknown>): Promise<void> {
|
export async function updatePerson(uri: string, resolver?: Resolver | null, hint?: IObject): Promise<void> {
|
||||||
if (typeof uri !== 'string') throw new Error('uri is not string');
|
if (typeof uri !== 'string') throw new Error('uri is not string');
|
||||||
|
|
||||||
// URIがこのサーバーを指しているならスキップ
|
// URIがこのサーバーを指しているならスキップ
|
||||||
|
@ -289,7 +289,7 @@ export async function updatePerson(uri: string, resolver?: Resolver | null, hint
|
||||||
|
|
||||||
if (resolver == null) resolver = new Resolver();
|
if (resolver == null) resolver = new Resolver();
|
||||||
|
|
||||||
const object = hint || await resolver.resolve(uri) as any;
|
const object = hint || await resolver.resolve(uri);
|
||||||
|
|
||||||
const person = validateActor(object, uri);
|
const person = validateActor(object, uri);
|
||||||
|
|
||||||
|
|
|
@ -1,32 +1,26 @@
|
||||||
import Router from '@koa/router';
|
import Router from '@koa/router';
|
||||||
|
import { FindOptionsWhere, IsNull, LessThan } from 'typeorm';
|
||||||
import config from '@/config/index.js';
|
import config from '@/config/index.js';
|
||||||
import $ from 'cafy';
|
|
||||||
import { ID } from '@/misc/cafy-id.js';
|
|
||||||
import * as url from '@/prelude/url.js';
|
import * as url from '@/prelude/url.js';
|
||||||
import { renderActivity } from '@/remote/activitypub/renderer/index.js';
|
import { renderActivity } from '@/remote/activitypub/renderer/index.js';
|
||||||
import renderOrderedCollection from '@/remote/activitypub/renderer/ordered-collection.js';
|
import renderOrderedCollection from '@/remote/activitypub/renderer/ordered-collection.js';
|
||||||
import renderOrderedCollectionPage from '@/remote/activitypub/renderer/ordered-collection-page.js';
|
import renderOrderedCollectionPage from '@/remote/activitypub/renderer/ordered-collection-page.js';
|
||||||
import renderFollowUser from '@/remote/activitypub/renderer/follow-user.js';
|
import renderFollowUser from '@/remote/activitypub/renderer/follow-user.js';
|
||||||
import { setResponseType } from '../activitypub.js';
|
|
||||||
import { Users, Followings, UserProfiles } from '@/models/index.js';
|
import { Users, Followings, UserProfiles } from '@/models/index.js';
|
||||||
import { IsNull, LessThan } from 'typeorm';
|
import { Following } from '@/models/entities/following.js';
|
||||||
|
import { setResponseType } from '../activitypub.js';
|
||||||
|
|
||||||
export default async (ctx: Router.RouterContext) => {
|
export default async (ctx: Router.RouterContext) => {
|
||||||
const userId = ctx.params.user;
|
const userId = ctx.params.user;
|
||||||
|
|
||||||
// Get 'cursor' parameter
|
const cursor = ctx.request.query.cursor;
|
||||||
const [cursor, cursorErr] = $.default.optional.type(ID).get(ctx.request.query.cursor);
|
if (cursor != null && typeof cursor !== 'string') {
|
||||||
|
|
||||||
// Get 'page' parameter
|
|
||||||
const pageErr = !$.default.optional.str.or(['true', 'false']).ok(ctx.request.query.page);
|
|
||||||
const page: boolean = ctx.request.query.page === 'true';
|
|
||||||
|
|
||||||
// Validate parameters
|
|
||||||
if (cursorErr || pageErr) {
|
|
||||||
ctx.status = 400;
|
ctx.status = 400;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const page = ctx.request.query.page === 'true';
|
||||||
|
|
||||||
const user = await Users.findOneBy({
|
const user = await Users.findOneBy({
|
||||||
id: userId,
|
id: userId,
|
||||||
host: IsNull(),
|
host: IsNull(),
|
||||||
|
@ -57,7 +51,7 @@ export default async (ctx: Router.RouterContext) => {
|
||||||
if (page) {
|
if (page) {
|
||||||
const query = {
|
const query = {
|
||||||
followeeId: user.id,
|
followeeId: user.id,
|
||||||
} as any;
|
} as FindOptionsWhere<Following>;
|
||||||
|
|
||||||
// カーソルが指定されている場合
|
// カーソルが指定されている場合
|
||||||
if (cursor) {
|
if (cursor) {
|
||||||
|
@ -86,7 +80,7 @@ export default async (ctx: Router.RouterContext) => {
|
||||||
inStock ? `${partOf}?${url.query({
|
inStock ? `${partOf}?${url.query({
|
||||||
page: 'true',
|
page: 'true',
|
||||||
cursor: followings[followings.length - 1].id,
|
cursor: followings[followings.length - 1].id,
|
||||||
})}` : undefined
|
})}` : undefined,
|
||||||
);
|
);
|
||||||
|
|
||||||
ctx.body = renderActivity(rendered);
|
ctx.body = renderActivity(rendered);
|
||||||
|
|
|
@ -1,33 +1,26 @@
|
||||||
import Router from '@koa/router';
|
import Router from '@koa/router';
|
||||||
|
import { LessThan, IsNull, FindOptionsWhere } from 'typeorm';
|
||||||
import config from '@/config/index.js';
|
import config from '@/config/index.js';
|
||||||
import $ from 'cafy';
|
|
||||||
import { ID } from '@/misc/cafy-id.js';
|
|
||||||
import * as url from '@/prelude/url.js';
|
import * as url from '@/prelude/url.js';
|
||||||
import { renderActivity } from '@/remote/activitypub/renderer/index.js';
|
import { renderActivity } from '@/remote/activitypub/renderer/index.js';
|
||||||
import renderOrderedCollection from '@/remote/activitypub/renderer/ordered-collection.js';
|
import renderOrderedCollection from '@/remote/activitypub/renderer/ordered-collection.js';
|
||||||
import renderOrderedCollectionPage from '@/remote/activitypub/renderer/ordered-collection-page.js';
|
import renderOrderedCollectionPage from '@/remote/activitypub/renderer/ordered-collection-page.js';
|
||||||
import renderFollowUser from '@/remote/activitypub/renderer/follow-user.js';
|
import renderFollowUser from '@/remote/activitypub/renderer/follow-user.js';
|
||||||
import { setResponseType } from '../activitypub.js';
|
|
||||||
import { Users, Followings, UserProfiles } from '@/models/index.js';
|
import { Users, Followings, UserProfiles } from '@/models/index.js';
|
||||||
import { LessThan, IsNull, FindOptionsWhere } from 'typeorm';
|
|
||||||
import { Following } from '@/models/entities/following.js';
|
import { Following } from '@/models/entities/following.js';
|
||||||
|
import { setResponseType } from '../activitypub.js';
|
||||||
|
|
||||||
export default async (ctx: Router.RouterContext) => {
|
export default async (ctx: Router.RouterContext) => {
|
||||||
const userId = ctx.params.user;
|
const userId = ctx.params.user;
|
||||||
|
|
||||||
// Get 'cursor' parameter
|
const cursor = ctx.request.query.cursor;
|
||||||
const [cursor, cursorErr] = $.default.optional.type(ID).get(ctx.request.query.cursor);
|
if (cursor != null && typeof cursor !== 'string') {
|
||||||
|
|
||||||
// Get 'page' parameter
|
|
||||||
const pageErr = !$.default.optional.str.or(['true', 'false']).ok(ctx.request.query.page);
|
|
||||||
const page: boolean = ctx.request.query.page === 'true';
|
|
||||||
|
|
||||||
// Validate parameters
|
|
||||||
if (cursorErr || pageErr) {
|
|
||||||
ctx.status = 400;
|
ctx.status = 400;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const page = ctx.request.query.page === 'true';
|
||||||
|
|
||||||
const user = await Users.findOneBy({
|
const user = await Users.findOneBy({
|
||||||
id: userId,
|
id: userId,
|
||||||
host: IsNull(),
|
host: IsNull(),
|
||||||
|
@ -87,7 +80,7 @@ export default async (ctx: Router.RouterContext) => {
|
||||||
inStock ? `${partOf}?${url.query({
|
inStock ? `${partOf}?${url.query({
|
||||||
page: 'true',
|
page: 'true',
|
||||||
cursor: followings[followings.length - 1].id,
|
cursor: followings[followings.length - 1].id,
|
||||||
})}` : undefined
|
})}` : undefined,
|
||||||
);
|
);
|
||||||
|
|
||||||
ctx.body = renderActivity(rendered);
|
ctx.body = renderActivity(rendered);
|
||||||
|
|
|
@ -1,36 +1,37 @@
|
||||||
import Router from '@koa/router';
|
import Router from '@koa/router';
|
||||||
|
import { Brackets, IsNull } from 'typeorm';
|
||||||
import config from '@/config/index.js';
|
import config from '@/config/index.js';
|
||||||
import $ from 'cafy';
|
|
||||||
import { ID } from '@/misc/cafy-id.js';
|
|
||||||
import { renderActivity } from '@/remote/activitypub/renderer/index.js';
|
import { renderActivity } from '@/remote/activitypub/renderer/index.js';
|
||||||
import renderOrderedCollection from '@/remote/activitypub/renderer/ordered-collection.js';
|
import renderOrderedCollection from '@/remote/activitypub/renderer/ordered-collection.js';
|
||||||
import renderOrderedCollectionPage from '@/remote/activitypub/renderer/ordered-collection-page.js';
|
import renderOrderedCollectionPage from '@/remote/activitypub/renderer/ordered-collection-page.js';
|
||||||
import { setResponseType } from '../activitypub.js';
|
|
||||||
import renderNote from '@/remote/activitypub/renderer/note.js';
|
import renderNote from '@/remote/activitypub/renderer/note.js';
|
||||||
import renderCreate from '@/remote/activitypub/renderer/create.js';
|
import renderCreate from '@/remote/activitypub/renderer/create.js';
|
||||||
import renderAnnounce from '@/remote/activitypub/renderer/announce.js';
|
import renderAnnounce from '@/remote/activitypub/renderer/announce.js';
|
||||||
import { countIf } from '@/prelude/array.js';
|
import { countIf } from '@/prelude/array.js';
|
||||||
import * as url from '@/prelude/url.js';
|
import * as url from '@/prelude/url.js';
|
||||||
import { Users, Notes } from '@/models/index.js';
|
import { Users, Notes } from '@/models/index.js';
|
||||||
import { makePaginationQuery } from '../api/common/make-pagination-query.js';
|
|
||||||
import { Brackets, IsNull } from 'typeorm';
|
|
||||||
import { Note } from '@/models/entities/note.js';
|
import { Note } from '@/models/entities/note.js';
|
||||||
|
import { makePaginationQuery } from '../api/common/make-pagination-query.js';
|
||||||
|
import { setResponseType } from '../activitypub.js';
|
||||||
|
|
||||||
export default async (ctx: Router.RouterContext) => {
|
export default async (ctx: Router.RouterContext) => {
|
||||||
const userId = ctx.params.user;
|
const userId = ctx.params.user;
|
||||||
|
|
||||||
// Get 'sinceId' parameter
|
const sinceId = ctx.request.query.since_id;
|
||||||
const [sinceId, sinceIdErr] = $.default.optional.type(ID).get(ctx.request.query.since_id);
|
if (sinceId != null && typeof sinceId !== 'string') {
|
||||||
|
ctx.status = 400;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Get 'untilId' parameter
|
const untilId = ctx.request.query.until_id;
|
||||||
const [untilId, untilIdErr] = $.default.optional.type(ID).get(ctx.request.query.until_id);
|
if (untilId != null && typeof untilId !== 'string') {
|
||||||
|
ctx.status = 400;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Get 'page' parameter
|
const page = ctx.request.query.page === 'true';
|
||||||
const pageErr = !$.default.optional.str.or(['true', 'false']).ok(ctx.request.query.page);
|
|
||||||
const page: boolean = ctx.request.query.page === 'true';
|
|
||||||
|
|
||||||
// Validate parameters
|
if (countIf(x => x != null, [sinceId, untilId]) > 1) {
|
||||||
if (sinceIdErr || untilIdErr || pageErr || countIf(x => x != null, [sinceId, untilId]) > 1) {
|
|
||||||
ctx.status = 400;
|
ctx.status = 400;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -52,8 +53,8 @@ export default async (ctx: Router.RouterContext) => {
|
||||||
const query = makePaginationQuery(Notes.createQueryBuilder('note'), sinceId, untilId)
|
const query = makePaginationQuery(Notes.createQueryBuilder('note'), sinceId, untilId)
|
||||||
.andWhere('note.userId = :userId', { userId: user.id })
|
.andWhere('note.userId = :userId', { userId: user.id })
|
||||||
.andWhere(new Brackets(qb => { qb
|
.andWhere(new Brackets(qb => { qb
|
||||||
.where(`note.visibility = 'public'`)
|
.where('note.visibility = \'public\'')
|
||||||
.orWhere(`note.visibility = 'home'`);
|
.orWhere('note.visibility = \'home\'');
|
||||||
}))
|
}))
|
||||||
.andWhere('note.localOnly = FALSE');
|
.andWhere('note.localOnly = FALSE');
|
||||||
|
|
||||||
|
@ -76,7 +77,7 @@ export default async (ctx: Router.RouterContext) => {
|
||||||
notes.length ? `${partOf}?${url.query({
|
notes.length ? `${partOf}?${url.query({
|
||||||
page: 'true',
|
page: 'true',
|
||||||
until_id: notes[notes.length - 1].id,
|
until_id: notes[notes.length - 1].id,
|
||||||
})}` : undefined
|
})}` : undefined,
|
||||||
);
|
);
|
||||||
|
|
||||||
ctx.body = renderActivity(rendered);
|
ctx.body = renderActivity(rendered);
|
||||||
|
@ -85,7 +86,7 @@ export default async (ctx: Router.RouterContext) => {
|
||||||
// index page
|
// index page
|
||||||
const rendered = renderOrderedCollection(partOf, user.notesCount,
|
const rendered = renderOrderedCollection(partOf, user.notesCount,
|
||||||
`${partOf}?page=true`,
|
`${partOf}?page=true`,
|
||||||
`${partOf}?page=true&since_id=000000000000000000000000`
|
`${partOf}?page=true&since_id=000000000000000000000000`,
|
||||||
);
|
);
|
||||||
ctx.body = renderActivity(rendered);
|
ctx.body = renderActivity(rendered);
|
||||||
ctx.set('Cache-Control', 'public, max-age=180');
|
ctx.set('Cache-Control', 'public, max-age=180');
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import define from '../../define.js';
|
|
||||||
import { Users } from '@/models/index.js';
|
import { Users } from '@/models/index.js';
|
||||||
|
import define from '../../define.js';
|
||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
tags: ['admin'],
|
tags: ['admin'],
|
||||||
|
@ -24,8 +24,8 @@ export const paramDef = {
|
||||||
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
||||||
offset: { type: 'integer', default: 0 },
|
offset: { type: 'integer', default: 0 },
|
||||||
sort: { type: 'string', enum: ['+follower', '-follower', '+createdAt', '-createdAt', '+updatedAt', '-updatedAt'] },
|
sort: { type: 'string', enum: ['+follower', '-follower', '+createdAt', '-createdAt', '+updatedAt', '-updatedAt'] },
|
||||||
state: { type: 'string', enum: ['all', 'available', 'admin', 'moderator', 'adminOrModerator', 'silenced', 'suspended'], default: "all" },
|
state: { type: 'string', enum: ['all', 'alive', 'available', 'admin', 'moderator', 'adminOrModerator', 'silenced', 'suspended'], default: 'all' },
|
||||||
origin: { type: 'string', enum: ['combined', 'local', 'remote'], default: "local" },
|
origin: { type: 'string', enum: ['combined', 'local', 'remote'], default: 'local' },
|
||||||
username: { type: 'string', nullable: true, default: null },
|
username: { type: 'string', nullable: true, default: null },
|
||||||
hostname: {
|
hostname: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
|
|
|
@ -19,7 +19,7 @@ import { StreamEventEmitter, StreamMessages } from './types.js';
|
||||||
*/
|
*/
|
||||||
export default class Connection {
|
export default class Connection {
|
||||||
public user?: User;
|
public user?: User;
|
||||||
public userProfile?: UserProfile;
|
public userProfile?: UserProfile | null;
|
||||||
public following: Set<User['id']> = new Set();
|
public following: Set<User['id']> = new Set();
|
||||||
public muting: Set<User['id']> = new Set();
|
public muting: Set<User['id']> = new Set();
|
||||||
public blocking: Set<User['id']> = new Set(); // "被"blocking
|
public blocking: Set<User['id']> = new Set(); // "被"blocking
|
||||||
|
|
Loading…
Reference in New Issue