wordpress-event-bridge-for-.../includes/activitypub/transmogrifier/class-gatherpress.php

185 lines
5.1 KiB
PHP
Raw Normal View History

<?php
/**
* ActivityPub Transmogrify for the GatherPress event plugin.
*
* Handles converting incoming external ActivityPub events to GatherPress Events.
*
* @package Event_Bridge_For_ActivityPub
* @since 1.0.0
* @license AGPL-3.0-or-later
*/
namespace Event_Bridge_For_ActivityPub\ActivityPub\Transmogrifier;
2024-12-14 14:46:00 +01:00
use DateTime;
use function Activitypub\sanitize_url;
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit; // @codeCoverageIgnore
use GatherPress\Core\Event as GatherPress_Event;
/**
2024-12-10 19:34:15 +01:00
* ActivityPub Transmogrifier for the GatherPress event plugin.
*
* Handles converting incoming external ActivityPub events to GatherPress Events.
*
* @since 1.0.0
*/
2024-12-15 22:25:28 +01:00
class GatherPress extends Base {
2024-12-14 14:46:00 +01:00
/**
* Add tags to post.
*
* @param int $post_id The post ID.
*/
private function add_tags_to_post( $post_id ) {
$tags_array = $this->activitypub_event->get_tag();
// Ensure the input is valid.
if ( empty( $tags_array ) || ! is_array( $tags_array ) || ! $post_id ) {
return false;
}
// Extract and process tag names.
$tag_names = array();
foreach ( $tags_array as $tag ) {
if ( isset( $tag['name'] ) && 'Hashtag' === $tag['type'] ) {
$tag_names[] = ltrim( $tag['name'], '#' ); // Remove the '#' from the name.
}
}
// Add the tags as terms to the post.
if ( ! empty( $tag_names ) ) {
2024-12-15 22:25:28 +01:00
wp_set_object_terms( $post_id, $tag_names, 'gatherpress_topic', true );
2024-12-14 14:46:00 +01:00
}
return true;
}
/**
* Add venue.
*
* @param int $post_id The post ID.
*/
private function add_venue( $post_id ) {
$location = $this->activitypub_event->get_location();
if ( ! $location ) {
return;
}
if ( ! isset( $location['name'] ) ) {
return;
}
2024-12-15 09:52:20 +01:00
// Fallback for Gancio instances.
if ( 'online' === $location['name'] ) {
$online_event_link = $this->get_online_event_link_from_attachments();
if ( ! $online_event_link ) {
return;
}
update_post_meta( $post_id, 'gatherpress_online_event_link', sanitize_url( $online_event_link ) );
wp_set_object_terms( $post_id, 'online-event', '_gatherpress_venue', false );
return;
}
2024-12-14 14:46:00 +01:00
$venue_instance = \GatherPress\Core\Venue::get_instance();
$venue_name = sanitize_title( $location['name'] );
$venue_slug = $venue_instance->get_venue_term_slug( $venue_name );
$venue_post = $venue_instance->get_venue_post_from_term_slug( $venue_slug );
if ( ! $venue_post ) {
$venue_id = wp_insert_post(
array(
'post_title' => sanitize_text_field( $location['name'] ),
'post_type' => 'gatherpress_venue',
'post_status' => 'publish',
)
);
} else {
$venue_id = $venue_post->ID;
}
$venue_information = array();
2024-12-15 13:42:57 +01:00
$address_string = isset( $location['address'] ) ? $this->address_to_string( $location['address'] ) : '';
2024-12-15 12:17:32 +01:00
2024-12-15 13:42:57 +01:00
$venue_information['fullAddress'] = $address_string;
2024-12-15 12:17:32 +01:00
$venue_information['phone_number'] = '';
2024-12-14 14:46:00 +01:00
$venue_information['website'] = '';
$venue_information['permalink'] = '';
$venue_json = wp_json_encode( $venue_information );
update_post_meta( $venue_id, 'gatherpress_venue_information', $venue_json );
2024-12-15 12:17:32 +01:00
wp_set_object_terms( $post_id, $venue_slug, '_gatherpress_venue', false );
2024-12-11 23:09:12 +01:00
}
/**
* Save the ActivityPub event object as GatherPress Event.
2024-12-15 22:25:28 +01:00
*
* @return false|int
*/
protected function save_event() {
2024-12-14 14:46:00 +01:00
// Limit this as a safety measure.
add_filter( 'wp_revisions_to_keep', array( self::class, 'revisions_to_keep' ) );
2024-12-11 23:09:12 +01:00
$post_id = $this->get_post_id_from_activitypub_id();
2024-12-15 12:17:32 +01:00
$args = array(
'post_title' => sanitize_text_field( $this->activitypub_event->get_name() ),
'post_type' => 'gatherpress_event',
'post_content' => wp_kses_post( $this->activitypub_event->get_content() ) . '<!-- wp:gatherpress/venue /-->',
'post_excerpt' => wp_kses_post( $this->activitypub_event->get_summary() ),
'post_status' => 'publish',
'guid' => sanitize_url( $this->activitypub_event->get_id() ),
2024-12-10 19:34:15 +01:00
);
2024-12-15 12:17:32 +01:00
if ( $post_id ) {
2024-12-15 16:22:16 +01:00
// Update existing GatherPress event post.
2024-12-15 12:17:32 +01:00
$args['ID'] = $post_id;
2024-12-15 16:22:16 +01:00
wp_update_post( $args );
} else {
// Insert new GatherPress event post.
$post_id = wp_insert_post( $args );
2024-12-15 12:17:32 +01:00
}
2024-12-10 19:34:15 +01:00
if ( ! $post_id || is_wp_error( $post_id ) ) {
return false;
2024-12-10 19:34:15 +01:00
}
2024-12-14 14:46:00 +01:00
// Insert the dates.
$event = new GatherPress_Event( $post_id );
$start_time = $this->activitypub_event->get_start_time();
$end_time = $this->activitypub_event->get_end_time();
if ( ! $end_time ) {
$end_time = new DateTime( $start_time );
$end_time->modify( '+1 hour' );
$end_time = $end_time->format( 'Y-m-d H:i:s' );
}
2024-12-10 19:34:15 +01:00
$params = array(
2024-12-14 14:46:00 +01:00
'datetime_start' => $start_time,
'datetime_end' => $end_time,
2024-12-10 19:34:15 +01:00
'timezone' => $this->activitypub_event->get_timezone(),
);
2024-12-14 14:46:00 +01:00
// Sanitization of the params is done in the save_datetimes function just in time.
2024-12-10 19:34:15 +01:00
$event->save_datetimes( $params );
2024-12-14 14:46:00 +01:00
// Insert featured image.
$image = $this->get_featured_image();
self::set_featured_image_with_alt( $post_id, $image['url'], $image['alt'] );
// Add hashtags.
$this->add_tags_to_post( $post_id );
$this->add_venue( $post_id );
// Limit this as a safety measure.
remove_filter( 'wp_revisions_to_keep', array( self::class, 'revisions_to_keep' ) );
return $post_id;
2024-12-14 14:46:00 +01:00
}
}