Tag.php 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. declare(strict_types = 1);
  3. namespace Component\Tag\Controller;
  4. use App\Core\Cache;
  5. use App\Core\Controller;
  6. use App\Util\Common;
  7. use Component\Language\Entity\Language;
  8. use Component\Tag\Tag as CompTag;
  9. class Tag extends Controller
  10. {
  11. // TODO: Use Feed::query
  12. // TODO: If ?canonical=something, respect
  13. // TODO: Allow to set locale of tag being selected
  14. /**
  15. * @param (null|string|string[]) $tag_single_or_multi
  16. *
  17. * @return ControllerResultType
  18. */
  19. private function process(null|string|array $tag_single_or_multi, string $key, string $query, string $template, bool $include_locale = false): array
  20. {
  21. $actor = Common::actor();
  22. $page = $this->int('page') ?: 1;
  23. $query_args = ['tag' => $tag_single_or_multi];
  24. if ($include_locale) {
  25. if (!\is_null($locale = $this->string('locale'))) {
  26. $query_args['language_id'] = Language::getByLocale($locale)->getId();
  27. } else {
  28. $query_args['language_id'] = Common::actor()->getTopLanguage()->getId();
  29. }
  30. }
  31. $results = Cache::pagedStream(
  32. key: $key,
  33. query: $query,
  34. query_args: $query_args,
  35. actor: $actor,
  36. page: $page,
  37. );
  38. return [
  39. '_template' => $template,
  40. 'tag_name' => $tag_single_or_multi,
  41. 'results' => $results,
  42. 'page' => $page,
  43. ];
  44. }
  45. /**
  46. * @return ControllerResultType
  47. */
  48. public function single_note_tag(string $tag): array
  49. {
  50. return $this->process(
  51. tag_single_or_multi: $tag,
  52. key: CompTag::cacheKeys($tag)['note_single'],
  53. query: 'SELECT n FROM note AS n JOIN note_tag AS nt WITH n.id = nt.note_id WHERE nt.tag = :tag AND nt.language_id = :language_id ORDER BY nt.created DESC, nt.note_id DESC',
  54. template: 'note_tag_feed.html.twig',
  55. include_locale: true,
  56. );
  57. }
  58. /**
  59. * @return ControllerResultType
  60. */
  61. public function multi_note_tags(string $tags): array
  62. {
  63. return $this->process(
  64. tag_single_or_multi: explode(',', $tags),
  65. key: CompTag::cacheKeys(str_replace(',', '-', $tags))['note_multi'],
  66. query: 'select n from note n join note_tag nt with n.id = nt.note_id where nt.tag in (:tag) AND nt.language_id = :language_id order by nt.created DESC, nt.note_id DESC',
  67. template: 'note_tag_feed.html.twig',
  68. include_locale: true,
  69. );
  70. }
  71. }