2023-11-24 15:36:51 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2023-11-25 12:05:12 +01:00
|
|
|
* Plugin Name: ActivityPub Transformers for Events
|
2023-11-24 15:36:51 +01:00
|
|
|
* Description: Custom ActivityPub Transformers for Events
|
|
|
|
* Plugin URI: https://event-federation.eu/
|
|
|
|
* Version: 1.0.0
|
|
|
|
* Author: André Menrath
|
|
|
|
* Author URI: https://graz.social/@linos
|
|
|
|
* Text Domain: activitypub-event-transformers
|
2023-12-04 19:27:57 +01:00
|
|
|
* License: AGPL-3.0-or-later
|
2023-11-24 15:36:51 +01:00
|
|
|
*
|
2024-01-03 19:14:12 +01:00
|
|
|
* ActivityPub tested up to: 1.3.0
|
2023-11-27 19:18:06 +01:00
|
|
|
*
|
|
|
|
* @package activitypub-event-transformer
|
2023-12-04 19:27:57 +01:00
|
|
|
* @license AGPL-3.0-or-later
|
2023-11-24 15:36:51 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit; // Exit if accessed directly.
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2024-01-03 19:14:12 +01:00
|
|
|
* Add the custom transformers for the events of several WordPress event plugins.
|
|
|
|
*/
|
|
|
|
add_filter(
|
|
|
|
'activitypub_transformer',
|
|
|
|
function( $transformer, $object, $object_class ) {
|
|
|
|
/**
|
|
|
|
* VS Event List
|
|
|
|
* @see https://wordpress.org/plugins/very-simple-event-list/
|
|
|
|
*/
|
2024-01-03 19:18:13 +01:00
|
|
|
if ( $object->post_type === 'event' ) {
|
2024-01-03 19:14:12 +01:00
|
|
|
require_once __DIR__ . '/activitypub/transformer/class-vs-event.php';
|
|
|
|
return new \VS_Event( $object );
|
|
|
|
}
|
|
|
|
// Return the default transformer.
|
|
|
|
return $transformer;
|
|
|
|
},
|
|
|
|
10,
|
|
|
|
3
|
|
|
|
);
|
|
|
|
|
2024-01-03 19:31:01 +01:00
|
|
|
/**
|
|
|
|
* Add a filter for http_request_host_is_external
|
|
|
|
*
|
|
|
|
* TODO: Remove this.
|
|
|
|
*
|
|
|
|
* @todo This filter is temporary code needed to do local testing.
|
|
|
|
*/
|
|
|
|
add_filter( 'http_request_host_is_external', 'custom_http_request_host_is_external', 10, 3 );
|
2023-12-12 17:27:43 +01:00
|
|
|
|
2024-01-03 19:31:01 +01:00
|
|
|
// Your custom callback function
|
|
|
|
function custom_http_request_host_is_external( $is_external, $host, $url ) {
|
|
|
|
$is_external = true;
|
2023-12-12 17:27:43 +01:00
|
|
|
|
2024-01-03 19:31:01 +01:00
|
|
|
return $is_external;
|
|
|
|
}
|
2023-12-12 17:27:43 +01:00
|
|
|
|
2024-01-03 19:31:01 +01:00
|
|
|
/**
|
|
|
|
* Don't verify ssl certs for testing.
|
|
|
|
*
|
|
|
|
* TODO: Remove this.
|
|
|
|
*
|
|
|
|
* @todo This filter is temporary code needed to do local testing.
|
|
|
|
*/
|
|
|
|
add_filter( 'https_ssl_verify', 'dont_verify_local_dev_https', 10, 3 );
|
2023-12-12 17:27:43 +01:00
|
|
|
|
2024-01-03 19:31:01 +01:00
|
|
|
function dont_verify_local_dev_https( $url ) {
|
|
|
|
return false;
|
|
|
|
}
|