streams/Code/Widget/Activity.php
Mike Macgirvin 39dbf4ad06 cleanup
2022-09-02 06:50:26 +10:00

68 lines
2 KiB
PHP

<?php
namespace Code\Widget;
use Code\Lib\LibBlock;
use Code\Extend\Hook;
class Activity
{
public function widget($arr)
{
if (!local_channel()) {
return '';
}
$o = EMPTY_STR;
if (is_array($arr) && array_key_exists('limit', $arr)) {
$limit = " limit " . intval($arr['limit']) . " ";
} else {
$limit = EMPTY_STR;
}
$perms_sql = item_permissions_sql(local_channel()) . item_normal();
$r = q(
"select author_xchan from item where item_unseen = 1 and uid = %d $perms_sql",
intval(local_channel())
);
$contributors = [];
$arr = [];
if ($r) {
foreach ($r as $rv) {
if (array_key_exists($rv['author_xchan'], $contributors)) {
$contributors[$rv['author_xchan']]++;
} else {
$contributors[$rv['author_xchan']] = 1;
}
}
foreach ($contributors as $k => $v) {
if (!LibBlock::fetch_by_entity(local_channel(), $k)) {
$arr[] = ['author_xchan' => $k, 'total' => $v];
}
}
usort($arr, 'total_sort');
xchan_query($arr);
}
$x = ['entries' => $arr];
Hook::call('activity_widget', $x);
$arr = $x['entries'];
if ($arr) {
$o .= '<div class="widget">';
$o .= '<h3>' . t('Activity', 'widget') . '</h3><ul class="nav nav-pills flex-column">';
foreach ($arr as $rv) {
$o .= '<li class="nav-item"><a class="nav-link" href="stream?f=&xchan=' . urlencode($rv['author_xchan']) . '" ><span class="badge badge-secondary float-right">' . ((intval($rv['total'])) ? intval($rv['total']) : '') . '</span><img src="' . $rv['author']['xchan_photo_s'] . '" class="menu-img-1" /> ' . $rv['author']['xchan_name'] . '</a></li>';
}
$o .= '</ul></div>';
}
return $o;
}
}