Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
pull/1691/head
Maxence Lange 2023-03-21 10:40:13 -01:00
rodzic 17b7b5a8c1
commit 0aed4f797e
4 zmienionych plików z 15 dodań i 6 usunięć

Wyświetl plik

@ -109,7 +109,9 @@ class LikeInterface extends AbstractActivityPubInterface implements IActivityPub
public function getItem(ACore $item): ACore {
try {
return $this->actionsRequest->getAction(
$item->getActorId(), $item->getObjectId(), Like::TYPE
$item->getActorId(),
$item->getObjectId(),
Like::TYPE
);
} catch (ActionDoesNotExistException $e) {
}

Wyświetl plik

@ -37,11 +37,12 @@ use OCA\Social\Exceptions\InvalidResourceEntryException;
use OCA\Social\Exceptions\UrlCloudException;
use OCA\Social\Model\ActivityPub\Object\Document;
use OCA\Social\Model\LinkedDataSignature;
use OCA\Social\Tools\IQueryRow;
use OCA\Social\Tools\Traits\TArrayTools;
use OCA\Social\Tools\Traits\TPathTools;
use OCA\Social\Tools\Traits\TStringTools;
class ACore extends Item implements JsonSerializable {
class ACore extends Item implements JsonSerializable, IQueryRow {
use TArrayTools;
use TStringTools;
use TPathTools;

Wyświetl plik

@ -40,6 +40,7 @@ class ActionService {
private StreamService $streamService;
private BoostService $boostService;
private LikeService $likeService;
private StreamActionService $streamActionService;
private const TRANSLATE = 'translate';
@ -71,10 +72,12 @@ class ActionService {
public function __construct(
StreamService $streamService,
BoostService $boostService,
LikeService $likeService,
StreamActionService $streamActionService
) {
$this->streamService = $streamService;
$this->boostService = $boostService;
$this->likeService = $likeService;
$this->streamActionService = $streamActionService;
}
@ -134,8 +137,11 @@ class ActionService {
}
private function favourite(Person $actor, string $postId, bool $enabled = true): void {
$this->boostService->delete($actor, $postId);
// $this->streamActionService->setActionBool($actor->getId(), $postId, StreamAction::LIKED, $enabled);
if ($enabled) {
$this->likeService->create($actor, $postId);
} else {
$this->likeService->delete($actor, $postId);
}
}
private function reblog(Person $actor, string $postId, bool $enabled = true): void {

Wyświetl plik

@ -108,7 +108,7 @@ class LikeService {
* @throws SocialAppConfigException
* @throws Exception
*/
public function create(Person $actor, string $postId, &$token = ''): ACore {
public function create(Person $actor, string $postId, string &$token = ''): ACore {
/** @var Like $like */
$like = AP::$activityPub->getItemFromType(Like::TYPE);
$like->setId($actor->getId() . '#like/' . $this->uuid(8));
@ -160,7 +160,7 @@ class LikeService {
* @throws SocialAppConfigException
* @throws StreamNotFoundException
*/
public function delete(Person $actor, string $postId, &$token = ''): ACore {
public function delete(Person $actor, string $postId, string &$token = ''): ACore {
$undo = new Undo();
$undo->setActor($actor);