$value ) { WP_CLI::line( $key . ': ' . $value ); } } /** * Remove the entire blog from the Fediverse. * * ## EXAMPLES * * $ wp activitypub self-destruct * * @param array|null $args The arguments. * @param array|null $assoc_args The associative arguments. * * @return void */ public function self_destruct( $args, $assoc_args ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable WP_CLI::warning( __( 'Self-Destructing is not implemented yet.', 'activitypub' ) ); } /** * Delete or Update a Post, Page, Custom Post Type or Attachment. * * ## OPTIONS * * * : The action to perform. Either `delete` or `update`. * --- * options: * - delete * - update * --- * * * : The id of the Post, Page, Custom Post Type or Attachment. * * ## EXAMPLES * * $ wp activitypub post delete 1 * * @synopsis * * @param array|null $args The arguments. */ public function post( $args ) { $post = get_post( $args[1] ); if ( ! $post ) { WP_CLI::error( __( 'Post not found.', 'activitypub' ) ); } switch ( $args[0] ) { case 'delete': // translators: %s is the ID of the post. WP_CLI::confirm( sprintf( __( 'Do you really want to delete the (Custom) Post with the ID: %s', 'activitypub' ), $args[1] ) ); Scheduler::schedule_post_activity( 'trash', 'publish', $args[1] ); WP_CLI::success( __( '"Delete"-Activity is queued.', 'activitypub' ) ); break; case 'update': Scheduler::schedule_post_activity( 'publish', 'publish', $args[1] ); WP_CLI::success( __( '"Update"-Activity is queued.', 'activitypub' ) ); break; default: WP_CLI::error( __( 'Unknown action.', 'activitypub' ) ); } } /** * Delete or Update a Comment. * * ## OPTIONS * * * : The action to perform. Either `delete` or `update`. * --- * options: * - delete * - update * --- * * * : The id of the Comment. * * ## EXAMPLES * * $ wp activitypub comment delete 1 * * @synopsis * * @param array|null $args The arguments. */ public function comment( $args ) { $comment = get_comment( $args[1] ); if ( ! $comment ) { WP_CLI::error( __( 'Comment not found.', 'activitypub' ) ); } if ( was_comment_received( $comment ) ) { WP_CLI::error( __( 'This comment was received via ActivityPub and cannot be deleted or updated.', 'activitypub' ) ); } switch ( $args[0] ) { case 'delete': // translators: %s is the ID of the comment. WP_CLI::confirm( sprintf( __( 'Do you really want to delete the Comment with the ID: %s', 'activitypub' ), $args[1] ) ); Scheduler::schedule_comment_activity( 'trash', 'approved', $args[1] ); WP_CLI::success( __( '"Delete"-Activity is queued.', 'activitypub' ) ); break; case 'update': Scheduler::schedule_comment_activity( 'approved', 'approved', $args[1] ); WP_CLI::success( __( '"Update"-Activity is queued.', 'activitypub' ) ); break; default: WP_CLI::error( __( 'Unknown action.', 'activitypub' ) ); } } }