2018-08-18 12:35:39 +02:00
|
|
|
<?php
|
2018-09-30 22:51:22 +02:00
|
|
|
/**
|
|
|
|
* ActivityPub Class
|
|
|
|
*
|
|
|
|
* @author Matthias Pfefferle
|
|
|
|
*/
|
2018-09-05 22:03:57 +02:00
|
|
|
class Activitypub {
|
2018-09-30 22:51:22 +02:00
|
|
|
/**
|
|
|
|
* Return a AS2 JSON version of an author, post or page
|
|
|
|
*
|
|
|
|
* @param string $template the path to the template object
|
|
|
|
*
|
|
|
|
* @return string the new path to the JSON template
|
|
|
|
*/
|
2018-09-27 22:27:23 +02:00
|
|
|
public static function render_json_template( $template ) {
|
|
|
|
if ( ! is_author() && ! is_singular() ) {
|
2018-08-18 12:35:39 +02:00
|
|
|
return $template;
|
|
|
|
}
|
|
|
|
|
2018-09-27 22:27:23 +02:00
|
|
|
if ( is_author() ) {
|
|
|
|
$json_template = dirname( __FILE__ ) . '/../templates/json-author.php';
|
|
|
|
} elseif ( is_singular() ) {
|
|
|
|
$json_template = dirname( __FILE__ ) . '/../templates/json-post.php';
|
|
|
|
}
|
2018-08-18 12:35:39 +02:00
|
|
|
|
|
|
|
global $wp_query;
|
|
|
|
|
2018-09-30 22:51:22 +02:00
|
|
|
if ( isset( $wp_query->query_vars['as2'] ) ) {
|
2018-08-18 12:35:39 +02:00
|
|
|
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 the 'photos' query variable so WordPress
|
|
|
|
* won't mangle it.
|
|
|
|
*/
|
|
|
|
public static function add_query_vars( $vars ) {
|
2018-09-30 22:51:22 +02:00
|
|
|
$vars[] = 'as2';
|
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() {
|
2018-09-30 22:51:22 +02:00
|
|
|
add_rewrite_endpoint( 'as2', EP_AUTHORS | EP_PERMALINK | EP_PAGES );
|
2018-08-18 12:35:39 +02:00
|
|
|
}
|
2018-12-20 11:33:08 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Marks the post as "no webmentions sent yet"
|
|
|
|
*
|
|
|
|
* @param int $post_id
|
|
|
|
*/
|
|
|
|
public static function schedule_post_activity( $post_id ) {
|
|
|
|
wp_schedule_single_event( time() + wp_rand( 0, 120 ), 'activitypub_send_post_activity', array( $post_id ) );
|
|
|
|
}
|
2018-08-18 12:35:39 +02:00
|
|
|
}
|