featureduserssection.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. * Section for featured users
  18. *
  19. * @category Widget
  20. * @package GNUsocial
  21. * @author Evan Prodromou <evan@status.net>
  22. * @copyright 2009 StatusNet, Inc.
  23. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  24. */
  25. defined('GNUSOCIAL') || die();
  26. /**
  27. * Section for featured users
  28. *
  29. * @copyright 2009 StatusNet, Inc.
  30. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  31. */
  32. class FeaturedUsersSection extends ProfileSection
  33. {
  34. public $widgetOpts;
  35. public $scoped;
  36. public function show()
  37. {
  38. $featured_nicks = common_config('nickname', 'featured');
  39. if (empty($featured_nicks)) {
  40. return;
  41. }
  42. parent::show();
  43. }
  44. public function getProfiles()
  45. {
  46. $featured_nicks = common_config('nickname', 'featured');
  47. if (!$featured_nicks) {
  48. return null;
  49. }
  50. $quoted_nicks = implode(
  51. ',',
  52. array_map(
  53. function (string $nick): string {
  54. return "'{$nick}'";
  55. },
  56. $featured_nicks
  57. )
  58. );
  59. $user_table = common_database_tablename('user');
  60. $limit = PROFILES_PER_SECTION + 1;
  61. $qry = <<<END
  62. SELECT profile.*
  63. FROM profile
  64. INNER JOIN {$user_table} ON profile.id = {$user_table}.id
  65. WHERE profile.nickname IN ({$quoted_nicks})
  66. ORDER BY profile.created DESC, profile.id DESC
  67. LIMIT {$limit};
  68. END;
  69. $profile = Memcached_DataObject::cachedQuery('Profile', $qry, 6 * 3600);
  70. return $profile;
  71. }
  72. public function title()
  73. {
  74. // TRANS: Title for featured users section.
  75. return _('Featured users');
  76. }
  77. public function divId()
  78. {
  79. return 'featured_users';
  80. }
  81. public function moreUrl()
  82. {
  83. return common_local_url('featured');
  84. }
  85. }