streams/Zotlabs/Module/Activity.php

110 lines
3 KiB
PHP
Raw Normal View History

2018-08-23 06:04:37 +00:00
<?php
namespace Zotlabs\Module;
2019-06-17 06:05:15 +00:00
use Zotlabs\Web\Controller;
2018-08-23 06:04:37 +00:00
use Zotlabs\Lib\ActivityStreams;
2019-06-17 06:05:15 +00:00
use Zotlabs\Lib\Activity as ZlibActivity;
2019-10-17 00:52:40 +00:00
use Zotlabs\Web\HTTPSig;
use Zotlabs\Lib\LDSignatures;
2018-08-23 06:04:37 +00:00
2019-06-17 06:05:15 +00:00
class Activity extends Controller {
2018-08-23 06:04:37 +00:00
function init() {
2019-09-27 01:52:51 +00:00
2019-06-17 06:05:15 +00:00
if (ActivityStreams::is_as_request()) {
2018-08-23 06:04:37 +00:00
$item_id = argv(1);
2019-06-17 06:05:15 +00:00
if (! $item_id) {
2018-08-23 06:04:37 +00:00
return;
2019-06-17 06:05:15 +00:00
}
2018-08-23 06:04:37 +00:00
2019-09-30 02:20:09 +00:00
$ob_authorise = false;
$item_uid = 0;
$bear = ZlibActivity::token_from_request();
2019-09-27 01:52:51 +00:00
if ($bear) {
logger('bear: ' . $bear, LOGGER_DEBUG);
2019-10-01 02:25:48 +00:00
$t = q("select item.uid, iconfig.v from iconfig left join item on iid = item.id where cat = 'ocap' and item.uuid = '%s'",
2019-09-30 02:20:09 +00:00
dbesc($item_id)
);
if ($t) {
foreach ($t as $token) {
if ($token['v'] === $bear) {
$ob_authorize = true;
$item_uid = $token['uid'];
break;
}
}
}
2019-09-27 01:52:51 +00:00
}
2018-08-23 06:04:37 +00:00
$item_normal = " and item.item_hidden = 0 and item.item_type = 0 and item.item_unpublished = 0
and item.item_delayed = 0 and item.item_blocked = 0 ";
2019-10-17 00:52:40 +00:00
$sigdata = HTTPSig::verify(EMPTY_STR);
if ($sigdata['portable_id'] && $sigdata['header_valid']) {
$portable_id = $sigdata['portable_id'];
if (! check_channelallowed($portable_id)) {
http_status_exit(403, 'Permission denied');
}
if (! check_siteallowed($sigdata['signer'])) {
http_status_exit(403, 'Permission denied');
}
observer_auth($portable_id);
}
2019-09-30 02:20:09 +00:00
// if passed an owner_id of 0 to item_permissions_sql(), we force "guest access" or observer checking
// Give ocap tokens priority
if ($ob_authorize) {
$sql_extra = " and item.uid = " . intval($token['uid']) . " ";
}
else {
$sql_extra = item_permissions_sql(0);
}
2019-10-17 00:52:40 +00:00
2019-09-30 02:20:09 +00:00
$r = q("select * from item where uuid = '%s' $item_normal $sql_extra and item_deleted = 0 limit 1",
dbesc($item_id)
2018-08-23 06:04:37 +00:00
);
2019-10-17 00:52:40 +00:00
2019-06-17 06:05:15 +00:00
if (! $r) {
$r = q("select * from item where uuid = '%s' $item_normal limit 1",
dbesc($item_id)
2018-08-23 06:04:37 +00:00
);
if($r) {
http_status_exit(403, 'Forbidden');
}
http_status_exit(404, 'Not found');
}
xchan_query($r,true);
2019-10-11 23:45:04 +00:00
$items = fetch_post_tags($r,false);
2018-08-23 06:04:37 +00:00
$channel = channelx_by_n($items[0]['uid']);
2019-06-17 06:05:15 +00:00
$x = array_merge( ['@context' => [
2018-08-23 06:04:37 +00:00
ACTIVITYSTREAMS_JSONLD_REV,
'https://w3id.org/security/v1',
z_root() . ZOT_APSCHEMA_REV
]], ZlibActivity::encode_activity($items[0],get_config('system','activitypub',true)));
2018-08-23 06:04:37 +00:00
$headers = [];
$headers['Content-Type'] = 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"' ;
$x['signature'] = LDSignatures::sign($x,$channel);
$ret = json_encode($x, JSON_UNESCAPED_SLASHES);
$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-08-23 06:04:37 +00:00
$h = HTTPSig::create_sig($headers,$channel['channel_prvkey'],channel_url($channel));
HTTPSig::set_headers($h);
echo $ret;
killme();
}
2019-08-30 04:19:00 +00:00
goaway(z_root() . '/item/' . argv(1));
2018-08-23 06:04:37 +00:00
}
}