Add PR and Issue Numbers for TODO for createFromUriId hack in Mastodon API

This commit is contained in:
Hank Grabowski 2023-08-15 15:23:31 -04:00
parent f879b2c9bc
commit 0985ddb3ff
10 changed files with 30 additions and 10 deletions

View File

@ -65,7 +65,9 @@ class Bookmark extends BaseApi
Item::update(['starred' => true], ['id' => $item['id']]);
// @TODO Remove once mstdnStatus()->createFromUriId is fixed
// @TODO Remove once mstdnStatus()->createFromUriId is fixed so that it returns posts not reshared posts if given an ID to an original post that has been reshared
// Introduced in this PR: https://github.com/friendica/friendica/pull/13175
// Issue tracking the behavior of createFromUriId: https://github.com/friendica/friendica/issues/13350
$isReblog = $item['uri-id'] != $this->parameters['id'];
System::jsonExit(DI::mstdnStatus()->createFromUriId($this->parameters['id'], $uid, self::appSupportsQuotes(), $isReblog)->toArray());

View File

@ -49,7 +49,9 @@ class Favourite extends BaseApi
Item::performActivity($item['id'], 'like', $uid);
// @TODO Remove once mstdnStatus()->createFromUriId is fixed
// @TODO Remove once mstdnStatus()->createFromUriId is fixed so that it returns posts not reshared posts if given an ID to an original post that has been reshared
// Introduced in this PR: https://github.com/friendica/friendica/pull/13175
// Issue tracking the behavior of createFromUriId: https://github.com/friendica/friendica/issues/13350
$isReblog = $item['uri-id'] != $this->parameters['id'];
System::jsonExit(DI::mstdnStatus()->createFromUriId($this->parameters['id'], $uid, self::appSupportsQuotes(), $isReblog)->toArray());

View File

@ -53,7 +53,9 @@ class Mute extends BaseApi
Post\ThreadUser::setIgnored($item['uri-id'], $uid, true);
// @TODO Remove once mstdnStatus()->createFromUriId is fixed
// @TODO Remove once mstdnStatus()->createFromUriId is fixed so that it returns posts not reshared posts if given an ID to an original post that has been reshared
// Introduced in this PR: https://github.com/friendica/friendica/pull/13175
// Issue tracking the behavior of createFromUriId: https://github.com/friendica/friendica/issues/13350
$isReblog = $item['uri-id'] != $this->parameters['id'];
System::jsonExit(DI::mstdnStatus()->createFromUriId($this->parameters['id'], $uid, self::appSupportsQuotes(), $isReblog)->toArray());

View File

@ -48,7 +48,9 @@ class Pin extends BaseApi
Post\Collection::add($item['uri-id'], Post\Collection::FEATURED, $item['author-id'], $uid);
// @TODO Remove once mstdnStatus()->createFromUriId is fixed
// @TODO Remove once mstdnStatus()->createFromUriId is fixed so that it returns posts not reshared posts if given an ID to an original post that has been reshared
// Introduced in this PR: https://github.com/friendica/friendica/pull/13175
// Issue tracking the behavior of createFromUriId: https://github.com/friendica/friendica/issues/13350
$isReblog = $item['uri-id'] != $this->parameters['id'];
System::jsonExit(DI::mstdnStatus()->createFromUriId($this->parameters['id'], $uid, self::appSupportsQuotes(),$isReblog)->toArray());

View File

@ -58,7 +58,9 @@ class Reblog extends BaseApi
Item::performActivity($item['id'], 'announce', $uid);
}
// @TODO Remove once mstdnStatus()->createFromUriId is fixed
// @TODO Remove once mstdnStatus()->createFromUriId is fixed so that it returns posts not reshared posts if given an ID to an original post that has been reshared
// Introduced in this PR: https://github.com/friendica/friendica/pull/13175
// Issue tracking the behavior of createFromUriId: https://github.com/friendica/friendica/issues/13350
$isReblog = $item['uri-id'] != $this->parameters['id'];
System::jsonExit(DI::mstdnStatus()->createFromUriId($this->parameters['id'], $uid, self::appSupportsQuotes(), $isReblog)->toArray());

View File

@ -65,7 +65,9 @@ class Unbookmark extends BaseApi
Item::update(['starred' => false], ['id' => $item['id']]);
// @TODO Remove once mstdnStatus()->createFromUriId is fixed
// @TODO Remove once mstdnStatus()->createFromUriId is fixed so that it returns posts not reshared posts if given an ID to an original post that has been reshared
// Introduced in this PR: https://github.com/friendica/friendica/pull/13175
// Issue tracking the behavior of createFromUriId: https://github.com/friendica/friendica/issues/13350
$isReblog = $item['uri-id'] != $this->parameters['id'];
System::jsonExit(DI::mstdnStatus()->createFromUriId($this->parameters['id'], $uid, self::appSupportsQuotes(), $isReblog)->toArray());

View File

@ -49,7 +49,9 @@ class Unfavourite extends BaseApi
Item::performActivity($item['id'], 'unlike', $uid);
// @TODO Remove once mstdnStatus()->createFromUriId is fixed
// @TODO Remove once mstdnStatus()->createFromUriId is fixed so that it returns posts not reshared posts if given an ID to an original post that has been reshared
// Introduced in this PR: https://github.com/friendica/friendica/pull/13175
// Issue tracking the behavior of createFromUriId: https://github.com/friendica/friendica/issues/13350
$isReblog = $item['uri-id'] != $this->parameters['id'];
System::jsonExit(DI::mstdnStatus()->createFromUriId($this->parameters['id'], $uid, self::appSupportsQuotes(), $isReblog)->toArray());

View File

@ -53,7 +53,9 @@ class Unmute extends BaseApi
Post\ThreadUser::setIgnored($item['uri-id'], $uid, false);
// @TODO Remove once mstdnStatus()->createFromUriId is fixed
// @TODO Remove once mstdnStatus()->createFromUriId is fixed so that it returns posts not reshared posts if given an ID to an original post that has been reshared
// Introduced in this PR: https://github.com/friendica/friendica/pull/13175
// Issue tracking the behavior of createFromUriId: https://github.com/friendica/friendica/issues/13350
$isReblog = $item['uri-id'] != $this->parameters['id'];
System::jsonExit(DI::mstdnStatus()->createFromUriId($this->parameters['id'], $uid, self::appSupportsQuotes(), $isReblog)->toArray());

View File

@ -48,7 +48,9 @@ class Unpin extends BaseApi
Post\Collection::remove($item['uri-id'], Post\Collection::FEATURED, $uid);
// @TODO Remove once mstdnStatus()->createFromUriId is fixed
// @TODO Remove once mstdnStatus()->createFromUriId is fixed so that it returns posts not reshared posts if given an ID to an original post that has been reshared
// Introduced in this PR: https://github.com/friendica/friendica/pull/13175
// Issue tracking the behavior of createFromUriId: https://github.com/friendica/friendica/issues/13350
$isReblog = $item['uri-id'] != $this->parameters['id'];
System::jsonExit(DI::mstdnStatus()->createFromUriId($this->parameters['id'], $uid, self::appSupportsQuotes(), $isReblog)->toArray());

View File

@ -64,7 +64,9 @@ class Unreblog extends BaseApi
Item::performActivity($item['id'], 'unannounce', $uid);
}
// @TODO Remove once mstdnStatus()->createFromUriId is fixed
// @TODO Remove once mstdnStatus()->createFromUriId is fixed so that it returns posts not reshared posts if given an ID to an original post that has been reshared
// Introduced in this PR: https://github.com/friendica/friendica/pull/13175
// Issue tracking the behavior of createFromUriId: https://github.com/friendica/friendica/issues/13350
$isReblog = $item['uri-id'] != $this->parameters['id'];
System::jsonExit(DI::mstdnStatus()->createFromUriId($this->parameters['id'], $uid, self::appSupportsQuotes(), $isReblog)->toArray());