streams/Zotlabs/Module/Hcard.php

78 lines
1.8 KiB
PHP
Raw Normal View History

2016-04-19 03:38:38 +00:00
<?php
2021-12-03 03:01:39 +00:00
2016-04-19 03:38:38 +00:00
namespace Zotlabs\Module;
2019-04-17 23:54:06 +00:00
use App;
use Zotlabs\Web\Controller;
use Zotlabs\Lib\Libprofile;
2016-04-19 03:38:38 +00:00
2021-12-02 23:02:31 +00:00
class Hcard extends Controller
{
public function init()
{
2021-12-03 03:01:39 +00:00
if (argc() > 1) {
2021-12-02 23:02:31 +00:00
$which = argv(1);
2021-12-03 03:01:39 +00:00
} else {
2021-12-02 23:02:31 +00:00
notice(t('Requested profile is not available.') . EOL);
App::$error = 404;
return;
}
logger('hcard_request: ' . $which, LOGGER_DEBUG);
$profile = '';
$channel = App::get_channel();
if ((local_channel()) && (argc() > 2) && (argv(2) === 'view')) {
$which = $channel['channel_address'];
$profile = argv(1);
2021-12-03 03:01:39 +00:00
$r = q(
"select profile_guid from profile where id = %d and uid = %d limit 1",
2021-12-02 23:02:31 +00:00
intval($profile),
intval(local_channel())
);
2021-12-03 03:01:39 +00:00
if (!$r) {
2021-12-02 23:02:31 +00:00
$profile = '';
2021-12-03 03:01:39 +00:00
}
2021-12-02 23:02:31 +00:00
$profile = $r[0]['profile_guid'];
}
head_add_link([
'rel' => 'alternate',
'type' => 'application/atom+xml',
'title' => t('Posts and comments'),
'href' => z_root() . '/feed/' . $which
]);
head_add_link([
'rel' => 'alternate',
'type' => 'application/atom+xml',
'title' => t('Only posts'),
'href' => z_root() . '/feed/' . $which . '?f=&top=1'
]);
if (!$profile) {
2021-12-03 03:01:39 +00:00
$x = q(
"select channel_id as profile_uid from channel where channel_address = '%s' limit 1",
2021-12-02 23:02:31 +00:00
dbesc(argv(1))
);
if ($x) {
App::$profile = $x[0];
}
}
Libprofile::load($which, $profile);
}
public function get()
{
$x = new \Zotlabs\Widget\Profile();
return $x->widget([]);
}
2016-04-19 03:38:38 +00:00
}