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