popularnoticestream.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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('modified', common_config('popular', 'dropoff'));
  54. $cutoff = sprintf(
  55. "modified > TIMESTAMP '%s'",
  56. common_sql_date(time() - common_config('popular', 'cutoff'))
  57. );
  58. $fave = new Fave();
  59. $fave->selectAdd();
  60. $fave->selectAdd('notice_id');
  61. $fave->selectAdd("$weightexpr as weight");
  62. $fave->whereAdd($cutoff);
  63. $fave->orderBy('weight DESC');
  64. $fave->groupBy('notice_id');
  65. if (!is_null($offset)) {
  66. $fave->limit($offset, $limit);
  67. }
  68. // FIXME: $since_id, $max_id are ignored
  69. $ids = array();
  70. if ($fave->find()) {
  71. while ($fave->fetch()) {
  72. $ids[] = $fave->notice_id;
  73. }
  74. }
  75. return $ids;
  76. }
  77. }