friendica/mod/community.php

148 lines
4.2 KiB
PHP
Raw Normal View History

2011-07-05 05:57:07 +02:00
<?php
use Friendica\App;
2017-04-30 06:01:26 +02:00
use Friendica\Core\Config;
2017-11-08 04:57:46 +01:00
use Friendica\Database\DBM;
function community_init(App $a) {
if (! local_user()) {
unset($_SESSION['theme']);
unset($_SESSION['mobile-theme']);
}
}
function community_content(App $a, $update = 0) {
2011-07-05 05:57:07 +02:00
$o = '';
if ((Config::get('system','block_public')) && (! local_user()) && (! remote_user())) {
2011-07-05 05:57:07 +02:00
notice( t('Public access denied.') . EOL);
return;
}
if (Config::get('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');
if (! $update) {
nav_set_selected('community');
2011-07-05 05:57:07 +02:00
}
if (x($a->data,'search')) {
2011-07-05 05:57:07 +02:00
$search = notags(trim($a->data['search']));
} else {
2011-07-05 05:57:07 +02:00
$search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
}
2011-07-05 05:57:07 +02:00
// Here is the way permissions work in this module...
// 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
$r = community_getitems($a->pager['start'], $a->pager['itemspage']);
2011-07-05 05:57:07 +02:00
2017-11-08 04:57:46 +01:00
if (! DBM::is_result($r)) {
info( t('No results.') . EOL);
return $o;
}
$maxpostperauthor = Config::get('system','max_author_posts_community_page');
if ($maxpostperauthor != 0) {
$count = 1;
$previousauthor = "";
$numposts = 0;
$s = array();
do {
foreach ($r AS $row=>$item) {
if ($previousauthor == $item["author-link"]) {
++$numposts;
} else {
$numposts = 0;
}
$previousauthor = $item["author-link"];
if (($numposts < $maxpostperauthor) && (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']) && (++$count < 50) && (sizeof($r) > 0));
} else {
$s = $r;
}
2011-07-05 05:57:07 +02:00
// we behave the same in message lists as the search module
2017-03-13 06:57:37 +01:00
$o .= conversation($a, $s, 'community', $update);
2011-07-05 05:57:07 +02:00
$o .= alt_pager($a, count($r));
2011-07-05 05:57:07 +02:00
2017-11-10 20:57:02 +01:00
$t = get_markup_template("community.tpl");
return replace_macros($t, array(
'$content' => $o,
'$header' => t("Community"),
'$show_global_community_hint' => (Config::get('system', 'community_page_style') == CP_GLOBAL_COMMUNITY && Config::get('system', 'show_global_community_hint')),
2017-11-10 22:00:39 +01:00
'$global_community_hint' => t("This community stream shows all public posts received by this node. They may not reflect the opinions of this nodes users.")
));
2011-07-05 05:57:07 +02:00
}
function community_getitems($start, $itemspage) {
if (Config::get('system','community_page_style') == CP_GLOBAL_COMMUNITY) {
return(community_getpublicitems($start, $itemspage));
}
2017-08-11 10:04:01 +02:00
$r = dba::p("SELECT ".item_fieldlists()." FROM `thread`
INNER JOIN `user` ON `user`.`uid` = `thread`.`uid` AND NOT `user`.`hidewall`
INNER JOIN `item` ON `item`.`id` = `thread`.`iid`
AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = ''
2017-08-11 10:04:01 +02:00
AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''".
item_joins()." AND `contact`.`self`
WHERE `thread`.`visible` AND NOT `thread`.`deleted` AND NOT `thread`.`moderated`
AND NOT `thread`.`private` AND `thread`.`wall`
2017-08-11 10:04:01 +02:00
ORDER BY `thread`.`received` DESC LIMIT ".intval($start).", ".intval($itemspage)
);
2017-08-11 10:04:01 +02:00
return dba::inArray($r);
}
function community_getpublicitems($start, $itemspage) {
2017-08-11 10:04:01 +02:00
$r = dba::p("SELECT ".item_fieldlists()." FROM `thread`
INNER JOIN `item` ON `item`.`id` = `thread`.`iid` ".item_joins().
"WHERE `thread`.`uid` = 0 AND `verb` = ?
ORDER BY `thread`.`commented` DESC LIMIT ".intval($start).", ".intval($itemspage),
2017-08-11 10:04:01 +02:00
ACTIVITY_POST
);
while ($rr = dba::fetch($r)) {
if (!in_array($rr['item_id'], $parents_arr)) {
$parents_arr[] = $rr['item_id'];
}
}
dba::close();
$max_comments = Config::get("system", "max_comments", 100);
$items = array();
foreach ($parents_arr AS $parents) {
$thread_items = dba::p(item_query()." AND `item`.`uid` = 0
AND `item`.`parent` = ?
ORDER BY `item`.`commented` DESC LIMIT ".intval($max_comments + 1),
$parents
);
if (DBM::is_result($thread_items)) {
$items = array_merge($items, dba::inArray($thread_items));
}
}
$items = conv_sort($items, "`commented`");
return $items;
}