2011-07-05 05:57:07 +02:00
|
|
|
<?php
|
|
|
|
|
2011-10-12 04:27:58 +02:00
|
|
|
function community_init(&$a) {
|
2012-09-07 01:24:34 +02:00
|
|
|
if(! local_user()) {
|
2011-10-12 04:27:58 +02:00
|
|
|
unset($_SESSION['theme']);
|
2012-09-07 01:24:34 +02:00
|
|
|
unset($_SESSION['mobile-theme']);
|
|
|
|
}
|
2011-10-12 04:27:58 +02:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-07-05 05:57:07 +02:00
|
|
|
|
|
|
|
function community_content(&$a, $update = 0) {
|
|
|
|
|
|
|
|
$o = '';
|
|
|
|
|
|
|
|
if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
|
|
|
|
notice( t('Public access denied.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-02-08 20:35:40 +01:00
|
|
|
if(get_config('system','community_page_style') == CP_NO_COMMUNITY_PAGE) {
|
2011-07-05 05:57:07 +02:00
|
|
|
notice( t('Not available.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
require_once("include/bbcode.php");
|
|
|
|
require_once('include/security.php');
|
|
|
|
require_once('include/conversation.php');
|
|
|
|
|
|
|
|
|
|
|
|
$o .= '<h3>' . t('Community') . '</h3>';
|
|
|
|
if(! $update) {
|
2011-08-17 18:36:24 +02:00
|
|
|
nav_set_selected('community');
|
2011-07-05 05:57:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(x($a->data,'search'))
|
|
|
|
$search = notags(trim($a->data['search']));
|
|
|
|
else
|
|
|
|
$search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
|
|
|
|
|
|
|
|
|
|
|
|
// Here is the way permissions work in this module...
|
2012-03-20 22:55:18 +01:00
|
|
|
// Only public posts can be shown
|
2011-07-05 05:57:07 +02:00
|
|
|
// OR your own posts if you are a logged in member
|
|
|
|
|
2015-02-08 11:54:42 +01:00
|
|
|
if(get_config('system', 'old_pager')) {
|
2012-11-28 03:30:46 +01:00
|
|
|
$r = q("SELECT COUNT(distinct(`item`.`uri`)) AS `total`
|
2014-03-09 09:19:14 +01:00
|
|
|
FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
|
|
|
|
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
|
|
|
|
INNER JOIN `user` ON `user`.`uid` = `item`.`uid` AND `user`.`hidewall` = 0
|
2012-11-28 03:30:46 +01:00
|
|
|
WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
|
2014-03-09 09:19:14 +01:00
|
|
|
AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = ''
|
2012-11-28 03:30:46 +01:00
|
|
|
AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
|
2014-03-09 09:19:14 +01:00
|
|
|
AND `item`.`private` = 0 AND `item`.`wall` = 1"
|
2012-11-28 03:30:46 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
if(count($r))
|
|
|
|
$a->set_pager_total($r[0]['total']);
|
|
|
|
|
|
|
|
if(! $r[0]['total']) {
|
|
|
|
info( t('No results.') . EOL);
|
|
|
|
return $o;
|
|
|
|
}
|
2011-07-05 05:57:07 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-07-10 23:13:50 +02:00
|
|
|
$r = community_getitems($a->pager['start'], $a->pager['itemspage']);
|
2011-07-05 05:57:07 +02:00
|
|
|
|
2012-07-14 20:21:58 +02:00
|
|
|
if(! count($r)) {
|
|
|
|
info( t('No results.') . EOL);
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2014-06-10 20:21:43 +02:00
|
|
|
$maxpostperauthor = get_config('system','max_author_posts_community_page');
|
|
|
|
|
|
|
|
if ($maxpostperauthor != 0) {
|
2014-07-10 23:13:50 +02:00
|
|
|
$count = 1;
|
2014-06-10 20:21:43 +02:00
|
|
|
$previousauthor = "";
|
|
|
|
$numposts = 0;
|
|
|
|
$s = array();
|
|
|
|
|
2014-07-10 23:13:50 +02:00
|
|
|
do {
|
|
|
|
foreach ($r AS $row=>$item) {
|
|
|
|
if ($previousauthor == $item["author-link"])
|
|
|
|
++$numposts;
|
|
|
|
else
|
|
|
|
$numposts = 0;
|
2014-06-10 20:21:43 +02:00
|
|
|
|
2014-07-10 23:13:50 +02:00
|
|
|
$previousauthor = $item["author-link"];
|
2014-06-10 20:21:43 +02:00
|
|
|
|
2014-07-10 23:13:50 +02:00
|
|
|
if (($numposts < $maxpostperauthor) AND (sizeof($s) < $a->pager['itemspage']))
|
|
|
|
$s[] = $item;
|
|
|
|
}
|
|
|
|
if ((sizeof($s) < $a->pager['itemspage']))
|
|
|
|
$r = community_getitems($a->pager['start'] + ($count * $a->pager['itemspage']), $a->pager['itemspage']);
|
|
|
|
|
|
|
|
} while ((sizeof($s) < $a->pager['itemspage']) AND (++$count < 50) AND (sizeof($r) > 0));
|
2014-06-10 20:21:43 +02:00
|
|
|
} else
|
|
|
|
$s = $r;
|
|
|
|
|
2011-07-05 05:57:07 +02:00
|
|
|
// we behave the same in message lists as the search module
|
|
|
|
|
2014-06-10 20:21:43 +02:00
|
|
|
$o .= conversation($a,$s,'community',$update);
|
2011-07-05 05:57:07 +02:00
|
|
|
|
2015-02-08 11:54:42 +01:00
|
|
|
if(!get_config('system', 'old_pager')) {
|
2012-11-28 03:30:46 +01:00
|
|
|
$o .= alt_pager($a,count($r));
|
2015-02-08 11:54:42 +01:00
|
|
|
} else {
|
2012-11-28 03:30:46 +01:00
|
|
|
$o .= paginate($a);
|
2012-07-14 20:21:58 +02:00
|
|
|
}
|
2011-07-05 05:57:07 +02:00
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2014-07-10 23:13:50 +02:00
|
|
|
function community_getitems($start, $itemspage) {
|
2015-02-09 08:25:12 +01:00
|
|
|
if (get_config('system','community_page_style') == CP_GLOBAL_COMMUNITY)
|
2014-12-21 11:02:31 +01:00
|
|
|
return(community_getpublicitems($start, $itemspage));
|
|
|
|
|
2014-07-10 23:13:50 +02:00
|
|
|
$r = q("SELECT `item`.`uri`, `item`.*, `item`.`id` AS `item_id`,
|
|
|
|
`contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`rel`,
|
|
|
|
`contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`,
|
|
|
|
`contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`,
|
|
|
|
`user`.`nickname`, `user`.`hidewall`
|
|
|
|
FROM `thread` FORCE INDEX (`wall_private_received`)
|
|
|
|
INNER JOIN `user` ON `user`.`uid` = `thread`.`uid` AND `user`.`hidewall` = 0
|
|
|
|
INNER JOIN `item` ON `item`.`id` = `thread`.`iid`
|
|
|
|
AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = ''
|
|
|
|
AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
|
|
|
|
INNER JOIN `contact` ON `contact`.`id` = `thread`.`contact-id`
|
|
|
|
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 AND `contact`.`self`
|
|
|
|
WHERE `thread`.`visible` = 1 AND `thread`.`deleted` = 0 and `thread`.`moderated` = 0
|
|
|
|
AND `thread`.`private` = 0 AND `thread`.`wall` = 1
|
|
|
|
ORDER BY `thread`.`received` DESC LIMIT %d, %d ",
|
|
|
|
intval($start),
|
|
|
|
intval($itemspage)
|
|
|
|
);
|
|
|
|
|
|
|
|
return($r);
|
|
|
|
|
|
|
|
}
|
2014-12-21 11:02:31 +01:00
|
|
|
|
|
|
|
function community_getpublicitems($start, $itemspage) {
|
|
|
|
$r = q("SELECT `item`.`uri`, `item`.*, `item`.`id` AS `item_id`,
|
|
|
|
`author-name` AS `name`, `owner-avatar` AS `photo`,
|
|
|
|
`owner-link` AS `url`, `owner-avatar` AS `thumb`
|
2015-03-21 20:23:47 +01:00
|
|
|
FROM `item` WHERE `item`.`uid` = 0 AND `item`.`id` = `item`.`parent`
|
2014-12-21 11:02:31 +01:00
|
|
|
AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = ''
|
|
|
|
AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
|
|
|
|
ORDER BY `item`.`received` DESC LIMIT %d, %d",
|
|
|
|
intval($start),
|
|
|
|
intval($itemspage)
|
|
|
|
);
|
|
|
|
|
|
|
|
return($r);
|
|
|
|
|
|
|
|
}
|