noticestream.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. * A stream of notices
  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. * Class for notice streams
  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. abstract class NoticeStream
  36. {
  37. protected $selectVerbs = [
  38. ActivityVerb::POST => true,
  39. ActivityVerb::SHARE => true,
  40. ];
  41. public function __construct()
  42. {
  43. foreach ($this->selectVerbs as $key => $val) {
  44. $this->selectVerbs[ActivityUtils::resolveUri($key)] = $val;
  45. // to avoid database inconsistency issues we can select both relative and absolute verbs
  46. //$this->selectVerbs[ActivityUtils::resolveUri($key, true)] = $val;
  47. }
  48. }
  49. abstract public function getNoticeIds($offset, $limit, $since_id, $max_id);
  50. public function getNotices($offset, $limit, $sinceId = null, $maxId = null)
  51. {
  52. $ids = $this->getNoticeIds($offset, $limit, $sinceId, $maxId);
  53. return self::getStreamByIds($ids);
  54. }
  55. public static function getStreamByIds($ids)
  56. {
  57. return Notice::multiGet('id', $ids);
  58. }
  59. public static function filterVerbs(Notice $notice, array $selectVerbs)
  60. {
  61. $filter = array_keys(array_filter($selectVerbs));
  62. if (!empty($filter)) {
  63. // include verbs in selectVerbs with values that equate to true
  64. $notice->whereAddIn('verb', $filter, $notice->columnType('verb'));
  65. }
  66. $filter = array_keys(array_filter($selectVerbs, function ($v) {
  67. return !$v;
  68. }));
  69. if (!empty($filter)) {
  70. // exclude verbs in selectVerbs with values that equate to false
  71. $notice->whereAddIn('!verb', $filter, $notice->columnType('verb'));
  72. }
  73. unset($filter);
  74. }
  75. }