mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 11:53:11 +02:00
Refactor
This commit is contained in:
parent
81d19195cf
commit
7dc06b3d43
2 changed files with 26 additions and 1 deletions
25
src/remote/activitypub/act/undo/follow.ts
Normal file
25
src/remote/activitypub/act/undo/follow.ts
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
import parseAcct from '../../../../acct/parse';
|
||||||
|
import User from '../../../../models/user';
|
||||||
|
import config from '../../../../config';
|
||||||
|
import unfollow from '../../../../services/following/delete';
|
||||||
|
|
||||||
|
export default async (actor, activity): Promise<void> => {
|
||||||
|
const prefix = config.url + '/@';
|
||||||
|
const id = activity.object.id || activity.object;
|
||||||
|
|
||||||
|
if (!id.startsWith(prefix)) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
const { username, host } = parseAcct(id.slice(prefix.length));
|
||||||
|
if (host !== null) {
|
||||||
|
throw new Error();
|
||||||
|
}
|
||||||
|
|
||||||
|
const followee = await User.findOne({ username, host });
|
||||||
|
if (followee === null) {
|
||||||
|
throw new Error();
|
||||||
|
}
|
||||||
|
|
||||||
|
await unfollow(actor, followee, activity);
|
||||||
|
};
|
|
@ -1,4 +1,4 @@
|
||||||
import unfollow from './unfollow';
|
import unfollow from './follow';
|
||||||
|
|
||||||
export default async (actor, activity): Promise<void> => {
|
export default async (actor, activity): Promise<void> => {
|
||||||
if ('actor' in activity && actor.account.uri !== activity.actor) {
|
if ('actor' in activity && actor.account.uri !== activity.actor) {
|
Loading…
Reference in a new issue