wordpress-event-bridge-for-.../includes/admin/class-settings-page.php

202 lines
5.7 KiB
PHP
Raw Normal View History

2024-07-17 16:17:54 +02:00
<?php
/**
2024-08-15 15:59:58 +02:00
* General settings class.
2024-07-17 16:17:54 +02:00
*
2024-08-15 15:59:58 +02:00
* This file contains the General class definition, which handles the "General" settings
* page for the Event Bridge for ActivityPub Plugin, providing options for configuring various general settings.
2024-07-17 16:17:54 +02:00
*
* @package Event_Bridge_For_ActivityPub
2024-07-17 16:17:54 +02:00
* @since 1.0.0
*/
namespace Event_Bridge_For_ActivityPub\Admin;
2024-07-17 16:17:54 +02:00
2024-08-15 15:59:58 +02:00
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit; // @codeCoverageIgnore
2024-07-17 16:17:54 +02:00
use Activitypub\Webfinger;
use Event_Bridge_For_ActivityPub\ActivityPub\Model\Event_Source;
use Event_Bridge_For_ActivityPub\Event_Sources;
use Event_Bridge_For_ActivityPub\ActivityPub\Collection\Event_Sources as Event_Source_Collection;
use Event_Bridge_For_ActivityPub\Integrations\Event_Plugin;
use Event_Bridge_For_ActivityPub\Setup;
2024-07-17 16:17:54 +02:00
/**
* Class responsible for the Event Bridge for ActivityPub related Settings.
2024-07-17 16:17:54 +02:00
*
* Class which handles the "General" settings page for the Event Bridge for ActivityPub Plugin,
2024-09-11 07:59:53 +02:00
* providing options for configuring various general settings.
2024-07-17 16:17:54 +02:00
*
* @since 1.0.0
*/
class Settings_Page {
const STATIC = 'Event_Bridge_For_ActivityPub\Admin\Settings_Page';
2024-08-15 15:59:58 +02:00
const SETTINGS_SLUG = 'event-bridge-for-activitypub';
2024-07-17 16:17:54 +02:00
/**
* Warning if the plugin is Active and the ActivityPub plugin is not.
2024-09-11 07:59:53 +02:00
*
* @return void
2024-07-17 16:17:54 +02:00
*/
2024-09-11 07:59:53 +02:00
public static function admin_menu(): void {
add_action(
'admin_init',
array( self::STATIC, 'maybe_add_event_source' ),
);
2024-07-17 16:17:54 +02:00
\add_options_page(
'Event Bridge for ActivityPub',
__( 'Event Bridge for ActivityPub', 'event-bridge-for-activitypub' ),
2024-07-17 16:17:54 +02:00
'manage_options',
2024-08-15 15:59:58 +02:00
self::SETTINGS_SLUG,
array( self::STATIC, 'settings_page' ),
2024-07-17 16:17:54 +02:00
);
}
/**
* Checks whether the current request wants to add an event source (ActivityPub follow) and passed on to actual handler.
*/
public static function maybe_add_event_source() {
if ( ! isset( $_POST['event_bridge_for_activitypub_event_source'] ) ) {
return;
}
// Check and verify request and check capabilities.
if ( ! wp_verify_nonce( sanitize_key( $_REQUEST['_wpnonce'] ), 'event-bridge-for-activitypub-event-sources-options' ) ) {
return;
}
if ( ! current_user_can( 'manage_options' ) ) {
return;
}
$event_source = sanitize_text_field( $_POST['event_bridge_for_activitypub_event_source'] );
$actor_url = false;
$url = wp_parse_url( $event_source );
if ( isset( $url['path'] ) && isset( $url['host'] ) && isset( $url['scheme'] ) ) {
$actor_url = $event_source;
} else {
if ( preg_match( '/^@?' . Event_Source::ACTIVITYPUB_USER_HANDLE_REGEXP . '$/i', $event_source ) ) {
$actor_url = Webfinger::resolve( $event_source );
if ( is_wp_error( $actor_url ) ) {
return;
}
} else {
if ( ! isset( $url['path'] ) && isset( $url['host'] ) ) {
$actor_url = Event_Sources::get_application_actor( $url['host'] );
}
if ( self::is_domain( $event_source ) ) {
$actor_url = Event_Sources::get_application_actor( $event_source );
}
}
}
if ( ! $actor_url ) {
return;
}
Event_Source_Collection::add_event_source( $actor_url );
}
/**
* Check if a string is a valid domain name.
*
* @param string $domain The input string which might be a domain.
* @return bool
*/
private static function is_domain( $domain ): bool {
$pattern = '/^(?!\-)(?:(?:[a-zA-Z\d](?:[a-zA-Z\d\-]{0,61}[a-zA-Z\d])?)\.)+(?!\d+$)[a-zA-Z\d]{2,63}$/';
return 1 === preg_match( $pattern, $domain );
}
/**
* Adds Link to the settings page in the plugin page.
* It's called via apply_filter('plugin_action_links_' . PLUGIN_NAME).
*
2024-08-15 15:59:58 +02:00
* @param array $links Already added links.
2024-09-11 07:59:53 +02:00
*
2024-08-15 15:59:58 +02:00
* @return array Original links but with link to setting page added.
*/
2024-09-11 07:59:53 +02:00
public static function settings_link( $links ): array {
return array_merge(
$links,
array(
2024-08-15 15:59:58 +02:00
'<a href="' . admin_url( 'options-general.php?page=' . self::SETTINGS_SLUG ) . '">Settings</a>',
)
);
}
2024-07-17 16:17:54 +02:00
2024-08-27 21:23:33 +02:00
/**
* Receive the event categories (terms) used by the event plugin.
*
* @param Event_Plugin $event_plugin Contains info about a certain event plugin.
2024-08-27 21:23:33 +02:00
*
* @return array An array of Terms.
*/
2024-09-11 07:59:53 +02:00
private static function get_event_terms( $event_plugin ): array {
2024-09-18 21:26:53 +02:00
$taxonomy = $event_plugin::get_event_category_taxonomy();
if ( $taxonomy ) {
2024-08-27 21:23:33 +02:00
$event_terms = get_terms(
array(
'taxonomy' => $taxonomy,
2024-08-27 21:23:33 +02:00
'hide_empty' => true,
)
);
return ! is_wp_error( $event_terms ) ? $event_terms : array();
2024-07-17 16:17:54 +02:00
} else {
2024-08-27 21:23:33 +02:00
return array();
2024-07-17 16:17:54 +02:00
}
2024-08-27 21:23:33 +02:00
}
2024-07-17 16:17:54 +02:00
2024-08-27 21:23:33 +02:00
/**
2024-09-11 07:59:53 +02:00
* Preparing the data and loading the template for the settings page.
*
* @return void
2024-08-27 21:23:33 +02:00
*/
2024-09-11 07:59:53 +02:00
public static function settings_page(): void {
// phpcs:ignore WordPress.Security.NonceVerification.Recommended
if ( empty( $_GET['tab'] ) ) {
$tab = 'welcome';
} else {
// phpcs:ignore WordPress.Security.NonceVerification.Recommended
$tab = sanitize_key( $_GET['tab'] );
}
2024-07-17 16:17:54 +02:00
switch ( $tab ) {
case 'settings':
$plugin_setup = Setup::get_instance();
2024-07-17 16:17:54 +02:00
$event_plugins = $plugin_setup->get_active_event_plugins();
2024-08-27 21:23:33 +02:00
$event_terms = array();
2024-07-17 16:17:54 +02:00
foreach ( $event_plugins as $event_plugin ) {
$event_terms = array_merge( $event_terms, self::get_event_terms( $event_plugin ) );
}
2024-07-17 16:17:54 +02:00
$args = array(
'slug' => self::SETTINGS_SLUG,
'event_terms' => $event_terms,
);
\load_template( EVENT_BRIDGE_FOR_ACTIVITYPUB_PLUGIN_DIR . 'templates/settings.php', true, $args );
break;
2024-11-18 16:07:09 +01:00
case 'event-sources':
wp_enqueue_script( 'thickbox' );
wp_enqueue_style( 'thickbox' );
2024-12-05 17:50:17 +01:00
\load_template( EVENT_BRIDGE_FOR_ACTIVITYPUB_PLUGIN_DIR . 'templates/event-sources.php', true );
2024-11-18 16:07:09 +01:00
break;
case 'welcome':
default:
wp_enqueue_script( 'plugin-install' );
add_thickbox();
wp_enqueue_script( 'updates' );
\load_template( EVENT_BRIDGE_FOR_ACTIVITYPUB_PLUGIN_DIR . 'templates/welcome.php', true );
break;
}
2024-07-17 16:17:54 +02:00
}
}