Favourite.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?php
  2. // {{{ License
  3. // This file is part of GNU social - https://www.gnu.org/software/social
  4. //
  5. // GNU social is free software: you can redistribute it and/or modify
  6. // it under the terms of the GNU Affero General Public License as published by
  7. // the Free Software Foundation, either version 3 of the License, or
  8. // (at your option) any later version.
  9. //
  10. // GNU social is distributed in the hope that it will be useful,
  11. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. // GNU Affero General Public License for more details.
  14. //
  15. // You should have received a copy of the GNU Affero General Public License
  16. // along with GNU social. If not, see <http://www.gnu.org/licenses/>.
  17. // }}}
  18. namespace Plugin\Favourite;
  19. use App\Core\DB\DB;
  20. use App\Core\Event;
  21. use App\Core\Form;
  22. use function App\Core\I18n\_m;
  23. use App\Core\Modules\NoteHandlerPlugin;
  24. use App\Core\Router\RouteLoader;
  25. use App\Entity\Note;
  26. use App\Util\Common;
  27. use App\Util\Exception\InvalidFormException;
  28. use App\Util\Exception\NoSuchNoteException;
  29. use App\Util\Exception\RedirectException;
  30. use App\Util\Formatting;
  31. use App\Util\Nickname;
  32. use Symfony\Component\Form\Extension\Core\Type\HiddenType;
  33. use Symfony\Component\Form\Extension\Core\Type\SubmitType;
  34. use Symfony\Component\HttpFoundation\Request;
  35. class Favourite extends NoteHandlerPlugin
  36. {
  37. /**
  38. * HTML rendering event that adds the favourite form as a note
  39. * action, if a user is logged in
  40. *
  41. * @param Request $request
  42. * @param Note $note
  43. * @param array $actions
  44. *
  45. * @throws RedirectException
  46. * @throws InvalidFormException
  47. * @throws NoSuchNoteException
  48. *
  49. * @return bool Event hook
  50. */
  51. public function onAddNoteActions(Request $request, Note $note, array &$actions): bool
  52. {
  53. if (($user = Common::user()) === null) {
  54. return Event::next;
  55. }
  56. // if note is favourited, "is_set" is 1
  57. $opts = ['note_id' => $note->getId(), 'gsactor_id' => $user->getId()];
  58. $is_set = DB::find('favourite', $opts) !== null;
  59. $form_fav = Form::create([
  60. ['submit_favourite', SubmitType::class,
  61. [
  62. 'label' => ' ',
  63. 'attr' => [
  64. 'class' => ($is_set ? 'note-actions-set' : 'note-actions-unset') . ' button-container favourite-button-container',
  65. 'title' => $is_set ? _m('Note already favourite!') : _m('Favourite this note!'),
  66. ],
  67. ],
  68. ],
  69. ['note_id', HiddenType::class, ['data' => $note->getId()]],
  70. ["favourite-{$note->getId()}", HiddenType::class, ['data' => $is_set ? '1' : '0']],
  71. ]);
  72. $actions[] = $form_fav->createView();
  73. // Form handler
  74. return self::noteActionHandle(
  75. $request, $form_fav, $note, "favourite-{$note->getId()}",
  76. /**
  77. * Called from form handler
  78. *
  79. * @param Note $note to be favourited
  80. * @param Form $data input
  81. *
  82. * @throws RedirectException Always thrown in order to prevent accidental form re-submit from browser
  83. */
  84. function ($note, $data) use ($opts) {
  85. $favourite_note = DB::find('favourite', $opts);
  86. if ($data["favourite-{$note->getId()}"] === '0' && $favourite_note === null) {
  87. DB::persist(Entity\Favourite::create($opts));
  88. DB::flush();
  89. } else {
  90. if ($data["favourite-{$note->getId()}"] === '1' && $favourite_note !== null) {
  91. DB::remove($favourite_note);
  92. DB::flush();
  93. }
  94. }
  95. // Prevent accidental refreshes from resubmitting the form
  96. throw new RedirectException();
  97. });
  98. }
  99. public function onInsertLeftPanelLink(string $user_nickname, &$res): bool
  100. {
  101. $res[] = Formatting::twigRenderString(<<<END
  102. <a href="{{ path("favourites", {'nickname' : user_nickname}) }}" class='hover-effect {{ active("favourites") }}'>Favourites</a>
  103. <a href="{{ path("reverse_favourites", {'nickname' : user_nickname}) }}" class='hover-effect {{ active("reverse_favourites") }}'>Reverse Favs</a>
  104. END, ['user_nickname' => $user_nickname]);
  105. return Event::next;
  106. }
  107. public function onAddRoute(RouteLoader $r): bool
  108. {
  109. $r->connect('favourites', '/favourites/{nickname<' . Nickname::DISPLAY_FMT . '>}', [Controller\Favourite::class, 'favourites']);
  110. $r->connect('reverse_favourites', '/reverse_favourites/{nickname<' . Nickname::DISPLAY_FMT . '>}', [Controller\Favourite::class, 'reverseFavourites']);
  111. return Event::next;
  112. }
  113. }