conversationnoticestream.php 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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 a conversation
  18. *
  19. * @category NoticeStream
  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 a conversation
  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 ConversationNoticeStream extends ScopingNoticeStream
  36. {
  37. public function __construct($id, Profile $scoped = null)
  38. {
  39. parent::__construct(
  40. new RawConversationNoticeStream($id),
  41. $scoped
  42. );
  43. }
  44. }
  45. /**
  46. * Notice stream for a conversation
  47. *
  48. * @category Stream
  49. * @package GNUsocial
  50. * @author Evan Prodromou <evan@status.net>
  51. * @copyright 2011 StatusNet, Inc.
  52. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  53. */
  54. class RawConversationNoticeStream extends NoticeStream
  55. {
  56. protected $id;
  57. public function __construct($id)
  58. {
  59. parent::__construct();
  60. $this->id = $id;
  61. }
  62. public function getNoticeIds($offset, $limit, $since_id = null, $max_id = null)
  63. {
  64. $notice = new Notice();
  65. // SELECT
  66. $notice->selectAdd();
  67. $notice->selectAdd('id');
  68. // WHERE
  69. $notice->conversation = $this->id;
  70. if (!empty($since_id)) {
  71. $notice->whereAdd(sprintf('notice.id > %d', $since_id));
  72. }
  73. if (!empty($max_id)) {
  74. $notice->whereAdd(sprintf('notice.id <= %d', $max_id));
  75. }
  76. if (!is_null($offset)) {
  77. $notice->limit($offset, $limit);
  78. }
  79. self::filterVerbs($notice, $this->selectVerbs);
  80. // ORDER BY
  81. $notice->orderBy('notice.created DESC, notice.id DESC');
  82. $notice->find();
  83. return $notice->fetchAll('id');
  84. }
  85. }