wordpress-activitypub/includes/class-admin.php

196 lines
6.4 KiB
PHP
Raw Normal View History

<?php
namespace Activitypub;
/**
* ActivityPub Admin Class
2019-02-24 13:01:28 +01:00
*
* @author Matthias Pfefferle
*/
class Admin {
2019-02-24 13:01:28 +01:00
/**
* Initialize the class, registering WordPress hooks
*/
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' ) );
2021-02-18 07:12:32 +01:00
\add_action( 'admin_enqueue_scripts', array( '\Activitypub\Admin', 'scripts_reply_comments' ), 10, 2 );
\add_filter( 'comment_row_actions', array( '\Activitypub\Admin', 'reply_comments_actions' ), 10, 2 );
}
2019-02-28 19:31:55 +01:00
/**
* Add admin menu entry
*/
public static function admin_menu() {
2019-09-27 10:12:59 +02:00
$settings_page = \add_options_page(
'ActivityPub',
'ActivityPub',
'manage_options',
'activitypub',
array( '\Activitypub\Admin', 'settings_page' )
);
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' ) );
}
/**
* Load settings page
*/
public static function settings_page() {
\load_template( \dirname( __FILE__ ) . '/../templates/settings.php' );
2019-08-21 10:38:43 +02:00
}
/**
* Load user settings page
*/
public static function followers_list_page() {
\load_template( \dirname( __FILE__ ) . '/../templates/followers-list.php' );
}
/**
2020-10-01 19:55:16 +02:00
* Register ActivityPub settings
*/
public static function register_settings() {
2019-09-27 10:12:59 +02:00
\register_setting(
'activitypub', 'activitypub_post_content_type', array(
'type' => 'string',
'description' => \__( 'Use title and link, summary, full or custom content', 'activitypub' ),
'show_in_rest' => array(
'schema' => array(
2020-02-11 10:03:59 +01:00
'enum' => array( 'title', 'excerpt', 'content' ),
),
),
2019-02-04 13:40:23 +01:00
'default' => 'content',
2018-12-28 22:40:57 +01:00
)
);
\register_setting(
'activitypub', 'activitypub_custom_post_content', array(
'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(
2018-12-28 22:40:57 +01:00
'activitypub', 'activitypub_object_type', array(
'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(
'enum' => array( 'note', 'article', 'wordpress-post-format' ),
2018-12-28 22:40:57 +01:00
),
),
'default' => 'note',
)
);
2019-09-27 10:12:59 +02:00
\register_setting(
'activitypub', 'activitypub_use_hashtags', array(
'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(
'activitypub', 'activitypub_allowed_html', array(
'type' => 'string',
'description' => \__( 'List of HTML elements that are allowed in activities.', 'activitypub' ),
'default' => ACTIVITYPUB_ALLOWED_HTML,
)
);
\register_setting(
'activitypub', 'activitypub_support_post_types', array(
'type' => 'string',
'description' => \esc_html__( 'Enable ActivityPub support for post types', 'activitypub' ),
'show_in_rest' => true,
'default' => array( 'post', 'pages' ),
)
);
}
2019-08-21 10:38:43 +02:00
public static function add_settings_help_tab() {
2019-09-27 10:12:59 +02:00
\get_current_screen()->add_help_tab(
array(
'id' => 'overview',
2019-09-27 10:12:59 +02:00
'title' => \__( 'Overview', 'activitypub' ),
'content' =>
2019-09-27 10:12:59 +02:00
'<p>' . \__( 'ActivityPub is a decentralized social networking protocol based on the ActivityStreams 2.0 data format. ActivityPub is an official W3C recommended standard published by the W3C Social Web Working Group. It provides a client to server API for creating, updating and deleting content, as well as a federated server to server API for delivering notifications and subscribing to content.', 'activitypub' ) . '</p>',
)
);
2019-09-27 10:12:59 +02:00
\get_current_screen()->set_help_sidebar(
'<p><strong>' . \__( 'For more information:', 'activitypub' ) . '</strong></p>' .
'<p>' . \__( '<a href="https://activitypub.rocks/">Test Suite</a>', 'activitypub' ) . '</p>' .
'<p>' . \__( '<a href="https://www.w3.org/TR/activitypub/">W3C Spec</a>', 'activitypub' ) . '</p>' .
'<p>' . \__( '<a href="https://github.com/pfefferle/wordpress-activitypub/issues">Give us feedback</a>', 'activitypub' ) . '</p>' .
'<hr />' .
2019-09-27 10:12:59 +02:00
'<p>' . \__( '<a href="https://notiz.blog/donate">Donate</a>', 'activitypub' ) . '</p>'
);
}
2019-08-21 10:38:43 +02:00
public static function add_followers_list_help_tab() {
// todo
}
public static function add_fediverse_profile( $user ) {
?>
2019-09-27 10:12:59 +02:00
<h2><?php \esc_html_e( 'Fediverse', 'activitypub' ); ?></h2>
<?php
2019-02-24 12:21:25 +01:00
\Activitypub\get_identifier_settings( $user->ID );
}
2021-02-18 07:12:32 +01:00
public static function reply_comments_actions( $actions, $comment ) {
//unset( $actions['reply'] );
$recipients = \Activitypub\get_recipients( $comment->comment_ID );
$summary = \Activitypub\get_summary( $comment->comment_ID );
//TODO revise for non-js reply action
// Public Reply
$reply_button = '<button type="button" data-comment-id="%d" data-post-id="%d" data-action="%s" class="%s button-link" aria-expanded="false" aria-label="%s" data-recipients="%s" data-summary="%s">%s</button>';
$actions['reply'] = sprintf(
$reply_button,
$comment->comment_ID,
$comment->comment_post_ID,
'replyto',
'vim-r comment-inline',
esc_attr__( 'Reply to this comment' ),
$recipients,
$summary,
__( 'Reply', 'activitypub' )
);
// Private
// $actions['private_reply'] = sprintf(
// $format,
// $comment->comment_ID,
// $comment->comment_post_ID,
// 'private_replyto',
// 'vim-r comment-inline',
// esc_attr__( 'Reply in private to this comment' ),
// $recipients,
// $summary,
// __( 'Private reply', 'activitypub' )
// );
return $actions;
}
public static function scripts_reply_comments( $hook ) {
if ('edit-comments.php' !== $hook) {
return;
}
wp_enqueue_script( 'activitypub_client',
plugin_dir_url(__FILE__) . '/activitypub.js',
array('jquery'),
filemtime( plugin_dir_path(__FILE__) . '/activitypub.js' ),
true
);
}
}