[PLUGIN][Repeat] Fixed bug where checks dependant on user being logged in were attempted.

This commit is contained in:
Eliseu Amaro 2021-11-15 17:38:15 +00:00 committed by Hugo Sales
parent 6e90e51f0c
commit 9dbbc9e18e
Signed by: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
1 changed files with 12 additions and 2 deletions

View File

@ -31,6 +31,7 @@ use App\Entity\Note;
use App\Util\Common;
use App\Util\Exception\DuplicateFoundException;
use App\Util\Exception\InvalidFormException;
use App\Util\Exception\NoLoggedInUser;
use App\Util\Exception\NoSuchNoteException;
use App\Util\Exception\NotFoundException;
use App\Util\Exception\RedirectException;
@ -92,10 +93,19 @@ class Repeat extends NoteHandlerPlugin
return Event::next;
}
/**
* @throws \App\Util\Exception\NoLoggedInUser
*/
public function onAppendCardNote(array $vars, array &$result) {
// if note is the original and user isn't the one who repeated, append on end "user repeated this"
// if user is the one who repeated, append on end "you repeated this, remove repeat?"
$current_actor_id = (Common::actor())->getId();
$check_user = true;
try {
$user = Common::ensureLoggedIn();
} catch (NoLoggedInUser $e) {
$check_user = false;
}
$note = $vars['note'];
$complementary_info = '';
@ -118,7 +128,7 @@ class Repeat extends NoteHandlerPlugin
$repeat_actor_url = $actor->getUrl();
$repeat_actor_nickname = $actor->getNickname();
if ($actor->getId() === $current_actor_id) {
if ($check_user && $actor->getId() === (Common::actor())->getId()) {
// If the repeat is yours
$prepend = "<a href={$repeat_actor_url}>You</a>, " . ($prepend = &$complementary_info);
$complementary_info = $prepend;