Add URL
This commit is contained in:
parent
69aa0b9691
commit
28c077e422
1 changed files with 33 additions and 10 deletions
|
@ -28,6 +28,13 @@ class Post {
|
||||||
*/
|
*/
|
||||||
private $id;
|
private $id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The Object URL.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
private $url;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The Object Summary.
|
* The Object Summary.
|
||||||
*
|
*
|
||||||
|
@ -179,6 +186,7 @@ class Post {
|
||||||
|
|
||||||
$array = array(
|
$array = array(
|
||||||
'id' => $this->get_id(),
|
'id' => $this->get_id(),
|
||||||
|
'url' => $this->get_url(),
|
||||||
'type' => $this->get_object_type(),
|
'type' => $this->get_object_type(),
|
||||||
'published' => \gmdate( 'Y-m-d\TH:i:s\Z', \strtotime( $post->post_date_gmt ) ),
|
'published' => \gmdate( 'Y-m-d\TH:i:s\Z', \strtotime( $post->post_date_gmt ) ),
|
||||||
'attributedTo' => \get_author_posts_url( $post->post_author ),
|
'attributedTo' => \get_author_posts_url( $post->post_author ),
|
||||||
|
@ -206,6 +214,29 @@ class Post {
|
||||||
return \wp_json_encode( $this->to_array(), \JSON_HEX_TAG | \JSON_HEX_AMP | \JSON_HEX_QUOT );
|
return \wp_json_encode( $this->to_array(), \JSON_HEX_TAG | \JSON_HEX_AMP | \JSON_HEX_QUOT );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the URL of an Activity Object
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function get_url() {
|
||||||
|
if ( $this->url ) {
|
||||||
|
return $this->url;
|
||||||
|
}
|
||||||
|
|
||||||
|
$post = $this->post;
|
||||||
|
|
||||||
|
if ( 'trash' === get_post_status( $post ) ) {
|
||||||
|
$permalink = \get_post_meta( $post->url, 'activitypub_canonical_url', true );
|
||||||
|
} else {
|
||||||
|
$permalink = \get_permalink( $post );
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->url = $permalink;
|
||||||
|
|
||||||
|
return $permalink;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the ID of an Activity Object
|
* Returns the ID of an Activity Object
|
||||||
*
|
*
|
||||||
|
@ -216,17 +247,9 @@ class Post {
|
||||||
return $this->id;
|
return $this->id;
|
||||||
}
|
}
|
||||||
|
|
||||||
$post = $this->post;
|
$this->id = $this->get_url();
|
||||||
|
|
||||||
if ( 'trash' === get_post_status( $post ) ) {
|
return $this->id;
|
||||||
$permalink = \get_post_meta( $post->ID, 'activitypub_canonical_url', true );
|
|
||||||
} else {
|
|
||||||
$permalink = \get_permalink( $post );
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->id = $permalink;
|
|
||||||
|
|
||||||
return $permalink;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue