2023-11-19 19:56:03 +01:00
|
|
|
<?php
|
2023-11-27 19:18:06 +01:00
|
|
|
/**
|
|
|
|
* ActivityPub Tribe Transformer
|
|
|
|
*
|
|
|
|
* @package activity-event-transformers
|
2023-12-04 19:27:57 +01:00
|
|
|
* @license AGPL-3.0-or-later
|
2023-11-27 19:18:06 +01:00
|
|
|
*/
|
|
|
|
|
2023-11-19 19:56:03 +01:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit; // Exit if accessed directly.
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ActivityPub Tribe Transformer
|
|
|
|
*
|
|
|
|
* @since 1.0.0
|
|
|
|
*/
|
2023-11-22 14:59:51 +01:00
|
|
|
class Tribe extends \Activitypub\Transformer\Base {
|
2023-12-11 23:24:13 +01:00
|
|
|
/**
|
|
|
|
* The Tribe Event object.
|
|
|
|
*
|
|
|
|
* @var WP_Post
|
|
|
|
*/
|
|
|
|
protected $tribe_event;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* resolve the tribe metadata in the setter of wp_post.
|
|
|
|
*
|
|
|
|
* @param WP_Post $wp_post The WP_Post object.
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function set_wp_post( WP_Post $wp_post ) {
|
|
|
|
parent::set_wp_post( $wp_post );
|
|
|
|
$this->tribe_event = tribe_get_event( $wp_post->ID );
|
|
|
|
}
|
2023-11-19 19:56:03 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get widget name.
|
|
|
|
*
|
|
|
|
* Retrieve oEmbed widget name.
|
|
|
|
*
|
|
|
|
* @since 1.0.0
|
|
|
|
* @access public
|
|
|
|
* @return string Widget name.
|
|
|
|
*/
|
|
|
|
public function get_name() {
|
2023-11-25 12:05:12 +01:00
|
|
|
return 'activitypub-event-transformers/tribe';
|
2023-11-19 19:56:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get widget title.
|
|
|
|
*
|
|
|
|
* Retrieve Transformer title.
|
|
|
|
*
|
|
|
|
* @since 1.0.0
|
|
|
|
* @access public
|
|
|
|
* @return string Widget title.
|
|
|
|
*/
|
|
|
|
public function get_label() {
|
|
|
|
return 'The Events Calendar';
|
|
|
|
}
|
|
|
|
|
2023-11-20 18:06:20 +01:00
|
|
|
/**
|
|
|
|
* Returns the ActivityStreams 2.0 Object-Type for an Event.
|
|
|
|
*
|
|
|
|
* @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-event
|
|
|
|
*
|
|
|
|
* @return string The Event Object-Type.
|
|
|
|
*/
|
|
|
|
protected function get_object_type() {
|
|
|
|
return 'Event';
|
|
|
|
}
|
2023-11-22 14:59:51 +01:00
|
|
|
|
2023-11-19 19:56:03 +01:00
|
|
|
/**
|
|
|
|
* Get supported post types.
|
|
|
|
*
|
|
|
|
* Retrieve the list of supported WordPress post types this transformer widget can handle.
|
|
|
|
*
|
|
|
|
* @since 1.0.0
|
|
|
|
* @access public
|
|
|
|
* @return array Widget categories.
|
|
|
|
*/
|
2023-12-04 19:42:13 +01:00
|
|
|
public static function get_supported_post_types() {
|
2023-11-27 19:18:06 +01:00
|
|
|
return array( 'tribe_events' );
|
2023-11-19 19:56:03 +01:00
|
|
|
}
|
2023-12-09 02:02:25 +01:00
|
|
|
|
2023-12-11 23:24:13 +01:00
|
|
|
/**
|
|
|
|
* Get tribe category of wp_post
|
|
|
|
*
|
|
|
|
* @return string|null tribe category if it exists
|
|
|
|
*/
|
|
|
|
public function get_tribe_category() {
|
|
|
|
// todo make it possible that one event can have multiple categories?
|
|
|
|
|
|
|
|
// using cat_slugs isn't 100% nice way to do this, don't know if it's a good idea
|
|
|
|
$categories = tribe_get_event_cat_slugs( $this->wp_post->ID );
|
|
|
|
|
|
|
|
if ( count( $categories ) === 0 ) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $categories[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get status of the tribe event
|
|
|
|
*
|
|
|
|
* @return string status of the event
|
|
|
|
*/
|
|
|
|
public function get_tribe_status() {
|
|
|
|
if ( 'canceled' === $this->tribe_event->event_status ) {
|
|
|
|
return 'CANCELLED';
|
|
|
|
}
|
|
|
|
if ( 'postponed' === $this->tribe_event->event_status ) {
|
|
|
|
return 'CANCELLED'; // this will be reflected in the cancelled reason
|
|
|
|
}
|
|
|
|
if ( '' === $this->tribe_event->event_status ) {
|
|
|
|
return 'CONFIRMED';
|
|
|
|
}
|
|
|
|
|
|
|
|
return new WP_Error( 'invalid event_status value', __( 'invalid event_status', 'activitypub' ), array( 'status' => 404 ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the content for the ActivityPub Item with
|
|
|
|
*
|
|
|
|
* The content will be generated based on the user settings.
|
|
|
|
*
|
|
|
|
* @return string The content.
|
|
|
|
*/
|
|
|
|
protected function get_content() {
|
|
|
|
$content = parent::get_content();
|
|
|
|
// todo remove link at the end of the content
|
|
|
|
|
|
|
|
// todo add organizer
|
|
|
|
// $this->tribe_event->organizers[0]
|
|
|
|
|
|
|
|
// todo add Canclled reason in the content (maybe at the end)
|
|
|
|
|
|
|
|
return $content;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the event location.
|
|
|
|
*
|
|
|
|
* @param int $post_id The WordPress post ID.
|
|
|
|
* @returns array The Place.
|
|
|
|
*/
|
|
|
|
public function get_event_location() {
|
|
|
|
/*
|
|
|
|
'post_title' => 'testvenue',
|
|
|
|
'post_name' => 'testvenue',
|
|
|
|
'guid' => 'http://localhost/venue/testvenue/',
|
|
|
|
'post_type' => 'tribe_venue',
|
|
|
|
'address' => 'testaddr',
|
|
|
|
'country' => 'Austria',
|
|
|
|
'city' => 'testcity',
|
|
|
|
'state_province' => 'testprovince',
|
|
|
|
'state' => '',
|
|
|
|
'province' => 'testprovince',
|
|
|
|
'zip' => '8000',
|
|
|
|
'phone' => '+4312343',
|
|
|
|
'permalink' => 'http://localhost/venue/testvenue/',
|
|
|
|
'directions_link' => 'https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=testaddr+testcity+testprovince+8000+Austria',
|
|
|
|
'website' => 'https://test.at',
|
|
|
|
*/
|
|
|
|
$venue = $this->tribe_event->venues[0];
|
|
|
|
return ( new Place() )
|
|
|
|
->set_type( 'Place' )
|
|
|
|
->set_name( $venue->post_name )
|
|
|
|
->set_address( $venue->address . "\n" .
|
|
|
|
$venue->zip . ", " . $venue->city . "\n" .
|
|
|
|
$venue->country ); // todo add checks that everything exists here (lol)
|
|
|
|
}
|
|
|
|
|
2023-12-09 02:02:25 +01:00
|
|
|
/**
|
|
|
|
* Transforms the VS Event WP_Post object to an ActivityPub Event Object.
|
|
|
|
*
|
|
|
|
* @see \Activitypub\Activity\Base_Object
|
|
|
|
*
|
|
|
|
* @return \Activitypub\Activity\Base_Object The ActivityPub Object.
|
|
|
|
*/
|
|
|
|
public function transform() {
|
|
|
|
$object = new Event();
|
|
|
|
|
2023-12-11 23:24:13 +01:00
|
|
|
// todo xsd:dateTime is probably nearly everywhere used, should it be default?
|
2023-12-09 02:02:25 +01:00
|
|
|
$this->set_timeformat( 'Y-m-d\TH:i:s\Z' );
|
|
|
|
|
2023-12-11 23:24:13 +01:00
|
|
|
// todo this looks very duplicated
|
|
|
|
$object->set_default_language_for_maps( $this->get_locale() );
|
|
|
|
$object->set_in_language( $this->get_locale() );
|
2023-12-09 02:02:25 +01:00
|
|
|
|
|
|
|
$object
|
2023-12-11 23:24:13 +01:00
|
|
|
// set metadata
|
2023-12-09 02:02:25 +01:00
|
|
|
->set_id( $this->get_id() )
|
|
|
|
->set_url( $this->get_url() )
|
|
|
|
->set_external_participation_url( $this->get_url() )
|
2023-12-11 23:24:13 +01:00
|
|
|
->set_comments_enabled( $this->get_comments_open() )
|
|
|
|
->set_replies_moderation_option( 'allow_all' ) // comment_status = open todo
|
2023-12-09 02:02:25 +01:00
|
|
|
|
2023-12-11 23:24:13 +01:00
|
|
|
// set published and updated
|
2023-12-09 02:02:25 +01:00
|
|
|
->set_published( $this->get_published() )
|
|
|
|
->if( $this->get_updated() > $this->get_published() )
|
|
|
|
->set_updated( $this->get_updated() )
|
|
|
|
|
2023-12-11 23:24:13 +01:00
|
|
|
// set author and location
|
2023-12-09 02:02:25 +01:00
|
|
|
->set_attributed_to( $this->get_attributed_to() )
|
2023-12-11 23:24:13 +01:00
|
|
|
->set_location( $this->get_event_location()->to_array())
|
|
|
|
|
|
|
|
// set content
|
|
|
|
->set_name( $this->get_post_property( 'post_title' ) )
|
2023-12-09 02:02:25 +01:00
|
|
|
->set_content( $this->get_content() )
|
2023-12-11 23:24:13 +01:00
|
|
|
->set_summary( $this->get_post_meta( 'post_excerpt', true, $this->get_content() ) )
|
|
|
|
->set_attachment( $this->get_attachments() )
|
2023-12-09 02:02:25 +01:00
|
|
|
|
2023-12-11 23:24:13 +01:00
|
|
|
// set event metadata
|
2023-12-09 02:02:25 +01:00
|
|
|
->set_start_time( $this->get_post_meta_time( '_EventStartDateUTC' ) )
|
|
|
|
->set_end_time( $this->get_post_meta_time( '_EventEndDateUTC' ) )
|
2023-12-11 23:24:13 +01:00
|
|
|
// ->set_duration() // todo
|
|
|
|
->set_status( $this->get_tribe_status() )
|
|
|
|
->set_join_mode( 'external' )
|
|
|
|
|
|
|
|
->set_tag( $this->get_tags() ) // todo maybe rename to get_hashtags()?
|
|
|
|
->set_category( $this->get_tribe_category() )
|
|
|
|
|
|
|
|
// set direkt addressants (to followers and mentions)
|
2023-12-09 02:02:25 +01:00
|
|
|
->set_to( $this->get_followers_stream() )
|
2023-12-11 23:24:13 +01:00
|
|
|
->set_cc( $this->get_cc() );
|
2023-12-09 02:02:25 +01:00
|
|
|
|
2023-12-11 23:24:13 +01:00
|
|
|
// todo events that cost something?
|
|
|
|
// maybe a setting for custom tags for online mode
|
|
|
|
|
|
|
|
// todo generator maybe
|
|
|
|
|
|
|
|
$some_infos = $object->check_jsonld_completeness(); // just used for debugging
|
2023-12-09 02:02:25 +01:00
|
|
|
|
|
|
|
assert( $object->get_type() === $this->get_object_type() );
|
|
|
|
return $object;
|
|
|
|
}
|
2023-11-19 19:56:03 +01:00
|
|
|
}
|