wordpress-activitypub/includes/class-activitypub.php

76 lines
1.7 KiB
PHP
Raw Normal View History

2018-08-18 12:35:39 +02:00
<?php
2018-09-05 22:03:57 +02:00
class Activitypub {
2018-08-18 12:35:39 +02:00
public static function render_profile( $template ) {
if ( ! is_author() ) {
return $template;
}
2018-09-24 20:47:15 +02:00
$json_template = dirname( __FILE__ ) . '/../templates/profile.php';
2018-08-18 12:35:39 +02:00
global $wp_query;
if ( isset( $wp_query->query_vars['activitypub'] ) ) {
return $json_template;
}
if ( ! isset( $_SERVER['HTTP_ACCEPT'] ) ) {
return $template;
}
// interpret accept header
$pos = stripos( $_SERVER['HTTP_ACCEPT'], ';' );
if ( $pos ) {
$accept_header = substr( $_SERVER['HTTP_ACCEPT'], 0, $pos );
} else {
$accept_header = $_SERVER['HTTP_ACCEPT'];
}
// accept header as an array
$accept = explode( ',', trim( $accept_header ) );
if (
! in_array( 'application/activity+json', $accept, true ) &&
2018-09-24 23:45:11 +02:00
! in_array( 'application/ld+json', $accept, true ) &&
! in_array( 'application/json', $accept, true )
2018-08-18 12:35:39 +02:00
) {
return $template;
}
return $json_template;
}
/**
* Add WebFinger discovery links
*
* @param array $array the jrd array
* @param string $resource the WebFinger resource
* @param WP_User $user the WordPress user
*/
public static function add_webfinger_discovery( $array, $resource, $user ) {
$array['links'][] = array(
'rel' => 'self',
2018-09-24 23:45:11 +02:00
'type' => 'application/activity+json',
2018-08-18 12:35:39 +02:00
'href' => get_author_posts_url( $user->ID ),
);
return $array;
}
/**
* Add the 'photos' query variable so WordPress
* won't mangle it.
*/
public static function add_query_vars( $vars ) {
$vars[] = 'activitypub';
2018-09-24 20:47:15 +02:00
2018-08-18 12:35:39 +02:00
return $vars;
}
/**
* Add our rewrite endpoint to permalinks and pages.
*/
public static function add_rewrite_endpoint() {
add_rewrite_endpoint( 'activitypub', EP_AUTHORS );
}
}