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