]> git.mxchange.org Git - friendica.git/blob - mod/community.php
Update Pager->__construct calls for minimal use cases
[friendica.git] / mod / community.php
1 <?php
2 /**
3  * @file mod/community.php
4  */
5
6 use Friendica\App;
7 use Friendica\Content\Nav;
8 use Friendica\Content\Pager;
9 use Friendica\Core\ACL;
10 use Friendica\Core\Config;
11 use Friendica\Core\L10n;
12 use Friendica\Core\PConfig;
13 use Friendica\Database\DBA;
14 use Friendica\Model\Contact;
15 use Friendica\Model\Item;
16
17 function community_init(App $a)
18 {
19         if (!local_user()) {
20                 unset($_SESSION['theme']);
21                 unset($_SESSION['mobile-theme']);
22         }
23 }
24
25 function community_content(App $a, $update = 0)
26 {
27         $o = '';
28
29         if (Config::get('system', 'block_public') && !local_user() && !remote_user()) {
30                 notice(L10n::t('Public access denied.') . EOL);
31                 return;
32         }
33
34         $page_style = Config::get('system', 'community_page_style');
35
36         if ($page_style == CP_NO_INTERNAL_COMMUNITY) {
37                 notice(L10n::t('Access denied.') . EOL);
38                 return;
39         }
40
41         $accounttype = null;
42
43         if ($a->argc > 2) {
44                 switch ($a->argv[2]) {
45                         case 'person':
46                                 $accounttype = Contact::ACCOUNT_TYPE_PERSON;
47                                 break;
48                         case 'organisation':
49                                 $accounttype = Contact::ACCOUNT_TYPE_ORGANISATION;
50                                 break;
51                         case 'news':
52                                 $accounttype = Contact::ACCOUNT_TYPE_NEWS;
53                                 break;
54                         case 'community':
55                                 $accounttype = Contact::ACCOUNT_TYPE_COMMUNITY;
56                                 break;
57                 }
58         }
59
60         if ($a->argc > 1) {
61                 $content = $a->argv[1];
62         } else {
63                 if (!empty(Config::get('system', 'singleuser'))) {
64                         // On single user systems only the global page does make sense
65                         $content = 'global';
66                 } else {
67                         // When only the global community is allowed, we use this as default
68                         $content = $page_style == CP_GLOBAL_COMMUNITY ? 'global' : 'local';
69                 }
70         }
71
72         if (!in_array($content, ['local', 'global'])) {
73                 notice(L10n::t('Community option not available.') . EOL);
74                 return;
75         }
76
77         // Check if we are allowed to display the content to visitors
78         if (!local_user()) {
79                 $available = $page_style == CP_USERS_AND_GLOBAL;
80
81                 if (!$available) {
82                         $available = ($page_style == CP_USERS_ON_SERVER) && ($content == 'local');
83                 }
84
85                 if (!$available) {
86                         $available = ($page_style == CP_GLOBAL_COMMUNITY) && ($content == 'global');
87                 }
88
89                 if (!$available) {
90                         notice(L10n::t('Not available.') . EOL);
91                         return;
92                 }
93         }
94
95         require_once 'include/conversation.php';
96
97         if (!$update) {
98                 $tabs = [];
99
100                 if ((local_user() || in_array($page_style, [CP_USERS_AND_GLOBAL, CP_USERS_ON_SERVER])) && empty(Config::get('system', 'singleuser'))) {
101                         $tabs[] = [
102                                 'label' => L10n::t('Local Community'),
103                                 'url' => 'community/local',
104                                 'sel' => $content == 'local' ? 'active' : '',
105                                 'title' => L10n::t('Posts from local users on this server'),
106                                 'id' => 'community-local-tab',
107                                 'accesskey' => 'l'
108                         ];
109                 }
110
111                 if (local_user() || in_array($page_style, [CP_USERS_AND_GLOBAL, CP_GLOBAL_COMMUNITY])) {
112                         $tabs[] = [
113                                 'label' => L10n::t('Global Community'),
114                                 'url' => 'community/global',
115                                 'sel' => $content == 'global' ? 'active' : '',
116                                 'title' => L10n::t('Posts from users of the whole federated network'),
117                                 'id' => 'community-global-tab',
118                                 'accesskey' => 'g'
119                         ];
120                 }
121
122                 $tab_tpl = get_markup_template('common_tabs.tpl');
123                 $o .= replace_macros($tab_tpl, ['$tabs' => $tabs]);
124
125                 Nav::setSelected('community');
126
127                 // We need the editor here to be able to reshare an item.
128                 if (local_user()) {
129                         $x = [
130                                 'is_owner' => true,
131                                 'allow_location' => $a->user['allow_location'],
132                                 'default_location' => $a->user['default-location'],
133                                 'nickname' => $a->user['nickname'],
134                                 'lockstate' => (is_array($a->user) && (strlen($a->user['allow_cid']) || strlen($a->user['allow_gid']) || strlen($a->user['deny_cid']) || strlen($a->user['deny_gid'])) ? 'lock' : 'unlock'),
135                                 'acl' => ACL::getFullSelectorHTML($a->user, true),
136                                 'bang' => '',
137                                 'visitor' => 'block',
138                                 'profile_uid' => local_user(),
139                         ];
140                         $o .= status_editor($a, $x, 0, true);
141                 }
142         }
143
144         // check if we serve a mobile device and get the user settings accordingly
145         if ($a->is_mobile) {
146                 $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_mobile_network', 20);
147         } else {
148                 $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_network', 40);
149         }
150
151         // now that we have the user settings, see if the theme forces
152         // a maximum item number which is lower then the user choice
153         if (($a->force_max_items > 0) && ($a->force_max_items < $itemspage_network)) {
154                 $itemspage_network = $a->force_max_items;
155         }
156
157         $pager = new Pager($a->query_string, $itemspage_network);
158
159         $r = community_getitems($pager->getStart(), $pager->getItemsPerPage(), $content, $accounttype);
160
161         if (!DBA::isResult($r)) {
162                 info(L10n::t('No results.') . EOL);
163                 return $o;
164         }
165
166         $maxpostperauthor = (int) Config::get('system', 'max_author_posts_community_page');
167
168         if (($maxpostperauthor != 0) && ($content == 'local')) {
169                 $count = 1;
170                 $previousauthor = "";
171                 $numposts = 0;
172                 $s = [];
173
174                 do {
175                         foreach ($r as $item) {
176                                 if ($previousauthor == $item["author-link"]) {
177                                         ++$numposts;
178                                 } else {
179                                         $numposts = 0;
180                                 }
181                                 $previousauthor = $item["author-link"];
182
183                                 if (($numposts < $maxpostperauthor) && (count($s) < $pager->getItemsPerPage())) {
184                                         $s[] = $item;
185                                 }
186                         }
187                         if (count($s) < $pager->getItemsPerPage()) {
188                                 $r = community_getitems($pager->getStart() + ($count * $pager->getItemsPerPage()), $pager->getItemsPerPage(), $content, $accounttype);
189                         }
190                 } while ((count($s) < $pager->getItemsPerPage()) && ( ++$count < 50) && (count($r) > 0));
191         } else {
192                 $s = $r;
193         }
194
195         $o .= conversation($a, $s, $pager, 'community', $update, false, 'commented', local_user());
196
197         if (!$update) {
198                 $o .= $pager->renderMinimal(count($r));
199         }
200
201         $t = get_markup_template("community.tpl");
202         return replace_macros($t, [
203                 '$content' => $o,
204                 '$header' => '',
205                 '$show_global_community_hint' => ($content == 'global') && Config::get('system', 'show_global_community_hint'),
206                 '$global_community_hint' => L10n::t("This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.")
207         ]);
208 }
209
210 function community_getitems($start, $itemspage, $content, $accounttype)
211 {
212         if ($content == 'local') {
213                 if (!is_null($accounttype)) {
214                         $sql_accounttype = " AND `user`.`account-type` = ?";
215                         $values = [$accounttype, $start, $itemspage];
216                 } else {
217                         $sql_accounttype = "";
218                         $values = [$start, $itemspage];
219                 }
220
221                 $r = DBA::p("SELECT `item`.`uri`, `author`.`url` AS `author-link` FROM `thread`
222                         INNER JOIN `user` ON `user`.`uid` = `thread`.`uid` AND NOT `user`.`hidewall`
223                         INNER JOIN `item` ON `item`.`id` = `thread`.`iid`
224                         INNER JOIN `contact` AS `author` ON `author`.`id`=`item`.`author-id`
225                         WHERE `thread`.`visible` AND NOT `thread`.`deleted` AND NOT `thread`.`moderated`
226                         AND NOT `thread`.`private` AND `thread`.`wall` AND `thread`.`origin` $sql_accounttype
227                         ORDER BY `thread`.`commented` DESC LIMIT ?, ?", $values);
228                 return DBA::toArray($r);
229         } elseif ($content == 'global') {
230                 if (!is_null($accounttype)) {
231                         $condition = ["`uid` = ? AND `owner`.`contact-type` = ?", 0, $accounttype];
232                 } else {
233                         $condition = ['uid' => 0];
234                 }
235
236                 $r = Item::selectThreadForUser(0, ['uri'], $condition, ['order' => ['commented' => true], 'limit' => [$start, $itemspage]]);
237                 return DBA::toArray($r);
238         }
239
240         // Should never happen
241         return [];
242 }