summaryrefslogtreecommitdiff
path: root/src/remote/activitypub/act/create.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-04-06 19:35:23 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-04-06 19:35:23 +0900
commit4e9ae8e8d5c862ac7a72f56d7bc0b7dab9c81044 (patch)
tree895a954636b782b20af97bf65719bb0607f3ef32 /src/remote/activitypub/act/create.ts
parentFix type annotation (diff)
downloadmisskey-4e9ae8e8d5c862ac7a72f56d7bc0b7dab9c81044.tar.gz
misskey-4e9ae8e8d5c862ac7a72f56d7bc0b7dab9c81044.tar.bz2
misskey-4e9ae8e8d5c862ac7a72f56d7bc0b7dab9c81044.zip
Split code
Diffstat (limited to 'src/remote/activitypub/act/create.ts')
-rw-r--r--src/remote/activitypub/act/create.ts108
1 files changed, 0 insertions, 108 deletions
diff --git a/src/remote/activitypub/act/create.ts b/src/remote/activitypub/act/create.ts
deleted file mode 100644
index d1eeacbc38..0000000000
--- a/src/remote/activitypub/act/create.ts
+++ /dev/null
@@ -1,108 +0,0 @@
-import { JSDOM } from 'jsdom';
-import * as debug from 'debug';
-
-import Resolver from '../resolver';
-import Post from '../../../models/post';
-import uploadFromUrl from '../../../services/drive/upload-from-url';
-import createPost from '../../../services/post/create';
-import { IRemoteUser, isRemoteUser } from '../../../models/user';
-import resolvePerson from '../resolve-person';
-
-const log = debug('misskey:activitypub');
-
-export default async (actor: IRemoteUser, activity): Promise<void> => {
- if ('actor' in activity && actor.account.uri !== activity.actor) {
- throw new Error('invalid actor');
- }
-
- const uri = activity.id || activity;
-
- log(`Create: ${uri}`);
-
- // TODO: 同じURIをもつものが既に登録されていないかチェック
-
- const resolver = new Resolver();
-
- let object;
-
- try {
- object = await resolver.resolve(activity.object);
- } catch (e) {
- log(`Resolution failed: ${e}`);
- throw e;
- }
-
- switch (object.type) {
- case 'Image':
- createImage(resolver, actor, object);
- break;
-
- case 'Note':
- createNote(resolver, actor, object);
- break;
-
- default:
- console.warn(`Unknown type: ${object.type}`);
- break;
- }
-};
-
-async function createImage(resolver: Resolver, actor: IRemoteUser, image) {
- if ('attributedTo' in image && actor.account.uri !== image.attributedTo) {
- log(`invalid image: ${JSON.stringify(image, null, 2)}`);
- throw new Error('invalid image');
- }
-
- log(`Creating the Image: ${image.id}`);
-
- return await uploadFromUrl(image.url, actor);
-}
-
-async function createNote(resolver: Resolver, actor: IRemoteUser, note) {
- if (
- ('attributedTo' in note && actor.account.uri !== note.attributedTo) ||
- typeof note.id !== 'string'
- ) {
- log(`invalid note: ${JSON.stringify(note, null, 2)}`);
- throw new Error('invalid note');
- }
-
- log(`Creating the Note: ${note.id}`);
-
- const media = [];
- if ('attachment' in note && note.attachment != null) {
- // TODO: attachmentは必ずしもImageではない
- // TODO: ループの中でawaitはすべきでない
- note.attachment.forEach(async media => {
- const created = await createImage(resolver, note.actor, media);
- media.push(created);
- });
- }
-
- let reply = null;
- if ('inReplyTo' in note && note.inReplyTo != null) {
- const inReplyToPost = await Post.findOne({ uri: note.inReplyTo.id || note.inReplyTo });
- if (inReplyToPost) {
- reply = inReplyToPost;
- } else {
- const inReplyTo = await resolver.resolve(note.inReplyTo) as any;
- const actor = await resolvePerson(inReplyTo.attributedTo);
- if (isRemoteUser(actor)) {
- reply = await createNote(resolver, actor, inReplyTo);
- }
- }
- }
-
- const { window } = new JSDOM(note.content);
-
- return await createPost(actor, {
- createdAt: new Date(note.published),
- media,
- reply,
- repost: undefined,
- text: window.document.body.textContent,
- viaMobile: false,
- geo: undefined,
- uri: note.id
- });
-}