streams/Zotlabs/Module/Channel.php

554 lines
17 KiB
PHP
Raw Normal View History

<?php
2016-04-16 05:36:07 +00:00
namespace Zotlabs\Module;
2018-06-01 02:42:13 +00:00
use Zotlabs\Lib\Libzot;
2018-06-26 03:55:53 +00:00
use Zotlabs\Lib\Activity;
2019-04-17 23:54:06 +00:00
use Zotlabs\Lib\Libprofile;
2018-06-26 03:55:53 +00:00
use Zotlabs\Lib\ActivityStreams;
2018-08-23 06:04:37 +00:00
use Zotlabs\Lib\LDSignatures;
2018-12-17 04:37:43 +00:00
use Zotlabs\Lib\Crypto;
2018-06-20 02:33:50 +00:00
use Zotlabs\Web\HTTPSig;
2018-06-01 02:42:13 +00:00
2018-08-21 05:02:08 +00:00
use App;
use Zotlabs\Web\Controller;
use Zotlabs\Lib\PermissionDescription;
require_once('include/items.php');
require_once('include/security.php');
require_once('include/conversation.php');
require_once('include/acl_selectors.php');
2018-08-21 05:02:08 +00:00
/**
* @brief Channel Controller
*
*/
2018-08-21 05:02:08 +00:00
class Channel extends Controller {
function init() {
2019-12-24 20:26:50 +00:00
if (in_array(substr($_GET['search'],0,1),[ '@', '!', '?'])) {
goaway('search' . '?f=&search=' . $_GET['search']);
2019-12-24 20:26:50 +00:00
}
$which = null;
2019-05-23 23:37:56 +00:00
if (argc() > 1) {
$which = argv(1);
2019-05-23 23:37:56 +00:00
}
if (! $which) {
if (local_channel()) {
$channel = App::get_channel();
2019-05-23 23:37:56 +00:00
if ($channel && $channel['channel_address']) {
2018-09-14 09:16:42 +00:00
$which = $channel['channel_address'];
}
}
}
2019-05-23 23:37:56 +00:00
if (! $which) {
notice( t('You must be logged in to see this page.') . EOL );
return;
}
$profile = 0;
$channel = App::get_channel();
2019-05-23 23:37:56 +00:00
if ((local_channel()) && (argc() > 2) && (argv(2) === 'view')) {
$which = $channel['channel_address'];
$profile = argv(1);
}
2018-06-26 03:55:53 +00:00
$channel = channelx_by_nick($which);
2019-05-23 23:37:56 +00:00
if (! $channel) {
2018-06-26 03:55:53 +00:00
http_status_exit(404, 'Not found');
}
2017-02-22 02:58:51 +00:00
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'
]);
2018-04-23 01:51:46 +00:00
// handle zot6 channel discovery
2018-06-01 02:42:13 +00:00
if(Libzot::is_zot_request()) {
2018-06-26 03:55:53 +00:00
2018-10-10 04:08:57 +00:00
$sigdata = HTTPSig::verify(file_get_contents('php://input'));
2018-04-23 01:51:46 +00:00
2018-05-24 04:48:19 +00:00
if($sigdata && $sigdata['signer'] && $sigdata['header_valid']) {
$data = json_encode(Libzot::zotinfo([ 'address' => $channel['channel_address'], 'target_url' => $sigdata['signer'] ]));
2018-05-24 04:48:19 +00:00
$s = q("select site_crypto, hubloc_sitekey from site left join hubloc on hubloc_url = site_url where hubloc_id_url = '%s' and hubloc_network = 'zot6' limit 1",
dbesc($sigdata['signer'])
);
2018-05-29 02:42:40 +00:00
if($s && $s[0]['hubloc_sitekey'] && $s[0]['site_crypto']) {
2018-12-17 04:37:43 +00:00
$data = json_encode(Crypto::encapsulate($data,$s[0]['hubloc_sitekey'],Libzot::best_algorithm($s[0]['site_crypto'])));
2018-05-24 04:48:19 +00:00
}
}
else {
2018-06-01 02:42:13 +00:00
$data = json_encode(Libzot::zotinfo([ 'address' => $channel['channel_address'] ]));
2018-05-24 04:48:19 +00:00
}
2018-04-23 01:51:46 +00:00
2018-10-11 00:58:51 +00:00
$headers = [
'Content-Type' => 'application/x-zot+json',
'Digest' => HTTPSig::generate_digest_header($data),
'(request-target)' => strtolower($_SERVER['REQUEST_METHOD']) . ' ' . $_SERVER['REQUEST_URI']
];
2018-06-20 02:33:50 +00:00
$h = HTTPSig::create_sig($headers,$channel['channel_prvkey'],channel_url($channel));
HTTPSig::set_headers($h);
2018-05-29 02:42:40 +00:00
echo $data;
2018-04-23 01:51:46 +00:00
killme();
}
2018-08-06 04:31:25 +00:00
if(ActivityStreams::is_as_request()) {
2018-06-26 03:55:53 +00:00
$x = array_merge(['@context' => [
ACTIVITYSTREAMS_JSONLD_REV,
'https://w3id.org/security/v1',
z_root() . ZOT_APSCHEMA_REV
]], Activity::encode_person($channel,true,true));
2018-06-26 03:55:53 +00:00
2018-08-23 06:04:37 +00:00
$headers = [];
$headers['Content-Type'] = 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"' ;
2018-09-26 03:41:06 +00:00
$x['signature'] = LDSignatures::sign($x,$channel);
2018-08-23 06:04:37 +00:00
$ret = json_encode($x, JSON_UNESCAPED_SLASHES);
2019-11-08 20:16:29 +00:00
$headers['Date'] = datetime_convert('UTC','UTC', 'now', 'D, d M Y H:i:s \\G\\M\\T');
2018-08-23 06:04:37 +00:00
$headers['Digest'] = HTTPSig::generate_digest_header($ret);
2018-10-11 00:58:51 +00:00
$headers['(request-target)'] = strtolower($_SERVER['REQUEST_METHOD']) . ' ' . $_SERVER['REQUEST_URI'];
2018-09-26 03:41:06 +00:00
$h = HTTPSig::create_sig($headers,$channel['channel_prvkey'],channel_url($channel));
2018-08-23 06:04:37 +00:00
HTTPSig::set_headers($h);
echo $ret;
killme();
2018-06-26 03:55:53 +00:00
}
2018-06-26 03:55:53 +00:00
2019-04-17 23:54:06 +00:00
// Run Libprofile::load() here to make sure the theme is set before
2018-05-24 04:48:19 +00:00
// we start loading content
2019-04-17 23:54:06 +00:00
Libprofile::load($which,$profile);
2018-05-24 04:48:19 +00:00
2019-06-30 00:54:48 +00:00
App::$meta->set('og:title', $channel['channel_name']);
App::$meta->set('og:image', $channel['xchan_photo_l']);
App::$meta->set('og:type','webpage');
App::$meta->set('og:url', channel_url($channel));
if(App::$profile['about'] && perm_is_allowed($channel['channel_id'],get_observer_hash(),'view_profile')) {
2019-06-30 00:54:48 +00:00
App::$meta->set('og:description', App::$profile['about']);
}
else {
2019-06-30 00:54:48 +00:00
App::$meta->set('og:description', sprintf( t('This is the home page of %s.'), $channel['channel_name']));
}
}
2013-01-06 21:42:51 +00:00
function get($update = 0, $load = false) {
2020-07-22 03:01:37 +00:00
$noscript_content = get_config('system', 'noscript_content', '1');
if($load)
$_SESSION['loadtime'] = datetime_convert();
$category = $datequery = $datequery2 = '';
$mid = ((x($_REQUEST,'mid')) ? $_REQUEST['mid'] : '');
2018-05-24 04:48:19 +00:00
if($mid && strpos($mid,'b64.') === 0) {
$decoded = @base64url_decode(substr($mid,4));
if($decoded) {
$mid = $decoded;
}
}
$datequery = ((x($_GET,'dend') && is_a_date_arg($_GET['dend'])) ? notags($_GET['dend']) : '');
$datequery2 = ((x($_GET,'dbegin') && is_a_date_arg($_GET['dbegin'])) ? notags($_GET['dbegin']) : '');
if(observer_prohibited(true)) {
return login();
}
$category = ((x($_REQUEST,'cat')) ? $_REQUEST['cat'] : '');
$hashtags = ((x($_REQUEST,'tag')) ? $_REQUEST['tag'] : '');
$order = ((x($_GET,'order')) ? notags($_GET['order']) : 'post');
$static = ((array_key_exists('static',$_REQUEST)) ? intval($_REQUEST['static']) : 0);
$search = ((x($_GET,'search')) ? $_GET['search'] : EMPTY_STR);
2013-09-04 03:58:46 +00:00
$groups = array();
$o = '';
if($update) {
// Ensure we've got a profile owner if updating.
App::$profile['profile_uid'] = App::$profile_uid = $update;
}
$is_owner = (((local_channel()) && (App::$profile['profile_uid'] == local_channel())) ? true : false);
$channel = App::get_channel();
$observer = App::get_observer();
$ob_hash = (($observer) ? $observer['xchan_hash'] : '');
$perms = get_all_perms(App::$profile['profile_uid'],$ob_hash);
2020-07-22 03:01:37 +00:00
if(! $perms['view_stream']) {
// We may want to make the target of this redirect configurable
if($perms['view_profile']) {
notice( t('Insufficient permissions. Request redirected to profile page.') . EOL);
goaway (z_root() . "/profile/" . App::$profile['channel_address']);
}
notice( t('Permission denied.') . EOL);
return;
}
if(! $update) {
nav_set_selected('Channel Home');
$static = channel_manual_conv_update(App::$profile['profile_uid']);
// search terms header
if($search) {
$o .= replace_macros(get_markup_template("section_title.tpl"),array(
'$title' => t('Search Results For:') . ' ' . htmlspecialchars($search, ENT_COMPAT,'UTF-8')
));
}
$role = get_pconfig(App::$profile['profile_uid'],'system','permissions_role');
if ($role === 'social_restricted' && (! $ob_hash)) {
// provide warning that content is probably hidden ?
}
if($channel && $is_owner) {
$channel_acl = array(
'allow_cid' => $channel['channel_allow_cid'],
'allow_gid' => $channel['channel_allow_gid'],
'deny_cid' => $channel['channel_deny_cid'],
'deny_gid' => $channel['channel_deny_gid']
);
}
else {
$channel_acl = [ 'allow_cid' => '', 'allow_gid' => '', 'deny_cid' => '', 'deny_gid' => '' ];
}
if($perms['post_wall']) {
$x = array(
'is_owner' => $is_owner,
'allow_location' => ((($is_owner || $observer) && (intval(get_pconfig(App::$profile['profile_uid'],'system','use_browser_location')))) ? true : false),
'default_location' => (($is_owner) ? App::$profile['channel_location'] : ''),
'nickname' => App::$profile['channel_address'],
'lockstate' => (((strlen(App::$profile['channel_allow_cid'])) || (strlen(App::$profile['channel_allow_gid'])) || (strlen(App::$profile['channel_deny_cid'])) || (strlen(App::$profile['channel_deny_gid']))) ? 'lock' : 'unlock'),
2018-08-21 05:02:08 +00:00
'acl' => (($is_owner) ? populate_acl($channel_acl,true, PermissionDescription::fromGlobalPermission('view_stream'), get_post_aclDialogDescription(), 'acl_dialog_post') : ''),
'permissions' => $channel_acl,
'showacl' => (($is_owner) ? 'yes' : ''),
'bang' => '',
'visitor' => (($is_owner || $observer) ? true : false),
'profile_uid' => App::$profile['profile_uid'],
'editor_autocomplete' => true,
'bbco_autocomplete' => 'bbcode',
'bbcode' => true,
2018-05-21 07:13:14 +00:00
'jotnets' => true,
'reset' => t('Reset form')
);
$o .= status_editor($a,$x);
}
2019-12-03 05:08:06 +00:00
if (! $mid && ! $search) {
$obj = new \Zotlabs\Widget\Pinned;
$o .= $obj->widget([]);
}
}
/**
2019-05-23 23:37:56 +00:00
* Get permissions SQL
*/
$item_normal = " and item.item_hidden = 0 and item.item_type = 0 and item.item_deleted = 0
and item.item_unpublished = 0 and item.item_pending_remove = 0
and item.item_blocked = 0 ";
if (! $is_owner)
$item_normal .= "and item.item_delayed = 0 ";
$item_normal_update = item_normal_update();
$sql_extra = item_permissions_sql(App::$profile['profile_uid']);
2019-05-23 23:37:56 +00:00
if (get_pconfig(App::$profile['profile_uid'],'system','channel_list_mode') && (! $mid)) {
$page_mode = 'list';
2019-05-23 23:37:56 +00:00
}
else {
$page_mode = 'client';
2019-05-23 23:37:56 +00:00
}
$abook_uids = " and abook.abook_channel = " . intval(App::$profile['profile_uid']) . " ";
$simple_update = (($update) ? " AND item_unseen = 1 " : '');
2019-05-23 23:37:56 +00:00
if ($search) {
$search = escape_tags($search);
if(strpos($search,'#') === 0) {
$sql_extra .= term_query('item',substr($search,1),TERM_HASHTAG,TERM_COMMUNITYTAG);
}
else {
$sql_extra .= sprintf(" AND (item.body like '%s' OR item.title like '%s') ",
dbesc(protect_sprintf('%' . $search . '%')),
dbesc(protect_sprintf('%' . $search . '%'))
);
}
}
head_add_link([
'rel' => 'alternate',
'type' => 'application/json+oembed',
'href' => z_root() . '/oep?f=&url=' . urlencode(z_root() . '/' . App::$query_string),
'title' => 'oembed'
]);
2019-05-23 23:37:56 +00:00
if ($update && $_SESSION['loadtime']) {
$simple_update = " AND (( item_unseen = 1 AND item.changed > '" . datetime_convert('UTC','UTC',$_SESSION['loadtime']) . "' ) OR item.changed > '" . datetime_convert('UTC','UTC',$_SESSION['loadtime']) . "' ) ";
2019-05-23 23:37:56 +00:00
}
if ($load) {
$simple_update = '';
2019-05-23 23:37:56 +00:00
}
if ($static && $simple_update) {
$simple_update .= " and author_xchan = '" . protect_sprintf(get_observer_hash()) . "' ";
2019-05-23 23:37:56 +00:00
}
if (($update) && (! $load)) {
2019-05-23 23:37:56 +00:00
if ($mid) {
$r = q("SELECT parent AS item_id from item where mid like '%s' and uid = %d $item_normal_update
AND item_wall = 1 $simple_update $sql_extra limit 1",
dbesc($mid . '%'),
intval(App::$profile['profile_uid'])
);
$_SESSION['loadtime'] = datetime_convert();
}
else {
$r = q("SELECT parent AS item_id from item
left join abook on ( item.owner_xchan = abook.abook_xchan $abook_uids )
WHERE uid = %d $item_normal_update
AND item_wall = 1 $simple_update
AND (abook.abook_blocked = 0 or abook.abook_flags is null)
$sql_extra
ORDER BY created DESC",
intval(App::$profile['profile_uid'])
);
$_SESSION['loadtime'] = datetime_convert();
}
}
else {
2019-05-23 23:37:56 +00:00
if (x($category)) {
$sql_extra2 .= protect_sprintf(term_item_parent_query(App::$profile['profile_uid'],'item', $category, TERM_CATEGORY));
}
2019-05-23 23:37:56 +00:00
if (x($hashtags)) {
$sql_extra2 .= protect_sprintf(term_item_parent_query(App::$profile['profile_uid'],'item', $hashtags, TERM_HASHTAG, TERM_COMMUNITYTAG));
}
2019-05-23 23:37:56 +00:00
if ($datequery) {
$sql_extra2 .= protect_sprintf(sprintf(" AND item.created <= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery))));
$order = 'post';
}
2019-05-23 23:37:56 +00:00
if ($datequery2) {
$sql_extra2 .= protect_sprintf(sprintf(" AND item.created >= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery2))));
}
2019-05-23 23:37:56 +00:00
if ($datequery || $datequery2) {
$sql_extra2 .= " and item.item_thread_top != 0 ";
}
2019-05-23 23:37:56 +00:00
if ($order === 'post') {
$ordering = "created";
2019-05-23 23:37:56 +00:00
}
else {
$ordering = "commented";
2019-05-23 23:37:56 +00:00
}
$itemspage = get_pconfig(local_channel(),'system','itemspage');
App::set_pager_itemspage(((intval($itemspage)) ? $itemspage : 20));
$pager_sql = sprintf(" LIMIT %d OFFSET %d ", intval(App::$pager['itemspage']), intval(App::$pager['start']));
2019-05-23 23:37:56 +00:00
if ($noscript_content || $load) {
if ($mid) {
$r = q("SELECT parent AS item_id from item where mid like '%s' and uid = %d $item_normal
AND item_wall = 1 $sql_extra limit 1",
dbesc($mid . '%'),
intval(App::$profile['profile_uid'])
);
if (! $r) {
notice( t('Permission denied.') . EOL);
}
}
else {
$r = q("SELECT DISTINCT item.parent AS item_id, $ordering FROM item
2018-02-09 19:36:14 +00:00
left join abook on ( item.author_xchan = abook.abook_xchan $abook_uids )
WHERE true and item.uid = %d $item_normal
AND (abook.abook_blocked = 0 or abook.abook_flags is null)
AND item.item_wall = 1 AND item.item_thread_top = 1
$sql_extra $sql_extra2
ORDER BY $ordering DESC $pager_sql ",
intval(App::$profile['profile_uid'])
);
}
}
else {
2019-05-23 23:37:56 +00:00
$r = [];
}
}
2019-05-23 23:37:56 +00:00
if ($r) {
$parents_str = ids_to_querystr($r,'item_id');
$items = q("SELECT item.*, item.id AS item_id
2016-10-04 04:48:53 +00:00
FROM item
WHERE item.uid = %d $item_normal
AND item.parent IN ( %s )
$sql_extra ",
intval(App::$profile['profile_uid']),
dbesc($parents_str)
);
xchan_query($items);
$items = fetch_post_tags($items, true);
$items = conv_sort($items,$ordering);
2019-05-23 23:37:56 +00:00
if ($load && $mid && (! count($items))) {
// This will happen if we don't have sufficient permissions
// to view the parent item (or the item itself if it is toplevel)
notice( t('Permission denied.') . EOL);
}
2019-05-23 23:37:56 +00:00
}
else {
$items = [];
}
2019-05-23 23:37:56 +00:00
if ((! $update) && (! $load)) {
// This is ugly, but we can't pass the profile_uid through the session to the ajax updater,
// because browser prefetching might change it on us. We have to deliver it with the page.
$maxheight = get_pconfig(App::$profile['profile_uid'],'system','channel_divmore_height');
if(! $maxheight)
$maxheight = 400;
$o .= '<div id="live-channel"></div>' . "\r\n";
$o .= "<script> var profile_uid = " . App::$profile['profile_uid']
. "; var netargs = '?f='; var profile_page = " . App::$pager['page']
. "; divmore_height = " . intval($maxheight) . "; </script>\r\n";
App::$page['htmlhead'] .= replace_macros(get_markup_template("build_query.tpl"),array(
'$baseurl' => z_root(),
'$pgtype' => 'channel',
'$uid' => ((App::$profile['profile_uid']) ? App::$profile['profile_uid'] : '0'),
'$gid' => '0',
'$cid' => '0',
'$cmin' => '(-1)',
'$cmax' => '(-1)',
'$star' => '0',
'$liked' => '0',
'$conv' => '0',
'$spam' => '0',
'$nouveau' => '0',
'$wall' => '1',
'$fh' => '0',
2019-06-19 02:21:31 +00:00
'$dm' => '0',
'$static' => $static,
'$page' => ((App::$pager['page'] != 1) ? App::$pager['page'] : 1),
'$search' => $search,
'$xchan' => '',
'$order' => (($order) ? urlencode($order) : ''),
'$list' => ((x($_REQUEST,'list')) ? intval($_REQUEST['list']) : 0),
'$file' => '',
'$cats' => (($category) ? urlencode($category) : ''),
'$tags' => (($hashtags) ? urlencode($hashtags) : ''),
'$mid' => (($mid) ? urlencode($mid) : ''),
'$verb' => '',
2017-11-01 09:53:12 +00:00
'$net' => '',
'$dend' => $datequery,
'$dbegin' => $datequery2
));
}
$update_unseen = '';
2013-01-06 00:40:45 +00:00
2019-05-23 23:37:56 +00:00
if ($page_mode === 'list') {
/**
* in "list mode", only mark the parent item and any like activities as "seen".
* We won't distinguish between comment likes and post likes. The important thing
* is that the number of unseen comments will be accurate. The SQL to separate the
* comment likes could also get somewhat hairy.
*/
2019-05-23 23:37:56 +00:00
if ($parents_str) {
$update_unseen = " AND ( id IN ( " . dbesc($parents_str) . " )";
$update_unseen .= " OR ( parent IN ( " . dbesc($parents_str) . " ) AND verb in ( '" . dbesc(ACTIVITY_LIKE) . "','" . dbesc(ACTIVITY_DISLIKE) . "' ))) ";
}
}
else {
2019-05-23 23:37:56 +00:00
if ($parents_str) {
$update_unseen = " AND parent IN ( " . dbesc($parents_str) . " )";
}
}
2020-02-24 23:40:20 +00:00
if ($is_owner && $update_unseen && (! $_SESSION['sudo'])) {
2017-08-02 05:25:55 +00:00
$x = [ 'channel_id' => local_channel(), 'update' => 'unset' ];
call_hooks('update_unseen',$x);
2019-05-23 23:37:56 +00:00
if ($x['update'] === 'unset' || intval($x['update'])) {
2017-08-02 05:25:55 +00:00
$r = q("UPDATE item SET item_unseen = 0 where item_unseen = 1 and item_wall = 1 AND uid = %d $update_unseen",
intval(local_channel())
);
}
}
$mode = (($search) ? 'search' : 'channel');
if($update) {
$o .= conversation($items,$mode,$update,$page_mode);
}
else {
$o .= '<noscript>';
2019-05-23 23:37:56 +00:00
if ($noscript_content) {
$o .= conversation($items,$mode,$update,'traditional');
$o .= alt_pager(count($items));
}
else {
2018-09-07 12:58:16 +00:00
$o .= '<div class="section-content-warning-wrapper">' . t('You must enable javascript for your browser to be able to view this content.') . '</div>';
}
$o .= '</noscript>';
$o .= conversation($items,$mode,$update,$page_mode);
2016-04-16 05:36:07 +00:00
if ($mid && $items[0]['title'])
App::$page['title'] = $items[0]['title'] . " - " . App::$page['title'];
}
2016-04-16 05:36:07 +00:00
if($mid)
$o .= '<div id="content-complete"></div>';
return $o;
}
2016-08-03 19:16:57 +00:00
}