2019-04-29 03:11:57 +03:00
|
|
|
import { EntityRepository, Repository } from 'typeorm';
|
2021-08-19 16:04:15 +03:00
|
|
|
import { Page } from '@/models/entities/page';
|
2021-09-22 16:35:55 +03:00
|
|
|
import { Packed } from '@/misc/schema';
|
2021-08-19 15:55:45 +03:00
|
|
|
import { Users, DriveFiles, PageLikes } from '../index';
|
2021-08-19 16:04:15 +03:00
|
|
|
import { awaitAll } from '@/prelude/await-all';
|
|
|
|
import { DriveFile } from '@/models/entities/drive-file';
|
|
|
|
import { User } from '@/models/entities/user';
|
2019-04-29 03:11:57 +03:00
|
|
|
|
|
|
|
@EntityRepository(Page)
|
|
|
|
export class PageRepository extends Repository<Page> {
|
|
|
|
public async pack(
|
2019-05-17 13:56:47 +03:00
|
|
|
src: Page['id'] | Page,
|
2021-03-24 04:05:37 +02:00
|
|
|
me?: { id: User['id'] } | null | undefined,
|
2021-09-22 16:35:55 +03:00
|
|
|
): Promise<Packed<'Page'>> {
|
2021-03-24 04:05:37 +02:00
|
|
|
const meId = me ? me.id : null;
|
2021-02-13 08:33:38 +02:00
|
|
|
const page = typeof src === 'object' ? src : await this.findOneOrFail(src);
|
2019-05-17 13:56:47 +03:00
|
|
|
|
2019-04-29 03:11:57 +03:00
|
|
|
const attachedFiles: Promise<DriveFile | undefined>[] = [];
|
|
|
|
const collectFile = (xs: any[]) => {
|
|
|
|
for (const x of xs) {
|
|
|
|
if (x.type === 'image') {
|
|
|
|
attachedFiles.push(DriveFiles.findOne({
|
|
|
|
id: x.fileId,
|
2021-12-09 16:58:30 +02:00
|
|
|
userId: page.userId,
|
2019-04-29 03:11:57 +03:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
if (x.children) {
|
|
|
|
collectFile(x.children);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2019-05-17 13:56:47 +03:00
|
|
|
collectFile(page.content);
|
2019-04-30 06:15:41 +03:00
|
|
|
|
|
|
|
// 後方互換性のため
|
|
|
|
let migrated = false;
|
|
|
|
const migrate = (xs: any[]) => {
|
|
|
|
for (const x of xs) {
|
|
|
|
if (x.type === 'input') {
|
|
|
|
if (x.inputType === 'text') {
|
|
|
|
x.type = 'textInput';
|
|
|
|
}
|
|
|
|
if (x.inputType === 'number') {
|
|
|
|
x.type = 'numberInput';
|
|
|
|
if (x.default) x.default = parseInt(x.default, 10);
|
|
|
|
}
|
|
|
|
migrated = true;
|
|
|
|
}
|
|
|
|
if (x.children) {
|
|
|
|
migrate(x.children);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2019-05-17 13:56:47 +03:00
|
|
|
migrate(page.content);
|
2019-04-30 06:15:41 +03:00
|
|
|
if (migrated) {
|
2019-05-17 13:56:47 +03:00
|
|
|
this.update(page.id, {
|
2021-12-09 16:58:30 +02:00
|
|
|
content: page.content,
|
2019-04-30 06:15:41 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-04-29 03:11:57 +03:00
|
|
|
return await awaitAll({
|
2019-05-17 13:56:47 +03:00
|
|
|
id: page.id,
|
|
|
|
createdAt: page.createdAt.toISOString(),
|
|
|
|
updatedAt: page.updatedAt.toISOString(),
|
|
|
|
userId: page.userId,
|
2020-02-01 04:35:49 +02:00
|
|
|
user: Users.pack(page.user || page.userId, me), // { detail: true } すると無限ループするので注意
|
2019-05-17 13:56:47 +03:00
|
|
|
content: page.content,
|
|
|
|
variables: page.variables,
|
|
|
|
title: page.title,
|
|
|
|
name: page.name,
|
|
|
|
summary: page.summary,
|
2019-07-07 00:56:13 +03:00
|
|
|
hideTitleWhenPinned: page.hideTitleWhenPinned,
|
2019-05-17 13:56:47 +03:00
|
|
|
alignCenter: page.alignCenter,
|
|
|
|
font: page.font,
|
2020-04-12 21:23:23 +03:00
|
|
|
script: page.script,
|
2019-05-17 13:56:47 +03:00
|
|
|
eyeCatchingImageId: page.eyeCatchingImageId,
|
|
|
|
eyeCatchingImage: page.eyeCatchingImageId ? await DriveFiles.pack(page.eyeCatchingImageId) : null,
|
|
|
|
attachedFiles: DriveFiles.packMany(await Promise.all(attachedFiles)),
|
|
|
|
likedCount: page.likedCount,
|
|
|
|
isLiked: meId ? await PageLikes.findOne({ pageId: page.id, userId: meId }).then(x => x != null) : undefined,
|
2019-04-29 03:11:57 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public packMany(
|
|
|
|
pages: Page[],
|
2021-03-24 04:05:37 +02:00
|
|
|
me?: { id: User['id'] } | null | undefined,
|
2019-04-29 03:11:57 +03:00
|
|
|
) {
|
2020-11-17 07:59:15 +02:00
|
|
|
return Promise.all(pages.map(x => this.pack(x, me)));
|
2019-04-29 03:11:57 +03:00
|
|
|
}
|
|
|
|
}
|