[CORE][ENTITY] Rename 'Entity::getWithPK' to 'Entity::getByPK'
This commit is contained in:
parent
330b6b49a2
commit
a81ac673ac
|
@ -29,9 +29,6 @@ namespace Component\Conversation\Controller;
|
||||||
use App\Core\Controller\FeedController;
|
use App\Core\Controller\FeedController;
|
||||||
use App\Core\DB\DB;
|
use App\Core\DB\DB;
|
||||||
use App\Core\Form;
|
use App\Core\Form;
|
||||||
use App\Util\Exception\DuplicateFoundException;
|
|
||||||
use App\Util\Exception\NoLoggedInUser;
|
|
||||||
use App\Util\Exception\ServerException;
|
|
||||||
use function App\Core\I18n\_m;
|
use function App\Core\I18n\_m;
|
||||||
use App\Core\Log;
|
use App\Core\Log;
|
||||||
use App\Core\Router\Router;
|
use App\Core\Router\Router;
|
||||||
|
@ -39,10 +36,13 @@ use App\Entity\Actor;
|
||||||
use App\Entity\Note;
|
use App\Entity\Note;
|
||||||
use App\Util\Common;
|
use App\Util\Common;
|
||||||
use App\Util\Exception\ClientException;
|
use App\Util\Exception\ClientException;
|
||||||
|
use App\Util\Exception\DuplicateFoundException;
|
||||||
use App\Util\Exception\InvalidFormException;
|
use App\Util\Exception\InvalidFormException;
|
||||||
|
use App\Util\Exception\NoLoggedInUser;
|
||||||
use App\Util\Exception\NoSuchNoteException;
|
use App\Util\Exception\NoSuchNoteException;
|
||||||
use App\Util\Exception\NotImplementedException;
|
use App\Util\Exception\NotImplementedException;
|
||||||
use App\Util\Exception\RedirectException;
|
use App\Util\Exception\RedirectException;
|
||||||
|
use App\Util\Exception\ServerException;
|
||||||
use App\Util\Form\FormFields;
|
use App\Util\Form\FormFields;
|
||||||
use Component\Posting\Posting;
|
use Component\Posting\Posting;
|
||||||
use Symfony\Component\Form\Extension\Core\Type\FileType;
|
use Symfony\Component\Form\Extension\Core\Type\FileType;
|
||||||
|
@ -52,27 +52,25 @@ use Symfony\Component\HttpFoundation\Request;
|
||||||
|
|
||||||
class Reply extends FeedController
|
class Reply extends FeedController
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Controller for the note reply non-JS page
|
* Controller for the note reply non-JS page
|
||||||
*
|
*
|
||||||
* @param Request $request
|
|
||||||
* @param int $id
|
|
||||||
* @return array
|
|
||||||
* @throws ClientException
|
* @throws ClientException
|
||||||
|
* @throws DuplicateFoundException
|
||||||
* @throws InvalidFormException
|
* @throws InvalidFormException
|
||||||
|
* @throws NoLoggedInUser
|
||||||
* @throws NoSuchNoteException
|
* @throws NoSuchNoteException
|
||||||
* @throws RedirectException
|
* @throws RedirectException
|
||||||
* @throws DuplicateFoundException
|
|
||||||
* @throws NoLoggedInUser
|
|
||||||
* @throws ServerException
|
* @throws ServerException
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
*/
|
*/
|
||||||
public function replyAddNote(Request $request, int $id)
|
public function replyAddNote(Request $request, int $id)
|
||||||
{
|
{
|
||||||
$user = Common::ensureLoggedIn();
|
$user = Common::ensureLoggedIn();
|
||||||
$actor_id = $user->getId();
|
$actor_id = $user->getId();
|
||||||
|
|
||||||
$note = Note::getWithPK($id);
|
$note = Note::getByPK($id);
|
||||||
if (\is_null($note) || !$note->isVisibleTo($user)) {
|
if (\is_null($note) || !$note->isVisibleTo($user)) {
|
||||||
throw new NoSuchNoteException();
|
throw new NoSuchNoteException();
|
||||||
}
|
}
|
||||||
|
@ -80,9 +78,11 @@ class Reply extends FeedController
|
||||||
// TODO shouldn't this be the posting form?
|
// TODO shouldn't this be the posting form?
|
||||||
$form = Form::create([
|
$form = Form::create([
|
||||||
['content', TextareaType::class, ['label' => _m('Reply'), 'label_attr' => ['class' => 'section-form-label'], 'help' => _m('Please input your reply.')]],
|
['content', TextareaType::class, ['label' => _m('Reply'), 'label_attr' => ['class' => 'section-form-label'], 'help' => _m('Please input your reply.')]],
|
||||||
FormFields::language($user->getActor(),
|
FormFields::language(
|
||||||
|
$user->getActor(),
|
||||||
context_actor: $note->getActor(),
|
context_actor: $note->getActor(),
|
||||||
label: _m('Note language')),
|
label: _m('Note language'),
|
||||||
|
),
|
||||||
['attachments', FileType::class, ['label' => ' ', 'multiple' => true, 'required' => false]],
|
['attachments', FileType::class, ['label' => ' ', 'multiple' => true, 'required' => false]],
|
||||||
['replyform', SubmitType::class, ['label' => _m('Submit')]],
|
['replyform', SubmitType::class, ['label' => _m('Submit')]],
|
||||||
]);
|
]);
|
||||||
|
@ -94,7 +94,7 @@ class Reply extends FeedController
|
||||||
if ($form->isValid()) {
|
if ($form->isValid()) {
|
||||||
// Create a new note with the same content as the original
|
// Create a new note with the same content as the original
|
||||||
$reply = Posting::storeLocalNote(
|
$reply = Posting::storeLocalNote(
|
||||||
actor: Actor::getWithPK($actor_id),
|
actor: Actor::getByPK($actor_id),
|
||||||
content: $data['content'],
|
content: $data['content'],
|
||||||
content_type: 'text/plain', // TODO
|
content_type: 'text/plain', // TODO
|
||||||
language: $data['language'],
|
language: $data['language'],
|
||||||
|
@ -108,7 +108,7 @@ class Reply extends FeedController
|
||||||
// Find the id of the note we just created
|
// Find the id of the note we just created
|
||||||
$reply_id = $reply->getId();
|
$reply_id = $reply->getId();
|
||||||
$parent_id = $note->getId();
|
$parent_id = $note->getId();
|
||||||
$resulting_note = Note::getWithPK($reply_id);
|
$resulting_note = Note::getByPK($reply_id);
|
||||||
$resulting_note->setReplyTo($parent_id);
|
$resulting_note->setReplyTo($parent_id);
|
||||||
|
|
||||||
// Update DB one last time
|
// Update DB one last time
|
||||||
|
|
|
@ -25,9 +25,9 @@ namespace Component\Conversation;
|
||||||
|
|
||||||
use App\Core\DB\DB;
|
use App\Core\DB\DB;
|
||||||
use App\Core\Event;
|
use App\Core\Event;
|
||||||
|
use function App\Core\I18n\_m;
|
||||||
use App\Core\Modules\Component;
|
use App\Core\Modules\Component;
|
||||||
use App\Core\Router\RouteLoader;
|
use App\Core\Router\RouteLoader;
|
||||||
use function App\Core\I18n\_m;
|
|
||||||
use App\Core\Router\Router;
|
use App\Core\Router\Router;
|
||||||
use App\Entity\Actor;
|
use App\Entity\Actor;
|
||||||
use App\Entity\Feed;
|
use App\Entity\Feed;
|
||||||
|
@ -42,15 +42,9 @@ use Symfony\Component\HttpFoundation\Request;
|
||||||
|
|
||||||
class Conversation extends Component
|
class Conversation extends Component
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* HTML rendering event that adds the repeat form as a note
|
* HTML rendering event that adds the repeat form as a note
|
||||||
* action, if a user is logged in
|
* action, if a user is logged in
|
||||||
*
|
|
||||||
* @param Request $request
|
|
||||||
* @param Note $note
|
|
||||||
* @param array $actions
|
|
||||||
* @return bool
|
|
||||||
*/
|
*/
|
||||||
public function onAddNoteActions(Request $request, Note $note, array &$actions): bool
|
public function onAddNoteActions(Request $request, Note $note, array &$actions): bool
|
||||||
{
|
{
|
||||||
|
@ -78,13 +72,8 @@ class Conversation extends Component
|
||||||
return Event::next;
|
return Event::next;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Append on note information about user actions
|
* Append on note information about user actions
|
||||||
*
|
|
||||||
* @param array $vars
|
|
||||||
* @param array $result
|
|
||||||
* @return bool
|
|
||||||
*/
|
*/
|
||||||
public function onAppendCardNote(array $vars, array &$result): bool
|
public function onAppendCardNote(array $vars, array &$result): bool
|
||||||
{
|
{
|
||||||
|
@ -99,7 +88,7 @@ class Conversation extends Component
|
||||||
|
|
||||||
// Get actors who replied
|
// Get actors who replied
|
||||||
foreach ($note_replies as $reply) {
|
foreach ($note_replies as $reply) {
|
||||||
$reply_actor[] = Actor::getWithPK($reply->getActorId());
|
$reply_actor[] = Actor::getByPK($reply->getActorId());
|
||||||
}
|
}
|
||||||
if (\count($reply_actor) < 1) {
|
if (\count($reply_actor) < 1) {
|
||||||
return Event::next;
|
return Event::next;
|
||||||
|
@ -137,7 +126,6 @@ class Conversation extends Component
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param RouteLoader $r
|
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
public function onAddRoute(RouteLoader $r)
|
public function onAddRoute(RouteLoader $r)
|
||||||
|
|
|
@ -120,7 +120,7 @@ class FreeNetworkActorProtocol extends Entity
|
||||||
public static function protocolSucceeded(string $protocol, int|Actor $actor_id, string $addr): void
|
public static function protocolSucceeded(string $protocol, int|Actor $actor_id, string $addr): void
|
||||||
{
|
{
|
||||||
$actor_id = is_int($actor_id) ? $actor_id : $actor_id->getId();
|
$actor_id = is_int($actor_id) ? $actor_id : $actor_id->getId();
|
||||||
$attributed_protocol = self::getWithPK(['actor_id' => $actor_id]);
|
$attributed_protocol = self::getByPK(['actor_id' => $actor_id]);
|
||||||
if (is_null($attributed_protocol)) {
|
if (is_null($attributed_protocol)) {
|
||||||
$attributed_protocol = self::create([
|
$attributed_protocol = self::create([
|
||||||
'actor_id' => $actor_id,
|
'actor_id' => $actor_id,
|
||||||
|
@ -136,7 +136,7 @@ class FreeNetworkActorProtocol extends Entity
|
||||||
public static function canIActor(string $protocol, int|Actor $actor_id): bool
|
public static function canIActor(string $protocol, int|Actor $actor_id): bool
|
||||||
{
|
{
|
||||||
$actor_id = is_int($actor_id) ? $actor_id : $actor_id->getId();
|
$actor_id = is_int($actor_id) ? $actor_id : $actor_id->getId();
|
||||||
$attributed_protocol = self::getWithPK(['actor_id' => $actor_id])?->getProtocol();
|
$attributed_protocol = self::getByPK(['actor_id' => $actor_id])?->getProtocol();
|
||||||
if (is_null($attributed_protocol)) {
|
if (is_null($attributed_protocol)) {
|
||||||
// If it is not attributed, you can go ahead.
|
// If it is not attributed, you can go ahead.
|
||||||
return true;
|
return true;
|
||||||
|
@ -150,7 +150,7 @@ class FreeNetworkActorProtocol extends Entity
|
||||||
{
|
{
|
||||||
// Normalize $addr, i.e. add 'acct:' if missing
|
// Normalize $addr, i.e. add 'acct:' if missing
|
||||||
$addr = Discovery::normalize($target);
|
$addr = Discovery::normalize($target);
|
||||||
$attributed_protocol = self::getWithPK(['addr' => $addr])?->getProtocol();
|
$attributed_protocol = self::getByPK(['addr' => $addr])?->getProtocol();
|
||||||
if (is_null($attributed_protocol)) {
|
if (is_null($attributed_protocol)) {
|
||||||
// If it is not attributed, you can go ahead.
|
// If it is not attributed, you can go ahead.
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -147,7 +147,7 @@ class FreeNetwork extends Component
|
||||||
}
|
}
|
||||||
|
|
||||||
$nick = Nickname::normalize(nickname: $nick, check_already_used: false, check_is_allowed: false);
|
$nick = Nickname::normalize(nickname: $nick, check_already_used: false, check_is_allowed: false);
|
||||||
$freenetwork_actor = LocalUser::getWithPK(['nickname' => $nick]);
|
$freenetwork_actor = LocalUser::getByPK(['nickname' => $nick]);
|
||||||
if (!($freenetwork_actor instanceof LocalUser)) {
|
if (!($freenetwork_actor instanceof LocalUser)) {
|
||||||
throw new NoSuchActorException($nick);
|
throw new NoSuchActorException($nick);
|
||||||
}
|
}
|
||||||
|
@ -166,7 +166,7 @@ class FreeNetwork extends Component
|
||||||
// actor_view_id
|
// actor_view_id
|
||||||
$reuri = '/\/actor\/(\d+)\/?/m';
|
$reuri = '/\/actor\/(\d+)\/?/m';
|
||||||
if (preg_match_all($renick, $str, $matches, PREG_SET_ORDER, 0) === 1) {
|
if (preg_match_all($renick, $str, $matches, PREG_SET_ORDER, 0) === 1) {
|
||||||
$profile = LocalUser::getWithPK(['nickname' => $matches[0][1]])->getActor();
|
$profile = LocalUser::getByPK(['nickname' => $matches[0][1]])->getActor();
|
||||||
} elseif (preg_match_all($reuri, $str, $matches, PREG_SET_ORDER, 0) === 1) {
|
} elseif (preg_match_all($reuri, $str, $matches, PREG_SET_ORDER, 0) === 1) {
|
||||||
$profile = Actor::getById((int) $matches[0][1]);
|
$profile = Actor::getById((int) $matches[0][1]);
|
||||||
}
|
}
|
||||||
|
@ -197,9 +197,9 @@ class FreeNetwork extends Component
|
||||||
return Event::stop; // We got our target, stop handler execution
|
return Event::stop; // We got our target, stop handler execution
|
||||||
}
|
}
|
||||||
|
|
||||||
$APNote = ActivitypubActivity::getWithPK(['object_uri' => $resource]);
|
$APNote = ActivitypubActivity::getByPK(['object_uri' => $resource]);
|
||||||
if ($APNote instanceof ActivitypubActivity) {
|
if ($APNote instanceof ActivitypubActivity) {
|
||||||
$target = new WebfingerResourceNote(Note::getWithPK(['id' => $APNote->getObjectId()]));
|
$target = new WebfingerResourceNote(Note::getByPK(['id' => $APNote->getObjectId()]));
|
||||||
return Event::stop; // We got our target, stop handler execution
|
return Event::stop; // We got our target, stop handler execution
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -364,7 +364,7 @@ class FreeNetwork extends Component
|
||||||
|
|
||||||
$resource_parts = explode($preMention, $target);
|
$resource_parts = explode($preMention, $target);
|
||||||
if ($resource_parts[1] === $_ENV['SOCIAL_DOMAIN']) { // XXX: Common::config('site', 'server')) {
|
if ($resource_parts[1] === $_ENV['SOCIAL_DOMAIN']) { // XXX: Common::config('site', 'server')) {
|
||||||
$actor = LocalUser::getWithPK(['nickname' => $resource_parts[0]])->getActor();
|
$actor = LocalUser::getByPK(['nickname' => $resource_parts[0]])->getActor();
|
||||||
} else {
|
} else {
|
||||||
Event::handle('FreeNetworkFindMentions', [$target, &$actor]);
|
Event::handle('FreeNetworkFindMentions', [$target, &$actor]);
|
||||||
if (is_null($actor)) {
|
if (is_null($actor)) {
|
||||||
|
@ -399,7 +399,7 @@ class FreeNetwork extends Component
|
||||||
// actor_view_id
|
// actor_view_id
|
||||||
$reuri = '/\/actor\/(\d+)\/?/m';
|
$reuri = '/\/actor\/(\d+)\/?/m';
|
||||||
if (preg_match_all($renick, $str, $matches, PREG_SET_ORDER, 0) === 1) {
|
if (preg_match_all($renick, $str, $matches, PREG_SET_ORDER, 0) === 1) {
|
||||||
$actor = LocalUser::getWithPK(['nickname' => $matches[0][1]])->getActor();
|
$actor = LocalUser::getByPK(['nickname' => $matches[0][1]])->getActor();
|
||||||
} elseif (preg_match_all($reuri, $str, $matches, PREG_SET_ORDER, 0) === 1) {
|
} elseif (preg_match_all($reuri, $str, $matches, PREG_SET_ORDER, 0) === 1) {
|
||||||
$actor = Actor::getById((int) $matches[0][1]);
|
$actor = Actor::getById((int) $matches[0][1]);
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -146,7 +146,7 @@ class ActivityPub extends Plugin
|
||||||
// Is remote?
|
// Is remote?
|
||||||
!$actor->getIsLocal()
|
!$actor->getIsLocal()
|
||||||
// Is in ActivityPub?
|
// Is in ActivityPub?
|
||||||
&& !is_null($ap_actor = ActivitypubActor::getWithPK(['actor_id' => $actor->getId()]))
|
&& !is_null($ap_actor = ActivitypubActor::getByPK(['actor_id' => $actor->getId()]))
|
||||||
// We can only provide a full URL (anything else wouldn't make sense)
|
// We can only provide a full URL (anything else wouldn't make sense)
|
||||||
&& $type === Router::ABSOLUTE_URL
|
&& $type === Router::ABSOLUTE_URL
|
||||||
) {
|
) {
|
||||||
|
@ -236,7 +236,7 @@ class ActivityPub extends Plugin
|
||||||
$to_addr = [];
|
$to_addr = [];
|
||||||
foreach ($targets as $actor) {
|
foreach ($targets as $actor) {
|
||||||
if (FreeNetworkActorProtocol::canIActor('activitypub', $actor->getId())) {
|
if (FreeNetworkActorProtocol::canIActor('activitypub', $actor->getId())) {
|
||||||
if (is_null($ap_target = ActivitypubActor::getWithPK(['actor_id' => $actor->getId()]))) {
|
if (is_null($ap_target = ActivitypubActor::getByPK(['actor_id' => $actor->getId()]))) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
$to_addr[$ap_target->getInboxSharedUri() ?? $ap_target->getInboxUri()][] = $actor;
|
$to_addr[$ap_target->getInboxSharedUri() ?? $ap_target->getInboxUri()][] = $actor;
|
||||||
|
@ -399,13 +399,13 @@ class ActivityPub extends Plugin
|
||||||
public static function getObjectByUri(string $resource, bool $try_online = true)
|
public static function getObjectByUri(string $resource, bool $try_online = true)
|
||||||
{
|
{
|
||||||
// Try known objects
|
// Try known objects
|
||||||
$known_object = ActivitypubObject::getWithPK(['object_uri' => $resource]);
|
$known_object = ActivitypubObject::getByPK(['object_uri' => $resource]);
|
||||||
if ($known_object instanceof ActivitypubObject) {
|
if ($known_object instanceof ActivitypubObject) {
|
||||||
return $known_object->getObject();
|
return $known_object->getObject();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Try known activities
|
// Try known activities
|
||||||
$known_activity = ActivitypubActivity::getWithPK(['activity_uri' => $resource]);
|
$known_activity = ActivitypubActivity::getByPK(['activity_uri' => $resource]);
|
||||||
if ($known_activity instanceof ActivitypubActivity) {
|
if ($known_activity instanceof ActivitypubActivity) {
|
||||||
return $known_activity->getActivity();
|
return $known_activity->getActivity();
|
||||||
}
|
}
|
||||||
|
@ -462,7 +462,7 @@ class ActivityPub extends Plugin
|
||||||
// actor_view_id
|
// actor_view_id
|
||||||
$reuri = '/\/actor\/(\d+)\/?/m';
|
$reuri = '/\/actor\/(\d+)\/?/m';
|
||||||
if (preg_match_all($renick, $str, $matches, PREG_SET_ORDER, 0) === 1) {
|
if (preg_match_all($renick, $str, $matches, PREG_SET_ORDER, 0) === 1) {
|
||||||
return LocalUser::getWithPK(['nickname' => $matches[0][1]])->getActor();
|
return LocalUser::getByPK(['nickname' => $matches[0][1]])->getActor();
|
||||||
} elseif (preg_match_all($reuri, $str, $matches, PREG_SET_ORDER, 0) === 1) {
|
} elseif (preg_match_all($reuri, $str, $matches, PREG_SET_ORDER, 0) === 1) {
|
||||||
return Actor::getById((int)$matches[0][1]);
|
return Actor::getById((int)$matches[0][1]);
|
||||||
}
|
}
|
||||||
|
|
|
@ -144,7 +144,7 @@ class ActivitypubRsa extends Entity
|
||||||
*/
|
*/
|
||||||
public static function getByActor(Actor $gsactor, bool $fetch = true): self
|
public static function getByActor(Actor $gsactor, bool $fetch = true): self
|
||||||
{
|
{
|
||||||
$apRSA = self::getWithPK(['actor_id' => ($actor_id = $gsactor->getId())]);
|
$apRSA = self::getByPK(['actor_id' => ($actor_id = $gsactor->getId())]);
|
||||||
if (is_null($apRSA)) {
|
if (is_null($apRSA)) {
|
||||||
// Nonexistent key pair for this profile
|
// Nonexistent key pair for this profile
|
||||||
if ($gsactor->getIsLocal()) {
|
if ($gsactor->getIsLocal()) {
|
||||||
|
|
|
@ -228,8 +228,8 @@ class Explorer
|
||||||
*/
|
*/
|
||||||
public static function get_aprofile_by_url(string $v): ActivitypubActor|bool
|
public static function get_aprofile_by_url(string $v): ActivitypubActor|bool
|
||||||
{
|
{
|
||||||
$aprofile = ActivitypubActor::getWithPK(['uri' => $v]);
|
$aprofile = ActivitypubActor::getByPK(['uri' => $v]);
|
||||||
return is_null($aprofile) ? false : ActivitypubActor::getWithPK(['uri' => $v]);
|
return is_null($aprofile) ? false : ActivitypubActor::getByPK(['uri' => $v]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -77,7 +77,7 @@ class Activity extends Model
|
||||||
$type_activity = is_string($json) ? self::jsonToType($json) : $json;
|
$type_activity = is_string($json) ? self::jsonToType($json) : $json;
|
||||||
|
|
||||||
// Ditch known activities
|
// Ditch known activities
|
||||||
$ap_act = ActivitypubActivity::getWithPK(['activity_uri' => $type_activity->get('id')]);
|
$ap_act = ActivitypubActivity::getByPK(['activity_uri' => $type_activity->get('id')]);
|
||||||
if (!is_null($ap_act)) {
|
if (!is_null($ap_act)) {
|
||||||
return $ap_act;
|
return $ap_act;
|
||||||
}
|
}
|
||||||
|
|
|
@ -240,7 +240,7 @@ class Note extends Model
|
||||||
'type' => 'Document',
|
'type' => 'Document',
|
||||||
'mediaType' => $attachment->getMimetype(),
|
'mediaType' => $attachment->getMimetype(),
|
||||||
'url' => $attachment->getUrl(Router::ABSOLUTE_URL),
|
'url' => $attachment->getUrl(Router::ABSOLUTE_URL),
|
||||||
'name' => AttachmentToNote::getWithPK(['attachment_id' => $attachment->getId(), 'note_id' => $object->getId()])->getTitle(),
|
'name' => AttachmentToNote::getByPK(['attachment_id' => $attachment->getId(), 'note_id' => $object->getId()])->getTitle(),
|
||||||
'width' => $attachment->getWidth(),
|
'width' => $attachment->getWidth(),
|
||||||
'height' => $attachment->getHeight(),
|
'height' => $attachment->getHeight(),
|
||||||
];
|
];
|
||||||
|
|
|
@ -64,7 +64,7 @@ class AnswerPoll
|
||||||
{
|
{
|
||||||
$user = Common::ensureLoggedIn();
|
$user = Common::ensureLoggedIn();
|
||||||
|
|
||||||
$poll = Poll::getWithPk((int) $id);
|
$poll = Poll::getByPk((int) $id);
|
||||||
if ($poll == null) {
|
if ($poll == null) {
|
||||||
throw new NotFoundException('Poll does not exist');
|
throw new NotFoundException('Poll does not exist');
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types = 1);
|
||||||
|
|
||||||
// {{{ License
|
// {{{ License
|
||||||
|
|
||||||
|
@ -26,6 +26,7 @@ namespace Plugin\RepeatNote\Controller;
|
||||||
use App\Core\Controller;
|
use App\Core\Controller;
|
||||||
use App\Core\DB\DB;
|
use App\Core\DB\DB;
|
||||||
use App\Core\Form;
|
use App\Core\Form;
|
||||||
|
use function App\Core\I18n\_m;
|
||||||
use App\Core\Log;
|
use App\Core\Log;
|
||||||
use App\Core\Router\Router;
|
use App\Core\Router\Router;
|
||||||
use App\Entity\Note;
|
use App\Entity\Note;
|
||||||
|
@ -37,32 +38,30 @@ use App\Util\Exception\RedirectException;
|
||||||
use App\Util\Exception\ServerException;
|
use App\Util\Exception\ServerException;
|
||||||
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
|
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
use function App\Core\I18n\_m;
|
|
||||||
use function is_null;
|
|
||||||
|
|
||||||
class Repeat extends Controller
|
class Repeat extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Controller for the note repeat non-JS page
|
* Controller for the note repeat non-JS page
|
||||||
*
|
*
|
||||||
* @throws ServerException
|
|
||||||
* @throws ClientException
|
* @throws ClientException
|
||||||
* @throws NoLoggedInUser
|
* @throws NoLoggedInUser
|
||||||
* @throws NoSuchNoteException
|
* @throws NoSuchNoteException
|
||||||
* @throws RedirectException
|
* @throws RedirectException
|
||||||
|
* @throws ServerException
|
||||||
*/
|
*/
|
||||||
public function repeatAddNote(Request $request, int $id): bool|array
|
public function repeatAddNote(Request $request, int $id): bool|array
|
||||||
{
|
{
|
||||||
$user = Common::ensureLoggedIn();
|
$user = Common::ensureLoggedIn();
|
||||||
|
|
||||||
$actor_id = $user->getId();
|
$actor_id = $user->getId();
|
||||||
$note = Note::getWithPK(['id' => $id]);
|
$note = Note::getByPK(['id' => $id]);
|
||||||
|
|
||||||
$form_add_to_repeat = Form::create([
|
$form_add_to_repeat = Form::create([
|
||||||
['add_repeat', SubmitType::class,
|
['add_repeat', SubmitType::class,
|
||||||
[
|
[
|
||||||
'label' => _m('Repeat note!'),
|
'label' => _m('Repeat note!'),
|
||||||
'attr' => [
|
'attr' => [
|
||||||
'title' => _m('Repeat this note!'),
|
'title' => _m('Repeat this note!'),
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
@ -76,7 +75,7 @@ class Repeat extends Controller
|
||||||
|
|
||||||
// Redirect user to where they came from
|
// Redirect user to where they came from
|
||||||
// Prevent open redirect
|
// Prevent open redirect
|
||||||
if (!is_null($from = $this->string('from'))) {
|
if (!\is_null($from = $this->string('from'))) {
|
||||||
if (Router::isAbsolute($from)) {
|
if (Router::isAbsolute($from)) {
|
||||||
Log::warning("Actor {$actor_id} attempted to reply to a note and then get redirected to another host, or the URL was invalid ({$from})");
|
Log::warning("Actor {$actor_id} attempted to reply to a note and then get redirected to another host, or the URL was invalid ({$from})");
|
||||||
throw new ClientException(_m('Can not redirect to outside the website from here'), 400); // 400 Bad request (deceptive)
|
throw new ClientException(_m('Can not redirect to outside the website from here'), 400); // 400 Bad request (deceptive)
|
||||||
|
@ -91,18 +90,18 @@ class Repeat extends Controller
|
||||||
}
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'_template' => 'repeat/add_to_repeats.html.twig',
|
'_template' => 'repeat/add_to_repeats.html.twig',
|
||||||
'note' => $note,
|
'note' => $note,
|
||||||
'add_repeat' => $form_add_to_repeat->createView(),
|
'add_repeat' => $form_add_to_repeat->createView(),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws ServerException
|
|
||||||
* @throws ClientException
|
* @throws ClientException
|
||||||
* @throws NoLoggedInUser
|
* @throws NoLoggedInUser
|
||||||
* @throws NoSuchNoteException
|
* @throws NoSuchNoteException
|
||||||
* @throws RedirectException
|
* @throws RedirectException
|
||||||
|
* @throws ServerException
|
||||||
*/
|
*/
|
||||||
public function repeatRemoveNote(Request $request, int $id): array
|
public function repeatRemoveNote(Request $request, int $id): array
|
||||||
{
|
{
|
||||||
|
@ -114,7 +113,7 @@ class Repeat extends Controller
|
||||||
['remove_repeat', SubmitType::class,
|
['remove_repeat', SubmitType::class,
|
||||||
[
|
[
|
||||||
'label' => _m('Remove repeat'),
|
'label' => _m('Remove repeat'),
|
||||||
'attr' => [
|
'attr' => [
|
||||||
'title' => _m('Remove note from repeats.'),
|
'title' => _m('Remove note from repeats.'),
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
@ -123,7 +122,7 @@ class Repeat extends Controller
|
||||||
|
|
||||||
$form_remove_repeat->handleRequest($request);
|
$form_remove_repeat->handleRequest($request);
|
||||||
if ($form_remove_repeat->isSubmitted()) {
|
if ($form_remove_repeat->isSubmitted()) {
|
||||||
if (!is_null(\Plugin\RepeatNote\RepeatNote::unrepeatNote(note_id: $id, actor_id: $actor_id))) {
|
if (!\is_null(\Plugin\RepeatNote\RepeatNote::unrepeatNote(note_id: $id, actor_id: $actor_id))) {
|
||||||
DB::flush();
|
DB::flush();
|
||||||
} else {
|
} else {
|
||||||
throw new ClientException(_m('Note wasn\'t repeated!'));
|
throw new ClientException(_m('Note wasn\'t repeated!'));
|
||||||
|
@ -131,7 +130,7 @@ class Repeat extends Controller
|
||||||
|
|
||||||
// Redirect user to where they came from
|
// Redirect user to where they came from
|
||||||
// Prevent open redirect
|
// Prevent open redirect
|
||||||
if (!is_null($from = $this->string('from'))) {
|
if (!\is_null($from = $this->string('from'))) {
|
||||||
if (Router::isAbsolute($from)) {
|
if (Router::isAbsolute($from)) {
|
||||||
Log::warning("Actor {$actor_id} attempted to reply to a note and then get redirected to another host, or the URL was invalid ({$from})");
|
Log::warning("Actor {$actor_id} attempted to reply to a note and then get redirected to another host, or the URL was invalid ({$from})");
|
||||||
throw new ClientException(_m('Can not redirect to outside the website from here'), 400); // 400 Bad request (deceptive)
|
throw new ClientException(_m('Can not redirect to outside the website from here'), 400); // 400 Bad request (deceptive)
|
||||||
|
@ -146,8 +145,8 @@ class Repeat extends Controller
|
||||||
}
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'_template' => 'repeat/remove_from_repeats.html.twig',
|
'_template' => 'repeat/remove_from_repeats.html.twig',
|
||||||
'note' => Note::getById($id),
|
'note' => Note::getById($id),
|
||||||
'remove_repeat' => $form_remove_repeat->createView(),
|
'remove_repeat' => $form_remove_repeat->createView(),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types = 1);
|
||||||
|
|
||||||
// {{{ License
|
// {{{ License
|
||||||
// This file is part of GNU social - https://www.gnu.org/software/social
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
||||||
|
@ -23,6 +23,7 @@ namespace Plugin\RepeatNote;
|
||||||
|
|
||||||
use App\Core\DB\DB;
|
use App\Core\DB\DB;
|
||||||
use App\Core\Event;
|
use App\Core\Event;
|
||||||
|
use function App\Core\I18n\_m;
|
||||||
use App\Core\Modules\NoteHandlerPlugin;
|
use App\Core\Modules\NoteHandlerPlugin;
|
||||||
use App\Core\Router\RouteLoader;
|
use App\Core\Router\RouteLoader;
|
||||||
use App\Core\Router\Router;
|
use App\Core\Router\Router;
|
||||||
|
@ -36,12 +37,10 @@ use App\Util\Exception\NotFoundException;
|
||||||
use App\Util\Exception\ServerException;
|
use App\Util\Exception\ServerException;
|
||||||
use App\Util\Formatting;
|
use App\Util\Formatting;
|
||||||
use Component\Posting\Posting;
|
use Component\Posting\Posting;
|
||||||
|
use DateTime;
|
||||||
use Plugin\RepeatNote\Entity\NoteRepeat;
|
use Plugin\RepeatNote\Entity\NoteRepeat;
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
|
||||||
use function App\Core\I18n\_m;
|
|
||||||
use function count;
|
|
||||||
use function is_null;
|
|
||||||
use const SORT_REGULAR;
|
use const SORT_REGULAR;
|
||||||
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
|
|
||||||
class RepeatNote extends NoteHandlerPlugin
|
class RepeatNote extends NoteHandlerPlugin
|
||||||
{
|
{
|
||||||
|
@ -49,16 +48,16 @@ class RepeatNote extends NoteHandlerPlugin
|
||||||
{
|
{
|
||||||
$repeat_entity = DB::findBy('note_repeat', [
|
$repeat_entity = DB::findBy('note_repeat', [
|
||||||
'actor_id' => $actor_id,
|
'actor_id' => $actor_id,
|
||||||
'note_id' => $note->getId(),
|
'note_id' => $note->getId(),
|
||||||
])[0] ?? null;
|
])[0] ?? null;
|
||||||
|
|
||||||
if (!is_null($repeat_entity)) {
|
if (!\is_null($repeat_entity)) {
|
||||||
return DB::findBy('activity', [
|
return DB::findBy('activity', [
|
||||||
'actor_id' => $actor_id,
|
'actor_id' => $actor_id,
|
||||||
'verb' => 'repeat',
|
'verb' => 'repeat',
|
||||||
'object_type' => 'note',
|
'object_type' => 'note',
|
||||||
'object_id' => $note->getId()
|
'object_id' => $note->getId(),
|
||||||
], order_by: ['created' => 'dsc'])[0];
|
], order_by: ['created' => 'dsc'])[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create a new note with the same content as the original
|
// Create a new note with the same content as the original
|
||||||
|
@ -66,30 +65,30 @@ class RepeatNote extends NoteHandlerPlugin
|
||||||
actor: Actor::getById($actor_id),
|
actor: Actor::getById($actor_id),
|
||||||
content: $note->getContent(),
|
content: $note->getContent(),
|
||||||
content_type: $note->getContentType(),
|
content_type: $note->getContentType(),
|
||||||
language: is_null($lang_id = $note->getLanguageId()) ? null : Language::getById($lang_id)->getLocale(),
|
language: \is_null($lang_id = $note->getLanguageId()) ? null : Language::getById($lang_id)->getLocale(),
|
||||||
processed_attachments: $note->getAttachmentsWithTitle(),
|
processed_attachments: $note->getAttachmentsWithTitle(),
|
||||||
);
|
);
|
||||||
|
|
||||||
// Find the id of the note we just created
|
// Find the id of the note we just created
|
||||||
$repeat_id = $repeat?->getId();
|
$repeat_id = $repeat?->getId();
|
||||||
$og_id = $note->getId();
|
$og_id = $note->getId();
|
||||||
|
|
||||||
// Add it to note_repeat table
|
// Add it to note_repeat table
|
||||||
if (!is_null($repeat_id)) {
|
if (!\is_null($repeat_id)) {
|
||||||
DB::persist(NoteRepeat::create([
|
DB::persist(NoteRepeat::create([
|
||||||
'note_id' => $repeat_id,
|
'note_id' => $repeat_id,
|
||||||
'actor_id' => $actor_id,
|
'actor_id' => $actor_id,
|
||||||
'repeat_of' => $og_id,
|
'repeat_of' => $og_id,
|
||||||
]));
|
]));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Log an activity
|
// Log an activity
|
||||||
$repeat_activity = Activity::create([
|
$repeat_activity = Activity::create([
|
||||||
'actor_id' => $actor_id,
|
'actor_id' => $actor_id,
|
||||||
'verb' => 'repeat',
|
'verb' => 'repeat',
|
||||||
'object_type' => 'note',
|
'object_type' => 'note',
|
||||||
'object_id' => $note->getId(),
|
'object_id' => $note->getId(),
|
||||||
'source' => $source,
|
'source' => $source,
|
||||||
]);
|
]);
|
||||||
DB::persist($repeat_activity);
|
DB::persist($repeat_activity);
|
||||||
|
|
||||||
|
@ -102,13 +101,13 @@ class RepeatNote extends NoteHandlerPlugin
|
||||||
{
|
{
|
||||||
$already_repeated = DB::findBy('note_repeat', ['actor_id' => $actor_id, 'repeat_of' => $note_id])[0] ?? null;
|
$already_repeated = DB::findBy('note_repeat', ['actor_id' => $actor_id, 'repeat_of' => $note_id])[0] ?? null;
|
||||||
|
|
||||||
if (!is_null($already_repeated)) { // If it was repeated, then we can undo it
|
if (!\is_null($already_repeated)) { // If it was repeated, then we can undo it
|
||||||
// Find previous repeat activity
|
// Find previous repeat activity
|
||||||
$already_repeated_activity = DB::findBy('activity', [
|
$already_repeated_activity = DB::findBy('activity', [
|
||||||
'actor_id' => $actor_id,
|
'actor_id' => $actor_id,
|
||||||
'verb' => 'repeat',
|
'verb' => 'repeat',
|
||||||
'object_type' => 'note',
|
'object_type' => 'note',
|
||||||
'object_id' => $already_repeated->getRepeatOf()
|
'object_id' => $already_repeated->getRepeatOf(),
|
||||||
])[0] ?? null;
|
])[0] ?? null;
|
||||||
|
|
||||||
// Remove the clone note
|
// Remove the clone note
|
||||||
|
@ -119,11 +118,11 @@ class RepeatNote extends NoteHandlerPlugin
|
||||||
|
|
||||||
// Log an activity
|
// Log an activity
|
||||||
$undo_repeat_activity = Activity::create([
|
$undo_repeat_activity = Activity::create([
|
||||||
'actor_id' => $actor_id,
|
'actor_id' => $actor_id,
|
||||||
'verb' => 'undo',
|
'verb' => 'undo',
|
||||||
'object_type' => 'activity',
|
'object_type' => 'activity',
|
||||||
'object_id' => $already_repeated_activity->getId(),
|
'object_id' => $already_repeated_activity->getId(),
|
||||||
'source' => $source,
|
'source' => $source,
|
||||||
]);
|
]);
|
||||||
DB::persist($undo_repeat_activity);
|
DB::persist($undo_repeat_activity);
|
||||||
|
|
||||||
|
@ -132,17 +131,17 @@ class RepeatNote extends NoteHandlerPlugin
|
||||||
return $undo_repeat_activity;
|
return $undo_repeat_activity;
|
||||||
} else {
|
} else {
|
||||||
// Either was undoed already
|
// Either was undoed already
|
||||||
if (!is_null($already_repeated_activity = DB::findBy('activity', [
|
if (!\is_null($already_repeated_activity = DB::findBy('activity', [
|
||||||
'actor_id' => $actor_id,
|
'actor_id' => $actor_id,
|
||||||
'verb' => 'repeat',
|
'verb' => 'repeat',
|
||||||
'object_type' => 'note',
|
'object_type' => 'note',
|
||||||
'object_id' => $note_id,
|
'object_id' => $note_id,
|
||||||
])[0] ?? null)) {
|
])[0] ?? null)) {
|
||||||
return DB::findBy('activity', [
|
return DB::findBy('activity', [
|
||||||
'actor_id' => $actor_id,
|
'actor_id' => $actor_id,
|
||||||
'verb' => 'undo',
|
'verb' => 'undo',
|
||||||
'object_type' => 'activity',
|
'object_type' => 'activity',
|
||||||
'object_id' => $already_repeated_activity->getId(),
|
'object_id' => $already_repeated_activity->getId(),
|
||||||
])[0] ?? null; // null if not undoed
|
])[0] ?? null; // null if not undoed
|
||||||
} else {
|
} else {
|
||||||
// or it's an attempt to undo something that wasn't repeated in the first place,
|
// or it's an attempt to undo something that wasn't repeated in the first place,
|
||||||
|
@ -155,29 +154,26 @@ class RepeatNote extends NoteHandlerPlugin
|
||||||
* HTML rendering event that adds the repeat form as a note
|
* HTML rendering event that adds the repeat form as a note
|
||||||
* action, if a user is logged in
|
* action, if a user is logged in
|
||||||
*
|
*
|
||||||
* @param Request $request
|
|
||||||
* @param Note $note
|
|
||||||
* @param array $actions
|
|
||||||
* @return bool Event hook
|
* @return bool Event hook
|
||||||
*/
|
*/
|
||||||
public function onAddNoteActions(Request $request, Note $note, array &$actions): bool
|
public function onAddNoteActions(Request $request, Note $note, array &$actions): bool
|
||||||
{
|
{
|
||||||
// Only logged users can repeat notes
|
// Only logged users can repeat notes
|
||||||
if (is_null($user = Common::user())) {
|
if (\is_null($user = Common::user())) {
|
||||||
return Event::next;
|
return Event::next;
|
||||||
}
|
}
|
||||||
|
|
||||||
// If note is repeated, "is_repeated" is 1, 0 otherwise.
|
// If note is repeated, "is_repeated" is 1, 0 otherwise.
|
||||||
$is_repeat = ($note_repeat = DB::findBy('note_repeat', [
|
$is_repeat = ($note_repeat = DB::findBy('note_repeat', [
|
||||||
'actor_id' => $user->getId(),
|
'actor_id' => $user->getId(),
|
||||||
'note_id' => $note->getId()
|
'note_id' => $note->getId(),
|
||||||
])) !== [] ? 1 : 0;
|
])) !== [] ? 1 : 0;
|
||||||
|
|
||||||
// If note was already repeated, do not add the action
|
// If note was already repeated, do not add the action
|
||||||
try {
|
try {
|
||||||
if (DB::findOneBy('note_repeat', [
|
if (DB::findOneBy('note_repeat', [
|
||||||
'repeat_of' => $note->getId(),
|
'repeat_of' => $note->getId(),
|
||||||
'actor_id' => $user->getId()
|
'actor_id' => $user->getId(),
|
||||||
])) {
|
])) {
|
||||||
return Event::next;
|
return Event::next;
|
||||||
}
|
}
|
||||||
|
@ -186,8 +182,8 @@ class RepeatNote extends NoteHandlerPlugin
|
||||||
}
|
}
|
||||||
|
|
||||||
// Generating URL for repeat action route
|
// Generating URL for repeat action route
|
||||||
$args = ['id' => $is_repeat === 0 ? $note->getId() : $note_repeat[0]->getRepeatOf()];
|
$args = ['id' => $is_repeat === 0 ? $note->getId() : $note_repeat[0]->getRepeatOf()];
|
||||||
$type = Router::ABSOLUTE_PATH;
|
$type = Router::ABSOLUTE_PATH;
|
||||||
$repeat_action_url = $is_repeat
|
$repeat_action_url = $is_repeat
|
||||||
? Router::url('repeat_remove', $args, $type)
|
? Router::url('repeat_remove', $args, $type)
|
||||||
: Router::url('repeat_add', $args, $type);
|
: Router::url('repeat_add', $args, $type);
|
||||||
|
@ -196,14 +192,14 @@ class RepeatNote extends NoteHandlerPlugin
|
||||||
// SECURITY: open redirect?
|
// SECURITY: open redirect?
|
||||||
$query_string = $request->getQueryString();
|
$query_string = $request->getQueryString();
|
||||||
// Concatenating get parameter to redirect the user to where he came from
|
// Concatenating get parameter to redirect the user to where he came from
|
||||||
$repeat_action_url .= !is_null($query_string) ? '?from=' . mb_substr($query_string, 2) : '';
|
$repeat_action_url .= !\is_null($query_string) ? '?from=' . mb_substr($query_string, 2) : '';
|
||||||
|
|
||||||
$extra_classes = $is_repeat ? 'note-actions-set' : 'note-actions-unset';
|
$extra_classes = $is_repeat ? 'note-actions-set' : 'note-actions-unset';
|
||||||
$repeat_action = [
|
$repeat_action = [
|
||||||
'url' => $repeat_action_url,
|
'url' => $repeat_action_url,
|
||||||
'title' => $is_repeat ? 'Remove this repeat' : 'Repeat this note!',
|
'title' => $is_repeat ? 'Remove this repeat' : 'Repeat this note!',
|
||||||
'classes' => "button-container repeat-button-container {$extra_classes}",
|
'classes' => "button-container repeat-button-container {$extra_classes}",
|
||||||
'id' => 'repeat-button-container-' . $note->getId(),
|
'id' => 'repeat-button-container-' . $note->getId(),
|
||||||
];
|
];
|
||||||
|
|
||||||
$actions[] = $repeat_action;
|
$actions[] = $repeat_action;
|
||||||
|
@ -219,19 +215,19 @@ class RepeatNote extends NoteHandlerPlugin
|
||||||
{
|
{
|
||||||
// if note is the original and user isn't the one who repeated, append on end "user repeated this"
|
// 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?"
|
// if user is the one who repeated, append on end "you repeated this, remove repeat?"
|
||||||
$check_user = !is_null(Common::user());
|
$check_user = !\is_null(Common::user());
|
||||||
|
|
||||||
$note = $vars['note'];
|
$note = $vars['note'];
|
||||||
|
|
||||||
$complementary_info = '';
|
$complementary_info = '';
|
||||||
$repeat_actor = [];
|
$repeat_actor = [];
|
||||||
$note_repeats = NoteRepeat::getNoteRepeats($note);
|
$note_repeats = NoteRepeat::getNoteRepeats($note);
|
||||||
|
|
||||||
// Get actors who replied
|
// Get actors who replied
|
||||||
foreach ($note_repeats as $reply) {
|
foreach ($note_repeats as $reply) {
|
||||||
$repeat_actor[] = Actor::getWithPK($reply->getActorId());
|
$repeat_actor[] = Actor::getByPK($reply->getActorId());
|
||||||
}
|
}
|
||||||
if (count($repeat_actor) < 1) {
|
if (\count($repeat_actor) < 1) {
|
||||||
return Event::next;
|
return Event::next;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -240,7 +236,7 @@ class RepeatNote extends NoteHandlerPlugin
|
||||||
|
|
||||||
// Add to complementary info
|
// Add to complementary info
|
||||||
foreach ($repeat_actor as $actor) {
|
foreach ($repeat_actor as $actor) {
|
||||||
$repeat_actor_url = $actor->getUrl();
|
$repeat_actor_url = $actor->getUrl();
|
||||||
$repeat_actor_nickname = $actor->getNickname();
|
$repeat_actor_nickname = $actor->getNickname();
|
||||||
|
|
||||||
if ($check_user && $actor->getId() === (Common::actor())->getId()) {
|
if ($check_user && $actor->getId() === (Common::actor())->getId()) {
|
||||||
|
@ -251,7 +247,7 @@ class RepeatNote extends NoteHandlerPlugin
|
||||||
$you_translation = 'You';
|
$you_translation = 'You';
|
||||||
}
|
}
|
||||||
|
|
||||||
$prepend = "<a href={$repeat_actor_url}>{$you_translation}</a>, " . ($prepend = &$complementary_info);
|
$prepend = "<a href={$repeat_actor_url}>{$you_translation}</a>, " . ($prepend = &$complementary_info);
|
||||||
$complementary_info = $prepend;
|
$complementary_info = $prepend;
|
||||||
} else {
|
} else {
|
||||||
// If the repeat is from someone else
|
// If the repeat is from someone else
|
||||||
|
@ -279,33 +275,33 @@ class RepeatNote extends NoteHandlerPlugin
|
||||||
|
|
||||||
private function activitypub_handler(Actor $actor, \ActivityPhp\Type\AbstractObject $type_activity, mixed $type_object, ?\Plugin\ActivityPub\Entity\ActivitypubActivity &$ap_act): bool
|
private function activitypub_handler(Actor $actor, \ActivityPhp\Type\AbstractObject $type_activity, mixed $type_object, ?\Plugin\ActivityPub\Entity\ActivitypubActivity &$ap_act): bool
|
||||||
{
|
{
|
||||||
if (!in_array($type_activity->get('type'), ['Announce', 'Undo'])) {
|
if (!\in_array($type_activity->get('type'), ['Announce', 'Undo'])) {
|
||||||
return Event::next;
|
return Event::next;
|
||||||
}
|
}
|
||||||
if ($type_activity->get('type') === 'Announce') { // Repeat
|
if ($type_activity->get('type') === 'Announce') { // Repeat
|
||||||
if ($type_object instanceof \ActivityPhp\Type\AbstractObject) {
|
if ($type_object instanceof \ActivityPhp\Type\AbstractObject) {
|
||||||
if ($type_object->get('type') === 'Note') {
|
if ($type_object->get('type') === 'Note') {
|
||||||
$note = \Plugin\ActivityPub\Util\Model\Note::fromJson($type_object);
|
$note = \Plugin\ActivityPub\Util\Model\Note::fromJson($type_object);
|
||||||
$note_id = $note->getId();
|
$note_id = $note->getId();
|
||||||
} else {
|
} else {
|
||||||
return Event::next;
|
return Event::next;
|
||||||
}
|
}
|
||||||
} else if ($type_object instanceof Note) {
|
} elseif ($type_object instanceof Note) {
|
||||||
$note = $type_object;
|
$note = $type_object;
|
||||||
$note_id = $$note->getId();
|
$note_id = ${$note}->getId();
|
||||||
} else {
|
} else {
|
||||||
return Event::next;
|
return Event::next;
|
||||||
}
|
}
|
||||||
} else { // Undo Repeat
|
} else { // Undo Repeat
|
||||||
if ($type_object instanceof \ActivityPhp\Type\AbstractObject) {
|
if ($type_object instanceof \ActivityPhp\Type\AbstractObject) {
|
||||||
$ap_prev_repeat_act = \Plugin\ActivityPub\Util\Model\Activity::fromJson($type_object);
|
$ap_prev_repeat_act = \Plugin\ActivityPub\Util\Model\Activity::fromJson($type_object);
|
||||||
$prev_repeat_act = $ap_prev_repeat_act->getActivity();
|
$prev_repeat_act = $ap_prev_repeat_act->getActivity();
|
||||||
if ($prev_repeat_act->getVerb() === 'repeat' && $prev_repeat_act->getObjectType() === 'note') {
|
if ($prev_repeat_act->getVerb() === 'repeat' && $prev_repeat_act->getObjectType() === 'note') {
|
||||||
$note_id = $prev_repeat_act->getObjectId();
|
$note_id = $prev_repeat_act->getObjectId();
|
||||||
} else {
|
} else {
|
||||||
return Event::next;
|
return Event::next;
|
||||||
}
|
}
|
||||||
} else if ($type_object instanceof Activity) {
|
} elseif ($type_object instanceof Activity) {
|
||||||
if ($type_object->getVerb() === 'repeat' && $type_object->getObjectType() === 'note') {
|
if ($type_object->getVerb() === 'repeat' && $type_object->getObjectType() === 'note') {
|
||||||
$note_id = $type_object->getObjectId();
|
$note_id = $type_object->getObjectId();
|
||||||
} else {
|
} else {
|
||||||
|
@ -323,10 +319,10 @@ class RepeatNote extends NoteHandlerPlugin
|
||||||
}
|
}
|
||||||
// Store ActivityPub Activity
|
// Store ActivityPub Activity
|
||||||
$ap_act = \Plugin\ActivityPub\Entity\ActivitypubActivity::create([
|
$ap_act = \Plugin\ActivityPub\Entity\ActivitypubActivity::create([
|
||||||
'activity_id' => $act->getId(),
|
'activity_id' => $act->getId(),
|
||||||
'activity_uri' => $type_activity->get('id'),
|
'activity_uri' => $type_activity->get('id'),
|
||||||
'created' => new \DateTime($type_activity->get('published') ?? 'now'),
|
'created' => new DateTime($type_activity->get('published') ?? 'now'),
|
||||||
'modified' => new \DateTime(),
|
'modified' => new DateTime(),
|
||||||
]);
|
]);
|
||||||
DB::persist($ap_act);
|
DB::persist($ap_act);
|
||||||
return Event::stop;
|
return Event::stop;
|
||||||
|
|
|
@ -59,8 +59,8 @@ abstract class Entity
|
||||||
{
|
{
|
||||||
$class = static::class;
|
$class = static::class;
|
||||||
|
|
||||||
$date = new DateTime();
|
$date = new DateTime();
|
||||||
if (!is_null($obj)) { // Update modified
|
if (!\is_null($obj)) { // Update modified
|
||||||
if (property_exists($class, 'modified')) {
|
if (property_exists($class, 'modified')) {
|
||||||
$args['modified'] = $date;
|
$args['modified'] = $date;
|
||||||
}
|
}
|
||||||
|
@ -117,13 +117,13 @@ abstract class Entity
|
||||||
* - array[string => mixed] $values - Perform a regular find
|
* - array[string => mixed] $values - Perform a regular find
|
||||||
*
|
*
|
||||||
* Examples:
|
* Examples:
|
||||||
* Entity::getWithPK(42);
|
* Entity::getByPK(42);
|
||||||
* Entity::getWithPK([42, 'foo']);
|
* Entity::getByPK([42, 'foo']);
|
||||||
* Entity::getWithPK(['key1' => 42, 'key2' => 'foo'])
|
* Entity::getByPK(['key1' => 42, 'key2' => 'foo'])
|
||||||
*
|
*
|
||||||
* @return null|static
|
* @return null|static
|
||||||
*/
|
*/
|
||||||
public static function getWithPK(mixed $values): ?self
|
public static function getByPK(mixed $values): ?self
|
||||||
{
|
{
|
||||||
$values = \is_array($values) ? $values : [$values];
|
$values = \is_array($values) ? $values : [$values];
|
||||||
$class = \get_called_class();
|
$class = \get_called_class();
|
||||||
|
@ -144,7 +144,6 @@ abstract class Entity
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @return array of Actors
|
* @return array of Actors
|
||||||
*/
|
*/
|
||||||
public function getNotificationTargets(array $ids_already_known = []): array
|
public function getNotificationTargets(array $ids_already_known = []): array
|
||||||
|
|
|
@ -232,12 +232,12 @@ class Note extends Entity
|
||||||
|
|
||||||
public function getNoteLanguageShortDisplay(): ?string
|
public function getNoteLanguageShortDisplay(): ?string
|
||||||
{
|
{
|
||||||
return !is_null($this->language_id) ? Language::getById($this->language_id)->getShortDisplay() : null;
|
return !\is_null($this->language_id) ? Language::getById($this->language_id)->getShortDisplay() : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getLanguageLocale(): ?string
|
public function getLanguageLocale(): ?string
|
||||||
{
|
{
|
||||||
return !is_null($this->language_id) ? Language::getById($this->language_id)->getLocale() : null;
|
return !\is_null($this->language_id) ? Language::getById($this->language_id)->getLocale() : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function getAllNotesByActor(Actor $actor): array
|
public static function getAllNotesByActor(Actor $actor): array
|
||||||
|
@ -312,9 +312,9 @@ class Note extends Entity
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getReplyToNote(): ?Note
|
public function getReplyToNote(): ?self
|
||||||
{
|
{
|
||||||
return self::getWithPK($this->getReplyTo());
|
return self::getByPK($this->getReplyTo());
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getReplies()
|
public function getReplies()
|
||||||
|
@ -363,13 +363,14 @@ class Note extends Entity
|
||||||
public function delete(?int $actor_id = null, string $source = 'web'): bool
|
public function delete(?int $actor_id = null, string $source = 'web'): bool
|
||||||
{
|
{
|
||||||
if (Event::handle('NoteDeleteRelated', [&$this]) === Event::next) {
|
if (Event::handle('NoteDeleteRelated', [&$this]) === Event::next) {
|
||||||
DB::persist(Activity::create([
|
DB::persist(
|
||||||
'actor_id' => $actor_id ?? $this->getActorId(),
|
Activity::create([
|
||||||
'verb' => 'delete',
|
'actor_id' => $actor_id ?? $this->getActorId(),
|
||||||
'object_type' => 'note',
|
'verb' => 'delete',
|
||||||
'object_id' => $this->getId(),
|
'object_type' => 'note',
|
||||||
'source' => $source
|
'object_id' => $this->getId(),
|
||||||
])
|
'source' => $source,
|
||||||
|
]),
|
||||||
);
|
);
|
||||||
DB::remove($this);
|
DB::remove($this);
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
namespace App\Entity;
|
namespace App\Entity;
|
||||||
|
|
||||||
use App\Core\Entity;
|
use App\Core\Entity;
|
||||||
|
use DateTimeInterface;
|
||||||
use SymfonyCasts\Bundle\ResetPassword\Model\ResetPasswordRequestInterface;
|
use SymfonyCasts\Bundle\ResetPassword\Model\ResetPasswordRequestInterface;
|
||||||
|
|
||||||
class ResetPasswordRequest extends Entity implements ResetPasswordRequestInterface
|
class ResetPasswordRequest extends Entity implements ResetPasswordRequestInterface
|
||||||
|
@ -13,8 +16,8 @@ class ResetPasswordRequest extends Entity implements ResetPasswordRequestInterfa
|
||||||
private int $user_id;
|
private int $user_id;
|
||||||
private ?string $selector;
|
private ?string $selector;
|
||||||
private ?string $token;
|
private ?string $token;
|
||||||
private \DateTimeInterface $expires;
|
private DateTimeInterface $expires;
|
||||||
private \DateTimeInterface $created;
|
private DateTimeInterface $created;
|
||||||
|
|
||||||
public function setId(int $id): self
|
public function setId(int $id): self
|
||||||
{
|
{
|
||||||
|
@ -60,24 +63,24 @@ class ResetPasswordRequest extends Entity implements ResetPasswordRequestInterfa
|
||||||
return $this->token;
|
return $this->token;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setExpires(\DateTimeInterface $expires): self
|
public function setExpires(DateTimeInterface $expires): self
|
||||||
{
|
{
|
||||||
$this->expires = $expires;
|
$this->expires = $expires;
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getExpires(): \DateTimeInterface
|
public function getExpires(): DateTimeInterface
|
||||||
{
|
{
|
||||||
return $this->expires;
|
return $this->expires;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setCreated(\DateTimeInterface $created): self
|
public function setCreated(DateTimeInterface $created): self
|
||||||
{
|
{
|
||||||
$this->created = $created;
|
$this->created = $created;
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCreated(): \DateTimeInterface
|
public function getCreated(): DateTimeInterface
|
||||||
{
|
{
|
||||||
return $this->created;
|
return $this->created;
|
||||||
}
|
}
|
||||||
|
@ -87,7 +90,7 @@ class ResetPasswordRequest extends Entity implements ResetPasswordRequestInterfa
|
||||||
|
|
||||||
// {{{ Interface
|
// {{{ Interface
|
||||||
// @codeCoverageIgnoreStart
|
// @codeCoverageIgnoreStart
|
||||||
public function __construct(object $user, \DateTimeInterface $expiresAt, string $selector, string $hashedToken)
|
public function __construct(object $user, DateTimeInterface $expiresAt, string $selector, string $hashedToken)
|
||||||
{
|
{
|
||||||
$this->user_id = $user->getId();
|
$this->user_id = $user->getId();
|
||||||
$this->expires = $expiresAt;
|
$this->expires = $expiresAt;
|
||||||
|
@ -97,10 +100,10 @@ class ResetPasswordRequest extends Entity implements ResetPasswordRequestInterfa
|
||||||
|
|
||||||
public function getUser(): object
|
public function getUser(): object
|
||||||
{
|
{
|
||||||
return LocalUser::getWithPK($this->user_id);
|
return LocalUser::getByPK($this->user_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getRequestedAt(): \DateTimeInterface
|
public function getRequestedAt(): DateTimeInterface
|
||||||
{
|
{
|
||||||
return $this->created;
|
return $this->created;
|
||||||
}
|
}
|
||||||
|
@ -110,7 +113,7 @@ class ResetPasswordRequest extends Entity implements ResetPasswordRequestInterfa
|
||||||
return $this->expires->getTimestamp() <= time();
|
return $this->expires->getTimestamp() <= time();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getExpiresAt(): \DateTimeInterface
|
public function getExpiresAt(): DateTimeInterface
|
||||||
{
|
{
|
||||||
return $this->expires;
|
return $this->expires;
|
||||||
}
|
}
|
||||||
|
|
|
@ -61,13 +61,13 @@ class EntityTest extends GNUsocialTestCase
|
||||||
static::assertTrue($is_update);
|
static::assertTrue($is_update);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testGetWithPK()
|
public function testGetByPK()
|
||||||
{
|
{
|
||||||
$user = DB::findOneBy('local_user', ['nickname' => 'taken_user']);
|
$user = DB::findOneBy('local_user', ['nickname' => 'taken_user']);
|
||||||
$user_with_pk = LocalUser::getWithPK($user->getId());
|
$user_with_pk = LocalUser::getByPK($user->getId());
|
||||||
static::assertSame($user, $user_with_pk);
|
static::assertSame($user, $user_with_pk);
|
||||||
$user_with_pk = LocalUser::getWithPK(['id' => $user->getId()]);
|
$user_with_pk = LocalUser::getByPK(['id' => $user->getId()]);
|
||||||
static::assertSame($user, $user_with_pk);
|
static::assertSame($user, $user_with_pk);
|
||||||
static::assertNull(LocalUser::getWithPK(0));
|
static::assertNull(LocalUser::getByPK(0));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user