Remove deprecated classes (#604)
This commit is contained in:
parent
431c4a2676
commit
77c508059b
4 changed files with 13 additions and 166 deletions
|
@ -3,7 +3,7 @@
|
||||||
**Tags:** OStatus, fediverse, activitypub, activitystream
|
**Tags:** OStatus, fediverse, activitypub, activitystream
|
||||||
**Requires at least:** 4.7
|
**Requires at least:** 4.7
|
||||||
**Tested up to:** 6.4
|
**Tested up to:** 6.4
|
||||||
**Stable tag:** 1.2.0
|
**Stable tag:** 1.3.0
|
||||||
**Requires PHP:** 5.6
|
**Requires PHP:** 5.6
|
||||||
**License:** MIT
|
**License:** MIT
|
||||||
**License URI:** http://opensource.org/licenses/MIT
|
**License URI:** http://opensource.org/licenses/MIT
|
||||||
|
@ -105,6 +105,12 @@ Where 'blog' is the path to the subdirectory at which your blog resides.
|
||||||
|
|
||||||
Project maintained on GitHub at [automattic/wordpress-activitypub](https://github.com/automattic/wordpress-activitypub).
|
Project maintained on GitHub at [automattic/wordpress-activitypub](https://github.com/automattic/wordpress-activitypub).
|
||||||
|
|
||||||
|
### 2.0.0 ###
|
||||||
|
|
||||||
|
* Removed: Deprecated Classes
|
||||||
|
* Fixed: Normalize attributes that can have mixed value types
|
||||||
|
* Added: URL support for WebFinger
|
||||||
|
|
||||||
### 1.3.0 ###
|
### 1.3.0 ###
|
||||||
|
|
||||||
* Added: Threaded-Comments support
|
* Added: Threaded-Comments support
|
||||||
|
|
|
@ -1,131 +0,0 @@
|
||||||
<?php
|
|
||||||
namespace Activitypub\Model;
|
|
||||||
|
|
||||||
use Activitypub\Transformer\Post as Post_Transformer;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* ActivityPub Post Class
|
|
||||||
*
|
|
||||||
* @author Matthias Pfefferle
|
|
||||||
*/
|
|
||||||
class Post {
|
|
||||||
/**
|
|
||||||
* The \Activitypub\Activity\Base_Object object.
|
|
||||||
*
|
|
||||||
* @var \Activitypub\Activity\Base_Object
|
|
||||||
*/
|
|
||||||
protected $object;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The WordPress Post Object.
|
|
||||||
*
|
|
||||||
* @var WP_Post
|
|
||||||
*/
|
|
||||||
private $post;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor
|
|
||||||
*
|
|
||||||
* @param WP_Post $post
|
|
||||||
* @param int $post_author
|
|
||||||
*/
|
|
||||||
// phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundAfterLastUsed, VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
|
|
||||||
public function __construct( $post, $post_author = null ) {
|
|
||||||
_deprecated_function( __CLASS__, '1.0.0', '\Activitypub\Transformer\Post' );
|
|
||||||
|
|
||||||
$this->post = $post;
|
|
||||||
$this->object = Post_Transformer::transform( $post )->to_object();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the User ID.
|
|
||||||
*
|
|
||||||
* @return int the User ID.
|
|
||||||
*/
|
|
||||||
public function get_user_id() {
|
|
||||||
return apply_filters( 'activitypub_post_user_id', $this->post->post_author, $this->post );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Converts this Object into an Array.
|
|
||||||
*
|
|
||||||
* @return array the array representation of a Post.
|
|
||||||
*/
|
|
||||||
public function to_array() {
|
|
||||||
return \apply_filters( 'activitypub_post', $this->object->to_array(), $this->post );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the Actor of this Object.
|
|
||||||
*
|
|
||||||
* @return string The URL of the Actor.
|
|
||||||
*/
|
|
||||||
public function get_actor() {
|
|
||||||
$user = User_Factory::get_by_id( $this->get_user_id() );
|
|
||||||
|
|
||||||
return $user->get_url();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Converts this Object into a JSON String
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function to_json() {
|
|
||||||
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() {
|
|
||||||
return $this->object->get_url();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the ID of an Activity Object
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function get_id() {
|
|
||||||
return $this->object->get_id();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a list of Image Attachments
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function get_attachments() {
|
|
||||||
return $this->object->get_attachment();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a list of Tags, used in the Post
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function get_tags() {
|
|
||||||
return $this->object->get_tag();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the as2 object-type for a given post
|
|
||||||
*
|
|
||||||
* @return string the object-type
|
|
||||||
*/
|
|
||||||
public function get_object_type() {
|
|
||||||
return $this->object->get_type();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the content for the ActivityPub Item.
|
|
||||||
*
|
|
||||||
* @return string the content
|
|
||||||
*/
|
|
||||||
public function get_content() {
|
|
||||||
return $this->object->get_content();
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,34 +0,0 @@
|
||||||
<?php
|
|
||||||
namespace Activitypub\Peer;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* ActivityPub Followers DB-Class
|
|
||||||
*
|
|
||||||
* @author Matthias Pfefferle
|
|
||||||
*/
|
|
||||||
class Followers {
|
|
||||||
|
|
||||||
public static function get_followers( $author_id ) {
|
|
||||||
_deprecated_function( __METHOD__, '1.0.0', '\Activitypub\Collection\Followers::get_followers' );
|
|
||||||
|
|
||||||
return \Activitypub\Collection\Followers::get_followers( $author_id );
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function count_followers( $author_id ) {
|
|
||||||
_deprecated_function( __METHOD__, '1.0.0', '\Activitypub\Collection\Followers::count_followers' );
|
|
||||||
|
|
||||||
return \Activitypub\Collection\Followers::count_followers( $author_id );
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function add_follower( $actor, $author_id ) {
|
|
||||||
_deprecated_function( __METHOD__, '1.0.0', '\Activitypub\Collection\Followers::add_follower' );
|
|
||||||
|
|
||||||
return \Activitypub\Collection\Followers::add_follower( $author_id, $actor );
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function remove_follower( $actor, $author_id ) {
|
|
||||||
_deprecated_function( __METHOD__, '1.0.0', '\Activitypub\Collection\Followers::remove_follower' );
|
|
||||||
|
|
||||||
return \Activitypub\Collection\Followers::remove_follower( $author_id, $actor );
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -105,6 +105,12 @@ Where 'blog' is the path to the subdirectory at which your blog resides.
|
||||||
|
|
||||||
Project maintained on GitHub at [automattic/wordpress-activitypub](https://github.com/automattic/wordpress-activitypub).
|
Project maintained on GitHub at [automattic/wordpress-activitypub](https://github.com/automattic/wordpress-activitypub).
|
||||||
|
|
||||||
|
= 2.0.0 =
|
||||||
|
|
||||||
|
* Removed: Deprecated Classes
|
||||||
|
* Fixed: Normalize attributes that can have mixed value types
|
||||||
|
* Added: URL support for WebFinger
|
||||||
|
|
||||||
= 1.3.0 =
|
= 1.3.0 =
|
||||||
|
|
||||||
* Added: Threaded-Comments support
|
* Added: Threaded-Comments support
|
||||||
|
|
Loading…
Reference in a new issue