2) { $item_id = argv(2); } $portable_id = EMPTY_STR; $sigdata = HTTPSig::verify(EMPTY_STR); if ($sigdata['portable_id'] && $sigdata['header_valid']) { $portable_id = $sigdata['portable_id']; } $chan = Channel::from_hash($request_portable_id); if ($chan) { $channel_id = $chan['channel_id']; if (!$item_id) { $handler = new ModChannel(); App::$argc = 2; App::$argv[0] = 'channel'; App::$argv[1] = $chan['channel_address']; $handler->init(); } } else { http_status_exit(404, 'Not found'); } $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 "; $sql_extra = item_permissions_sql(0); $r = q( "select * from item where uuid = '%s' $item_normal $sql_extra and uid = %d limit 1", dbesc($item_id), intval($channel_id) ); if (!$r) { $r = q( "select * from item where uuid = '%s' $item_normal and uid = %d limit 1", dbesc($item_id), intval($channel_id) ); if ($r) { http_status_exit(403, 'Forbidden'); } http_status_exit(404, 'Not found'); } if (!perm_is_allowed($chan['channel_id'], get_observer_hash(), 'view_stream')) { http_status_exit(403, 'Forbidden'); } xchan_query($r, true); $items = fetch_post_tags($r); $i = Activity::encode_item($items[0], (get_config('system', 'activitypub', ACTIVITYPUB_ENABLED) ? true : false)); if (!$i) { http_status_exit(404, 'Not found'); } $x = array_merge(Activity::ap_context(), $i); $headers = []; $headers['Content-Type'] = 'application/x-nomad+json'; $ret = json_encode($x, JSON_UNESCAPED_SLASHES); $headers['Digest'] = HTTPSig::generate_digest_header($ret); $headers['(request-target)'] = strtolower($_SERVER['REQUEST_METHOD']) . ' ' . $_SERVER['REQUEST_URI']; $h = HTTPSig::create_sig($headers, $chan['channel_prvkey'], Channel::url($chan)); HTTPSig::set_headers($h); echo $ret; killme(); } } }