favenoticestream.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <?php
  2. // This file is part of GNU social - https://www.gnu.org/software/social
  3. //
  4. // GNU social is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Affero General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // GNU social is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Affero General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Affero General Public License
  15. // along with GNU social. If not, see <http://www.gnu.org/licenses/>.
  16. /**
  17. * Notice stream for favorites
  18. *
  19. * @category Stream
  20. * @package GNUsocial
  21. * @author Evan Prodromou <evan@status.net>
  22. * @copyright 2011 StatusNet, Inc.
  23. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  24. */
  25. defined('GNUSOCIAL') || die();
  26. /**
  27. * Notice stream for favorites
  28. *
  29. * @category Stream
  30. * @package GNUsocial
  31. * @author Evan Prodromou <evan@status.net>
  32. * @copyright 2011 StatusNet, Inc.
  33. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  34. */
  35. class FaveNoticeStream extends ScopingNoticeStream
  36. {
  37. public function __construct(Profile $target, Profile $scoped = null)
  38. {
  39. $stream = new RawFaveNoticeStream($target, $scoped);
  40. if ($target->sameAs($scoped)) {
  41. $key = 'fave:ids_by_user_own:'.$target->getID();
  42. } else {
  43. $key = 'fave:ids_by_user:'.$target->getID();
  44. }
  45. parent::__construct(new CachingNoticeStream($stream, $key), $scoped);
  46. }
  47. }
  48. /**
  49. * Raw notice stream for favorites
  50. *
  51. * @category Stream
  52. * @package GNUsocial
  53. * @author Evan Prodromou <evan@status.net>
  54. * @copyright 2011 StatusNet, Inc.
  55. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  56. */
  57. class RawFaveNoticeStream extends NoticeStream
  58. {
  59. protected $user_id;
  60. protected $own;
  61. protected $selectVerbs = array();
  62. public function __construct(Profile $target, Profile $scoped = null)
  63. {
  64. parent::__construct();
  65. $this->user_id = $target->getID();
  66. $this->own = $target->sameAs($scoped);
  67. }
  68. /**
  69. * Note that the sorting for this is by order of *fave* not order of *notice*.
  70. *
  71. * @fixme add since_id, max_id support?
  72. *
  73. * @param <type> $user_id
  74. * @param <type> $own
  75. * @param <type> $offset
  76. * @param <type> $limit
  77. * @param <type> $since_id
  78. * @param <type> $max_id
  79. * @return <type>
  80. */
  81. public function getNoticeIds($offset, $limit, $since_id, $max_id)
  82. {
  83. $fav = new Fave();
  84. $qry = null;
  85. if ($this->own) {
  86. $qry = 'SELECT fave.* FROM fave ';
  87. $qry .= 'WHERE fave.user_id = ' . $this->user_id . ' ';
  88. } else {
  89. $qry = 'SELECT fave.* FROM fave ';
  90. $qry .= 'INNER JOIN notice ON fave.notice_id = notice.id ';
  91. $qry .= 'WHERE fave.user_id = ' . $this->user_id . ' ';
  92. $qry .= 'AND notice.is_local <> ' . Notice::GATEWAY . ' ';
  93. }
  94. if ($since_id != 0) {
  95. $qry .= 'AND notice_id > ' . $since_id . ' ';
  96. }
  97. if ($max_id != 0) {
  98. $qry .= 'AND notice_id <= ' . $max_id . ' ';
  99. }
  100. // NOTE: we sort by fave time, not by notice time!
  101. $qry .= 'ORDER BY modified DESC ';
  102. if (!is_null($offset)) {
  103. $qry .= "LIMIT $limit OFFSET $offset";
  104. }
  105. $fav->query($qry);
  106. $ids = array();
  107. while ($fav->fetch()) {
  108. $ids[] = $fav->notice_id;
  109. }
  110. $fav->free();
  111. unset($fav);
  112. return $ids;
  113. }
  114. }