André Menrath
55c70ce831
Some checks failed
PHP Code Checker / PHP Code Checker (pull_request) Failing after 50s
PHPUnit / PHPUnit – PHP 7.4 (pull_request) Failing after 59s
PHPUnit / PHPUnit – PHP 8.0 (pull_request) Successful in 1m5s
PHPUnit / PHPUnit – PHP 8.1 (pull_request) Successful in 1m8s
PHPUnit / PHPUnit – PHP 8.2 (pull_request) Successful in 1m3s
PHPUnit / PHPUnit – PHP 8.3 (pull_request) Successful in 1m4s
PHPUnit / PHPUnit – PHP 8.4 (pull_request) Successful in 1m3s
258 lines
13 KiB
PHP
258 lines
13 KiB
PHP
<?php
|
|
/**
|
|
* Template for Event Bridge for ActivityPub settings page.
|
|
*
|
|
* This template is used to display and manage settings for the Event Bridge for ActivityPub plugin.
|
|
*
|
|
* @package Event_Bridge_For_ActivityPub
|
|
* @since 1.0.0
|
|
* @license AGPL-3.0-or-later
|
|
*
|
|
* @param array $args An array of arguments for the settings page.
|
|
*/
|
|
|
|
// Exit if accessed directly.
|
|
defined( 'ABSPATH' ) || exit; // @codeCoverageIgnore
|
|
|
|
\load_template(
|
|
__DIR__ . '/admin-header.php',
|
|
true,
|
|
array(
|
|
'settings' => 'active',
|
|
)
|
|
);
|
|
|
|
use Activitypub\Activity\Extended_Object\Event;
|
|
|
|
if ( ! isset( $args ) || ! array_key_exists( 'event_terms', $args ) ) {
|
|
return;
|
|
}
|
|
|
|
if ( ! current_user_can( 'manage_options' ) ) {
|
|
return;
|
|
}
|
|
\get_option( 'event_bridge_for_activitypub_event_sources_active', false );
|
|
if ( ! isset( $args ) || ! array_key_exists( 'supports_event_sources', $args ) ) {
|
|
return;
|
|
}
|
|
|
|
$event_plugins_supporting_event_sources = $args['supports_event_sources'];
|
|
|
|
$selected_plugin = \get_option( 'event_bridge_for_activitypub_plugin_used_for_event_source_feature', '' );
|
|
$event_sources_active = \get_option( 'event_bridge_for_activitypub_event_sources_active', false );
|
|
$cache_retention_period = \get_option( 'event_bridge_for_activitypub_event_source_cache_retention', DAY_IN_SECONDS );
|
|
|
|
$event_terms = $args['event_terms'];
|
|
|
|
require_once EVENT_BRIDGE_FOR_ACTIVITYPUB_PLUGIN_DIR . '/includes/event-categories.php';
|
|
|
|
$selected_default_event_category = \get_option( 'event_bridge_for_activitypub_default_event_category', 'MEETING' );
|
|
$current_category_mapping = \get_option( 'event_bridge_for_activitypub_event_category_mappings', array() );
|
|
?>
|
|
|
|
<div class="event-bridge-for-activitypub-settings event-bridge-for-activitypub-settings-page hide-if-no-js">
|
|
<form method="post" action="options.php">
|
|
<?php \settings_fields( 'event-bridge-for-activitypub' ); ?>
|
|
<div class="box">
|
|
<h2> <?php esc_html_e( 'Event Summary Text', 'event-bridge-for-activitypub' ); ?> </h2>
|
|
<p><?php esc_html_e( 'Many Fediverse applications (e.g., Mastodon) don\'t fully support events, instead they will show a summary text along with the events title and the URL to your Website.', 'event-bridge-for-activitypub' ); ?></p>
|
|
<p>
|
|
<label for="event_bridge_for_activitypub_summary_type_preset">
|
|
<input type="radio" name="event_bridge_for_activitypub_summary_type" id="event_bridge_for_activitypub_summary_type_preset" value="preset" <?php echo \checked( 'preset', \get_option( 'event_bridge_for_activitypub_summary_type', EVENT_BRIDGE_FOR_ACTIVITYPUB_DEFAULT_SUMMARY_TYPE ) ); ?> />
|
|
<?php \esc_html_e( 'Automatic (default)', 'event-bridge-for-activitypub' ); ?>
|
|
-
|
|
<span class="description">
|
|
<?php \esc_html_e( 'Let the plugin compose a summary for you. ', 'event-bridge-for-activitypub' ); ?>
|
|
</span>
|
|
</label>
|
|
</p>
|
|
<p>
|
|
<label for="event_bridge_for_activitypub_summary_type_custom">
|
|
<input type="radio" name="event_bridge_for_activitypub_summary_type" id="event_bridge_for_activitypub_summary_type_custom" value="custom" <?php echo \checked( 'custom', \get_option( 'event_bridge_for_activitypub_summary_type', EVENT_BRIDGE_FOR_ACTIVITYPUB_DEFAULT_SUMMARY_TYPE ) ); ?> />
|
|
<?php \esc_html_e( 'Custom', 'event-bridge-for-activitypub' ); ?>
|
|
-
|
|
<span class="description">
|
|
<?php \esc_html_e( 'For advanced users: compose your custom summary via shortcodes.', 'event-bridge-for-activitypub' ); ?>
|
|
</span>
|
|
</label>
|
|
</p>
|
|
<div id="event_bridge_for_activitypub_summary_type_custom-details">
|
|
<textarea name="event_bridge_for_activitypub_custom_summary" id="event_bridge_for_activitypub_custom_summary" rows="10" cols="50" class="large-text" placeholder="<?php echo wp_kses( EVENT_BRIDGE_FOR_ACTIVITYPUB_CUSTOM_SUMMARY, 'post' ); ?>"><?php echo esc_textarea( wp_kses( \get_option( 'event_bridge_for_activitypub_custom_summary', EVENT_BRIDGE_FOR_ACTIVITYPUB_CUSTOM_SUMMARY ), 'post' ) ); ?></textarea>
|
|
<details>
|
|
<summary><?php esc_html_e( 'See a list Template Tags available for the summary.', 'event-bridge-for-activitypub' ); ?></summary>
|
|
<div class="description">
|
|
<dl>
|
|
<dt><code>[ap_start_time]</code><dt>
|
|
<dd><?php \esc_html_e( 'The events title.', 'event-bridge-for-activitypub' ); ?></dd>
|
|
<dt><code>[ap_end_time]</code><dt>
|
|
<dd><?php \esc_html_e( 'The events content.', 'event-bridge-for-activitypub' ); ?></dd>
|
|
<dt><code>[ap_location]</code><dt>
|
|
<dd><?php \esc_html_e( 'The events location.', 'event-bridge-for-activitypub' ); ?></dd>
|
|
<dt><code>[ap_hashtags]</code><dt>
|
|
<dd><?php \esc_html_e( 'The events tags as hashtags.', 'event-bridge-for-activitypub' ); ?></dd>
|
|
<dt><code>[ap_excerpt]</code><dt>
|
|
<dd><?php \esc_html_e( 'The events excerpt (may be truncated).', 'event-bridge-for-activitypub' ); ?></dd>
|
|
<dt><code>[ap_content]</code><dt>
|
|
<dd><?php \esc_html_e( 'The events description.', 'event-bridge-for-activitypub' ); ?></dd>
|
|
</dl>
|
|
</div>
|
|
</details>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="box">
|
|
<h2><?php \esc_html_e( 'Event Sources', 'event-bridge-for-activitypub' ); ?></h2>
|
|
<?php
|
|
if ( count( $event_plugins_supporting_event_sources ) ) {
|
|
?>
|
|
<table class="form-table">
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row">
|
|
<label for="event_bridge_for_activitypub_event_sources_active"><?php \esc_html_e( 'Enable External Event Sources', 'event-bridge-for-activitypub' ); ?></label>
|
|
</th>
|
|
<td>
|
|
<input
|
|
type="checkbox"
|
|
name="event_bridge_for_activitypub_event_sources_active"
|
|
id="event_bridge_for_activitypub_event_sources_active"
|
|
aria-describedby="event-sources-description"
|
|
value="1"
|
|
<?php echo \checked( $event_sources_active ); ?>
|
|
>
|
|
<p id="event-sources-description"><?php esc_html_e( 'Activate this feature to allow your WordPress site to fetch events from external sources via ActivityPub. Once enabled, you can add any ActivityPub account as a source of events. These events will be cached on your site and seamlessly integrated into your existing event calendar, creating a unified view of events from both internal and external sources.', 'event-bridge-for-activitypub' ); ?></p>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
if ( $event_sources_active ) {
|
|
?>
|
|
<tr>
|
|
<th scope="row">
|
|
<label for="event_bridge_for_activitypub_plugin_used_for_event_source_feature"><?php \esc_html_e( 'Event Plugin', 'event-bridge-for-activitypub' ); ?></label>
|
|
</th>
|
|
<td>
|
|
<select
|
|
name="event_bridge_for_activitypub_plugin_used_for_event_source_feature"
|
|
id="event_bridge_for_activitypub_plugin_used_for_event_source_feature"
|
|
value="gatherpress"
|
|
aria-describedby="event-sources-used-plugin-description"
|
|
>
|
|
<?php
|
|
foreach ( $event_plugins_supporting_event_sources as $event_plugin ) {
|
|
echo '<option value="' . esc_attr( $event_plugin ) . '" ' . selected( $selected_plugin, $event_plugin, true ) . '>' . esc_attr( $event_plugin ) . '</option>';
|
|
}
|
|
?>
|
|
</select>
|
|
<p id="event-sources-used-plugin-description"><?php esc_html_e( 'In case you have multiple event plugins installed you might choose which event plugin is utilized.', 'event-bridge-for-activitypub' ); ?></p>
|
|
</td>
|
|
<tr>
|
|
<tr>
|
|
<th scope="row">
|
|
<label for="event_bridge_for_activitypub_event_source_cache"><?php \esc_html_e( 'Retention Period for External Events', 'event-bridge-for-activitypub' ); ?></label>
|
|
</th>
|
|
<td>
|
|
<select
|
|
name="event_bridge_for_activitypub_event_source_cache_retention"
|
|
id="event_bridge_for_activitypub_event_source_cache_retention"
|
|
value="0"
|
|
aria-describedby="event_bridge_for_activitypub_event-sources-cache-clear-time-frame"
|
|
>
|
|
<?php
|
|
$choices = array(
|
|
0 => __( 'Immediately', 'event-bridge-for-activitypub' ),
|
|
DAY_IN_SECONDS => __( 'One Day', 'event-bridge-for-activitypub' ),
|
|
WEEK_IN_SECONDS => __( 'One Week', 'event-bridge-for-activitypub' ),
|
|
MONTH_IN_SECONDS => __( 'One Month', 'event-bridge-for-activitypub' ),
|
|
YEAR_IN_SECONDS => __( 'One Year', 'event-bridge-for-activitypub' ),
|
|
);
|
|
foreach ( $choices as $time => $string ) {
|
|
echo '<option value="' . esc_attr( $time ) . '" ' . selected( $cache_retention_period, $time, true ) . '>' . esc_attr( $string ) . '</option>';
|
|
}
|
|
?>
|
|
</select>
|
|
<p id="event_bridge_for_activitypub_event-sources-cache-clear-time-frame"><?php esc_html_e( 'External events from your event sources will be automatically removed from your site after the selected time period has passed since the event ended. Choose a time frame that works best for your needs.', 'event-bridge-for-activitypub' ); ?></p>
|
|
</td>
|
|
<tr>
|
|
<?php
|
|
}
|
|
?>
|
|
<tbody>
|
|
</table>
|
|
<?php
|
|
} else {
|
|
?>
|
|
<p><?php esc_html_e( 'You do not have an Event Plugin installed that supports this feature', 'event-bridge-for-activitypub' ); ?></p>
|
|
<p><?php esc_html_e( 'The following Event Plugins are supported:', 'event-bridge-for-activitypub' ); ?></p>
|
|
<?php
|
|
$plugins_supporting_event_sources = \Event_Bridge_For_ActivityPub\Setup::detect_event_plugins_supporting_event_sources();
|
|
echo '<ul class="event_bridge_for_activitypub-list">';
|
|
foreach ( $plugins_supporting_event_sources as $event_plugin ) {
|
|
echo '<li>' . esc_attr( $event_plugin->get_plugin_name() ) . '</li>';
|
|
}
|
|
echo '</ul>';
|
|
return;
|
|
}
|
|
?>
|
|
</div>
|
|
|
|
<div class="box">
|
|
<h2> <?php esc_html_e( 'ActivityPub Event Category', 'event-bridge-for-activitypub' ); ?> </h2>
|
|
<p> <?php esc_html_e( 'To help visitors find events more easily, the community created a set of basic event categories. Please select the category that best matches the majority of the events you organize.', 'event-bridge-for-activitypub' ); ?> </p>
|
|
<table class="form-table">
|
|
<tr>
|
|
<th scope="row"> <?php esc_html_e( 'Default Category', 'event-bridge-for-activitypub' ); ?> </th>
|
|
<td>
|
|
<select id="event_bridge_for_activitypub_default_event_category" name="event_bridge_for_activitypub_default_event_category">';
|
|
<?php
|
|
foreach ( EVENT_BRIDGE_FOR_ACTIVITYPUB_EVENT_CATEGORIES as $value => $label ) {
|
|
echo '<option value="' . esc_attr( $value ) . '" ' . selected( $selected_default_event_category, $value, false ) . '>' . esc_html( $label ) . '</option>';
|
|
}
|
|
?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<?php if ( ! empty( $event_terms ) ) : ?>
|
|
<h3> <?php esc_html_e( 'Advanced Event Category Settings', 'event-bridge-for-activitypub' ); ?> </h3>
|
|
<p> <?php esc_html_e( 'Take more control by adjusting how your event categories are mapped to the basic category set used in ActivityPub. This option lets you override the default selection above, ensuring more accurate categorization and better visibility for your events.', 'event-bridge-for-activitypub' ); ?> </p>
|
|
<table class="form-table">
|
|
<?php foreach ( $event_terms as $event_term ) { ?>
|
|
<tr>
|
|
<th scope="row"> <?php echo esc_html( $event_term->name ); ?> </th>
|
|
<td>
|
|
<select name="event_bridge_for_activitypub_event_category_mappings[<?php echo esc_attr( $event_term->slug ); ?>]">
|
|
<?php
|
|
$current_mapping_is_set = false;
|
|
if ( ! empty( $current_category_mapping ) ) {
|
|
$current_mapping_is_set = array_key_exists( $event_term->slug, $current_category_mapping );
|
|
}
|
|
if ( $current_mapping_is_set ) {
|
|
$mapping = $current_category_mapping[ $event_term->slug ];
|
|
} else {
|
|
$mapping = 'DEFAULT';
|
|
}
|
|
if ( 'DEFAULT' === $mapping ) {
|
|
echo '<option value="' . esc_attr( $mapping ) . '"> -- ' . esc_html( EVENT_BRIDGE_FOR_ACTIVITYPUB_EVENT_CATEGORIES[ $mapping ] ) . ' -- </option>';
|
|
} else {
|
|
echo '<option value="' . esc_attr( $mapping ) . '">' . esc_html( EVENT_BRIDGE_FOR_ACTIVITYPUB_EVENT_CATEGORIES[ $mapping ] ) . '</option>';
|
|
}
|
|
echo '<option value="DEFAULT" ' . selected( $selected_default_event_category, 'DEFAULT', false ) . '> -- ' . esc_html__( 'Default', 'event-bridge-for-activitypub' ) . ' -- </option>';
|
|
foreach ( Event::DEFAULT_EVENT_CATEGORIES as $event_category ) {
|
|
echo '<option value="' . esc_attr( $event_category ) . '" ' . selected( $mappings[ $event_term->slug ] ?? '', $event_category, false ) . '>' . esc_html( EVENT_BRIDGE_FOR_ACTIVITYPUB_EVENT_CATEGORIES[ $event_category ] ) . '</option>';
|
|
}
|
|
?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
</table>
|
|
<?php endif; ?>
|
|
</div>
|
|
<!-- This disables the setup wizard. -->
|
|
<div class="hidden" aria-hidden="true">
|
|
<input type="checkbox" id="event_bridge_for_activitypub_initially_activated" name="event_bridge_for_activitypub_initially_activated"/>
|
|
</div>
|
|
<?php \submit_button(); ?>
|
|
</form>
|
|
</div>
|