2018-12-20 11:33:08 +01:00
|
|
|
<?php
|
2019-02-24 12:07:41 +01:00
|
|
|
namespace Activitypub;
|
|
|
|
|
2018-12-20 11:33:08 +01:00
|
|
|
/**
|
|
|
|
* ActivityPub Admin Class
|
2019-02-24 13:01:28 +01:00
|
|
|
*
|
|
|
|
* @author Matthias Pfefferle
|
2018-12-20 11:33:08 +01:00
|
|
|
*/
|
2019-02-24 12:07:41 +01:00
|
|
|
class Admin {
|
2019-02-24 13:01:28 +01:00
|
|
|
/**
|
|
|
|
* Initialize the class, registering WordPress hooks
|
|
|
|
*/
|
2019-02-24 12:07:41 +01:00
|
|
|
public static function init() {
|
2019-09-27 10:12:59 +02:00
|
|
|
\add_action( 'admin_menu', array( '\Activitypub\Admin', 'admin_menu' ) );
|
|
|
|
\add_action( 'admin_init', array( '\Activitypub\Admin', 'register_settings' ) );
|
|
|
|
\add_action( 'show_user_profile', array( '\Activitypub\Admin', 'add_fediverse_profile' ) );
|
2022-12-02 18:23:56 +01:00
|
|
|
\add_action( 'admin_enqueue_scripts', array( '\Activitypub\Admin', 'enqueue_scripts' ) );
|
2019-02-24 12:07:41 +01:00
|
|
|
}
|
2019-02-28 19:31:55 +01:00
|
|
|
|
2018-12-20 11:33:08 +01:00
|
|
|
/**
|
|
|
|
* Add admin menu entry
|
|
|
|
*/
|
|
|
|
public static function admin_menu() {
|
2022-12-06 10:58:32 +01:00
|
|
|
$settings_page = \add_options_page(
|
2022-11-15 18:22:08 +01:00
|
|
|
'Welcome',
|
2018-12-20 11:33:08 +01:00
|
|
|
'ActivityPub',
|
|
|
|
'manage_options',
|
|
|
|
'activitypub',
|
2022-12-06 10:58:32 +01:00
|
|
|
array( '\Activitypub\Admin', 'settings_page' )
|
2018-12-20 11:33:08 +01:00
|
|
|
);
|
|
|
|
|
2019-09-27 10:12:59 +02:00
|
|
|
\add_action( 'load-' . $settings_page, array( '\Activitypub\Admin', 'add_settings_help_tab' ) );
|
2019-08-21 10:38:43 +02:00
|
|
|
|
2020-05-12 20:30:06 +02:00
|
|
|
$followers_list_page = \add_users_page( \__( 'Followers', 'activitypub' ), \__( 'Followers (Fediverse)', 'activitypub' ), 'read', 'activitypub-followers-list', array( '\Activitypub\Admin', 'followers_list_page' ) );
|
2019-08-21 10:38:43 +02:00
|
|
|
|
2019-09-27 10:12:59 +02:00
|
|
|
\add_action( 'load-' . $followers_list_page, array( '\Activitypub\Admin', 'add_followers_list_help_tab' ) );
|
2018-12-20 11:33:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load settings page
|
|
|
|
*/
|
|
|
|
public static function settings_page() {
|
2022-12-06 10:58:32 +01:00
|
|
|
// phpcs:ignore WordPress.Security.NonceVerification.Recommended
|
|
|
|
if ( empty( $_GET['tab'] ) ) {
|
|
|
|
$tab = 'welcome';
|
|
|
|
} else {
|
|
|
|
// phpcs:ignore WordPress.Security.NonceVerification.Recommended
|
|
|
|
$tab = sanitize_key( $_GET['tab'] );
|
|
|
|
}
|
2019-08-21 10:38:43 +02:00
|
|
|
|
2022-12-06 10:58:32 +01:00
|
|
|
switch ( $tab ) {
|
|
|
|
case 'settings':
|
|
|
|
\load_template( \dirname( __FILE__ ) . '/../templates/settings.php' );
|
|
|
|
break;
|
|
|
|
case 'welcome':
|
|
|
|
default:
|
|
|
|
wp_enqueue_script( 'plugin-install' );
|
|
|
|
add_thickbox();
|
|
|
|
wp_enqueue_script( 'updates' );
|
2022-12-05 20:27:04 +01:00
|
|
|
|
2022-12-06 10:58:32 +01:00
|
|
|
\load_template( \dirname( __FILE__ ) . '/../templates/welcome.php' );
|
|
|
|
break;
|
|
|
|
}
|
2022-11-15 18:22:08 +01:00
|
|
|
}
|
|
|
|
|
2019-08-21 10:38:43 +02:00
|
|
|
/**
|
|
|
|
* Load user settings page
|
|
|
|
*/
|
|
|
|
public static function followers_list_page() {
|
2019-12-01 21:20:26 +01:00
|
|
|
\load_template( \dirname( __FILE__ ) . '/../templates/followers-list.php' );
|
2018-12-20 11:33:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-10-01 19:55:16 +02:00
|
|
|
* Register ActivityPub settings
|
2018-12-20 11:33:08 +01:00
|
|
|
*/
|
|
|
|
public static function register_settings() {
|
2019-09-27 10:12:59 +02:00
|
|
|
\register_setting(
|
2022-01-27 13:09:11 +01:00
|
|
|
'activitypub',
|
|
|
|
'activitypub_post_content_type',
|
|
|
|
array(
|
2019-01-16 21:50:45 +01:00
|
|
|
'type' => 'string',
|
2020-07-21 09:23:35 +02:00
|
|
|
'description' => \__( 'Use title and link, summary, full or custom content', 'activitypub' ),
|
2019-01-04 19:57:33 +01:00
|
|
|
'show_in_rest' => array(
|
|
|
|
'schema' => array(
|
2020-02-11 10:03:59 +01:00
|
|
|
'enum' => array( 'title', 'excerpt', 'content' ),
|
2019-01-04 19:57:33 +01:00
|
|
|
),
|
|
|
|
),
|
2019-02-04 13:40:23 +01:00
|
|
|
'default' => 'content',
|
2018-12-28 22:40:57 +01:00
|
|
|
)
|
|
|
|
);
|
2020-07-21 09:23:35 +02:00
|
|
|
\register_setting(
|
2022-01-27 13:09:11 +01:00
|
|
|
'activitypub',
|
|
|
|
'activitypub_custom_post_content',
|
|
|
|
array(
|
2020-07-21 09:23:35 +02:00
|
|
|
'type' => 'string',
|
|
|
|
'description' => \__( 'Define your own custom post template', 'activitypub' ),
|
|
|
|
'show_in_rest' => true,
|
|
|
|
'default' => ACTIVITYPUB_CUSTOM_POST_CONTENT,
|
|
|
|
)
|
|
|
|
);
|
2019-09-27 10:12:59 +02:00
|
|
|
\register_setting(
|
2022-01-27 13:09:11 +01:00
|
|
|
'activitypub',
|
|
|
|
'activitypub_object_type',
|
|
|
|
array(
|
2019-01-16 21:50:45 +01:00
|
|
|
'type' => 'string',
|
2019-09-27 10:12:59 +02:00
|
|
|
'description' => \__( 'The Activity-Object-Type', 'activitypub' ),
|
2018-12-28 22:40:57 +01:00
|
|
|
'show_in_rest' => array(
|
|
|
|
'schema' => array(
|
2019-01-16 21:50:45 +01:00
|
|
|
'enum' => array( 'note', 'article', 'wordpress-post-format' ),
|
2018-12-28 22:40:57 +01:00
|
|
|
),
|
|
|
|
),
|
2019-01-16 21:50:45 +01:00
|
|
|
'default' => 'note',
|
|
|
|
)
|
|
|
|
);
|
2019-09-27 10:12:59 +02:00
|
|
|
\register_setting(
|
2022-01-27 13:09:11 +01:00
|
|
|
'activitypub',
|
|
|
|
'activitypub_use_hashtags',
|
|
|
|
array(
|
2019-02-17 21:27:20 +01:00
|
|
|
'type' => 'boolean',
|
2019-09-27 10:12:59 +02:00
|
|
|
'description' => \__( 'Add hashtags in the content as native tags and replace the #tag with the tag-link', 'activitypub' ),
|
2019-03-02 21:10:42 +01:00
|
|
|
'default' => 0,
|
|
|
|
)
|
|
|
|
);
|
2019-09-27 10:12:59 +02:00
|
|
|
\register_setting(
|
2022-01-27 13:09:11 +01:00
|
|
|
'activitypub',
|
|
|
|
'activitypub_allowed_html',
|
|
|
|
array(
|
2020-07-21 09:23:35 +02:00
|
|
|
'type' => 'string',
|
|
|
|
'description' => \__( 'List of HTML elements that are allowed in activities.', 'activitypub' ),
|
|
|
|
'default' => ACTIVITYPUB_ALLOWED_HTML,
|
2019-02-17 21:27:20 +01:00
|
|
|
)
|
|
|
|
);
|
2019-09-27 15:00:07 +02:00
|
|
|
\register_setting(
|
2022-01-27 13:09:11 +01:00
|
|
|
'activitypub',
|
|
|
|
'activitypub_support_post_types',
|
|
|
|
array(
|
2019-09-27 15:00:07 +02:00
|
|
|
'type' => 'string',
|
|
|
|
'description' => \esc_html__( 'Enable ActivityPub support for post types', 'activitypub' ),
|
|
|
|
'show_in_rest' => true,
|
|
|
|
'default' => array( 'post', 'pages' ),
|
|
|
|
)
|
|
|
|
);
|
2018-12-20 11:33:08 +01:00
|
|
|
}
|
|
|
|
|
2019-08-21 10:38:43 +02:00
|
|
|
public static function add_settings_help_tab() {
|
2022-11-15 18:22:08 +01:00
|
|
|
require_once \dirname( __FILE__ ) . '/help.php';
|
2018-12-20 11:33:08 +01:00
|
|
|
}
|
2019-01-16 21:50:45 +01:00
|
|
|
|
2019-08-21 10:38:43 +02:00
|
|
|
public static function add_followers_list_help_tab() {
|
|
|
|
// todo
|
|
|
|
}
|
|
|
|
|
2019-01-16 21:50:45 +01:00
|
|
|
public static function add_fediverse_profile( $user ) {
|
2019-02-24 12:07:41 +01:00
|
|
|
?>
|
2022-11-15 20:49:05 +01:00
|
|
|
<h2 id="activitypub"><?php \esc_html_e( 'ActivityPub', 'activitypub' ); ?></h2>
|
2019-02-24 12:07:41 +01:00
|
|
|
<?php
|
2019-02-24 12:21:25 +01:00
|
|
|
\Activitypub\get_identifier_settings( $user->ID );
|
2019-01-16 21:50:45 +01:00
|
|
|
}
|
2022-11-15 18:22:08 +01:00
|
|
|
|
2022-12-02 18:23:56 +01:00
|
|
|
public static function enqueue_scripts( $hook_suffix ) {
|
2022-11-19 13:15:21 +01:00
|
|
|
if ( false !== strpos( $hook_suffix, 'activitypub' ) ) {
|
2022-12-02 18:23:56 +01:00
|
|
|
wp_enqueue_style( 'activitypub-admin-styles', plugins_url( 'assets/css/activitypub-admin.css', ACTIVITYPUB_PLUGIN_FILE ), array(), '1.0.0' );
|
|
|
|
wp_enqueue_script( 'activitypub-admin-styles', plugins_url( 'assets/js/activitypub-admin.js', ACTIVITYPUB_PLUGIN_FILE ), array( 'jquery' ), '1.0.0', false );
|
2022-11-19 13:15:21 +01:00
|
|
|
}
|
2022-11-15 18:22:08 +01:00
|
|
|
}
|
2018-12-20 11:33:08 +01:00
|
|
|
}
|