streams/Zotlabs/Widget/Suggestedchats.php

44 lines
1.3 KiB
PHP
Raw Normal View History

<?php
namespace Zotlabs\Widget;
2021-12-02 22:33:36 +00:00
use App;
2022-01-25 23:25:21 +00:00
use Zotlabs\Lib\Features;
2021-12-02 22:33:36 +00:00
2021-12-02 23:02:31 +00:00
class Suggestedchats
{
public function widget($arr)
{
2022-01-25 23:20:02 +00:00
if (!Features::enabled(App::$profile['profile_uid'], 'ajaxchat')) {
2021-12-02 23:02:31 +00:00
return '';
2021-12-03 03:01:39 +00:00
}
2021-12-02 23:02:31 +00:00
// There are reports that this tool does not ever remove chatrooms on dead sites,
// and also will happily link to private chats which you cannot enter.
// For those reasons, it will be disabled until somebody decides it's worth
// fixing and comes up with a plan for doing so.
return '';
// probably should restrict this to your friends, but then the widget will only work
// if you are logged in locally.
$h = get_observer_hash();
2021-12-03 03:01:39 +00:00
if (!$h) {
2021-12-02 23:02:31 +00:00
return;
2021-12-03 03:01:39 +00:00
}
2021-12-02 23:02:31 +00:00
$r = q("select xchat_url, xchat_desc, count(xchat_xchan) as total from xchat group by xchat_url, xchat_desc order by total desc, xchat_desc limit 24");
if ($r) {
for ($x = 0; $x < count($r); $x++) {
$r[$x]['xchat_url'] = zid($r[$x]['xchat_url']);
}
}
return replace_macros(get_markup_template('bookmarkedchats.tpl'), array(
'$header' => t('Suggested Chatrooms'),
'$rooms' => $r
));
}
}