wordpress-activitypub/includes/class-webfinger.php

98 lines
2.6 KiB
PHP
Raw Normal View History

<?php
namespace Activitypub;
2023-04-20 15:22:11 +02:00
use WP_Error;
2023-07-10 14:08:51 +02:00
use Activitypub\Collection\Users;
2023-04-20 15:22:11 +02:00
/**
* ActivityPub WebFinger Class
*
* @author Matthias Pfefferle
*
* @see https://webfinger.net/
*/
class Webfinger {
/**
* Returns a users WebFinger "resource"
*
* @param int $user_id
*
* @return string The user-resource
*/
2022-11-15 20:50:56 +01:00
public static function get_user_resource( $user_id ) {
// use WebFinger plugin if installed
if ( \function_exists( '\get_webfinger_resource' ) ) {
return \get_webfinger_resource( $user_id, false );
}
2023-07-03 11:20:44 +02:00
$user = Users::get_by_id( $user_id );
if ( ! $user ) {
return '';
}
return $user->get_resource();
}
2022-12-05 20:48:07 +01:00
2023-05-26 16:08:08 +02:00
/**
* Resolve a WebFinger resource
*
* @param string $resource The WebFinger resource
*
* @return string|WP_Error The URL or WP_Error
*/
public static function resolve( $resource ) {
if ( ! preg_match( '/^@?' . ACTIVITYPUB_USERNAME_REGEXP . '$/i', $resource, $m ) ) {
2022-12-05 20:48:07 +01:00
return null;
}
2023-05-26 16:08:08 +02:00
$transient_key = 'activitypub_resolve_' . ltrim( $resource, '@' );
2022-12-09 19:05:43 +01:00
$link = \get_transient( $transient_key );
if ( $link ) {
return $link;
}
2023-05-26 16:08:08 +02:00
$url = \add_query_arg( 'resource', 'acct:' . ltrim( $resource, '@' ), 'https://' . $m[2] . '/.well-known/webfinger' );
2022-12-05 20:48:07 +01:00
if ( ! \wp_http_validate_url( $url ) ) {
2023-04-20 15:22:11 +02:00
$response = new WP_Error( 'invalid_webfinger_url', null, $url );
\set_transient( $transient_key, $response, HOUR_IN_SECONDS ); // Cache the error for a shorter period.
return $response;
2022-12-05 20:48:07 +01:00
}
// try to access author URL
$response = \wp_remote_get(
$url,
array(
'headers' => array( 'Accept' => 'application/activity+json' ),
'redirection' => 0,
'timeout' => 2,
2022-12-05 20:48:07 +01:00
)
);
if ( \is_wp_error( $response ) ) {
2023-04-20 15:22:11 +02:00
$link = new WP_Error( 'webfinger_url_not_accessible', null, $url );
2022-12-09 19:05:43 +01:00
\set_transient( $transient_key, $link, HOUR_IN_SECONDS ); // Cache the error for a shorter period.
return $link;
2022-12-05 20:48:07 +01:00
}
$body = \wp_remote_retrieve_body( $response );
$body = \json_decode( $body, true );
if ( empty( $body['links'] ) ) {
2023-04-20 15:22:11 +02:00
$link = new WP_Error( 'webfinger_url_invalid_response', null, $url );
2022-12-09 19:05:43 +01:00
\set_transient( $transient_key, $link, HOUR_IN_SECONDS ); // Cache the error for a shorter period.
return $link;
2022-12-05 20:48:07 +01:00
}
foreach ( $body['links'] as $link ) {
if ( 'self' === $link['rel'] && 'application/activity+json' === $link['type'] ) {
2022-12-09 19:05:43 +01:00
\set_transient( $transient_key, $link['href'], WEEK_IN_SECONDS );
2022-12-05 20:48:07 +01:00
return $link['href'];
}
}
2023-05-26 16:08:08 +02:00
$link = new WP_Error( 'webfinger_url_no_activitypub', null, $body );
2022-12-09 19:05:43 +01:00
\set_transient( $transient_key, $link, HOUR_IN_SECONDS ); // Cache the error for a shorter period.
return $link;
2022-12-05 20:48:07 +01:00
}
}