2023-05-24 16:32:00 +02:00
|
|
|
<?php
|
|
|
|
namespace Activitypub\Model;
|
|
|
|
|
|
|
|
use WP_Query;
|
2023-06-01 11:45:07 +02:00
|
|
|
use Activitypub\Signature;
|
2023-07-03 11:20:44 +02:00
|
|
|
use Activitypub\Collection\Users;
|
2023-05-24 16:32:00 +02:00
|
|
|
|
2023-06-01 11:45:07 +02:00
|
|
|
use function Activitypub\get_rest_url_by_path;
|
|
|
|
|
2023-05-24 16:32:00 +02:00
|
|
|
class Application_User extends Blog_User {
|
|
|
|
/**
|
|
|
|
* The User-ID
|
|
|
|
*
|
|
|
|
* @var int
|
|
|
|
*/
|
2023-07-03 11:20:44 +02:00
|
|
|
protected $_id = Users::APPLICATION_USER_ID; // phpcs:ignore PSR2.Classes.PropertyDeclaration.Underscore
|
2023-05-24 16:32:00 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The User-Type
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2023-06-28 14:22:27 +02:00
|
|
|
protected $type = 'Application';
|
2023-05-24 16:32:00 +02:00
|
|
|
|
2023-09-01 18:32:56 +02:00
|
|
|
/**
|
|
|
|
* If the User is discoverable.
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
*/
|
|
|
|
protected $discoverable = false;
|
|
|
|
|
2023-05-24 16:32:00 +02:00
|
|
|
/**
|
|
|
|
* Get the User-Url.
|
|
|
|
*
|
|
|
|
* @return string The User-Url.
|
|
|
|
*/
|
|
|
|
public function get_url() {
|
2023-06-01 11:45:07 +02:00
|
|
|
return get_rest_url_by_path( 'application' );
|
2023-05-24 16:32:00 +02:00
|
|
|
}
|
2023-05-24 17:40:48 +02:00
|
|
|
|
2023-12-21 10:04:15 +01:00
|
|
|
/**
|
|
|
|
* Returns the User-URL with @-Prefix for the username.
|
|
|
|
*
|
|
|
|
* @return string The User-URL with @-Prefix for the username.
|
|
|
|
*/
|
|
|
|
public function get_alternate_url() {
|
|
|
|
return \esc_url( \trailingslashit( get_home_url() ) . '@' . $this->get_preferred_username() );
|
|
|
|
}
|
|
|
|
|
2023-05-24 17:40:48 +02:00
|
|
|
public function get_name() {
|
2023-06-01 11:45:07 +02:00
|
|
|
return 'application';
|
|
|
|
}
|
|
|
|
|
2023-09-01 18:32:56 +02:00
|
|
|
public function get_preferred_username() {
|
2023-06-01 11:45:07 +02:00
|
|
|
return $this::get_name();
|
2023-05-24 17:40:48 +02:00
|
|
|
}
|
2023-05-31 10:31:49 +02:00
|
|
|
|
2023-06-28 16:43:41 +02:00
|
|
|
public function get_followers() {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get_following() {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get_attachment() {
|
2023-09-22 09:38:59 +02:00
|
|
|
return null;
|
2023-06-28 16:43:41 +02:00
|
|
|
}
|
2023-08-09 13:07:30 +02:00
|
|
|
|
|
|
|
public function get_featured() {
|
2023-09-22 09:38:59 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get_moderators() {
|
|
|
|
return null;
|
2023-08-09 13:07:30 +02:00
|
|
|
}
|
2023-10-21 11:23:05 +02:00
|
|
|
|
|
|
|
public function get_indexable() {
|
|
|
|
return false;
|
|
|
|
}
|
2023-12-21 10:10:55 +01:00
|
|
|
|
|
|
|
public function get_type() {
|
|
|
|
return $this->type;
|
|
|
|
}
|
2023-05-24 16:32:00 +02:00
|
|
|
}
|