diff --git a/activitypub.php b/activitypub.php index d7ee655..b5aa607 100644 --- a/activitypub.php +++ b/activitypub.php @@ -73,9 +73,12 @@ function init() { \Activitypub\Health_Check::init(); require_once \dirname( __FILE__ ) . '/includes/rest/class-server.php'; - \add_filter( 'wp_rest_server_class', function() { - return '\Activitypub\Rest\Server'; - } ); + \add_filter( + 'wp_rest_server_class', + function() { + return '\Activitypub\Rest\Server'; + } + ); if ( \WP_DEBUG ) { require_once \dirname( __FILE__ ) . '/includes/debug.php'; diff --git a/includes/class-admin.php b/includes/class-admin.php index 7016336..13e57c9 100644 --- a/includes/class-admin.php +++ b/includes/class-admin.php @@ -57,7 +57,9 @@ class Admin { */ public static function register_settings() { \register_setting( - 'activitypub', 'activitypub_post_content_type', array( + 'activitypub', + 'activitypub_post_content_type', + array( 'type' => 'string', 'description' => \__( 'Use title and link, summary, full or custom content', 'activitypub' ), 'show_in_rest' => array( @@ -69,7 +71,9 @@ class Admin { ) ); \register_setting( - 'activitypub', 'activitypub_custom_post_content', array( + 'activitypub', + 'activitypub_custom_post_content', + array( 'type' => 'string', 'description' => \__( 'Define your own custom post template', 'activitypub' ), 'show_in_rest' => true, @@ -77,7 +81,9 @@ class Admin { ) ); \register_setting( - 'activitypub', 'activitypub_object_type', array( + 'activitypub', + 'activitypub_object_type', + array( 'type' => 'string', 'description' => \__( 'The Activity-Object-Type', 'activitypub' ), 'show_in_rest' => array( @@ -89,21 +95,27 @@ class Admin { ) ); \register_setting( - 'activitypub', 'activitypub_use_hashtags', array( + 'activitypub', + 'activitypub_use_hashtags', + array( 'type' => 'boolean', 'description' => \__( 'Add hashtags in the content as native tags and replace the #tag with the tag-link', 'activitypub' ), 'default' => 0, ) ); \register_setting( - 'activitypub', 'activitypub_allowed_html', array( + 'activitypub', + 'activitypub_allowed_html', + array( 'type' => 'string', 'description' => \__( 'List of HTML elements that are allowed in activities.', 'activitypub' ), 'default' => ACTIVITYPUB_ALLOWED_HTML, ) ); \register_setting( - 'activitypub', 'activitypub_support_post_types', array( + 'activitypub', + 'activitypub_support_post_types', + array( 'type' => 'string', 'description' => \esc_html__( 'Enable ActivityPub support for post types', 'activitypub' ), 'show_in_rest' => true, diff --git a/includes/functions.php b/includes/functions.php index 7a30b59..be9549c 100644 --- a/includes/functions.php +++ b/includes/functions.php @@ -153,11 +153,13 @@ function get_remote_metadata_by_actor( $actor ) { return new \WP_Error( 'activitypub_no_valid_actor_url', \__( 'The "actor" is no valid URL', 'activitypub' ), $actor ); } - $user = \get_users( array ( - 'number' => 1, - 'who' => 'authors', - 'fields' => 'ID', - ) ); + $user = \get_users( + array( + 'number' => 1, + 'who' => 'authors', + 'fields' => 'ID', + ) + ); // we just need any user to generate a request signature $user_id = \reset( $user ); diff --git a/includes/model/class-activity.php b/includes/model/class-activity.php index fc16c4f..5e16912 100644 --- a/includes/model/class-activity.php +++ b/includes/model/class-activity.php @@ -30,7 +30,7 @@ class Activity { } $this->type = \ucfirst( $type ); - $this->published = \date( 'Y-m-d\TH:i:s\Z', \strtotime( 'now' ) ); + $this->published = \gmdate( 'Y-m-d\TH:i:s\Z', \strtotime( 'now' ) ); } public function __call( $method, $params ) { diff --git a/includes/model/class-post.php b/includes/model/class-post.php index 33b9411..e885199 100644 --- a/includes/model/class-post.php +++ b/includes/model/class-post.php @@ -46,7 +46,7 @@ class Post { $array = array( 'id' => $this->id, 'type' => $this->object_type, - 'published' => \date( 'Y-m-d\TH:i:s\Z', \strtotime( $post->post_date_gmt ) ), + 'published' => \gmdate( 'Y-m-d\TH:i:s\Z', \strtotime( $post->post_date_gmt ) ), 'attributedTo' => \get_author_posts_url( $post->post_author ), 'summary' => $this->summary, 'inReplyTo' => null, diff --git a/includes/peer/class-followers.php b/includes/peer/class-followers.php index c1846a4..abc18e3 100644 --- a/includes/peer/class-followers.php +++ b/includes/peer/class-followers.php @@ -50,9 +50,13 @@ class Followers { $actor = $actor['id']; } - return new \WP_Error( 'invalid_actor_object', \__( 'Unknown Actor schema', 'activitypub' ), array( - 'status' => 404, - ) ); + return new \WP_Error( + 'invalid_actor_object', + \__( 'Unknown Actor schema', 'activitypub' ), + array( + 'status' => 404, + ) + ); } if ( ! \is_array( $followers ) ) { diff --git a/includes/rest/class-followers.php b/includes/rest/class-followers.php index f246edd..34392ce 100644 --- a/includes/rest/class-followers.php +++ b/includes/rest/class-followers.php @@ -21,7 +21,9 @@ class Followers { */ public static function register_routes() { \register_rest_route( - 'activitypub/1.0', '/users/(?P\d+)/followers', array( + 'activitypub/1.0', + '/users/(?P\d+)/followers', + array( array( 'methods' => \WP_REST_Server::READABLE, 'callback' => array( '\Activitypub\Rest\Followers', 'get' ), @@ -44,12 +46,16 @@ class Followers { $user = \get_user_by( 'ID', $user_id ); if ( ! $user ) { - return new \WP_Error( 'rest_invalid_param', \__( 'User not found', 'activitypub' ), array( - 'status' => 404, - 'params' => array( - 'user_id' => \__( 'User not found', 'activitypub' ), - ), - ) ); + return new \WP_Error( + 'rest_invalid_param', + \__( 'User not found', 'activitypub' ), + array( + 'status' => 404, + 'params' => array( + 'user_id' => \__( 'User not found', 'activitypub' ), + ), + ) + ); } /* diff --git a/includes/rest/class-following.php b/includes/rest/class-following.php index 8e37597..06d3f0b 100644 --- a/includes/rest/class-following.php +++ b/includes/rest/class-following.php @@ -21,7 +21,9 @@ class Following { */ public static function register_routes() { \register_rest_route( - 'activitypub/1.0', '/users/(?P\d+)/following', array( + 'activitypub/1.0', + '/users/(?P\d+)/following', + array( array( 'methods' => \WP_REST_Server::READABLE, 'callback' => array( '\Activitypub\Rest\Following', 'get' ), @@ -44,12 +46,16 @@ class Following { $user = \get_user_by( 'ID', $user_id ); if ( ! $user ) { - return new \WP_Error( 'rest_invalid_param', \__( 'User not found', 'activitypub' ), array( - 'status' => 404, - 'params' => array( - 'user_id' => \__( 'User not found', 'activitypub' ), - ), - ) ); + return new \WP_Error( + 'rest_invalid_param', + \__( 'User not found', 'activitypub' ), + array( + 'status' => 404, + 'params' => array( + 'user_id' => \__( 'User not found', 'activitypub' ), + ), + ) + ); } /* diff --git a/includes/rest/class-inbox.php b/includes/rest/class-inbox.php index 3141f81..2111599 100644 --- a/includes/rest/class-inbox.php +++ b/includes/rest/class-inbox.php @@ -27,7 +27,9 @@ class Inbox { */ public static function register_routes() { \register_rest_route( - 'activitypub/1.0', '/inbox', array( + 'activitypub/1.0', + '/inbox', + array( array( 'methods' => \WP_REST_Server::EDITABLE, 'callback' => array( '\Activitypub\Rest\Inbox', 'shared_inbox_post' ), @@ -38,7 +40,9 @@ class Inbox { ); \register_rest_route( - 'activitypub/1.0', '/users/(?P\d+)/inbox', array( + 'activitypub/1.0', + '/users/(?P\d+)/inbox', + array( array( 'methods' => \WP_REST_Server::EDITABLE, 'callback' => array( '\Activitypub\Rest\Inbox', 'user_inbox_post' ), @@ -161,16 +165,20 @@ class Inbox { $users = self::extract_recipients( $data ); if ( ! $users ) { - return new \WP_Error( 'rest_invalid_param', \__( 'No recipients found', 'activitypub' ), array( - 'status' => 404, - 'params' => array( - 'to' => \__( 'Please check/validate "to" field', 'activitypub' ), - 'bto' => \__( 'Please check/validate "bto" field', 'activitypub' ), - 'cc' => \__( 'Please check/validate "cc" field', 'activitypub' ), - 'bcc' => \__( 'Please check/validate "bcc" field', 'activitypub' ), - 'audience' => \__( 'Please check/validate "audience" field', 'activitypub' ), - ), - ) ); + return new \WP_Error( + 'rest_invalid_param', + \__( 'No recipients found', 'activitypub' ), + array( + 'status' => 404, + 'params' => array( + 'to' => \__( 'Please check/validate "to" field', 'activitypub' ), + 'bto' => \__( 'Please check/validate "bto" field', 'activitypub' ), + 'cc' => \__( 'Please check/validate "cc" field', 'activitypub' ), + 'bcc' => \__( 'Please check/validate "bcc" field', 'activitypub' ), + 'audience' => \__( 'Please check/validate "audience" field', 'activitypub' ), + ), + ) + ); } foreach ( $users as $user ) { diff --git a/includes/rest/class-nodeinfo.php b/includes/rest/class-nodeinfo.php index acbc6ab..d4b394f 100644 --- a/includes/rest/class-nodeinfo.php +++ b/includes/rest/class-nodeinfo.php @@ -23,7 +23,9 @@ class Nodeinfo { */ public static function register_routes() { \register_rest_route( - 'activitypub/1.0', '/nodeinfo/discovery', array( + 'activitypub/1.0', + '/nodeinfo/discovery', + array( array( 'methods' => \WP_REST_Server::READABLE, 'callback' => array( '\Activitypub\Rest\Nodeinfo', 'discovery' ), @@ -33,7 +35,9 @@ class Nodeinfo { ); \register_rest_route( - 'activitypub/1.0', '/nodeinfo', array( + 'activitypub/1.0', + '/nodeinfo', + array( array( 'methods' => \WP_REST_Server::READABLE, 'callback' => array( '\Activitypub\Rest\Nodeinfo', 'nodeinfo' ), @@ -43,7 +47,9 @@ class Nodeinfo { ); \register_rest_route( - 'activitypub/1.0', '/nodeinfo2', array( + 'activitypub/1.0', + '/nodeinfo2', + array( array( 'methods' => \WP_REST_Server::READABLE, 'callback' => array( '\Activitypub\Rest\Nodeinfo', 'nodeinfo2' ), diff --git a/includes/rest/class-ostatus.php b/includes/rest/class-ostatus.php index 4e4dda9..45ff901 100644 --- a/includes/rest/class-ostatus.php +++ b/includes/rest/class-ostatus.php @@ -14,7 +14,9 @@ class Ostatus { */ public static function register_routes() { \register_rest_route( - 'activitypub/1.0', '/ostatus/remote-follow', array( + 'activitypub/1.0', + '/ostatus/remote-follow', + array( array( 'methods' => \WP_REST_Server::READABLE, 'callback' => array( '\Activitypub\Rest\Ostatus', 'get' ), diff --git a/includes/rest/class-outbox.php b/includes/rest/class-outbox.php index fb1e781..55bb523 100644 --- a/includes/rest/class-outbox.php +++ b/includes/rest/class-outbox.php @@ -21,7 +21,9 @@ class Outbox { */ public static function register_routes() { \register_rest_route( - 'activitypub/1.0', '/users/(?P\d+)/outbox', array( + 'activitypub/1.0', + '/users/(?P\d+)/outbox', + array( array( 'methods' => \WP_REST_Server::READABLE, 'callback' => array( '\Activitypub\Rest\Outbox', 'user_outbox_get' ), @@ -43,12 +45,16 @@ class Outbox { $author = \get_user_by( 'ID', $user_id ); if ( ! $author ) { - return new \WP_Error( 'rest_invalid_param', \__( 'User not found', 'activitypub' ), array( - 'status' => 404, - 'params' => array( - 'user_id' => \__( 'User not found', 'activitypub' ), - ), - ) ); + return new \WP_Error( + 'rest_invalid_param', + \__( 'User not found', 'activitypub' ), + array( + 'status' => 404, + 'params' => array( + 'user_id' => \__( 'User not found', 'activitypub' ), + ), + ) + ); } $page = $request->get_param( 'page', 0 ); @@ -78,12 +84,14 @@ class Outbox { } if ( $page ) { - $posts = \get_posts( array( - 'posts_per_page' => 10, - 'author' => $user_id, - 'offset' => ( $page - 1 ) * 10, - 'post_type' => 'post', - ) ); + $posts = \get_posts( + array( + 'posts_per_page' => 10, + 'author' => $user_id, + 'offset' => ( $page - 1 ) * 10, + 'post_type' => 'post', + ) + ); foreach ( $posts as $post ) { $activitypub_post = new \Activitypub\Model\Post( $post ); diff --git a/includes/rest/class-webfinger.php b/includes/rest/class-webfinger.php index 40e2736..c83365d 100644 --- a/includes/rest/class-webfinger.php +++ b/includes/rest/class-webfinger.php @@ -24,7 +24,9 @@ class Webfinger { */ public static function register_routes() { \register_rest_route( - 'activitypub/1.0', '/webfinger', array( + 'activitypub/1.0', + '/webfinger', + array( array( 'methods' => \WP_REST_Server::READABLE, 'callback' => array( '\Activitypub\Rest\Webfinger', 'webfinger' ),