Merge pull request #9101 from annando/signed-outbox
Support signed outbox requests
This commit is contained in:
commit
a54675b597
|
@ -25,9 +25,11 @@ use Friendica\BaseModule;
|
||||||
use Friendica\Core\System;
|
use Friendica\Core\System;
|
||||||
use Friendica\Database\DBA;
|
use Friendica\Database\DBA;
|
||||||
use Friendica\DI;
|
use Friendica\DI;
|
||||||
|
use Friendica\Model\Contact;
|
||||||
use Friendica\Model\Item;
|
use Friendica\Model\Item;
|
||||||
use Friendica\Network\HTTPException;
|
use Friendica\Network\HTTPException;
|
||||||
use Friendica\Protocol\ActivityPub;
|
use Friendica\Protocol\ActivityPub;
|
||||||
|
use Friendica\Util\HTTPSignature;
|
||||||
use Friendica\Util\Network;
|
use Friendica\Util\Network;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -45,17 +47,27 @@ class Objects extends BaseModule
|
||||||
DI::baseUrl()->redirect(str_replace('objects/', 'display/', DI::args()->getQueryString()));
|
DI::baseUrl()->redirect(str_replace('objects/', 'display/', DI::args()->getQueryString()));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// @todo Add Authentication to enable fetching of non public content
|
$item = Item::selectFirst(['id', 'uid', 'origin', 'author-link', 'changed', 'private', 'psid'],
|
||||||
// $requester = HTTPSignature::getSigner('', $_SERVER);
|
['guid' => $parameters['guid']], ['order' => ['origin' => true]]);
|
||||||
|
|
||||||
|
$validated = false;
|
||||||
|
$requester = HTTPSignature::getSigner('', $_SERVER);
|
||||||
|
if (!empty($requester) && $item['origin']) {
|
||||||
|
$requester_id = Contact::getIdForURL($requester, $item['uid']);
|
||||||
|
if (!empty($requester_id)) {
|
||||||
|
$permissionSets = DI::permissionSet()->selectByContactId($requester_id, $item['uid']);
|
||||||
|
if (!empty($permissionSets)) {
|
||||||
|
$psid = array_merge($permissionSets->column('id'),
|
||||||
|
[DI::permissionSet()->getIdFromACL($item['uid'], '', '', '', '')]);
|
||||||
|
$validated = in_array($item['psid'], $psid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!$validated && !in_array($item['private'], [Item::PUBLIC, Item::UNLISTED])) {
|
||||||
|
unset($item);
|
||||||
|
}
|
||||||
|
|
||||||
$item = Item::selectFirst(
|
|
||||||
['id', 'origin', 'author-link', 'changed'],
|
|
||||||
[
|
|
||||||
'guid' => $parameters['guid'],
|
|
||||||
'private' => [Item::PUBLIC, Item::UNLISTED]
|
|
||||||
],
|
|
||||||
['order' => ['origin' => true]]
|
|
||||||
);
|
|
||||||
// Valid items are original post or posted from this node (including in the case of a forum)
|
// Valid items are original post or posted from this node (including in the case of a forum)
|
||||||
if (!DBA::isResult($item) || !$item['origin'] && (parse_url($item['author-link'], PHP_URL_HOST) != parse_url(DI::baseUrl()->get(), PHP_URL_HOST))) {
|
if (!DBA::isResult($item) || !$item['origin'] && (parse_url($item['author-link'], PHP_URL_HOST) != parse_url(DI::baseUrl()->get(), PHP_URL_HOST))) {
|
||||||
throw new HTTPException\NotFoundException();
|
throw new HTTPException\NotFoundException();
|
||||||
|
|
|
@ -22,10 +22,10 @@
|
||||||
namespace Friendica\Module;
|
namespace Friendica\Module;
|
||||||
|
|
||||||
use Friendica\BaseModule;
|
use Friendica\BaseModule;
|
||||||
use Friendica\Core\System;
|
|
||||||
use Friendica\DI;
|
use Friendica\DI;
|
||||||
use Friendica\Model\User;
|
use Friendica\Model\User;
|
||||||
use Friendica\Protocol\ActivityPub;
|
use Friendica\Protocol\ActivityPub;
|
||||||
|
use Friendica\Util\HTTPSignature;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ActivityPub Outbox
|
* ActivityPub Outbox
|
||||||
|
@ -48,11 +48,8 @@ class Outbox extends BaseModule
|
||||||
|
|
||||||
$page = $_REQUEST['page'] ?? null;
|
$page = $_REQUEST['page'] ?? null;
|
||||||
|
|
||||||
/// @todo Add Authentication to enable fetching of non public content
|
$requester = HTTPSignature::getSigner('', $_SERVER);
|
||||||
// $requester = HTTPSignature::getSigner('', $_SERVER);
|
$outbox = ActivityPub\Transmitter::getOutbox($owner, $page, $requester);
|
||||||
|
|
||||||
$outbox = ActivityPub\Transmitter::getOutbox($owner, $page);
|
|
||||||
|
|
||||||
header('Content-Type: application/activity+json');
|
header('Content-Type: application/activity+json');
|
||||||
echo json_encode($outbox);
|
echo json_encode($outbox);
|
||||||
exit();
|
exit();
|
||||||
|
|
|
@ -141,20 +141,37 @@ class Transmitter
|
||||||
/**
|
/**
|
||||||
* Public posts for the given owner
|
* Public posts for the given owner
|
||||||
*
|
*
|
||||||
* @param array $owner Owner array
|
* @param array $owner Owner array
|
||||||
* @param integer $page Page numbe
|
* @param integer $page Page number
|
||||||
|
* @param string $requester URL of requesting account
|
||||||
*
|
*
|
||||||
* @return array of posts
|
* @return array of posts
|
||||||
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
||||||
* @throws \ImagickException
|
* @throws \ImagickException
|
||||||
*/
|
*/
|
||||||
public static function getOutbox($owner, $page = null)
|
public static function getOutbox($owner, $page = null, $requester = '')
|
||||||
{
|
{
|
||||||
$public_contact = Contact::getIdForURL($owner['url']);
|
$public_contact = Contact::getIdForURL($owner['url']);
|
||||||
|
$condition = ['uid' => 0, 'contact-id' => $public_contact,
|
||||||
|
'private' => [Item::PUBLIC, Item::UNLISTED]];
|
||||||
|
|
||||||
|
if (!empty($requester)) {
|
||||||
|
$requester_id = Contact::getIdForURL($requester, $owner['uid']);
|
||||||
|
if (!empty($requester_id)) {
|
||||||
|
$permissionSets = DI::permissionSet()->selectByContactId($requester_id, $owner['uid']);
|
||||||
|
if (!empty($permissionSets)) {
|
||||||
|
$condition = ['uid' => $owner['uid'], 'origin' => true,
|
||||||
|
'psid' => array_merge($permissionSets->column('id'),
|
||||||
|
[DI::permissionSet()->getIdFromACL($owner['uid'], '', '', '', '')])];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$condition = array_merge($condition,
|
||||||
|
['author-id' => $public_contact,
|
||||||
|
'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT],
|
||||||
|
'deleted' => false, 'visible' => true, 'moderated' => false]);
|
||||||
|
|
||||||
$condition = ['uid' => 0, 'contact-id' => $public_contact, 'author-id' => $public_contact,
|
|
||||||
'private' => [Item::PUBLIC, Item::UNLISTED], 'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT],
|
|
||||||
'deleted' => false, 'visible' => true, 'moderated' => false];
|
|
||||||
$count = DBA::count('item', $condition);
|
$count = DBA::count('item', $condition);
|
||||||
|
|
||||||
$data = ['@context' => ActivityPub::CONTEXT];
|
$data = ['@context' => ActivityPub::CONTEXT];
|
||||||
|
|
|
@ -484,7 +484,7 @@ class HTTPSignature
|
||||||
}
|
}
|
||||||
|
|
||||||
$headers = [];
|
$headers = [];
|
||||||
$headers['(request-target)'] = strtolower($http_headers['REQUEST_METHOD']) . ' ' . $http_headers['REQUEST_URI'];
|
$headers['(request-target)'] = strtolower($http_headers['REQUEST_METHOD']) . ' ' . parse_url($http_headers['REQUEST_URI'], PHP_URL_PATH);
|
||||||
|
|
||||||
// First take every header
|
// First take every header
|
||||||
foreach ($http_headers as $k => $v) {
|
foreach ($http_headers as $k => $v) {
|
||||||
|
|
Loading…
Reference in a new issue