mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 14:53:09 +02:00
[wip] Implement like activity
This commit is contained in:
parent
070f736a48
commit
2d4fe8c619
1 changed files with 63 additions and 0 deletions
63
src/remote/activitypub/act/like.ts
Normal file
63
src/remote/activitypub/act/like.ts
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
import { MongoError } from 'mongodb';
|
||||||
|
import Reaction, { IPostReaction } from '../../../models/post-reaction';
|
||||||
|
import Post from '../../../models/post';
|
||||||
|
import queue from '../../../queue';
|
||||||
|
|
||||||
|
export default async (resolver, actor, activity, distribute) => {
|
||||||
|
const id = activity.object.id || activity.object;
|
||||||
|
|
||||||
|
// Transform:
|
||||||
|
// https://misskey.ex/@syuilo/xxxx to
|
||||||
|
// xxxx
|
||||||
|
const postId = id.split('/').pop();
|
||||||
|
|
||||||
|
const post = await Post.findOne({ _id: postId });
|
||||||
|
if (post === null) {
|
||||||
|
throw new Error();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!distribute) {
|
||||||
|
const { _id } = await Reaction.findOne({
|
||||||
|
userId: actor._id,
|
||||||
|
postId: post._id
|
||||||
|
});
|
||||||
|
|
||||||
|
return {
|
||||||
|
resolver,
|
||||||
|
object: { $ref: 'postPeactions', $id: _id }
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const promisedReaction = Reaction.insert({
|
||||||
|
createdAt: new Date(),
|
||||||
|
userId: actor._id,
|
||||||
|
postId: post._id,
|
||||||
|
reaction: 'pudding'
|
||||||
|
}).then(reaction => new Promise<IPostReaction>((resolve, reject) => {
|
||||||
|
queue.create('http', {
|
||||||
|
type: 'reaction',
|
||||||
|
reactionId: reaction._id
|
||||||
|
}).save(error => {
|
||||||
|
if (error) {
|
||||||
|
reject(error);
|
||||||
|
} else {
|
||||||
|
resolve(reaction);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}), async error => {
|
||||||
|
// duplicate key error
|
||||||
|
if (error instanceof MongoError && error.code === 11000) {
|
||||||
|
return Reaction.findOne({
|
||||||
|
userId: actor._id,
|
||||||
|
postId: post._id
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
throw error;
|
||||||
|
});
|
||||||
|
|
||||||
|
return promisedReaction.then(({ _id }) => ({
|
||||||
|
resolver,
|
||||||
|
object: { $ref: 'postPeactions', $id: _id }
|
||||||
|
}));
|
||||||
|
};
|
Loading…
Reference in a new issue