André Menrath
2963794a6f
Some checks failed
Deploy to https://wordpress-test.event-federation.eu/ / deploy (push) Has been cancelled
88 lines
2.2 KiB
PHP
88 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* Plugin Name: ActivityPub Event Extensions
|
|
* Description: Custom ActivityPub Transformers and Integretions for common Event Plugins
|
|
* Plugin URI: https://event-federation.eu/
|
|
* Version: 1.0.0
|
|
* Author: André Menrath
|
|
* Author URI: https://graz.social/@linos
|
|
* Text Domain: activitypub-event-extensions
|
|
* License: AGPL-3.0-or-later
|
|
*
|
|
* ActivityPub tested up to: 2.0.1
|
|
*
|
|
* @package activitypub-event-extensions
|
|
* @license AGPL-3.0-or-later
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
|
|
/**
|
|
* Add the custom transformers for the events of several WordPress event plugins.
|
|
*/
|
|
add_filter(
|
|
'activitypub_transformer',
|
|
function( $transformer, $wp_object, $object_class ) {
|
|
if ( 'WP_Post' != $object_class ) {
|
|
return $transformer;
|
|
}
|
|
|
|
/**
|
|
* VS Event List
|
|
* @see https://wordpress.org/plugins/very-simple-event-list/
|
|
*/
|
|
if ( class_exists( 'vsel_widget' ) && $wp_object->post_type === 'event' ) {
|
|
require_once __DIR__ . '/includes/activitypub/transformer/class-vs-event.php';
|
|
return new \VS_Event( $object );
|
|
}
|
|
|
|
/**
|
|
* Events manager
|
|
* @see https://wordpress.org/plugins/events-manager/
|
|
*/
|
|
if ( class_exists( 'EM_Events' ) && $wp_object->post_type === 'event' ) {
|
|
require_once __DIR__ . '/includes/activitypub/transformer/class-events-manager.php';
|
|
return new \Events_Manager( $wp_object );
|
|
}
|
|
|
|
// Return the default transformer.
|
|
|
|
return $transformer;
|
|
},
|
|
10,
|
|
3
|
|
);
|
|
|
|
require_once __DIR__ . '/admin/class-admin-notices.php';
|
|
new \Admin_Notices();
|
|
|
|
/**
|
|
* 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 );
|
|
|
|
// Your custom callback function
|
|
function custom_http_request_host_is_external( $is_external, $host, $url ) {
|
|
$is_external = true;
|
|
|
|
return $is_external;
|
|
}
|
|
|
|
/**
|
|
* 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 );
|
|
|
|
function dont_verify_local_dev_https( $url ) {
|
|
return false;
|
|
}
|