replynoticestream.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. * Stream of mentions of me
  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. * Stream of mentions of me
  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 ReplyNoticeStream extends ScopingNoticeStream
  36. {
  37. public function __construct($userId, Profile $scoped = null)
  38. {
  39. parent::__construct(
  40. new CachingNoticeStream(
  41. new RawReplyNoticeStream($userId),
  42. 'reply:stream:' . $userId
  43. ),
  44. $scoped
  45. );
  46. }
  47. }
  48. /**
  49. * Raw stream of mentions of me
  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 RawReplyNoticeStream extends NoticeStream
  58. {
  59. protected $userId;
  60. public function __construct($userId)
  61. {
  62. parent::__construct();
  63. $this->userId = $userId;
  64. }
  65. public function getNoticeIds($offset, $limit, $since_id, $max_id)
  66. {
  67. $reply = new Reply();
  68. $reply->selectAdd();
  69. $reply->selectAdd('notice_id');
  70. $reply->whereAdd(sprintf('reply.profile_id = %u', $this->userId));
  71. Notice::addWhereSinceId($reply, $since_id, 'notice_id', 'reply.modified');
  72. Notice::addWhereMaxId($reply, $max_id, 'notice_id', 'reply.modified');
  73. if (!empty($this->selectVerbs)) {
  74. // this is a little special since we have to join in Notice
  75. $reply->joinAdd(array('notice_id', 'notice:id'));
  76. $filter = array_keys(array_filter($this->selectVerbs));
  77. if (!empty($filter)) {
  78. // include verbs in selectVerbs with values that equate to true
  79. $reply->whereAddIn('notice.verb', $filter, 'string');
  80. }
  81. $filter = array_keys(array_filter($this->selectVerbs, function ($v) {
  82. return !$v;
  83. }));
  84. if (!empty($filter)) {
  85. // exclude verbs in selectVerbs with values that equate to false
  86. $reply->whereAddIn('!notice.verb', $filter, 'string');
  87. }
  88. }
  89. $reply->whereAdd('notice.scope <> ' . NOTICE::MESSAGE_SCOPE);
  90. $reply->orderBy('reply.modified DESC, reply.notice_id DESC');
  91. if (!is_null($offset)) {
  92. $reply->limit($offset, $limit);
  93. }
  94. $ids = array();
  95. if ($reply->find()) {
  96. while ($reply->fetch()) {
  97. $ids[] = $reply->notice_id;
  98. }
  99. }
  100. return $ids;
  101. }
  102. }