post_type, $post_types, true ) ) { return; } $type = false; if ( 'publish' === $new_status && 'publish' !== $old_status ) { $type = 'Create'; } elseif ( 'publish' === $new_status ) { $type = 'Update'; } elseif ( 'trash' === $new_status ) { $type = 'Delete'; } if ( ! $type ) { return; } \wp_schedule_single_event( \time(), 'activitypub_send_activity', array( $post, $type ) ); \wp_schedule_single_event( \time(), sprintf( 'activitypub_send_%s_activity', \strtolower( $type ) ), array( $post ) ); } /** * Schedule Comment Activities * * transition_comment_status() * * @param string $new_status New comment status. * @param string $old_status Old comment status. * @param WP_Comment $comment Comment object. */ public static function schedule_comment_activity( $new_status, $old_status, $comment ) { $comment = get_comment( $comment ); // Federate only approved comments. if ( ! $comment->user_id ) { return; } if ( 'approved' === $new_status && 'approved' !== $old_status ) { $type = 'Create'; } elseif ( 'approved' === $new_status ) { $type = 'Update'; \update_comment_meta( $comment->comment_ID, 'activitypub_comment_modified', time(), true ); } elseif ( 'trash' === $new_status || 'spam' === $new_status ) { $type = 'Delete'; } if ( ! $type ) { return; } \wp_schedule_single_event( \time(), 'activitypub_send_activity', array( $comment, $type ) ); \wp_schedule_single_event( \time(), sprintf( 'activitypub_send_%s_activity', \strtolower( $type ) ), array( $comment ) ); } /** * Update followers * * @return void */ public static function update_followers() { $number = 5; if ( defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON ) { $number = 50; } $followers = Followers::get_outdated_followers( $number ); foreach ( $followers as $follower ) { $meta = get_remote_metadata_by_actor( $follower->get_id(), false ); if ( empty( $meta ) || ! is_array( $meta ) || is_wp_error( $meta ) ) { Followers::add_error( $follower->get__id(), $meta ); } else { $follower->from_array( $meta ); $follower->update(); } } } /** * Cleanup followers * * @return void */ public static function cleanup_followers() { $number = 5; if ( defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON ) { $number = 50; } $followers = Followers::get_faulty_followers( $number ); foreach ( $followers as $follower ) { $meta = get_remote_metadata_by_actor( $follower->get_url(), false ); if ( is_tombstone( $meta ) ) { $follower->delete(); } elseif ( empty( $meta ) || ! is_array( $meta ) || is_wp_error( $meta ) ) { if ( $follower->count_errors() >= 5 ) { $follower->delete(); } else { Followers::add_error( $follower->get__id(), $meta ); } } else { $follower->reset_errors(); } } } /** * Schedule migration if DB-Version is not up to date. * * @return void */ public static function schedule_migration() { if ( ! \wp_next_scheduled( 'activitypub_schedule_migration' ) && ! Migration::is_latest_version() ) { \wp_schedule_single_event( \time(), 'activitypub_schedule_migration' ); } } /** * Send a profile update when relevant user meta is updated. * * @param int $meta_id Meta ID being updated. * @param int $user_id User ID being updated. * @param string $meta_key Meta key being updated. * * @return void */ public static function user_meta_update( $meta_id, $user_id, $meta_key ) { // don't bother if the user can't publish if ( ! \user_can( $user_id, 'publish_posts' ) ) { return; } // the user meta fields that affect a profile. $fields = array( 'activitypub_user_description', 'description', 'user_url', 'display_name', ); if ( in_array( $meta_key, $fields, true ) ) { self::schedule_profile_update( $user_id ); } } /** * Send a profile update when a user is updated. * * @param int $user_id User ID being updated. * * @return void */ public static function user_update( $user_id ) { // don't bother if the user can't publish if ( ! \user_can( $user_id, 'publish_posts' ) ) { return; } self::schedule_profile_update( $user_id ); } /** * Theme mods only have a dynamic filter so we fudge it like this. * @param mixed $value * @return mixed */ public static function blog_user_update( $value = null ) { self::schedule_profile_update( 0 ); return $value; } /** * Send a profile update to all followers. Gets hooked into all relevant options/meta etc. * @param int $user_id The user ID to update (Could be 0 for Blog-User). */ public static function schedule_profile_update( $user_id ) { \wp_schedule_single_event( \time(), 'activitypub_send_update_profile_activity', array( $user_id ) ); } }