popularnoticestream.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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 notices sorted by popularity
  18. *
  19. * @category Popular
  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 notices sorted by popularity
  28. *
  29. * @category Popular
  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 PopularNoticeStream extends ScopingNoticeStream
  36. {
  37. public function __construct(Profile $scoped=null)
  38. {
  39. parent::__construct(
  40. new CachingNoticeStream(
  41. new RawPopularNoticeStream(),
  42. 'popular',
  43. false
  44. ),
  45. $scoped
  46. );
  47. }
  48. }
  49. class RawPopularNoticeStream extends NoticeStream
  50. {
  51. public function getNoticeIds($offset, $limit, $since_id, $max_id)
  52. {
  53. $weightexpr = common_sql_weight(
  54. 'modified',
  55. common_config('popular', 'dropoff')
  56. );
  57. $cutoff = sprintf(
  58. "modified > CURRENT_TIMESTAMP - INTERVAL '%d' SECOND",
  59. common_config('popular', 'cutoff')
  60. );
  61. $fave = new Fave();
  62. $fave->selectAdd();
  63. $fave->selectAdd('notice_id');
  64. $fave->selectAdd("{$weightexpr} AS weight");
  65. $fave->whereAdd($cutoff);
  66. $fave->groupBy('notice_id');
  67. $fave->orderBy('weight DESC');
  68. if (!is_null($offset)) {
  69. $fave->limit($offset, $limit);
  70. }
  71. // FIXME: $since_id, $max_id are ignored
  72. $ids = array();
  73. if ($fave->find()) {
  74. while ($fave->fetch()) {
  75. $ids[] = $fave->notice_id;
  76. }
  77. }
  78. return $ids;
  79. }
  80. }