wordpress-activitypub/includes/model/class-application-user.php

93 lines
1.6 KiB
PHP
Raw Permalink Normal View History

<?php
namespace Activitypub\Model;
use WP_Query;
use Activitypub\Signature;
2023-07-03 11:20:44 +02:00
use Activitypub\Collection\Users;
use function Activitypub\get_rest_url_by_path;
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
/**
* The User-Type
*
* @var string
*/
2023-06-28 14:22:27 +02:00
protected $type = 'Application';
/**
* If the User is discoverable.
*
* @var boolean
*/
protected $discoverable = false;
/**
* The instance actor by default must manually approve all followers.
*
* @var boolean
*/
protected $manually_approves_followers = true;
/**
* Get the User-Url.
*
* @return string The User-Url.
*/
public function get_url() {
return get_rest_url_by_path( 'application' );
}
2023-05-24 17:40:48 +02: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() {
return 'application';
}
public function get_preferred_username() {
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() {
return null;
2023-06-28 16:43:41 +02:00
}
public function get_featured() {
return null;
}
public function get_moderators() {
return null;
}
public function get_indexable() {
return false;
}
2023-12-21 10:10:55 +01:00
public function get_type() {
return $this->type;
}
}