get_post_author(); $activitypub_activity = new \Activitypub\Model\Activity( 'Create', \Activitypub\Model\Activity::TYPE_FULL ); $activitypub_activity->from_post( $activitypub_post->to_array() ); foreach ( \Activitypub\get_follower_inboxes( $user_id ) as $inbox => $to ) { $activitypub_activity->set_to( $to ); $activity = $activitypub_activity->to_json(); // phpcs:ignore \Activitypub\safe_remote_post( $inbox, $activity, $user_id ); } } /** * Send "update" activities. * * @param \Activitypub\Model\Post $activitypub_post */ public static function send_update_activity( $activitypub_post ) { // save permalink for delete $post_id = \url_to_postid( $activitypub_post->get_id() ); //shouldn't this go in schedule_*_activity? yeah \update_post_meta( $post_id, '_ap_deleted_slug', $activitypub_post->get_id() ); // get latest version of post $user_id = $activitypub_post->get_post_author(); $updated = \wp_date( 'Y-m-d\TH:i:s\Z', \strtotime( $activitypub_post->get_updated() ) ); $activitypub_activity = new \Activitypub\Model\Activity( 'Update', \Activitypub\Model\Activity::TYPE_FULL ); $activitypub_activity->from_post( $activitypub_post->to_array() ); foreach ( \Activitypub\get_follower_inboxes( $user_id ) as $inbox => $to ) { $activitypub_activity->set_to( $to ); $activity = $activitypub_activity->to_json(); // phpcs:ignore \Activitypub\safe_remote_post( $inbox, $activity, $user_id ); } } /** * Send "delete" activities. * * @param \Activitypub\Model\Post $activitypub_post */ public static function send_delete_activity( $activitypub_post ) { // get latest version of post $user_id = $activitypub_post->get_post_author(); $deleted = \current_time( 'Y-m-d\TH:i:s\Z', true ); $activitypub_post->set_deleted( $deleted ); $activitypub_activity = new \Activitypub\Model\Activity( 'Delete', \Activitypub\Model\Activity::TYPE_FULL ); $activitypub_activity->from_post( $activitypub_post->to_array() ); $activitypub_activity->set_deleted( $deleted ); foreach ( \Activitypub\get_follower_inboxes( $user_id ) as $inbox => $to ) { $activitypub_activity->set_to( $to ); $activity = $activitypub_activity->to_json(); // phpcs:ignore \Activitypub\safe_remote_post( $inbox, $activity, $user_id ); } } /** * Send "create" activities for comments * * @param \Activitypub\Model\Comment $activitypub_comment */ public static function send_comment_activity( $activitypub_comment_id ) { //ONLY FOR LOCAL USERS ? $activitypub_comment = \get_comment( $activitypub_comment_id ); $user_id = $activitypub_comment->user_id; $replyto = get_comment_meta( $activitypub_comment->comment_parent, 'comment_author_url', true );// must include in replyto $mentions = get_comment_meta( $activitypub_comment_id, 'mentions', true );//might be tagged $activitypub_comment = new \Activitypub\Model\Comment( $activitypub_comment ); $activitypub_activity = new \Activitypub\Model\Activity( 'Create', \Activitypub\Model\Activity::TYPE_FULL ); $activitypub_activity->from_comment( $activitypub_comment->to_array() ); foreach ( \Activitypub\get_mentioned_inboxes( $mentions ) as $inbox => $to ) { $activitypub_activity->set_to( $to );//all users at shared inbox $activity = $activitypub_activity->to_json(); // phpcs:ignore \Activitypub\safe_remote_post( $inbox, $activity, $user_id ); } //will this reset the activities? foreach ( \Activitypub\get_follower_inboxes( $user_id ) as $inbox => $cc ) { $activitypub_activity->set_cc( $cc );//set_cc $activity = $activitypub_activity->to_json(); // phpcs:ignore // Send reply to followers, skip if replying to followers (avoid duplicate replies) if( in_array( $cc, $replyto ) || in_array( $cc, $mentions ) ) { continue; } \Activitypub\safe_remote_post( $inbox, $activity, $user_id ); } } /** * Forward replies to followers * * @param \Activitypub\Model\Comment $activitypub_comment */ public static function inbox_forward_activity( $activitypub_comment_id ) { $activitypub_comment = \get_comment( $activitypub_comment_id ); //original author should NOT recieve a copy of ther own post $replyto[] = $activitypub_comment->comment_author_url; $activitypub_activity = unserialize( get_comment_meta( $activitypub_comment->comment_ID, 'ap_object', true ) ); //will be forwarded to the parent_comment->author or post_author followers collection //TODO verify that ... what? $parent_comment = \get_comment( $activitypub_comment->comment_parent ); if ( !is_null( $parent_comment ) ) { $user_id = $parent_comment->user_id; } else { $original_post = \get_post( $activitypub_comment->comment_post_ID ); $user_id = $original_post->post_author; } //remove user_id from $activitypub_comment unset($activitypub_activity['user_id']); foreach ( \Activitypub\get_follower_inboxes( $user_id ) as $inbox => $to ) { //Forward reply to followers, skip sender if( in_array( $to, $replyto ) || ( $replyto == $to ) ) { continue; } $activitypub_activity['object']['to'] = $to; $activitypub_activity['to'] = $to; $activity = \wp_json_encode( $activitypub_activity, JSON_HEX_TAG | JSON_HEX_AMP | JSON_HEX_QUOT ); \Activitypub\forward_remote_post( $inbox, $activity, $user_id ); } } /** * Send "delete" activities. * * @param \Activitypub\Model\Comment $activitypub_comment */ public static function send_delete_comment_activity( $activitypub_comment_id ) { // get comment $activitypub_comment = \get_comment( $activitypub_comment_id ); $user_id = $activitypub_comment->user_id; // Prevent sending received/anonymous comments if ( ! $user_id ) { return; } $deleted = \wp_date( 'Y-m-d\TH:i:s\Z', \strtotime( $activitypub_comment->comment_date_gmt ) ); $activitypub_comment = new \Activitypub\Model\Comment( $activitypub_comment ); $activitypub_comment->set_deleted( $deleted ); $activitypub_activity = new \Activitypub\Model\Activity( 'Delete', \Activitypub\Model\Activity::TYPE_FULL ); $activitypub_activity->from_comment( $activitypub_comment->to_array() ); $activitypub_activity->set_deleted( $deleted ); foreach ( \Activitypub\get_follower_inboxes( $user_id ) as $inbox => $to ) { $activitypub_activity->set_to( $to ); $activity = $activitypub_activity->to_json(); // phpcs:ignore \Activitypub\safe_remote_post( $inbox, $activity, $user_id ); } } }