216 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			216 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?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.
 | 
						|
 * Version: 1.0.7
 | 
						|
 * Author: Matthias Pfefferle & Automattic
 | 
						|
 * Author URI: https://automattic.com/
 | 
						|
 * License: MIT
 | 
						|
 * License URI: http://opensource.org/licenses/MIT
 | 
						|
 * Requires PHP: 5.6
 | 
						|
 * Text Domain: activitypub
 | 
						|
 * Domain Path: /languages
 | 
						|
 */
 | 
						|
 | 
						|
namespace Activitypub;
 | 
						|
 | 
						|
use function Activitypub\is_blog_public;
 | 
						|
use function Activitypub\site_supports_blocks;
 | 
						|
 | 
						|
require_once __DIR__ . '/includes/compat.php';
 | 
						|
require_once __DIR__ . '/includes/functions.php';
 | 
						|
 | 
						|
/**
 | 
						|
 * Initialize the plugin constants.
 | 
						|
 */
 | 
						|
\defined( 'ACTIVITYPUB_REST_NAMESPACE' ) || \define( 'ACTIVITYPUB_REST_NAMESPACE', 'activitypub/1.0' );
 | 
						|
\defined( 'ACTIVITYPUB_EXCERPT_LENGTH' ) || \define( 'ACTIVITYPUB_EXCERPT_LENGTH', 400 );
 | 
						|
\defined( 'ACTIVITYPUB_SHOW_PLUGIN_RECOMMENDATIONS' ) || \define( 'ACTIVITYPUB_SHOW_PLUGIN_RECOMMENDATIONS', true );
 | 
						|
\defined( 'ACTIVITYPUB_MAX_IMAGE_ATTACHMENTS' ) || \define( 'ACTIVITYPUB_MAX_IMAGE_ATTACHMENTS', 3 );
 | 
						|
\defined( 'ACTIVITYPUB_HASHTAGS_REGEXP' ) || \define( 'ACTIVITYPUB_HASHTAGS_REGEXP', '(?:(?<=\s)|(?<=<p>)|(?<=<br>)|^)#([A-Za-z0-9_]+)(?:(?=\s|[[:punct:]]|$))' );
 | 
						|
\defined( 'ACTIVITYPUB_USERNAME_REGEXP' ) || \define( 'ACTIVITYPUB_USERNAME_REGEXP', '(?:([A-Za-z0-9_-]+)@((?:[A-Za-z0-9_-]+\.)+[A-Za-z]+))' );
 | 
						|
\defined( 'ACTIVITYPUB_CUSTOM_POST_CONTENT' ) || \define( 'ACTIVITYPUB_CUSTOM_POST_CONTENT', "<strong>[ap_title]</strong>\n\n[ap_content]\n\n[ap_hashtags]\n\n[ap_shortlink]" );
 | 
						|
\defined( 'ACTIVITYPUB_AUTHORIZED_FETCH' ) || \define( 'ACTIVITYPUB_AUTHORIZED_FETCH', false );
 | 
						|
\defined( 'ACTIVITYPUB_DISABLE_REWRITES' ) || \define( 'ACTIVITYPUB_DISABLE_REWRITES', false );
 | 
						|
 | 
						|
\define( 'ACTIVITYPUB_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
 | 
						|
\define( 'ACTIVITYPUB_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
 | 
						|
\define( 'ACTIVITYPUB_PLUGIN_FILE', plugin_dir_path( __FILE__ ) . '/' . basename( __FILE__ ) );
 | 
						|
\define( 'ACTIVITYPUB_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
 | 
						|
 | 
						|
/**
 | 
						|
 * Initialize REST routes.
 | 
						|
 */
 | 
						|
function rest_init() {
 | 
						|
	Rest\Users::init();
 | 
						|
	Rest\Outbox::init();
 | 
						|
	Rest\Inbox::init();
 | 
						|
	Rest\Followers::init();
 | 
						|
	Rest\Following::init();
 | 
						|
	Rest\Webfinger::init();
 | 
						|
	Rest\Server::init();
 | 
						|
	Rest\Collection::init();
 | 
						|
 | 
						|
	// load NodeInfo endpoints only if blog is public
 | 
						|
	if ( is_blog_public() ) {
 | 
						|
		Rest\NodeInfo::init();
 | 
						|
	}
 | 
						|
}
 | 
						|
\add_action( 'rest_api_init', __NAMESPACE__ . '\rest_init' );
 | 
						|
 | 
						|
/**
 | 
						|
 * Initialize plugin.
 | 
						|
 */
 | 
						|
function plugin_init() {
 | 
						|
	\add_action( 'init', array( __NAMESPACE__ . '\Migration', 'init' ) );
 | 
						|
	\add_action( 'init', array( __NAMESPACE__ . '\Activitypub', 'init' ) );
 | 
						|
	\add_action( 'init', array( __NAMESPACE__ . '\Activity_Dispatcher', 'init' ) );
 | 
						|
	\add_action( 'init', array( __NAMESPACE__ . '\Collection\Followers', 'init' ) );
 | 
						|
	\add_action( 'init', array( __NAMESPACE__ . '\Admin', 'init' ) );
 | 
						|
	\add_action( 'init', array( __NAMESPACE__ . '\Hashtag', 'init' ) );
 | 
						|
	\add_action( 'init', array( __NAMESPACE__ . '\Shortcodes', 'init' ) );
 | 
						|
	\add_action( 'init', array( __NAMESPACE__ . '\Mention', 'init' ) );
 | 
						|
	\add_action( 'init', array( __NAMESPACE__ . '\Health_Check', 'init' ) );
 | 
						|
	\add_action( 'init', array( __NAMESPACE__ . '\Scheduler', 'init' ) );
 | 
						|
 | 
						|
	if ( site_supports_blocks() ) {
 | 
						|
		\add_action( 'init', array( __NAMESPACE__ . '\Blocks', 'init' ) );
 | 
						|
	}
 | 
						|
 | 
						|
	$debug_file = __DIR__ . '/includes/debug.php';
 | 
						|
	if ( \WP_DEBUG && file_exists( $debug_file ) && is_readable( $debug_file ) ) {
 | 
						|
		require_once $debug_file;
 | 
						|
		Debug::init();
 | 
						|
	}
 | 
						|
 | 
						|
	require_once __DIR__ . '/integration/class-webfinger.php';
 | 
						|
	Integration\Webfinger::init();
 | 
						|
 | 
						|
	require_once __DIR__ . '/integration/class-nodeinfo.php';
 | 
						|
	Integration\Nodeinfo::init();
 | 
						|
}
 | 
						|
\add_action( 'plugins_loaded', __NAMESPACE__ . '\plugin_init' );
 | 
						|
 | 
						|
/**
 | 
						|
 * Class Autoloader
 | 
						|
 */
 | 
						|
\spl_autoload_register(
 | 
						|
	function ( $full_class ) {
 | 
						|
		$base_dir = __DIR__ . '/includes/';
 | 
						|
		$base     = 'Activitypub\\';
 | 
						|
 | 
						|
		if ( strncmp( $full_class, $base, strlen( $base ) ) === 0 ) {
 | 
						|
			$maybe_uppercase = str_replace( $base, '', $full_class );
 | 
						|
			$class = strtolower( $maybe_uppercase );
 | 
						|
			// All classes should be capitalized. If this is instead looking for a lowercase method, we ignore that.
 | 
						|
			if ( $maybe_uppercase === $class ) {
 | 
						|
				return;
 | 
						|
			}
 | 
						|
 | 
						|
			if ( false !== strpos( $class, '\\' ) ) {
 | 
						|
				$parts    = explode( '\\', $class );
 | 
						|
				$class    = array_pop( $parts );
 | 
						|
				$sub_dir  = implode( '/', $parts );
 | 
						|
				$base_dir = $base_dir . $sub_dir . '/';
 | 
						|
			}
 | 
						|
 | 
						|
			$filename = 'class-' . strtr( $class, '_', '-' );
 | 
						|
			$file     = $base_dir . $filename . '.php';
 | 
						|
 | 
						|
			if ( file_exists( $file ) && is_readable( $file ) ) {
 | 
						|
				require_once $file;
 | 
						|
			} else {
 | 
						|
				// translators: %s is the class name
 | 
						|
				\wp_die( sprintf( esc_html__( 'Required class not found or not readable: %s', 'activitypub' ), esc_html( $full_class ) ) );
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
);
 | 
						|
 | 
						|
/**
 | 
						|
 * Add plugin settings link
 | 
						|
 */
 | 
						|
function plugin_settings_link( $actions ) {
 | 
						|
	$settings_link = array();
 | 
						|
	$settings_link[] = \sprintf(
 | 
						|
		'<a href="%1s">%2s</a>',
 | 
						|
		\menu_page_url( 'activitypub', false ),
 | 
						|
		\__( 'Settings', 'activitypub' )
 | 
						|
	);
 | 
						|
 | 
						|
	return \array_merge( $settings_link, $actions );
 | 
						|
}
 | 
						|
\add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), __NAMESPACE__ . '\plugin_settings_link' );
 | 
						|
 | 
						|
\register_activation_hook(
 | 
						|
	__FILE__,
 | 
						|
	array(
 | 
						|
		__NAMESPACE__ . '\Activitypub',
 | 
						|
		'activate',
 | 
						|
	)
 | 
						|
);
 | 
						|
 | 
						|
\register_deactivation_hook(
 | 
						|
	__FILE__,
 | 
						|
	array(
 | 
						|
		__NAMESPACE__ . '\Activitypub',
 | 
						|
		'deactivate',
 | 
						|
	)
 | 
						|
);
 | 
						|
 | 
						|
\register_uninstall_hook(
 | 
						|
	__FILE__,
 | 
						|
	array(
 | 
						|
		__NAMESPACE__ . '\Activitypub',
 | 
						|
		'uninstall',
 | 
						|
	)
 | 
						|
);
 | 
						|
 | 
						|
/**
 | 
						|
 * Only load code that needs BuddyPress to run once BP is loaded and initialized.
 | 
						|
 */
 | 
						|
add_action(
 | 
						|
	'bp_include',
 | 
						|
	function() {
 | 
						|
		require_once __DIR__ . '/integration/class-buddypress.php';
 | 
						|
		Integration\Buddypress::init();
 | 
						|
	},
 | 
						|
	0
 | 
						|
);
 | 
						|
 | 
						|
/**
 | 
						|
 * `get_plugin_data` wrapper
 | 
						|
 *
 | 
						|
 * @return array The plugin metadata array
 | 
						|
 */
 | 
						|
function get_plugin_meta( $default_headers = array() ) {
 | 
						|
	if ( ! $default_headers ) {
 | 
						|
		$default_headers = array(
 | 
						|
			'Name'        => 'Plugin Name',
 | 
						|
			'PluginURI'   => 'Plugin URI',
 | 
						|
			'Version'     => 'Version',
 | 
						|
			'Description' => 'Description',
 | 
						|
			'Author'      => 'Author',
 | 
						|
			'AuthorURI'   => 'Author URI',
 | 
						|
			'TextDomain'  => 'Text Domain',
 | 
						|
			'DomainPath'  => 'Domain Path',
 | 
						|
			'Network'     => 'Network',
 | 
						|
			'RequiresWP'  => 'Requires at least',
 | 
						|
			'RequiresPHP' => 'Requires PHP',
 | 
						|
			'UpdateURI'   => 'Update URI',
 | 
						|
		);
 | 
						|
	}
 | 
						|
 | 
						|
	return \get_file_data( __FILE__, $default_headers, 'plugin' );
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * Plugin Version Number used for caching.
 | 
						|
 */
 | 
						|
function get_plugin_version() {
 | 
						|
	$meta = get_plugin_meta( array( 'Version' => 'Version' ) );
 | 
						|
 | 
						|
	return $meta['Version'];
 | 
						|
}
 |