streams/Zotlabs/Module/Hq.php

307 lines
7.7 KiB
PHP
Raw Normal View History

<?php
namespace Zotlabs\Module;
use App;
use Zotlabs\Web\Controller;
use Zotlabs\Lib\PermissionDescription;
require_once("include/bbcode.php");
require_once('include/security.php');
require_once('include/conversation.php');
require_once('include/acl_selectors.php');
class Hq extends Controller {
// State passed in from the Update module.
public $profile_uid = 0;
public $loading = 0;
public $updating = 0;
2017-11-28 11:28:49 +00:00
function init() {
if(! local_channel())
return;
App::$profile_uid = local_channel();
2017-11-28 11:28:49 +00:00
}
2017-11-18 21:16:06 +00:00
function post() {
if(!local_channel())
return;
if($_REQUEST['notify_id']) {
q("update notify set seen = 1 where id = %d and uid = %d",
intval($_REQUEST['notify_id']),
intval(local_channel())
);
}
killme();
2017-11-18 21:16:06 +00:00
}
function get() {
if(!local_channel())
return;
if($this->loading)
2021-05-21 01:47:10 +00:00
$_SESSION['loadtime_hq'] = datetime_convert();
if(argc() > 1 && argv(1) !== 'load') {
$item_hash = argv(1);
}
if($_REQUEST['mid'])
$item_hash = $_REQUEST['mid'];
2017-11-19 22:09:15 +00:00
$item_normal = item_normal();
$item_normal_update = item_normal_update();
if(! $item_hash) {
$r = q("SELECT mid FROM item
WHERE uid = %d $item_normal
2018-01-12 21:03:06 +00:00
AND mid = parent_mid
2017-12-04 07:54:56 +00:00
ORDER BY created DESC LIMIT 1",
intval(local_channel())
);
2017-12-04 07:54:56 +00:00
if($r[0]['mid']) {
$item_hash = gen_link_id($r[0]['mid']);
}
}
2017-12-04 07:54:56 +00:00
if($item_hash) {
2017-11-24 14:01:34 +00:00
$item_hash = unpack_link_id($item_hash);
2017-12-04 07:54:56 +00:00
$target_item = null;
$r = q("select id, uid, mid, parent_mid, thr_parent, verb, item_type, item_deleted, item_blocked from item where mid like '%s' limit 1",
dbesc($item_hash . '%')
);
if($r) {
$target_item = $r[0];
}
//if the item is to be moderated redirect to /moderate
if($target_item['item_blocked'] == ITEM_MODERATED) {
goaway(z_root() . '/moderate/' . $target_item['id']);
}
$static = ((array_key_exists('static',$_REQUEST)) ? intval($_REQUEST['static']) : 0);
$simple_update = (($this->updating) ? " AND item_unseen = 1 " : '');
2017-12-04 07:54:56 +00:00
if($this->updating && $_SESSION['loadtime_hq'])
2021-05-21 01:47:10 +00:00
$simple_update = " AND item.changed > '" . datetime_convert('UTC','UTC',$_SESSION['loadtime_hq']) . "' ";
2017-12-04 07:54:56 +00:00
if($static && $simple_update)
$simple_update .= " and item_thread_top = 0 and author_xchan = '" . protect_sprintf(get_observer_hash()) . "' ";
2017-12-04 07:54:56 +00:00
$sys = get_sys_channel();
$sql_extra = item_permissions_sql($sys['channel_id']);
$sys_item = false;
2017-12-04 07:54:56 +00:00
}
if(! $this->updating) {
$channel = App::get_channel();
$channel_acl = [
'allow_cid' => $channel['channel_allow_cid'],
'allow_gid' => $channel['channel_allow_gid'],
'deny_cid' => $channel['channel_deny_cid'],
'deny_gid' => $channel['channel_deny_gid']
];
$x = [
'is_owner' => true,
'allow_location' => ((intval(get_pconfig($channel['channel_id'],'system','use_browser_location'))) ? '1' : ''),
'default_location' => $channel['channel_location'],
'nickname' => $channel['channel_address'],
'lockstate' => (($group || $cid || $channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'),
'acl' => populate_acl($channel_acl,true, PermissionDescription::fromGlobalPermission('view_stream'), get_post_aclDialogDescription(), 'acl_dialog_post'),
'permissions' => $channel_acl,
'bang' => '',
'visitor' => true,
'profile_uid' => local_channel(),
2017-11-24 14:01:34 +00:00
'return_path' => 'hq',
'expanded' => true,
'editor_autocomplete' => true,
'bbco_autocomplete' => 'bbcode',
'bbcode' => true,
2018-05-21 07:13:14 +00:00
'jotnets' => true,
'reset' => t('Reset form')
];
2017-12-04 07:54:56 +00:00
$o = replace_macros(get_markup_template("hq.tpl"),
[
'$no_messages' => (($target_item) ? false : true),
2021-03-11 03:30:25 +00:00
'$no_messages_label' => [ t('Welcome to $Projectname!'), t('You have got no unseen posts...') ],
'$editor' => status_editor($x)
2017-12-04 07:54:56 +00:00
]
);
2018-01-11 09:58:46 +00:00
}
2017-11-18 21:16:06 +00:00
if(! $this->updating && ! $this->loading) {
2017-11-24 14:01:34 +00:00
nav_set_selected('HQ');
$static = ((local_channel()) ? channel_manual_conv_update(local_channel()) : 1);
2017-12-04 07:54:56 +00:00
if($target_item) {
// if the target item is not a post (eg a like) we want to address its thread parent
$mid = ((($target_item['verb'] == ACTIVITY_LIKE) || ($target_item['verb'] == ACTIVITY_DISLIKE)) ? $target_item['thr_parent'] : $target_item['mid']);
2017-12-04 07:54:56 +00:00
// if we got a decoded hash we must encode it again before handing to javascript
$mid = gen_link_id($mid);
2017-12-04 07:54:56 +00:00
}
else {
$mid = '';
}
2017-11-24 14:01:34 +00:00
$o .= '<div id="live-hq"></div>' . "\r\n";
2017-11-18 21:16:06 +00:00
$o .= "<script> var profile_uid = " . local_channel()
2021-12-02 22:33:36 +00:00
. "; var netargs = '?f='; var profile_page = " . App::$pager['page'] . ";</script>\r\n";
App::$page['htmlhead'] .= replace_macros(get_markup_template("build_query.tpl"),[
'$baseurl' => z_root(),
2017-11-24 14:01:34 +00:00
'$pgtype' => 'hq',
'$uid' => local_channel(),
'$gid' => '0',
'$cid' => '0',
'$cmin' => '0',
'$cmax' => '99',
'$star' => '0',
'$liked' => '0',
'$conv' => '0',
'$spam' => '0',
'$fh' => '0',
2019-06-19 02:21:31 +00:00
'$dm' => '0',
'$nouveau' => '0',
'$wall' => '0',
'$draft' => '0',
'$static' => $static,
2017-11-18 21:16:06 +00:00
'$page' => 1,
'$list' => ((x($_REQUEST,'list')) ? intval($_REQUEST['list']) : 0),
'$search' => '',
'$xchan' => '',
'$order' => '',
'$file' => '',
'$cats' => '',
'$tags' => '',
'$dend' => '',
'$dbegin' => '',
'$verb' => '',
'$net' => '',
'$mid' => (($mid) ? urlencode($mid) : '')
]);
}
2017-12-04 07:54:56 +00:00
$updateable = false;
if($this->loading && $target_item) {
2017-11-18 21:16:06 +00:00
$r = null;
2017-11-25 09:44:47 +00:00
$r = q("SELECT item.id AS item_id FROM item
2017-11-18 21:16:06 +00:00
WHERE uid = %d
2017-11-25 09:44:47 +00:00
AND mid = '%s'
2017-11-18 21:16:06 +00:00
$item_normal
2017-11-25 09:44:47 +00:00
LIMIT 1",
2017-11-18 21:16:06 +00:00
intval(local_channel()),
dbesc($target_item['parent_mid'])
);
2017-11-25 09:44:47 +00:00
2017-11-18 21:16:06 +00:00
if($r) {
$updateable = true;
}
2017-11-25 09:44:47 +00:00
if(!$r) {
$sys_item = true;
2017-11-25 09:44:47 +00:00
$r = q("SELECT item.id AS item_id FROM item
LEFT JOIN abook ON item.author_xchan = abook.abook_xchan
WHERE mid = '%s' AND item.uid = %d $item_normal
AND (abook.abook_blocked = 0 or abook.abook_flags is null)
$sql_extra LIMIT 1",
dbesc($target_item['parent_mid']),
intval($sys['channel_id'])
);
}
}
elseif($this->updating && $target_item) {
$r = null;
2017-11-25 09:44:47 +00:00
$r = q("SELECT item.parent AS item_id FROM item
WHERE uid = %d
2017-11-25 09:44:47 +00:00
AND parent_mid = '%s'
$item_normal_update
$simple_update
2017-11-25 09:44:47 +00:00
LIMIT 1",
intval(local_channel()),
dbesc($target_item['parent_mid'])
);
2017-11-25 09:44:47 +00:00
if($r) {
$updateable = true;
}
2017-11-25 09:44:47 +00:00
if(!$r) {
$sys_item = true;
2017-11-25 09:44:47 +00:00
$r = q("SELECT item.parent AS item_id FROM item
LEFT JOIN abook ON item.author_xchan = abook.abook_xchan
WHERE mid = '%s' AND item.uid = %d $item_normal_update $simple_update
AND (abook.abook_blocked = 0 or abook.abook_flags is null)
$sql_extra LIMIT 1",
dbesc($target_item['parent_mid']),
intval($sys['channel_id'])
);
}
2021-05-21 01:47:10 +00:00
$_SESSION['loadtime_hq'] = datetime_convert();
}
else {
$r = [];
}
if($r) {
2018-01-11 09:58:46 +00:00
$items = q("SELECT item.*, item.id AS item_id
FROM item
WHERE parent = '%s' $item_normal ",
dbesc($r[0]['item_id'])
);
2018-01-11 09:58:46 +00:00
xchan_query($items,true,(($sys_item) ? local_channel() : 0));
$items = fetch_post_tags($items,true);
$items = conv_sort($items,'created');
}
else {
$items = [];
}
2018-01-11 09:58:46 +00:00
$o .= conversation($items, 'hq', $this->updating, 'client');
if($updateable) {
2017-11-25 09:44:47 +00:00
$x = q("UPDATE item SET item_unseen = 0 WHERE item_unseen = 1 AND uid = %d AND parent = %d ",
intval(local_channel()),
intval($r[0]['item_id'])
);
}
$o .= '<div id="content-complete"></div>';
return $o;
}
}