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