refactor move check to a separate function

This commit is contained in:
Johann150 2023-05-18 02:00:50 +02:00
parent 2f0ad5ee2d
commit 7258ef597b
Signed by: Johann150
GPG Key ID: 9EE6577A2A06F8F1
2 changed files with 54 additions and 33 deletions

View File

@ -1,6 +1,6 @@
import { IsNull } from 'typeorm';
import { IRemoteUser } from '@/models/entities/user.js';
import { resolvePerson } from '@/remote/activitypub/models/person.js';
import { verifyMove } from '@/remote/activitypub/models/person.js';
import { Blockings, Followings, Mutings, Users } from '@/models/index.js';
import { createNotification } from '@/services/create-notification.js';
import { createBlock } from '@/services/blocking/create.js';
@ -12,30 +12,15 @@ export async function move(actor: IRemoteUser, activity: IMove, resolver: Resolv
// actor is not move origin
if (activity.object == null || getApId(activity.object) !== actor.uri) return;
// actor already moved
if (actor.movedTo != null) return;
// no move target
if (activity.target == null) return;
/* the database resolver can not be used here, because:
* 1. It must be ensured that the latest data is used.
* 2. The AP representation is needed, because `alsoKnownAs`
* is not stored in the database.
* This also checks whether the move target is blocked
*/
const movedToAp = await resolver.resolve(getApId(activity.target));
const movedTo = await verifyMove(actor, activity.target, resolver);
// move target is not an actor
if (!isActor(movedToAp)) return;
// move destination has not accepted
if (!Array.isArray(movedToAp.alsoKnownAs) || !movedToAp.alsoKnownAs.includes(actor.id)) return;
// ensure the user exists
const movedTo = await resolvePerson(getApId(activity.target), resolver, movedToAp);
// move target is already suspended
if (movedTo.isSuspended) return;
if (movedTo == null) {
// invalid or unnaccepted move
return;
}
// process move for local followers
const followings = await Followings.find({

View File

@ -34,6 +34,39 @@ import { resolveImage } from './image.js';
const nameLength = 128;
const summaryLength = 2048;
/**
* Checks that a move of the given origin actor is accepted by the target actor, using the given resolver.
* @returns null if move is invalid, or the internal representation of the move target if the move is valid.
*/
export async function verifyMove(origin: IRemoteUser, target: string | IObject, resolver: Resolver): Promise<User | null> {
// actor already moved
if (origin.movedToId != null) return null;
/* the database resolver can not be used here, because:
* 1. It must be ensured that the latest data is used.
* 2. The AP representation is needed, because `alsoKnownAs`
* is not stored in the database.
* This also checks whether the move target is blocked
*/
const resolvedTarget = resolver.resolve(target);
// move resolvedTarget is not an actor
if (!isActor(resolvedTarget)) return null;
// moved to self, this check is necessary to avoid infinite loops during verification
if (origin.uri === resolvedTarget.id) return null;
// move destination has not accepted
if (!Array.isArray(resolvedTarget.alsoKnownAs) || !resolvedTarget.alsoKnownAs.includes(actor.uri)) return null;
// ensure the user exists (or is fetched)
const movedTo = await resolvePerson(resolvedTarget.id, resolver, resolvedTarget);
// move target is already suspended
if (movedTo.isSuspended) return null;
return movedTo;
}
/**
* Validate and convert to actor object
* @param x Fetched object
@ -62,19 +95,22 @@ async function validateActor(x: IObject, resolver: Resolver): Promise<IActor> {
}
if (x.movedTo !== undefined) {
if (!(typeof x.movedTo === 'string' && x.movedTo.length > 0)) {
throw new Error('invalid Actor: wrong movedTo');
try {
const target = await verifyMove(x, x.movedTo, resolver);
if (null == target) {
throw new Error("invalid move");
} else {
await resolvePerson(x.movedTo, resolver)
.then(moveTarget => {
x.movedTo = moveTarget.id
});
}
} catch (err) {
apLogger.warn(`cannot find move target "${x.movedTo}", error: ${err.toString()}`);
// This move is invalid.
// Don't treat the whole actor as invalid, just ignore/remove the movedTo.
delete x.movedTo;
}
if (x.movedTo === uri) {
throw new Error('invalid Actor: moved to self');
}
// This may throw an exception if we cannot resolve the move target.
// If we are processing an incoming activity, this is desired behaviour
// because that will cause the activity to be retried.
await resolvePerson(x.movedTo, resolver)
.then(moveTarget => {
x.movedTo = moveTarget.id
});
}
if (!(typeof x.inbox === 'string' && x.inbox.length > 0)) {