streams/Code/Module/Chanview.php

154 lines
4.9 KiB
PHP

<?php
namespace Code\Module;
use App;
use Code\Web\Controller;
use Code\Lib\Libzot;
use Code\Lib\Zotfinger;
use Code\Lib\Webfinger;
use Code\Lib\Activity;
use Code\Lib\PConfig;
use Code\Render\Theme;
class Chanview extends Controller
{
public function get()
{
$load_outbox = false;
$channel = App::get_channel();
$observer = App::get_observer();
$xchan = null;
$r = null;
if ($_REQUEST['hash']) {
$r = q(
"select * from xchan where xchan_hash = '%s' limit 1",
dbesc($_REQUEST['hash'])
);
}
if ($_REQUEST['address']) {
$r = q(
"select * from xchan where xchan_addr = '%s' limit 1",
dbesc(punify($_REQUEST['address']))
);
} elseif (local_channel() && intval($_REQUEST['cid'])) {
$r = q(
"SELECT abook.*, xchan.*
FROM abook left join xchan on abook_xchan = xchan_hash
WHERE abook_channel = %d and abook_id = %d LIMIT 1",
intval(local_channel()),
intval($_REQUEST['cid'])
);
} elseif ($_REQUEST['url']) {
// if somebody re-installed they will have more than one xchan, use the most recent name date as this is
// the most useful consistently ascending table item we have.
$r = q(
"select * from hubloc left join xchan on hubloc_hash = xchan_hash where (hubloc_url = '%s' or hubloc_id_url = '%s') and hubloc_deleted = 0 order by xchan_name_date desc limit 1",
dbesc($_REQUEST['url']),
dbesc($_REQUEST['url'])
);
}
if ($r) {
App::$poi = array_shift($r);
}
// No cached record present. Perform channel discovery.
if (!App::$poi) {
logger('mod_chanview: fallback');
if (($hash = discover_resource($_REQUEST['url'] ?? $_REQUEST['address'], verify: false)) !== false) {
$r = q(
"select * from xchan where xchan_hash = '%s' limit 1",
dbesc($hash)
);
if ($r) {
App::$poi = $r[0];
}
}
}
if (!App::$poi) {
notice(t('Channel not found.') . EOL);
return '';
}
$is_zot = false;
$connected = false;
$url = App::$poi['xchan_url'];
if (isOWAEnabled($url)) {
$is_zot = true;
}
if (local_channel()) {
$c = q(
"select abook_id, abook_pending from abook where abook_channel = %d and abook_xchan = '%s' limit 1",
intval(local_channel()),
dbesc(App::$poi['xchan_hash'])
);
if ($c) {
$connected = true;
}
}
if ($is_zot && $observer) {
$url = zid($url);
}
// If we are already connected, just go to the profile.
if ($connected && PConfig::Get(local_channel(), 'system', 'chanview_redirect')) {
goaway($url);
}
else {
$about = false;
$xprof = q(
"select * from xprof where xprof_hash = '%s'",
dbesc(App::$poi['xchan_hash'])
);
if ($xprof) {
$about = zidify_links(bbcode($xprof[0]['xprof_about']));
}
$followers = t('Not available');
$following = t('Not available');
$f = get_xconfig(App::$poi['xchan_hash'], 'activitypub', 'collections');
if ($f && isset($f['followers'])) {
$m = Activity::fetch($f['followers']);
if (is_array($m) && isset($m['totalItems'])) {
$followers = intval($m['totalItems']);
}
}
if ($f && isset($f['following'])) {
$m = Activity::fetch($f['following']);
if (is_array($m) && isset($m['totalItems'])) {
$following = intval($m['totalItems']);
}
}
$o = replace_macros(Theme::get_template('chanview.tpl'), [
'$url' => $url,
'$photo' => get_xconfig(App::$poi['xchan_hash'], 'system', 'cover_photo'),
'$alt' => t('Cover photo for this channel'),
'$about' => $about,
'$followers_txt' => t('Followers'),
'$following_txt' => t('Following'),
'$followers' => $followers,
'$following' => $following,
'$visit' => t('Visit'),
'$outbox' => $load_outbox,
'$view' => t('View Recent'),
'$recentlink' => z_root() . '/stream/?xchan=' . urlencode(App::$poi['xchan_hash']),
'$full' => t('toggle full screen mode')
]);
return $o;
}
}
}