]> git.mxchange.org Git - friendica.git/blob - mod/community.php
Merge pull request #508 from fermionic/no-theme-control-of-live-update-location
[friendica.git] / mod / community.php
1 <?php
2
3 function community_init(&$a) {
4         if(! local_user()) {
5                 unset($_SESSION['theme']);
6                 unset($_SESSION['mobile-theme']);
7         }
8
9
10 }
11
12
13 function community_content(&$a, $update = 0) {
14
15         $o = '';
16
17         if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
18                 notice( t('Public access denied.') . EOL);
19                 return;
20         }
21
22         if(get_config('system','no_community_page')) {
23                 notice( t('Not available.') . EOL);
24                 return;
25         }
26
27         require_once("include/bbcode.php");
28         require_once('include/security.php');
29         require_once('include/conversation.php');
30
31
32         $o .= '<h3>' . t('Community') . '</h3>';
33         if(! $update) {
34                 nav_set_selected('community');
35         }
36
37         if(x($a->data,'search'))
38                 $search = notags(trim($a->data['search']));
39         else
40                 $search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
41
42
43         // Here is the way permissions work in this module...
44         // Only public posts can be shown
45         // OR your own posts if you are a logged in member
46
47         if(! get_pconfig(local_user(),'system','alt_pager')) {
48                 $r = q("SELECT COUNT(distinct(`item`.`uri`)) AS `total`
49                         FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id` LEFT JOIN `user` ON `user`.`uid` = `item`.`uid`
50                         WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
51                         AND `item`.`allow_cid` = ''  AND `item`.`allow_gid` = '' 
52                         AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = ''
53                         AND `item`.`private` = 0 AND `item`.`wall` = 1 AND `user`.`hidewall` = 0 
54                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0"
55                 );
56
57                 if(count($r))
58                         $a->set_pager_total($r[0]['total']);
59
60                 if(! $r[0]['total']) {
61                         info( t('No results.') . EOL);
62                         return $o;
63                 }
64
65         }
66
67         $r = q("SELECT distinct(`item`.`uri`), `item`.*, `item`.`id` AS `item_id`, 
68                 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`rel`,
69                 `contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`, 
70                 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`,
71                 `user`.`nickname`, `user`.`hidewall`
72                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
73                 LEFT JOIN `user` ON `user`.`uid` = `item`.`uid`
74                 WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
75                 AND `item`.`allow_cid` = ''  AND `item`.`allow_gid` = ''
76                 AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = '' 
77                 AND `item`.`private` = 0 AND `item`.`wall` = 1 AND `user`.`hidewall` = 0
78                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 group by `item`.`uri`
79                 ORDER BY `received` DESC LIMIT %d, %d ",
80                 intval($a->pager['start']),
81                 intval($a->pager['itemspage'])
82
83         );
84
85         if(! count($r)) {
86                 info( t('No results.') . EOL);
87                 return $o;
88         }
89
90         // we behave the same in message lists as the search module
91
92         $o .= conversation($a,$r,'community',$update);
93
94         if(! get_pconfig(local_user(),'system','alt_pager')) {
95                 $o .= paginate($a);
96         }
97         else {
98                 $o .= alt_pager($a,count($r));
99         }
100
101         return $o;
102 }
103