streams/Zotlabs/Module/Common.php

73 lines
1.3 KiB
PHP
Raw Normal View History

2016-04-19 03:38:38 +00:00
<?php
namespace Zotlabs\Module;
require_once('include/socgraph.php');
class Common extends \Zotlabs\Web\Controller {
function init() {
if(argc() > 1 && intval(argv(1)))
$channel_id = intval(argv(1));
else {
notice( t('No channel.') . EOL );
\App::$error = 404;
return;
}
$x = q("select channel_address from channel where channel_id = %d limit 1",
intval($channel_id)
);
if($x)
profile_load($x[0]['channel_address'],0);
2016-04-19 03:38:38 +00:00
}
2017-10-03 09:37:45 +00:00
function get() {
2016-04-19 03:38:38 +00:00
$o = '';
if(! \App::$profile['profile_uid'])
return;
$observer_hash = get_observer_hash();
if(! perm_is_allowed(\App::$profile['profile_uid'],$observer_hash,'view_contacts')) {
notice( t('Permission denied.') . EOL);
return;
}
$t = count_common_friends(\App::$profile['profile_uid'],$observer_hash);
if(! $t) {
notice( t('No connections in common.') . EOL);
2017-10-03 09:37:45 +00:00
return;
2016-04-19 03:38:38 +00:00
}
$r = common_friends(\App::$profile['profile_uid'],$observer_hash);
if($r) {
foreach($r as $rr) {
2017-10-03 09:37:45 +00:00
$items[] = [
'url' => $rr['xchan_url'],
'name' => $rr['xchan_name'],
'photo' => $rr['xchan_photo_m'],
'tags' => ''
];
2016-04-19 03:38:38 +00:00
}
}
2017-10-03 09:37:45 +00:00
$tpl = get_markup_template('common_friends.tpl');
$o = replace_macros($tpl, [
'$title' => t('View Common Connections'),
'$items' => $items
]);
2016-04-19 03:38:38 +00:00
return $o;
}
}