]> git.mxchange.org Git - friendica.git/blob - mod/community.php
Merge pull request #4433 from annando/direct-block
[friendica.git] / mod / community.php
1 <?php
2 /**
3  * @file mod/community.php
4  */
5 use Friendica\App;
6 use Friendica\Content\Nav;
7 use Friendica\Core\Config;
8 use Friendica\Core\L10n;
9 use Friendica\Core\PConfig;
10 use Friendica\Database\DBM;
11
12 function community_init(App $a)
13 {
14         if (!local_user()) {
15                 unset($_SESSION['theme']);
16                 unset($_SESSION['mobile-theme']);
17         }
18 }
19
20 function community_content(App $a, $update = 0)
21 {
22         $o = '';
23
24         if (Config::get('system', 'block_public') && !local_user() && !remote_user()) {
25                 notice(L10n::t('Public access denied.') . EOL);
26                 return;
27         }
28
29         $page_style = Config::get('system', 'community_page_style');
30
31         if ($a->argc > 1) {
32                 $content = $a->argv[1];
33         } else {
34                 if (!empty(Config::get('system', 'singleuser'))) {
35                         // On single user systems only the global page does make sense
36                         $content = 'global';
37                 } else {
38                         // When only the global community is allowed, we use this as default
39                         $content = $page_style == CP_GLOBAL_COMMUNITY ? 'global' : 'local';
40                 }
41         }
42
43         if (!in_array($content, ['local', 'global'])) {
44                 notice(L10n::t('Community option not available.') . EOL);
45                 return;
46         }
47
48         // Check if we are allowed to display the content to visitors
49         if (!local_user()) {
50                 $available = $page_style == CP_USERS_AND_GLOBAL;
51
52                 if (!$available) {
53                         $available = ($page_style == CP_USERS_ON_SERVER) && ($content == 'local');
54                 }
55
56                 if (!$available) {
57                         $available = ($page_style == CP_GLOBAL_COMMUNITY) && ($content == 'global');
58                 }
59
60                 if (!$available) {
61                         notice(L10n::t('Not available.') . EOL);
62                         return;
63                 }
64         }
65
66         require_once 'include/bbcode.php';
67         require_once 'include/security.php';
68         require_once 'include/conversation.php';
69
70         if (!$update) {
71                 $tabs = [];
72
73                 if ((local_user() || in_array($page_style, [CP_USERS_AND_GLOBAL, CP_USERS_ON_SERVER])) && empty(Config::get('system', 'singleuser'))) {
74                         $tabs[] = [
75                                 'label' => L10n::t('Local Community'),
76                                 'url' => 'community/local',
77                                 'sel' => $content == 'local' ? 'active' : '',
78                                 'title' => L10n::t('Posts from local users on this server'),
79                                 'id' => 'community-local-tab',
80                                 'accesskey' => 'l'
81                         ];
82                 }
83
84                 if (local_user() || in_array($page_style, [CP_USERS_AND_GLOBAL, CP_GLOBAL_COMMUNITY])) {
85                         $tabs[] = [
86                                 'label' => L10n::t('Global Community'),
87                                 'url' => 'community/global',
88                                 'sel' => $content == 'global' ? 'active' : '',
89                                 'title' => L10n::t('Posts from users of the whole federated network'),
90                                 'id' => 'community-global-tab',
91                                 'accesskey' => 'g'
92                         ];
93                 }
94
95                 $tab_tpl = get_markup_template('common_tabs.tpl');
96                 $o .= replace_macros($tab_tpl, ['$tabs' => $tabs]);
97
98                 Nav::setSelected('community');
99
100                 // We need the editor here to be able to reshare an item.
101                 if (local_user()) {
102                         $x = [
103                                 'is_owner' => true,
104                                 'allow_location' => $a->user['allow_location'],
105                                 'default_location' => $a->user['default-location'],
106                                 'nickname' => $a->user['nickname'],
107                                 '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'),
108                                 'acl' => populate_acl($a->user, true),
109                                 'bang' => '',
110                                 'visitor' => 'block',
111                                 'profile_uid' => local_user(),
112                         ];
113                         $o .= status_editor($a, $x, 0, true);
114                 }
115         }
116
117         // check if we serve a mobile device and get the user settings accordingly
118         if ($a->is_mobile) {
119                 $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_mobile_network', 20);
120         } else {
121                 $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_network', 40);
122         }
123
124         // now that we have the user settings, see if the theme forces
125         // a maximum item number which is lower then the user choice
126         if (($a->force_max_items > 0) && ($a->force_max_items < $itemspage_network)) {
127                 $itemspage_network = $a->force_max_items;
128         }
129
130         $a->set_pager_itemspage($itemspage_network);
131
132         $r = community_getitems($a->pager['start'], $a->pager['itemspage'], $content);
133
134         if (!DBM::is_result($r)) {
135                 info(L10n::t('No results.') . EOL);
136                 return $o;
137         }
138
139         $maxpostperauthor = (int) Config::get('system', 'max_author_posts_community_page');
140
141         if (($maxpostperauthor != 0) && ($content == 'local')) {
142                 $count = 1;
143                 $previousauthor = "";
144                 $numposts = 0;
145                 $s = [];
146
147                 do {
148                         foreach ($r as $item) {
149                                 if ($previousauthor == $item["author-link"]) {
150                                         ++$numposts;
151                                 } else {
152                                         $numposts = 0;
153                                 }
154                                 $previousauthor = $item["author-link"];
155
156                                 if (($numposts < $maxpostperauthor) && (count($s) < $a->pager['itemspage'])) {
157                                         $s[] = $item;
158                                 }
159                         }
160                         if (count($s) < $a->pager['itemspage']) {
161                                 $r = community_getitems($a->pager['start'] + ($count * $a->pager['itemspage']), $a->pager['itemspage'], $content);
162                         }
163                 } while ((count($s) < $a->pager['itemspage']) && ( ++$count < 50) && (count($r) > 0));
164         } else {
165                 $s = $r;
166         }
167
168         $o .= conversation($a, $s, 'community', $update);
169
170         if (!$update) {
171                 $o .= alt_pager($a, count($r));
172         }
173
174         $t = get_markup_template("community.tpl");
175         return replace_macros($t, [
176                 '$content' => $o,
177                 '$header' => '',
178                 '$show_global_community_hint' => ($content == 'global') && Config::get('system', 'show_global_community_hint'),
179                 '$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.")
180         ]);
181 }
182
183 function community_getitems($start, $itemspage, $content)
184 {
185         if ($content == 'local') {
186                 $r = dba::p("SELECT `item`.`uri`, `item`.`author-link` FROM `thread`
187                         INNER JOIN `user` ON `user`.`uid` = `thread`.`uid` AND NOT `user`.`hidewall`
188                         INNER JOIN `item` ON `item`.`id` = `thread`.`iid`
189                         WHERE `thread`.`visible` AND NOT `thread`.`deleted` AND NOT `thread`.`moderated`
190                         AND NOT `thread`.`private` AND `thread`.`wall` AND `thread`.`origin`
191                         ORDER BY `thread`.`commented` DESC LIMIT " . intval($start) . ", " . intval($itemspage)
192                 );
193                 return dba::inArray($r);
194         } elseif ($content == 'global') {
195                 $r = dba::p("SELECT `uri` FROM `thread`
196                                 INNER JOIN `item` ON `item`.`id` = `thread`.`iid`
197                                 INNER JOIN `contact` AS `author` ON `author`.`id`=`item`.`author-id`
198                                 WHERE `thread`.`uid` = 0 AND NOT `author`.`hidden` AND NOT `author`.`blocked`
199                                 ORDER BY `thread`.`commented` DESC LIMIT " . intval($start) . ", " . intval($itemspage));
200                 return dba::inArray($r);
201         }
202
203         // Should never happen
204         return [];
205 }