; rel="alternate"; type="application/activity+json"' ); } add_action( 'wp_head', function () use ( $self_link ) { echo PHP_EOL . '' . PHP_EOL; } ); } /** * Custom redirects for ActivityPub requests. * * @return void */ public static function template_redirect() { self::add_headers(); $comment_id = get_query_var( 'c', null ); // Check if it seems to be a comment. if ( ! $comment_id ) { return; } $comment = get_comment( $comment_id ); // Load a 404 page if `c` is set but not valid. if ( ! $comment ) { global $wp_query; $wp_query->set_404(); return; } // Stop if it's not an ActivityPub comment. if ( is_activitypub_request() && ! is_local_comment( $comment ) ) { return; } wp_safe_redirect( get_comment_link( $comment ) ); exit; } /** * Add the 'activitypub' query variable so WordPress won't mangle it. * * @param array $vars The query variables. * * @return array The query variables. */ public static function add_query_vars( $vars ) { $vars[] = 'activitypub'; $vars[] = 'c'; $vars[] = 'p'; return $vars; } /** * Replaces the default avatar. * * @param array $args Arguments passed to get_avatar_data(), after processing. * @param int|string|object $id_or_email A user ID, email address, or comment object. * * @return array $args */ public static function pre_get_avatar_data( $args, $id_or_email ) { if ( ! $id_or_email instanceof \WP_Comment || ! isset( $id_or_email->comment_type ) || $id_or_email->user_id ) { return $args; } $allowed_comment_types = \apply_filters( 'get_avatar_comment_types', array( 'comment' ) ); if ( ! empty( $id_or_email->comment_type ) && ! \in_array( $id_or_email->comment_type, (array) $allowed_comment_types, true ) ) { $args['url'] = false; /** This filter is documented in wp-includes/link-template.php */ return \apply_filters( 'get_avatar_data', $args, $id_or_email ); } // Check if comment has an avatar. $avatar = self::get_avatar_url( $id_or_email->comment_ID ); if ( $avatar ) { if ( empty( $args['class'] ) ) { $args['class'] = array(); } elseif ( \is_string( $args['class'] ) ) { $args['class'] = \explode( ' ', $args['class'] ); } $args['url'] = $avatar; $args['class'][] = 'avatar-activitypub'; $args['class'][] = 'u-photo'; $args['class'] = \array_unique( $args['class'] ); } return $args; } /** * Function to retrieve Avatar URL if stored in meta. * * @param int|\WP_Comment $comment The comment ID or object. * * @return string The Avatar URL. */ public static function get_avatar_url( $comment ) { if ( \is_numeric( $comment ) ) { $comment = \get_comment( $comment ); } return \get_comment_meta( $comment->comment_ID, 'avatar_url', true ); } /** * Store permalink in meta, to send delete Activity. * * @param string $post_id The Post ID. */ public static function trash_post( $post_id ) { \add_post_meta( $post_id, 'activitypub_canonical_url', \get_permalink( $post_id ), true ); } /** * Delete permalink from meta. * * @param string $post_id The Post ID. */ public static function untrash_post( $post_id ) { \delete_post_meta( $post_id, 'activitypub_canonical_url' ); } /** * Add rewrite rules. */ public static function add_rewrite_rules() { /* * If another system needs to take precedence over the ActivityPub rewrite rules, * they can define their own and will manually call the appropriate functions as required. */ if ( ACTIVITYPUB_DISABLE_REWRITES ) { return; } if ( ! \class_exists( 'Webfinger' ) ) { \add_rewrite_rule( '^.well-known/webfinger', 'index.php?rest_route=/' . ACTIVITYPUB_REST_NAMESPACE . '/webfinger', 'top' ); } if ( ! \class_exists( 'Nodeinfo_Endpoint' ) && true === (bool) \get_option( 'blog_public', 1 ) ) { \add_rewrite_rule( '^.well-known/nodeinfo', 'index.php?rest_route=/' . ACTIVITYPUB_REST_NAMESPACE . '/nodeinfo/discovery', 'top' ); \add_rewrite_rule( '^.well-known/x-nodeinfo2', 'index.php?rest_route=/' . ACTIVITYPUB_REST_NAMESPACE . '/nodeinfo2', 'top' ); } \add_rewrite_rule( '^@([\w\-\.]+)', 'index.php?rest_route=/' . ACTIVITYPUB_REST_NAMESPACE . '/actors/$matches[1]', 'top' ); \add_rewrite_endpoint( 'activitypub', EP_AUTHORS | EP_PERMALINK | EP_PAGES ); } /** * Flush rewrite rules. */ public static function flush_rewrite_rules() { self::add_rewrite_rules(); \flush_rewrite_rules(); } /** * Adds metabox on wp-admin/tools.php. */ public static function tool_box() { if ( \current_user_can( 'edit_posts' ) ) { \load_template( ACTIVITYPUB_PLUGIN_DIR . 'templates/toolbox.php' ); } } /** * Theme compatibility stuff. */ public static function theme_compat() { // We assume that you want to use Post-Formats when enabling the setting. if ( 'wordpress-post-format' === \get_option( 'activitypub_object_type', ACTIVITYPUB_DEFAULT_OBJECT_TYPE ) ) { if ( ! get_theme_support( 'post-formats' ) ) { // Add support for the Aside, Gallery Post Formats... add_theme_support( 'post-formats', array( 'gallery', 'status', 'image', 'video', 'audio', ) ); } } } /** * Display plugin upgrade notice to users. * * @param array $data The plugin data. */ public static function plugin_update_message( $data ) { if ( ! isset( $data['upgrade_notice'] ) ) { return; } printf( '
%s
', wp_kses( wpautop( $data['upgrade_notice '] ), array( 'p' => array(), 'a' => array( 'href', 'title' ), 'strong' => array(), 'em' => array(), ) ) ); } /** * Register the "Followers" Taxonomy. */ private static function register_post_types() { \register_post_type( Followers::POST_TYPE, array( 'labels' => array( 'name' => _x( 'Followers', 'post_type plural name', 'activitypub' ), 'singular_name' => _x( 'Follower', 'post_type single name', 'activitypub' ), ), 'public' => false, 'hierarchical' => false, 'rewrite' => false, 'query_var' => false, 'delete_with_user' => false, 'can_export' => true, 'supports' => array(), ) ); \register_post_meta( Followers::POST_TYPE, 'activitypub_inbox', array( 'type' => 'string', 'single' => true, 'sanitize_callback' => 'sanitize_url', ) ); \register_post_meta( Followers::POST_TYPE, 'activitypub_errors', array( 'type' => 'string', 'single' => false, 'sanitize_callback' => function ( $value ) { if ( ! is_string( $value ) ) { throw new Exception( 'Error message is no valid string' ); } return esc_sql( $value ); }, ) ); \register_post_meta( Followers::POST_TYPE, 'activitypub_user_id', array( 'type' => 'string', 'single' => false, 'sanitize_callback' => function ( $value ) { return esc_sql( $value ); }, ) ); \register_post_meta( Followers::POST_TYPE, 'activitypub_actor_json', array( 'type' => 'string', 'single' => true, 'sanitize_callback' => function ( $value ) { return sanitize_text_field( $value ); }, ) ); // Both User and Blog Extra Fields types have the same args. $args = array( 'labels' => array( 'name' => _x( 'Extra fields', 'post_type plural name', 'activitypub' ), 'singular_name' => _x( 'Extra field', 'post_type single name', 'activitypub' ), 'add_new' => __( 'Add new', 'activitypub' ), 'add_new_item' => __( 'Add new extra field', 'activitypub' ), 'new_item' => __( 'New extra field', 'activitypub' ), 'edit_item' => __( 'Edit extra field', 'activitypub' ), 'view_item' => __( 'View extra field', 'activitypub' ), 'all_items' => __( 'All extra fields', 'activitypub' ), ), 'public' => false, 'hierarchical' => false, 'query_var' => false, 'has_archive' => false, 'publicly_queryable' => false, 'show_in_menu' => false, 'delete_with_user' => true, 'can_export' => true, 'exclude_from_search' => true, 'show_in_rest' => true, 'map_meta_cap' => true, 'show_ui' => true, 'supports' => array( 'title', 'editor', 'page-attributes' ), ); \register_post_type( Extra_Fields::USER_POST_TYPE, $args ); \register_post_type( Extra_Fields::BLOG_POST_TYPE, $args ); \do_action( 'activitypub_after_register_post_type' ); } /** * Add the 'activitypub' capability to users who can publish posts. * * @param int $user_id User ID. */ public static function user_register( $user_id ) { if ( \user_can( $user_id, 'publish_posts' ) ) { $user = \get_user_by( 'id', $user_id ); $user->add_cap( 'activitypub' ); } } }