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 () {
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' ) );
}
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 () {
$settings_page = add_options_page (
'ActivityPub' ,
'ActivityPub' ,
'manage_options' ,
'activitypub' ,
2019-02-24 12:07:41 +01:00
array ( '\Activitypub\Admin' , 'settings_page' )
2018-12-20 11:33:08 +01:00
);
2019-08-21 10:38:43 +02:00
add_action ( 'load-' . $settings_page , array ( '\Activitypub\Admin' , 'add_settings_help_tab' ) );
$followers_list_page = add_users_page ( __ ( 'Followers' , 'activitypub' ), __ ( 'Followers (Fediverse)' , 'activitypub' ), 'read' , 'activitypub-followers-list' , array ( '\Activitypub\Admin' , 'followers_list_page' ) );
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 () {
2019-08-21 10:38:43 +02:00
load_template ( dirname ( __FILE__ ) . '/../templates/settings.php' );
}
/**
* Load user settings page
*/
public static function followers_list_page () {
load_template ( dirname ( __FILE__ ) . '/../templates/followers-list.php' );
2018-12-20 11:33:08 +01:00
}
/**
* Register PubSubHubbub settings
*/
public static function register_settings () {
2018-12-28 22:40:57 +01:00
register_setting (
2019-01-04 19:57:33 +01:00
'activitypub' , 'activitypub_post_content_type' , array (
2019-01-16 21:50:45 +01:00
'type' => 'string' ,
'description' => __ ( 'Use summary or full content' , 'activitypub' ),
2019-01-04 19:57:33 +01:00
'show_in_rest' => array (
'schema' => array (
2019-01-16 21:50:45 +01:00
'enum' => array ( '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
)
);
register_setting (
'activitypub' , 'activitypub_object_type' , array (
2019-01-16 21:50:45 +01:00
'type' => 'string' ,
'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' ,
)
);
register_setting (
'activitypub' , 'activitypub_use_shortlink' , array (
'type' => 'boolean' ,
'description' => __ ( 'Use the Shortlink instead of the permalink' , 'activitypub' ),
'default' => 0 ,
2018-12-28 22:40:57 +01:00
)
);
2019-02-17 21:27:20 +01:00
register_setting (
'activitypub' , 'activitypub_use_hashtags' , array (
'type' => 'boolean' ,
2019-03-02 21:10:42 +01:00
'description' => __ ( 'Add hashtags in the content as native tags and replace the #tag with the tag-link' , 'activitypub' ),
'default' => 0 ,
)
);
register_setting (
'activitypub' , 'activitypub_add_tags_as_hashtags' , array (
'type' => 'boolean' ,
'description' => __ ( 'Add all tags as hashtags at the end of each activity' , 'activitypub' ),
2019-02-17 21:27:20 +01:00
'default' => 0 ,
)
);
2018-12-20 11:33:08 +01:00
}
2019-08-21 10:38:43 +02:00
public static function add_settings_help_tab () {
2018-12-20 11:33:08 +01:00
get_current_screen () -> add_help_tab (
array (
'id' => 'overview' ,
'title' => __ ( 'Overview' , 'activitypub' ),
'content' =>
'<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>' ,
)
);
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 />' .
'<p>' . __ ( '<a href="https://notiz.blog/donate">Donate</a>' , 'activitypub' ) . '</p>'
);
}
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
?>
2019-01-16 21:50:45 +01:00
< h2 >< ? php esc_html_e ( 'Fediverse' , '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
}
2018-12-20 11:33:08 +01:00
}