2018-08-18 12:35:39 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Plugin Name: ActivityPub
|
|
|
|
* Plugin URI: https://github.com/pfefferle/wordpress-activitypub/
|
|
|
|
* Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format.
|
2022-10-07 23:41:46 +02:00
|
|
|
* Version: 0.14.0-RC1
|
2018-08-18 12:35:39 +02:00
|
|
|
* Author: Matthias Pfefferle
|
|
|
|
* Author URI: https://notiz.blog/
|
|
|
|
* License: MIT
|
|
|
|
* License URI: http://opensource.org/licenses/MIT
|
2019-02-24 13:01:28 +01:00
|
|
|
* Requires PHP: 5.6
|
2018-08-18 12:35:39 +02:00
|
|
|
* Text Domain: activitypub
|
|
|
|
* Domain Path: /languages
|
|
|
|
*/
|
|
|
|
|
2019-02-24 12:07:41 +01:00
|
|
|
namespace Activitypub;
|
|
|
|
|
2018-08-18 12:35:39 +02:00
|
|
|
/**
|
2019-02-24 13:01:28 +01:00
|
|
|
* Initialize plugin
|
2018-08-18 12:35:39 +02:00
|
|
|
*/
|
2019-02-24 12:07:41 +01:00
|
|
|
function init() {
|
2022-11-16 16:14:34 +01:00
|
|
|
\defined( 'ACTIVITYPUB_HASHTAGS_REGEXP' ) || \define( 'ACTIVITYPUB_HASHTAGS_REGEXP', '(?:(?<=\s)|^)#([A-Za-z0-9_]+)(?:(?=\s|[[:punct:]]))' );
|
2020-07-21 09:23:35 +02:00
|
|
|
\defined( 'ACTIVITYPUB_ALLOWED_HTML' ) || \define( 'ACTIVITYPUB_ALLOWED_HTML', '<strong><a><p><ul><ol><li><code><blockquote><pre><img>' );
|
|
|
|
\defined( 'ACTIVITYPUB_CUSTOM_POST_CONTENT' ) || \define( 'ACTIVITYPUB_CUSTOM_POST_CONTENT', "<p><strong>%title%</strong></p>\n\n%content%\n\n<p>%hashtags%</p>\n\n<p>%shortlink%</p>" );
|
2022-09-30 01:46:42 +02:00
|
|
|
\defined( 'ACTIVITYPUB_PLUGIN' ) || \define( 'ACTIVITYPUB_PLUGIN', __FILE__ );
|
|
|
|
|
2019-01-22 20:51:22 +01:00
|
|
|
|
2019-12-01 21:20:26 +01:00
|
|
|
require_once \dirname( __FILE__ ) . '/includes/table/followers-list.php';
|
2022-10-02 06:49:48 +02:00
|
|
|
require_once \dirname( __FILE__ ) . '/includes/table/migrate-list.php';
|
2019-12-01 21:20:26 +01:00
|
|
|
require_once \dirname( __FILE__ ) . '/includes/class-signature.php';
|
|
|
|
require_once \dirname( __FILE__ ) . '/includes/peer/class-followers.php';
|
|
|
|
require_once \dirname( __FILE__ ) . '/includes/functions.php';
|
2022-10-05 22:02:24 +02:00
|
|
|
require_once \dirname( __FILE__ ) . '/includes/class-tools.php';
|
2018-08-18 12:35:39 +02:00
|
|
|
|
2019-12-01 21:20:26 +01:00
|
|
|
require_once \dirname( __FILE__ ) . '/includes/model/class-activity.php';
|
|
|
|
require_once \dirname( __FILE__ ) . '/includes/model/class-post.php';
|
2021-02-18 07:12:32 +01:00
|
|
|
require_once \dirname( __FILE__ ) . '/includes/model/class-comment.php';
|
2020-07-21 09:23:35 +02:00
|
|
|
|
|
|
|
require_once \dirname( __FILE__ ) . '/includes/class-activity-dispatcher.php';
|
|
|
|
\Activitypub\Activity_Dispatcher::init();
|
2019-02-02 23:56:05 +01:00
|
|
|
|
2019-12-01 21:20:26 +01:00
|
|
|
require_once \dirname( __FILE__ ) . '/includes/class-activitypub.php';
|
2019-08-18 21:54:11 +02:00
|
|
|
\Activitypub\Activitypub::init();
|
2018-09-05 22:03:57 +02:00
|
|
|
|
2022-11-15 20:36:24 +01:00
|
|
|
require_once \dirname( __FILE__ ) . '/includes/class-comments.php';
|
|
|
|
\Activitypub\Comments::init();
|
|
|
|
|
2018-09-05 22:03:57 +02:00
|
|
|
// Configure the REST API route
|
2019-12-01 21:20:26 +01:00
|
|
|
require_once \dirname( __FILE__ ) . '/includes/rest/class-outbox.php';
|
2019-02-24 12:07:41 +01:00
|
|
|
\Activitypub\Rest\Outbox::init();
|
|
|
|
|
2019-12-01 21:20:26 +01:00
|
|
|
require_once \dirname( __FILE__ ) . '/includes/rest/class-inbox.php';
|
2019-02-24 12:07:41 +01:00
|
|
|
\Activitypub\Rest\Inbox::init();
|
|
|
|
|
2019-12-01 21:20:26 +01:00
|
|
|
require_once \dirname( __FILE__ ) . '/includes/rest/class-followers.php';
|
2019-02-24 12:07:41 +01:00
|
|
|
\Activitypub\Rest\Followers::init();
|
|
|
|
|
2019-12-01 21:20:26 +01:00
|
|
|
require_once \dirname( __FILE__ ) . '/includes/rest/class-following.php';
|
2019-03-12 22:20:04 +01:00
|
|
|
\Activitypub\Rest\Following::init();
|
|
|
|
|
2019-12-01 21:20:26 +01:00
|
|
|
require_once \dirname( __FILE__ ) . '/includes/rest/class-webfinger.php';
|
2019-02-24 12:07:41 +01:00
|
|
|
\Activitypub\Rest\Webfinger::init();
|
|
|
|
|
2020-05-23 12:34:42 +02:00
|
|
|
// load NodeInfo endpoints only if blog is public
|
2021-05-10 14:39:54 +02:00
|
|
|
if ( true === (bool) \get_option( 'blog_public', 1 ) ) {
|
2020-05-23 12:34:42 +02:00
|
|
|
require_once \dirname( __FILE__ ) . '/includes/rest/class-nodeinfo.php';
|
|
|
|
\Activitypub\Rest\NodeInfo::init();
|
|
|
|
}
|
2018-12-09 21:54:57 +01:00
|
|
|
|
2019-12-01 21:20:26 +01:00
|
|
|
require_once \dirname( __FILE__ ) . '/includes/class-admin.php';
|
2019-02-24 12:07:41 +01:00
|
|
|
\Activitypub\Admin::init();
|
2019-01-22 20:51:22 +01:00
|
|
|
|
2019-12-01 21:20:26 +01:00
|
|
|
require_once \dirname( __FILE__ ) . '/includes/class-hashtag.php';
|
2019-03-02 21:10:42 +01:00
|
|
|
\Activitypub\Hashtag::init();
|
2019-08-18 23:27:06 +02:00
|
|
|
|
2019-12-01 21:20:26 +01:00
|
|
|
require_once \dirname( __FILE__ ) . '/includes/class-debug.php';
|
2019-09-28 14:17:58 +02:00
|
|
|
\Activitypub\Debug::init();
|
|
|
|
|
2019-12-01 21:20:26 +01:00
|
|
|
require_once \dirname( __FILE__ ) . '/includes/class-health-check.php';
|
2019-09-30 07:59:19 +02:00
|
|
|
\Activitypub\Health_Check::init();
|
2020-02-21 11:11:03 +01:00
|
|
|
|
|
|
|
require_once \dirname( __FILE__ ) . '/includes/rest/class-server.php';
|
2022-01-27 13:09:11 +01:00
|
|
|
\add_filter(
|
|
|
|
'wp_rest_server_class',
|
|
|
|
function() {
|
|
|
|
return '\Activitypub\Rest\Server';
|
|
|
|
}
|
|
|
|
);
|
2021-07-23 15:46:28 +02:00
|
|
|
|
|
|
|
if ( \WP_DEBUG ) {
|
|
|
|
require_once \dirname( __FILE__ ) . '/includes/debug.php';
|
|
|
|
}
|
2018-08-18 12:35:39 +02:00
|
|
|
}
|
2020-05-12 20:30:06 +02:00
|
|
|
\add_action( 'plugins_loaded', '\Activitypub\init' );
|
2018-12-09 21:54:57 +01:00
|
|
|
|
2022-09-27 23:28:45 +02:00
|
|
|
/**
|
|
|
|
* Add plugin settings link
|
|
|
|
*/
|
2022-05-08 08:33:47 +02:00
|
|
|
function plugin_settings_link( $actions ) {
|
2022-05-09 15:21:59 +02:00
|
|
|
$settings_link[] = \sprintf(
|
2022-05-08 08:50:39 +02:00
|
|
|
'<a href="%1s">%2s</a>',
|
|
|
|
\menu_page_url( 'activitypub', false ),
|
2022-05-09 15:24:12 +02:00
|
|
|
\__( 'Settings', 'activitypub' )
|
2022-09-27 23:28:45 +02:00
|
|
|
);
|
2022-05-08 08:50:39 +02:00
|
|
|
|
2022-05-08 08:33:47 +02:00
|
|
|
return \array_merge( $settings_link, $actions );
|
2022-09-27 23:28:45 +02:00
|
|
|
}
|
2022-05-09 15:21:59 +02:00
|
|
|
\add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), '\Activitypub\plugin_settings_link' );
|
2022-09-27 23:28:45 +02:00
|
|
|
|
2018-12-09 21:54:57 +01:00
|
|
|
/**
|
|
|
|
* Add rewrite rules
|
|
|
|
*/
|
2019-02-24 12:07:41 +01:00
|
|
|
function add_rewrite_rules() {
|
2019-09-27 10:12:59 +02:00
|
|
|
if ( ! \class_exists( 'Webfinger' ) ) {
|
|
|
|
\add_rewrite_rule( '^.well-known/webfinger', 'index.php?rest_route=/activitypub/1.0/webfinger', 'top' );
|
2018-12-09 21:54:57 +01:00
|
|
|
}
|
|
|
|
|
2019-09-27 10:12:59 +02:00
|
|
|
if ( ! \class_exists( 'Nodeinfo' ) ) {
|
|
|
|
\add_rewrite_rule( '^.well-known/nodeinfo', 'index.php?rest_route=/activitypub/1.0/nodeinfo/discovery', 'top' );
|
|
|
|
\add_rewrite_rule( '^.well-known/x-nodeinfo2', 'index.php?rest_route=/activitypub/1.0/nodeinfo2', 'top' );
|
2018-12-09 21:54:57 +01:00
|
|
|
}
|
|
|
|
}
|
2019-09-27 10:12:59 +02:00
|
|
|
\add_action( 'init', '\Activitypub\add_rewrite_rules', 1 );
|
2018-12-09 21:54:57 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Flush rewrite rules;
|
|
|
|
*/
|
2019-02-24 12:07:41 +01:00
|
|
|
function flush_rewrite_rules() {
|
|
|
|
\Activitypub\add_rewrite_rules();
|
2019-03-02 20:31:55 +01:00
|
|
|
\flush_rewrite_rules();
|
2018-12-09 21:54:57 +01:00
|
|
|
}
|
2019-09-27 10:12:59 +02:00
|
|
|
\register_activation_hook( __FILE__, '\Activitypub\flush_rewrite_rules' );
|
2022-09-30 01:46:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Activate plugin;
|
|
|
|
*/
|
|
|
|
function activate_plugin() {
|
2022-10-02 06:49:48 +02:00
|
|
|
if ( ! function_exists( 'get_plugin_data' ) ) {
|
2022-10-31 21:59:43 +01:00
|
|
|
require_once ABSPATH . 'wp-admin/includes/plugin.php';
|
2022-09-30 01:46:42 +02:00
|
|
|
}
|
|
|
|
$plugin_data = \get_plugin_data( __FILE__ );
|
|
|
|
\add_option( 'activitypub_version', $plugin_data['Version'] );
|
|
|
|
}
|
|
|
|
\register_activation_hook( __FILE__, '\Activitypub\activate_plugin' );
|
|
|
|
|
2019-09-27 10:12:59 +02:00
|
|
|
\register_deactivation_hook( __FILE__, '\flush_rewrite_rules' );
|
2021-09-15 17:00:20 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Only load code that needs BuddyPress to run once BP is loaded and initialized.
|
|
|
|
*/
|
|
|
|
function enable_buddypress_features() {
|
|
|
|
require_once \dirname( __FILE__ ) . '/integration/class-buddypress.php';
|
|
|
|
\Activitypub\Integration\Buddypress::init();
|
|
|
|
}
|
|
|
|
add_action( 'bp_include', '\Activitypub\enable_buddypress_features' );
|