2022-09-17 20:27:08 +02:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-12-03 11:42:05 +01:00
|
|
|
import { FastifyInstance, FastifyRequest, FastifyReply, FastifyPluginOptions } from 'fastify';
|
|
|
|
import fastifyAccepts from '@fastify/accepts';
|
2022-09-17 20:27:08 +02:00
|
|
|
import httpSignature from '@peertube/http-signature';
|
|
|
|
import { Brackets, In, IsNull, LessThan, Not } from 'typeorm';
|
2022-12-03 11:42:05 +01:00
|
|
|
import accepts from 'accepts';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-09-22 23:21:31 +02:00
|
|
|
import type { FollowingsRepository, NotesRepository, EmojisRepository, NoteReactionsRepository, UserProfilesRepository, UserNotePiningsRepository, UsersRepository } from '@/models/index.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import * as url from '@/misc/prelude/url.js';
|
2022-09-20 22:33:11 +02:00
|
|
|
import type { Config } from '@/config.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { ApRendererService } from '@/core/remote/activitypub/ApRendererService.js';
|
|
|
|
import { QueueService } from '@/core/QueueService.js';
|
|
|
|
import type { ILocalUser, User } from '@/models/entities/User.js';
|
|
|
|
import { UserKeypairStoreService } from '@/core/UserKeypairStoreService.js';
|
|
|
|
import type { Following } from '@/models/entities/Following.js';
|
|
|
|
import { countIf } from '@/misc/prelude/array.js';
|
|
|
|
import type { Note } from '@/models/entities/Note.js';
|
|
|
|
import { QueryService } from '@/core/QueryService.js';
|
|
|
|
import { UtilityService } from '@/core/UtilityService.js';
|
|
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
|
|
|
import type { FindOptionsWhere } from 'typeorm';
|
|
|
|
|
|
|
|
const ACTIVITY_JSON = 'application/activity+json; charset=utf-8';
|
|
|
|
const LD_JSON = 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"; charset=utf-8';
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class ActivityPubServerService {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.config)
|
|
|
|
private config: Config,
|
|
|
|
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
@Inject(DI.userProfilesRepository)
|
|
|
|
private userProfilesRepository: UserProfilesRepository,
|
|
|
|
|
|
|
|
@Inject(DI.notesRepository)
|
|
|
|
private notesRepository: NotesRepository,
|
|
|
|
|
|
|
|
@Inject(DI.noteReactionsRepository)
|
|
|
|
private noteReactionsRepository: NoteReactionsRepository,
|
|
|
|
|
|
|
|
@Inject(DI.emojisRepository)
|
|
|
|
private emojisRepository: EmojisRepository,
|
|
|
|
|
|
|
|
@Inject(DI.userNotePiningsRepository)
|
|
|
|
private userNotePiningsRepository: UserNotePiningsRepository,
|
|
|
|
|
|
|
|
@Inject(DI.followingsRepository)
|
|
|
|
private followingsRepository: FollowingsRepository,
|
|
|
|
|
|
|
|
private utilityService: UtilityService,
|
|
|
|
private userEntityService: UserEntityService,
|
|
|
|
private apRendererService: ApRendererService,
|
|
|
|
private queueService: QueueService,
|
|
|
|
private userKeypairStoreService: UserKeypairStoreService,
|
|
|
|
private queryService: QueryService,
|
|
|
|
) {
|
2022-12-03 11:42:05 +01:00
|
|
|
this.createServer = this.createServer.bind(this);
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
private setResponseType(request: FastifyRequest, reply: FastifyReply): void {
|
|
|
|
const accept = request.accepts().type([ACTIVITY_JSON, LD_JSON]);
|
2022-09-17 20:27:08 +02:00
|
|
|
if (accept === LD_JSON) {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.type(LD_JSON);
|
2022-09-17 20:27:08 +02:00
|
|
|
} else {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.type(ACTIVITY_JSON);
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pack Create<Note> or Announce Activity
|
|
|
|
* @param note Note
|
|
|
|
*/
|
2022-09-18 20:11:50 +02:00
|
|
|
private async packActivity(note: Note): Promise<any> {
|
2022-09-17 20:27:08 +02:00
|
|
|
if (note.renoteId && note.text == null && !note.hasPoll && (note.fileIds == null || note.fileIds.length === 0)) {
|
2022-09-22 23:21:31 +02:00
|
|
|
const renote = await this.notesRepository.findOneByOrFail({ id: note.renoteId });
|
2022-09-17 20:27:08 +02:00
|
|
|
return this.apRendererService.renderAnnounce(renote.uri ? renote.uri : `${this.config.url}/notes/${renote.id}`, note);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.apRendererService.renderCreate(await this.apRendererService.renderNote(note, false), note);
|
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
private inbox(request: FastifyRequest, reply: FastifyReply) {
|
2022-09-17 20:27:08 +02:00
|
|
|
let signature;
|
|
|
|
|
|
|
|
try {
|
2022-12-03 11:42:05 +01:00
|
|
|
signature = httpSignature.parseRequest(request.raw, { 'headers': [] });
|
2022-09-17 20:27:08 +02:00
|
|
|
} catch (e) {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(401);
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
this.queueService.inbox(request.body, signature);
|
2022-09-17 20:27:08 +02:00
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(202);
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
private async followers(
|
|
|
|
request: FastifyRequest<{ Params: { user: string; }; Querystring: { cursor?: string; page?: string; }; }>,
|
|
|
|
reply: FastifyReply,
|
|
|
|
) {
|
|
|
|
const userId = request.params.user;
|
2022-09-17 20:27:08 +02:00
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
const cursor = request.query.cursor;
|
2022-09-17 20:27:08 +02:00
|
|
|
if (cursor != null && typeof cursor !== 'string') {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(400);
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
const page = request.query.page === 'true';
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
const user = await this.usersRepository.findOneBy({
|
|
|
|
id: userId,
|
|
|
|
host: IsNull(),
|
|
|
|
});
|
|
|
|
|
|
|
|
if (user == null) {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(404);
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//#region Check ff visibility
|
|
|
|
const profile = await this.userProfilesRepository.findOneByOrFail({ userId: user.id });
|
|
|
|
|
|
|
|
if (profile.ffVisibility === 'private') {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(403);
|
|
|
|
reply.header('Cache-Control', 'public, max-age=30');
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
} else if (profile.ffVisibility === 'followers') {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(403);
|
|
|
|
reply.header('Cache-Control', 'public, max-age=30');
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
const limit = 10;
|
|
|
|
const partOf = `${this.config.url}/users/${userId}/followers`;
|
|
|
|
|
|
|
|
if (page) {
|
|
|
|
const query = {
|
|
|
|
followeeId: user.id,
|
|
|
|
} as FindOptionsWhere<Following>;
|
|
|
|
|
|
|
|
// カーソルが指定されている場合
|
|
|
|
if (cursor) {
|
|
|
|
query.id = LessThan(cursor);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get followers
|
|
|
|
const followings = await this.followingsRepository.find({
|
|
|
|
where: query,
|
|
|
|
take: limit + 1,
|
|
|
|
order: { id: -1 },
|
|
|
|
});
|
|
|
|
|
|
|
|
// 「次のページ」があるかどうか
|
|
|
|
const inStock = followings.length === limit + 1;
|
|
|
|
if (inStock) followings.pop();
|
|
|
|
|
|
|
|
const renderedFollowers = await Promise.all(followings.map(following => this.apRendererService.renderFollowUser(following.followerId)));
|
|
|
|
const rendered = this.apRendererService.renderOrderedCollectionPage(
|
|
|
|
`${partOf}?${url.query({
|
|
|
|
page: 'true',
|
|
|
|
cursor,
|
|
|
|
})}`,
|
|
|
|
user.followersCount, renderedFollowers, partOf,
|
|
|
|
undefined,
|
|
|
|
inStock ? `${partOf}?${url.query({
|
|
|
|
page: 'true',
|
|
|
|
cursor: followings[followings.length - 1].id,
|
|
|
|
})}` : undefined,
|
|
|
|
);
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
this.setResponseType(request, reply);
|
|
|
|
return (this.apRendererService.renderActivity(rendered));
|
2022-09-17 20:27:08 +02:00
|
|
|
} else {
|
|
|
|
// index page
|
|
|
|
const rendered = this.apRendererService.renderOrderedCollection(partOf, user.followersCount, `${partOf}?page=true`);
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.header('Cache-Control', 'public, max-age=180');
|
|
|
|
this.setResponseType(request, reply);
|
|
|
|
return (this.apRendererService.renderActivity(rendered));
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
private async following(
|
|
|
|
request: FastifyRequest<{ Params: { user: string; }; Querystring: { cursor?: string; page?: string; }; }>,
|
|
|
|
reply: FastifyReply,
|
|
|
|
) {
|
|
|
|
const userId = request.params.user;
|
2022-09-17 20:27:08 +02:00
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
const cursor = request.query.cursor;
|
2022-09-17 20:27:08 +02:00
|
|
|
if (cursor != null && typeof cursor !== 'string') {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(400);
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
const page = request.query.page === 'true';
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
const user = await this.usersRepository.findOneBy({
|
|
|
|
id: userId,
|
|
|
|
host: IsNull(),
|
|
|
|
});
|
|
|
|
|
|
|
|
if (user == null) {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(404);
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//#region Check ff visibility
|
|
|
|
const profile = await this.userProfilesRepository.findOneByOrFail({ userId: user.id });
|
|
|
|
|
|
|
|
if (profile.ffVisibility === 'private') {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(403);
|
|
|
|
reply.header('Cache-Control', 'public, max-age=30');
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
} else if (profile.ffVisibility === 'followers') {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(403);
|
|
|
|
reply.header('Cache-Control', 'public, max-age=30');
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
const limit = 10;
|
|
|
|
const partOf = `${this.config.url}/users/${userId}/following`;
|
|
|
|
|
|
|
|
if (page) {
|
|
|
|
const query = {
|
|
|
|
followerId: user.id,
|
|
|
|
} as FindOptionsWhere<Following>;
|
|
|
|
|
|
|
|
// カーソルが指定されている場合
|
|
|
|
if (cursor) {
|
|
|
|
query.id = LessThan(cursor);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get followings
|
|
|
|
const followings = await this.followingsRepository.find({
|
|
|
|
where: query,
|
|
|
|
take: limit + 1,
|
|
|
|
order: { id: -1 },
|
|
|
|
});
|
|
|
|
|
|
|
|
// 「次のページ」があるかどうか
|
|
|
|
const inStock = followings.length === limit + 1;
|
|
|
|
if (inStock) followings.pop();
|
|
|
|
|
|
|
|
const renderedFollowees = await Promise.all(followings.map(following => this.apRendererService.renderFollowUser(following.followeeId)));
|
|
|
|
const rendered = this.apRendererService.renderOrderedCollectionPage(
|
|
|
|
`${partOf}?${url.query({
|
|
|
|
page: 'true',
|
|
|
|
cursor,
|
|
|
|
})}`,
|
|
|
|
user.followingCount, renderedFollowees, partOf,
|
|
|
|
undefined,
|
|
|
|
inStock ? `${partOf}?${url.query({
|
|
|
|
page: 'true',
|
|
|
|
cursor: followings[followings.length - 1].id,
|
|
|
|
})}` : undefined,
|
|
|
|
);
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
this.setResponseType(request, reply);
|
|
|
|
return (this.apRendererService.renderActivity(rendered));
|
2022-09-17 20:27:08 +02:00
|
|
|
} else {
|
|
|
|
// index page
|
|
|
|
const rendered = this.apRendererService.renderOrderedCollection(partOf, user.followingCount, `${partOf}?page=true`);
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.header('Cache-Control', 'public, max-age=180');
|
|
|
|
this.setResponseType(request, reply);
|
|
|
|
return (this.apRendererService.renderActivity(rendered));
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
private async featured(request: FastifyRequest<{ Params: { user: string; }; }>, reply: FastifyReply) {
|
|
|
|
const userId = request.params.user;
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
const user = await this.usersRepository.findOneBy({
|
|
|
|
id: userId,
|
|
|
|
host: IsNull(),
|
|
|
|
});
|
|
|
|
|
|
|
|
if (user == null) {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(404);
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const pinings = await this.userNotePiningsRepository.find({
|
|
|
|
where: { userId: user.id },
|
|
|
|
order: { id: 'DESC' },
|
|
|
|
});
|
|
|
|
|
|
|
|
const pinnedNotes = await Promise.all(pinings.map(pining =>
|
|
|
|
this.notesRepository.findOneByOrFail({ id: pining.noteId })));
|
|
|
|
|
|
|
|
const renderedNotes = await Promise.all(pinnedNotes.map(note => this.apRendererService.renderNote(note)));
|
|
|
|
|
|
|
|
const rendered = this.apRendererService.renderOrderedCollection(
|
|
|
|
`${this.config.url}/users/${userId}/collections/featured`,
|
|
|
|
renderedNotes.length, undefined, undefined, renderedNotes,
|
|
|
|
);
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.header('Cache-Control', 'public, max-age=180');
|
|
|
|
this.setResponseType(request, reply);
|
|
|
|
return (this.apRendererService.renderActivity(rendered));
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
private async outbox(
|
|
|
|
request: FastifyRequest<{
|
|
|
|
Params: { user: string; };
|
|
|
|
Querystring: { since_id?: string; until_id?: string; page?: string; };
|
|
|
|
}>,
|
|
|
|
reply: FastifyReply,
|
|
|
|
) {
|
|
|
|
const userId = request.params.user;
|
2022-09-17 20:27:08 +02:00
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
const sinceId = request.query.since_id;
|
2022-09-17 20:27:08 +02:00
|
|
|
if (sinceId != null && typeof sinceId !== 'string') {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(400);
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
const untilId = request.query.until_id;
|
2022-09-17 20:27:08 +02:00
|
|
|
if (untilId != null && typeof untilId !== 'string') {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(400);
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
const page = request.query.page === 'true';
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
if (countIf(x => x != null, [sinceId, untilId]) > 1) {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(400);
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const user = await this.usersRepository.findOneBy({
|
|
|
|
id: userId,
|
|
|
|
host: IsNull(),
|
|
|
|
});
|
|
|
|
|
|
|
|
if (user == null) {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(404);
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const limit = 20;
|
|
|
|
const partOf = `${this.config.url}/users/${userId}/outbox`;
|
|
|
|
|
|
|
|
if (page) {
|
|
|
|
const query = this.queryService.makePaginationQuery(this.notesRepository.createQueryBuilder('note'), sinceId, untilId)
|
|
|
|
.andWhere('note.userId = :userId', { userId: user.id })
|
|
|
|
.andWhere(new Brackets(qb => { qb
|
|
|
|
.where('note.visibility = \'public\'')
|
|
|
|
.orWhere('note.visibility = \'home\'');
|
|
|
|
}))
|
|
|
|
.andWhere('note.localOnly = FALSE');
|
|
|
|
|
|
|
|
const notes = await query.take(limit).getMany();
|
|
|
|
|
|
|
|
if (sinceId) notes.reverse();
|
|
|
|
|
2022-09-18 20:11:50 +02:00
|
|
|
const activities = await Promise.all(notes.map(note => this.packActivity(note)));
|
2022-09-17 20:27:08 +02:00
|
|
|
const rendered = this.apRendererService.renderOrderedCollectionPage(
|
|
|
|
`${partOf}?${url.query({
|
|
|
|
page: 'true',
|
|
|
|
since_id: sinceId,
|
|
|
|
until_id: untilId,
|
|
|
|
})}`,
|
|
|
|
user.notesCount, activities, partOf,
|
|
|
|
notes.length ? `${partOf}?${url.query({
|
|
|
|
page: 'true',
|
|
|
|
since_id: notes[0].id,
|
|
|
|
})}` : undefined,
|
|
|
|
notes.length ? `${partOf}?${url.query({
|
|
|
|
page: 'true',
|
|
|
|
until_id: notes[notes.length - 1].id,
|
|
|
|
})}` : undefined,
|
|
|
|
);
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
this.setResponseType(request, reply);
|
|
|
|
return (this.apRendererService.renderActivity(rendered));
|
2022-09-17 20:27:08 +02:00
|
|
|
} else {
|
|
|
|
// index page
|
|
|
|
const rendered = this.apRendererService.renderOrderedCollection(partOf, user.notesCount,
|
|
|
|
`${partOf}?page=true`,
|
|
|
|
`${partOf}?page=true&since_id=000000000000000000000000`,
|
|
|
|
);
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.header('Cache-Control', 'public, max-age=180');
|
|
|
|
this.setResponseType(request, reply);
|
|
|
|
return (this.apRendererService.renderActivity(rendered));
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
private async userInfo(request: FastifyRequest, reply: FastifyReply, user: User | null) {
|
2022-09-17 20:27:08 +02:00
|
|
|
if (user == null) {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(404);
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.header('Cache-Control', 'public, max-age=180');
|
|
|
|
this.setResponseType(request, reply);
|
|
|
|
return (this.apRendererService.renderActivity(await this.apRendererService.renderPerson(user as ILocalUser)));
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
public createServer(fastify: FastifyInstance, options: FastifyPluginOptions, done: (err?: Error) => void) {
|
|
|
|
fastify.addConstraintStrategy({
|
|
|
|
name: 'apOrHtml',
|
|
|
|
storage() {
|
|
|
|
const store = {};
|
|
|
|
return {
|
|
|
|
get(key) {
|
|
|
|
return store[key] ?? null;
|
|
|
|
},
|
|
|
|
set(key, value) {
|
|
|
|
store[key] = value;
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
deriveConstraint(request, ctx) {
|
|
|
|
const accepted = accepts(request).type(['html', ACTIVITY_JSON, LD_JSON]);
|
|
|
|
const isAp = typeof accepted === 'string' && !accepted.match(/html/);
|
|
|
|
return isAp ? 'ap' : 'html';
|
|
|
|
},
|
|
|
|
});
|
2022-09-17 20:27:08 +02:00
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
fastify.register(fastifyAccepts);
|
2022-09-17 20:27:08 +02:00
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
//#region Routing
|
2022-09-17 20:27:08 +02:00
|
|
|
// inbox
|
2022-12-03 11:42:05 +01:00
|
|
|
fastify.post('/inbox', async (request, reply) => await this.inbox(request, reply));
|
|
|
|
fastify.post('/users/:user/inbox', async (request, reply) => await this.inbox(request, reply));
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
// note
|
2022-12-03 11:42:05 +01:00
|
|
|
fastify.get<{ Params: { note: string; } }>('/notes/:note', { constraints: { apOrHtml: 'ap' } }, async (request, reply) => {
|
2022-09-17 20:27:08 +02:00
|
|
|
const note = await this.notesRepository.findOneBy({
|
2022-12-03 11:42:05 +01:00
|
|
|
id: request.params.note,
|
2022-09-17 20:27:08 +02:00
|
|
|
visibility: In(['public' as const, 'home' as const]),
|
|
|
|
localOnly: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (note == null) {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(404);
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// リモートだったらリダイレクト
|
|
|
|
if (note.userHost != null) {
|
|
|
|
if (note.uri == null || this.utilityService.isSelfHost(note.userHost)) {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(500);
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.redirect(note.uri);
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.header('Cache-Control', 'public, max-age=180');
|
|
|
|
this.setResponseType(request, reply);
|
|
|
|
return (this.apRendererService.renderActivity(await this.apRendererService.renderNote(note, false)));
|
2022-09-17 20:27:08 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// note activity
|
2022-12-03 11:42:05 +01:00
|
|
|
fastify.get<{ Params: { note: string; } }>('/notes/:note/activity', async (request, reply) => {
|
2022-09-17 20:27:08 +02:00
|
|
|
const note = await this.notesRepository.findOneBy({
|
2022-12-03 11:42:05 +01:00
|
|
|
id: request.params.note,
|
2022-09-17 20:27:08 +02:00
|
|
|
userHost: IsNull(),
|
|
|
|
visibility: In(['public' as const, 'home' as const]),
|
|
|
|
localOnly: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (note == null) {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(404);
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.header('Cache-Control', 'public, max-age=180');
|
|
|
|
this.setResponseType(request, reply);
|
|
|
|
return (this.apRendererService.renderActivity(await this.packActivity(note)));
|
2022-09-17 20:27:08 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// outbox
|
2022-12-03 11:42:05 +01:00
|
|
|
fastify.get<{
|
|
|
|
Params: { user: string; };
|
|
|
|
Querystring: { since_id?: string; until_id?: string; page?: string; };
|
|
|
|
}>('/users/:user/outbox', async (request, reply) => await this.outbox(request, reply));
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
// followers
|
2022-12-03 11:42:05 +01:00
|
|
|
fastify.get<{
|
|
|
|
Params: { user: string; };
|
|
|
|
Querystring: { cursor?: string; page?: string; };
|
|
|
|
}>('/users/:user/followers', async (request, reply) => await this.followers(request, reply));
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
// following
|
2022-12-03 11:42:05 +01:00
|
|
|
fastify.get<{
|
|
|
|
Params: { user: string; };
|
|
|
|
Querystring: { cursor?: string; page?: string; };
|
|
|
|
}>('/users/:user/following', async (request, reply) => await this.following(request, reply));
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
// featured
|
2022-12-03 11:42:05 +01:00
|
|
|
fastify.get<{ Params: { user: string; }; }>('/users/:user/collections/featured', async (request, reply) => await this.featured(request, reply));
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
// publickey
|
2022-12-03 11:42:05 +01:00
|
|
|
fastify.get<{ Params: { user: string; } }>('/users/:user/publickey', async (request, reply) => {
|
|
|
|
const userId = request.params.user;
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
const user = await this.usersRepository.findOneBy({
|
|
|
|
id: userId,
|
|
|
|
host: IsNull(),
|
|
|
|
});
|
|
|
|
|
|
|
|
if (user == null) {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(404);
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const keypair = await this.userKeypairStoreService.getUserKeypair(user.id);
|
|
|
|
|
|
|
|
if (this.userEntityService.isLocalUser(user)) {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.header('Cache-Control', 'public, max-age=180');
|
|
|
|
this.setResponseType(request, reply);
|
|
|
|
return (this.apRendererService.renderActivity(this.apRendererService.renderKey(user, keypair)));
|
2022-09-17 20:27:08 +02:00
|
|
|
} else {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(400);
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
fastify.get<{ Params: { user: string; } }>('/users/:user', { constraints: { apOrHtml: 'ap' } }, async (request, reply) => {
|
|
|
|
const userId = request.params.user;
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
const user = await this.usersRepository.findOneBy({
|
|
|
|
id: userId,
|
|
|
|
host: IsNull(),
|
|
|
|
isSuspended: false,
|
|
|
|
});
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
return await this.userInfo(request, reply, user);
|
2022-09-17 20:27:08 +02:00
|
|
|
});
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
fastify.get<{ Params: { user: string; } }>('/@:user', { constraints: { apOrHtml: 'ap' } }, async (request, reply) => {
|
2022-09-17 20:27:08 +02:00
|
|
|
const user = await this.usersRepository.findOneBy({
|
2022-12-03 11:42:05 +01:00
|
|
|
usernameLower: request.params.user.toLowerCase(),
|
2022-09-17 20:27:08 +02:00
|
|
|
host: IsNull(),
|
|
|
|
isSuspended: false,
|
|
|
|
});
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
return await this.userInfo(request, reply, user);
|
2022-09-17 20:27:08 +02:00
|
|
|
});
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
// emoji
|
2022-12-03 11:42:05 +01:00
|
|
|
fastify.get<{ Params: { emoji: string; } }>('/emojis/:emoji', async (request, reply) => {
|
2022-09-17 20:27:08 +02:00
|
|
|
const emoji = await this.emojisRepository.findOneBy({
|
|
|
|
host: IsNull(),
|
2022-12-03 11:42:05 +01:00
|
|
|
name: request.params.emoji,
|
2022-09-17 20:27:08 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
if (emoji == null) {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(404);
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.header('Cache-Control', 'public, max-age=180');
|
|
|
|
this.setResponseType(request, reply);
|
|
|
|
return (this.apRendererService.renderActivity(await this.apRendererService.renderEmoji(emoji)));
|
2022-09-17 20:27:08 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// like
|
2022-12-03 11:42:05 +01:00
|
|
|
fastify.get<{ Params: { like: string; } }>('/likes/:like', async (request, reply) => {
|
|
|
|
const reaction = await this.noteReactionsRepository.findOneBy({ id: request.params.like });
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
if (reaction == null) {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(404);
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const note = await this.notesRepository.findOneBy({ id: reaction.noteId });
|
|
|
|
|
|
|
|
if (note == null) {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(404);
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.header('Cache-Control', 'public, max-age=180');
|
|
|
|
this.setResponseType(request, reply);
|
|
|
|
return (this.apRendererService.renderActivity(await this.apRendererService.renderLike(reaction, note)));
|
2022-09-17 20:27:08 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// follow
|
2022-12-03 11:42:05 +01:00
|
|
|
fastify.get<{ Params: { follower: string; followee: string; } }>('/follows/:follower/:followee', async (request, reply) => {
|
2022-09-17 20:27:08 +02:00
|
|
|
// This may be used before the follow is completed, so we do not
|
|
|
|
// check if the following exists.
|
|
|
|
|
|
|
|
const [follower, followee] = await Promise.all([
|
|
|
|
this.usersRepository.findOneBy({
|
2022-12-03 11:42:05 +01:00
|
|
|
id: request.params.follower,
|
2022-09-17 20:27:08 +02:00
|
|
|
host: IsNull(),
|
|
|
|
}),
|
|
|
|
this.usersRepository.findOneBy({
|
2022-12-03 11:42:05 +01:00
|
|
|
id: request.params.followee,
|
2022-09-17 20:27:08 +02:00
|
|
|
host: Not(IsNull()),
|
|
|
|
}),
|
|
|
|
]);
|
|
|
|
|
|
|
|
if (follower == null || followee == null) {
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.code(404);
|
2022-09-17 20:27:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.header('Cache-Control', 'public, max-age=180');
|
|
|
|
this.setResponseType(request, reply);
|
|
|
|
return (this.apRendererService.renderActivity(this.apRendererService.renderFollow(follower, followee)));
|
2022-09-17 20:27:08 +02:00
|
|
|
});
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
done();
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
}
|