2019-05-11 12:27:21 +01:00
< ? php
// This file is part of GNU social - https://www.gnu.org/software/social
//
// GNU social is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// GNU social is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
/**
* ActivityPub implementation for GNU social
*
* @ package GNUsocial
* @ author Diogo Cordeiro < diogo @ fc . up . pt >
* @ copyright 2018 - 2019 Free Software Foundation , Inc http :// www . fsf . org
* @ license https :// www . gnu . org / licenses / agpl . html GNU AGPL v3 or later
* @ link http :// www . gnu . org / software / social /
*/
defined ( 'GNUSOCIAL' ) || die ();
/**
* ActivityPub ' s own Explorer
*
* Allows to discovery new ( or the same ) Profiles ( both local or remote )
*
2019-10-11 16:00:11 +01:00
* @ category Plugin
* @ package GNUsocial
* @ author Diogo Cordeiro < diogo @ fc . up . pt >
* @ license https :// www . gnu . org / licenses / agpl . html GNU AGPL v3 or later
2019-05-11 12:27:21 +01:00
*/
class Activitypub_explorer
{
private $discovered_actor_profiles = [];
/**
* Shortcut function to get a single profile from its URL .
*
2019-10-11 17:08:37 +01:00
* @ param string $url
* @ param bool $grab_online whether to try online grabbing , defaults to true
2019-05-11 12:27:21 +01:00
* @ return Profile
2019-10-11 17:08:37 +01:00
* @ throws HTTP_Request2_Exception Network issues
* @ throws NoProfileException This won ' t happen
* @ throws Exception Invalid request
* @ throws ServerException Error storing remote actor
2019-09-13 11:56:36 +01:00
* @ author Diogo Cordeiro < diogo @ fc . up . pt >
2019-05-11 12:27:21 +01:00
*/
2020-07-21 12:26:23 +01:00
public static function get_profile_from_url ( string $url , bool $grab_online = true ) : Profile
2019-05-11 12:27:21 +01:00
{
2019-09-13 18:57:49 +01:00
$discovery = new Activitypub_explorer ();
2019-05-11 12:27:21 +01:00
// Get valid Actor object
2019-09-13 11:56:36 +01:00
$actor_profile = $discovery -> lookup ( $url , $grab_online );
2019-05-11 12:27:21 +01:00
if ( ! empty ( $actor_profile )) {
return $actor_profile [ 0 ];
}
throw new Exception ( 'Invalid Actor.' );
}
/**
* Get every profile from the given URL
* This function cleans the $this -> discovered_actor_profiles array
* so that there is no erroneous data
*
2019-10-11 17:08:37 +01:00
* @ param string $url User ' s url
* @ param bool $grab_online whether to try online grabbing , defaults to true
2019-05-11 12:27:21 +01:00
* @ return array of Profile objects
* @ throws HTTP_Request2_Exception
* @ throws NoProfileException
2019-09-13 18:57:49 +01:00
* @ throws Exception
2019-05-11 12:27:21 +01:00
* @ throws ServerException
* @ author Diogo Cordeiro < diogo @ fc . up . pt >
*/
2019-09-13 11:56:36 +01:00
public function lookup ( string $url , bool $grab_online = true )
2019-05-11 12:27:21 +01:00
{
if ( in_array ( $url , ACTIVITYPUB_PUBLIC_TO )) {
return [];
}
2019-10-11 16:00:11 +01:00
common_debug ( 'ActivityPub Explorer: Started now looking for ' . $url );
2019-05-11 12:27:21 +01:00
$this -> discovered_actor_profiles = [];
2019-09-13 11:56:36 +01:00
return $this -> _lookup ( $url , $grab_online );
2019-05-11 12:27:21 +01:00
}
/**
* Get every profile from the given URL
* This is a recursive function that will accumulate the results on
* $discovered_actor_profiles array
*
2019-10-11 17:08:37 +01:00
* @ param string $url User ' s url
* @ param bool $grab_online whether to try online grabbing , defaults to true
2019-05-11 12:27:21 +01:00
* @ return array of Profile objects
* @ throws HTTP_Request2_Exception
* @ throws NoProfileException
* @ throws ServerException
* @ throws Exception
* @ author Diogo Cordeiro < diogo @ fc . up . pt >
*/
2020-07-21 12:26:23 +01:00
private function _lookup ( string $url , bool $grab_online = true ) : array
2019-05-11 12:27:21 +01:00
{
2019-08-29 16:49:13 +01:00
$grab_local = $this -> grab_local_user ( $url );
// First check if we already have it locally and, if so, return it.
// If the local fetch fails and remote grab is required: store locally and return.
2019-09-13 11:56:36 +01:00
if ( ! $grab_local && ( ! $grab_online || ! $this -> grab_remote_user ( $url ))) {
2019-05-11 12:27:21 +01:00
throw new Exception ( 'User not found.' );
}
return $this -> discovered_actor_profiles ;
}
/**
* Get a local user profile from its URL and joins it on
* $this -> discovered_actor_profiles
*
2019-10-11 17:08:37 +01:00
* @ param string $uri Actor ' s uri
* @ param bool $online
2019-09-13 18:57:49 +01:00
* @ return bool success state
2019-05-11 12:27:21 +01:00
* @ throws NoProfileException
* @ throws Exception
* @ author Diogo Cordeiro < diogo @ fc . up . pt >
*/
2020-07-21 12:26:23 +01:00
private function grab_local_user ( string $uri , bool $online = false ) : bool
2019-05-11 12:27:21 +01:00
{
if ( $online ) {
2019-10-11 16:00:11 +01:00
common_debug ( 'ActivityPub Explorer: Searching locally for ' . $uri . ' with online resources.' );
2020-03-31 08:13:52 +01:00
$all_ids = LRDDPlugin :: grab_profile_aliases ( $uri );
2019-05-11 12:27:21 +01:00
} else {
2019-10-11 16:00:11 +01:00
common_debug ( 'ActivityPub Explorer: Searching locally for ' . $uri . ' offline.' );
2020-03-27 19:25:43 +00:00
$all_ids = [ $uri ];
2019-05-11 12:27:21 +01:00
}
2020-03-27 19:25:43 +00:00
2020-03-31 08:13:52 +01:00
if ( is_null ( $all_ids )) {
2020-03-27 19:25:43 +00:00
common_debug ( 'AcvitityPub Explorer: Unable to find a local profile for ' . $uri );
return false ;
2019-05-11 12:27:21 +01:00
}
2020-03-27 19:25:43 +00:00
foreach ( $all_ids as $alias ) {
// Try standard ActivityPub route
// Is this a known filthy little mudblood?
$aprofile = self :: get_aprofile_by_url ( $alias );
if ( $aprofile instanceof Activitypub_profile ) {
common_debug ( 'ActivityPub Explorer: Found a local Aprofile for ' . $alias );
// double check to confirm this alias as a legitimate one
if ( $online ) {
common_debug ( 'ActivityPub Explorer: Double-checking ' . $alias . ' to confirm it as a legitimate alias' );
$disco = new Discovery ();
$xrd = $disco -> lookup ( $aprofile -> getUri ());
$doublecheck_aliases = array_merge ( array ( $xrd -> subject ), $xrd -> aliases );
if ( in_array ( $uri , $doublecheck_aliases )) {
// the original URI is present, we're sure now!
// update aprofile's URI and proceed
common_debug ( 'ActivityPub Explorer: ' . $alias . ' is a legitimate alias' );
$aprofile -> updateUri ( $uri );
} else {
common_debug ( 'ActivityPub Explorer: ' . $alias . ' is not an alias we can trust' );
continue ;
}
}
// Assert: This AProfile has a Profile, no try catch.
$profile = $aprofile -> local_profile ();
// We found something!
$this -> discovered_actor_profiles [] = $profile ;
return true ;
} else {
common_debug ( 'ActivityPub Explorer: Unable to find a local Aprofile for ' . $alias . ' - looking for a Profile instead.' );
// Well, maybe it is a pure blood?
// Iff, we are in the same instance:
$ACTIVITYPUB_BASE_ACTOR_URI = common_local_url ( 'userbyid' , [ 'id' => null ], null , null , false , true ); // @FIXME: Could this be too hardcoded?
$ACTIVITYPUB_BASE_ACTOR_URI_length = strlen ( $ACTIVITYPUB_BASE_ACTOR_URI );
if ( substr ( $alias , 0 , $ACTIVITYPUB_BASE_ACTOR_URI_length ) === $ACTIVITYPUB_BASE_ACTOR_URI ) {
try {
$profile = Profile :: getByID (( int ) substr ( $alias , $ACTIVITYPUB_BASE_ACTOR_URI_length ));
common_debug ( 'ActivityPub Explorer: Found a Profile for ' . $alias );
// We found something!
$this -> discovered_actor_profiles [] = $profile ;
return true ;
} catch ( Exception $e ) {
// Let the exception go on its merry way.
common_debug ( 'ActivityPub Explorer: Unable to find a Profile for ' . $alias );
}
2019-05-11 12:27:21 +01:00
}
}
}
// If offline grabbing failed, attempt again with online resources
if ( ! $online ) {
2019-10-11 16:00:11 +01:00
common_debug ( 'ActivityPub Explorer: Will try everything again with online resources against: ' . $uri );
2019-05-11 12:27:21 +01:00
return $this -> grab_local_user ( $uri , true );
}
return false ;
}
/**
* Get a remote user ( s ) profile ( s ) from its URL and joins it on
* $this -> discovered_actor_profiles
*
2019-10-11 17:08:37 +01:00
* @ param string $url User ' s url
2019-09-13 18:57:49 +01:00
* @ return bool success state
2019-05-11 12:27:21 +01:00
* @ throws HTTP_Request2_Exception
* @ throws NoProfileException
* @ throws ServerException
2019-09-13 18:57:49 +01:00
* @ throws Exception
2019-05-11 12:27:21 +01:00
* @ author Diogo Cordeiro < diogo @ fc . up . pt >
*/
2020-07-21 12:26:23 +01:00
private function grab_remote_user ( string $url ) : bool
2019-05-11 12:27:21 +01:00
{
2019-10-11 16:00:11 +01:00
common_debug ( 'ActivityPub Explorer: Trying to grab a remote actor for ' . $url );
2020-03-27 19:25:43 +00:00
$client = new HTTPClient ();
$response = $client -> get ( $url , ACTIVITYPUB_HTTP_CLIENT_HEADERS );
$res = json_decode ( $response -> getBody (), true );
2019-05-11 12:27:21 +01:00
if ( isset ( $res [ 'type' ]) && $res [ 'type' ] === 'OrderedCollection' && isset ( $res [ 'first' ])) { // It's a potential collection of actors!!!
2019-10-11 16:00:11 +01:00
common_debug ( 'ActivityPub Explorer: Found a collection of actors for ' . $url );
2019-05-11 12:27:21 +01:00
$this -> travel_collection ( $res [ 'first' ]);
return true ;
} elseif ( self :: validate_remote_response ( $res )) {
2019-10-11 16:00:11 +01:00
common_debug ( 'ActivityPub Explorer: Found a valid remote actor for ' . $url );
$this -> discovered_actor_profiles [] = $this -> store_profile ( $res );
2019-05-11 12:27:21 +01:00
return true ;
} else {
2019-10-11 16:00:11 +01:00
common_debug ( 'ActivityPub Explorer: Invalid potential remote actor while grabbing remotely: ' . $url . '. He returned the following: ' . json_encode ( $res , JSON_UNESCAPED_SLASHES ));
2019-05-11 12:27:21 +01:00
}
return false ;
}
/**
* Save remote user profile in local instance
*
2019-10-11 17:08:37 +01:00
* @ param array $res remote response
2019-05-11 12:27:21 +01:00
* @ return Profile remote Profile object
* @ throws NoProfileException
* @ throws ServerException
2019-09-13 18:57:49 +01:00
* @ throws Exception
2019-05-11 12:27:21 +01:00
* @ author Diogo Cordeiro < diogo @ fc . up . pt >
*/
2020-07-21 12:26:23 +01:00
private function store_profile ( array $res ) : Profile
2019-05-11 12:27:21 +01:00
{
// ActivityPub Profile
2019-10-11 16:00:11 +01:00
$aprofile = new Activitypub_profile ;
$aprofile -> uri = $res [ 'id' ];
$aprofile -> nickname = $res [ 'preferredUsername' ];
2020-03-28 03:13:06 +00:00
$aprofile -> fullname = $res [ 'name' ] ? ? null ;
2019-10-11 16:00:11 +01:00
$aprofile -> bio = isset ( $res [ 'summary' ]) ? substr ( strip_tags ( $res [ 'summary' ]), 0 , 1000 ) : null ;
$aprofile -> inboxuri = $res [ 'inbox' ];
2020-03-28 03:13:06 +00:00
$aprofile -> sharedInboxuri = $res [ 'endpoints' ][ 'sharedInbox' ] ? ? $res [ 'inbox' ];
$aprofile -> profileurl = $res [ 'url' ] ? ? $aprofile -> uri ;
2019-05-11 12:27:21 +01:00
$aprofile -> do_insert ();
$profile = $aprofile -> local_profile ();
// Public Key
$apRSA = new Activitypub_rsa ();
$apRSA -> profile_id = $profile -> getID ();
$apRSA -> public_key = $res [ 'publicKey' ][ 'publicKeyPem' ];
$apRSA -> store_keys ();
// Avatar
if ( isset ( $res [ 'icon' ][ 'url' ])) {
try {
$this -> update_avatar ( $profile , $res [ 'icon' ][ 'url' ]);
} catch ( Exception $e ) {
// Let the exception go, it isn't a serious issue
2019-10-11 16:00:11 +01:00
common_debug ( 'ActivityPub Explorer: An error ocurred while grabbing remote avatar: ' . $e -> getMessage ());
2019-05-11 12:27:21 +01:00
}
}
return $profile ;
}
/**
* Validates a remote response in order to determine whether this
* response is a valid profile or not
*
2019-10-11 17:08:37 +01:00
* @ param array $res remote response
2019-09-13 18:57:49 +01:00
* @ return bool success state
2019-10-11 16:00:11 +01:00
* @ author Diogo Cordeiro < diogo @ fc . up . pt >
2019-05-11 12:27:21 +01:00
*/
2020-07-21 12:26:23 +01:00
public static function validate_remote_response ( array $res ) : bool
2019-05-11 12:27:21 +01:00
{
if ( ! isset ( $res [ 'id' ], $res [ 'preferredUsername' ], $res [ 'inbox' ], $res [ 'publicKey' ][ 'publicKeyPem' ])) {
return false ;
}
return true ;
}
/**
* Get a ActivityPub Profile from it ' s uri
* Unfortunately GNU social cache is not truly reliable when handling
* potential ActivityPub remote profiles , as so it is important to use
* this hacky workaround ( at least for now )
*
2019-10-11 17:08:37 +01:00
* @ param string $v URL
2019-09-13 18:57:49 +01:00
* @ return bool | Activitypub_profile false if fails | Aprofile object if successful
2019-10-11 16:00:11 +01:00
* @ author Diogo Cordeiro < diogo @ fc . up . pt >
2019-05-11 12:27:21 +01:00
*/
2020-07-21 12:26:23 +01:00
public static function get_aprofile_by_url ( string $v )
2019-05-11 12:27:21 +01:00
{
$i = Managed_DataObject :: getcached ( " Activitypub_profile " , " uri " , $v );
if ( empty ( $i )) { // false = cache miss
$i = new Activitypub_profile ;
$result = $i -> get ( " uri " , $v );
if ( $result ) {
// Hit!
$i -> encache ();
} else {
return false ;
}
}
return $i ;
}
/**
* Given a valid actor profile url returns its inboxes
*
2019-10-11 17:08:37 +01:00
* @ param string $url of Actor profile
2019-09-13 18:57:49 +01:00
* @ return bool | array false if fails | array with inbox and shared inbox if successful
2019-05-11 12:27:21 +01:00
* @ throws HTTP_Request2_Exception
* @ throws Exception
* @ author Diogo Cordeiro < diogo @ fc . up . pt >
*/
2020-07-21 12:26:23 +01:00
public static function get_actor_inboxes_uri ( string $url )
2019-05-11 12:27:21 +01:00
{
2019-10-11 16:00:11 +01:00
$client = new HTTPClient ();
2019-10-11 19:09:08 +01:00
$response = $client -> get ( $url , ACTIVITYPUB_HTTP_CLIENT_HEADERS );
2019-05-11 12:27:21 +01:00
if ( ! $response -> isOk ()) {
throw new Exception ( 'Invalid Actor URL.' );
}
$res = json_decode ( $response -> getBody (), true );
if ( self :: validate_remote_response ( $res )) {
return [
'inbox' => $res [ 'inbox' ],
'sharedInbox' => isset ( $res [ 'endpoints' ][ 'sharedInbox' ]) ? $res [ 'endpoints' ][ 'sharedInbox' ] : $res [ 'inbox' ]
];
}
return false ;
}
2020-07-05 01:25:11 +01:00
/**
* Download and update given avatar image
* TODO : Avoid updating an avatar if its URL didn ' t change . ( this is something OStatus already does )
* TODO : Should be in AProfile instead ?
*
* @ param Profile $profile
* @ param string $url
* @ return Avatar The Avatar we have on disk . ( seldom used )
* @ throws Exception in various failure cases
* @ author Diogo Cordeiro < diogo @ fc . up . pt >
*/
public static function update_avatar ( Profile $profile , string $url ) : Avatar
{
common_debug ( 'ActivityPub Explorer: Started grabbing remote avatar from: ' . $url );
// ImageFile throws exception if something goes wrong, which we'll let go on its merry way
$imagefile = ImageFile :: fromURL ( $url );
$id = $profile -> getID ();
$type = $imagefile -> preferredType ();
$filename = Avatar :: filename (
$id ,
image_type_to_extension ( $type ),
null ,
'tmp' . common_timestamp ()
);
$filepath = Avatar :: path ( $filename );
/*$imagefile = */ $imagefile -> copyTo ( $filepath );
common_debug ( 'ActivityPub Explorer: Stored avatar in: ' . $filepath );
// XXX: Do we need this?
chmod ( $filepath , 0644 );
$profile -> setOriginal ( $filename );
common_debug ( 'ActivityPub Explorer: Seted Avatar from: ' . $url . ' to profile.' );
return Avatar :: getUploaded ( $profile );
}
2019-05-11 12:27:21 +01:00
/**
* Allows the Explorer to transverse a collection of persons .
*
2019-10-11 17:08:37 +01:00
* @ param string $url
2019-09-13 18:57:49 +01:00
* @ return bool
2019-05-11 12:27:21 +01:00
* @ throws HTTP_Request2_Exception
* @ throws NoProfileException
* @ throws ServerException
* @ author Diogo Cordeiro < diogo @ fc . up . pt >
*/
2020-07-21 12:26:23 +01:00
private function travel_collection ( string $url ) : bool
2019-05-11 12:27:21 +01:00
{
2019-10-11 16:00:11 +01:00
$client = new HTTPClient ();
2019-10-11 19:09:08 +01:00
$response = $client -> get ( $url , ACTIVITYPUB_HTTP_CLIENT_HEADERS );
2019-05-11 12:27:21 +01:00
$res = json_decode ( $response -> getBody (), true );
if ( ! isset ( $res [ 'orderedItems' ])) {
return false ;
}
foreach ( $res [ " orderedItems " ] as $profile ) {
if ( $this -> _lookup ( $profile ) == false ) {
2019-10-11 16:00:11 +01:00
common_debug ( 'ActivityPub Explorer: Found an invalid actor for ' . $profile );
2019-05-11 12:27:21 +01:00
// TODO: Invalid actor found, fallback to OStatus
}
}
// Go through entire collection
if ( ! is_null ( $res [ " next " ])) {
2019-10-20 20:07:46 +01:00
$this -> travel_collection ( $res [ " next " ]);
2019-05-11 12:27:21 +01:00
}
return true ;
}
/**
* Get a remote user array from its URL ( this function is only used for
* profile updating and shall not be used for anything else )
*
2019-10-11 17:08:37 +01:00
* @ param string $url User ' s url
2020-07-05 02:25:51 +01:00
* @ return array | false If it is able to fetch , false if it ' s gone
2019-10-11 17:08:37 +01:00
* @ throws Exception Either network issues or unsupported Activity format
2019-05-11 12:27:21 +01:00
* @ author Diogo Cordeiro < diogo @ fc . up . pt >
*/
2020-07-05 02:25:51 +01:00
public static function get_remote_user_activity ( string $url )
2019-05-11 12:27:21 +01:00
{
2019-10-11 16:00:11 +01:00
$client = new HTTPClient ();
2019-10-11 19:09:08 +01:00
$response = $client -> get ( $url , ACTIVITYPUB_HTTP_CLIENT_HEADERS );
2020-07-05 02:25:51 +01:00
// If it was deleted
if ( $response -> getStatus () == 410 ) {
return false ;
}
2019-05-11 12:27:21 +01:00
$res = json_decode ( $response -> getBody (), true );
if ( Activitypub_explorer :: validate_remote_response ( $res )) {
2019-10-11 16:00:11 +01:00
common_debug ( 'ActivityPub Explorer: Found a valid remote actor for ' . $url );
2019-05-11 12:27:21 +01:00
return $res ;
}
throw new Exception ( 'ActivityPub Explorer: Failed to get activity.' );
}
}