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

239 lines
4.5 KiB
PHP
Raw Normal View History

<?php
namespace Activitypub\Model;
use WP_Query;
2023-05-31 10:31:49 +02:00
use Activitypub\Signature;
2023-07-03 11:20:44 +02:00
use Activitypub\Collection\Users;
use function Activitypub\is_single_user;
2023-06-28 16:43:41 +02:00
use function Activitypub\is_user_disabled;
class Blog_User extends User {
/**
* The User-ID
*
* @var int
*/
2023-07-03 11:20:44 +02:00
protected $_id = Users::BLOG_USER_ID; // phpcs:ignore PSR2.Classes.PropertyDeclaration.Underscore
/**
* The User-Type
*
* @var string
*/
2023-07-10 10:29:15 +02:00
protected $type = 'Group';
/**
* Is Account discoverable?
*
* @var boolean
*/
protected $discoverable = true;
2023-06-28 16:43:41 +02:00
public static function from_wp_user( $user_id ) {
if ( is_user_disabled( $user_id ) ) {
return new WP_Error(
'activitypub_user_not_found',
\__( 'User not found', 'activitypub' ),
array( 'status' => 404 )
);
}
$object = new static();
$object->_id = $user_id;
return $object;
}
/**
* Get the User-Name.
*
* @return string The User-Name.
*/
public function get_name() {
return \esc_html( \get_bloginfo( 'name' ) );
}
/**
* Get the User-Description.
*
* @return string The User-Description.
*/
public function get_summary() {
2023-06-14 15:02:45 +02:00
return \wpautop(
\wp_kses(
\get_bloginfo( 'description' ),
'default'
)
);
}
/**
* Get the User-Url.
*
* @return string The User-Url.
*/
public function get_url() {
return \esc_url( \trailingslashit( get_home_url() ) . '@' . $this->get_preferred_username() );
}
/**
* Returns the User-URL with @-Prefix for the username.
*
* @return string The User-URL with @-Prefix for the username.
*/
public function get_at_url() {
2023-07-05 15:32:26 +02:00
return \esc_url( \trailingslashit( get_home_url() ) . '@' . $this->get_preferred_username() );
}
2023-05-30 11:22:20 +02:00
/**
2023-07-11 14:34:11 +02:00
* Generate a default Username.
2023-05-30 11:22:20 +02:00
*
* @return string The auto-generated Username.
*/
public static function get_default_username() {
// check if domain host has a subdomain
$host = \wp_parse_url( \get_home_url(), \PHP_URL_HOST );
$host = \preg_replace( '/^www\./i', '', $host );
2023-05-30 11:22:20 +02:00
2023-07-11 14:34:11 +02:00
/**
* Filter the default blog username.
*
2023-07-14 11:29:03 +02:00
* @param string $host The default username.
2023-07-11 14:34:11 +02:00
*/
2023-07-14 11:29:03 +02:00
return apply_filters( 'activitypub_default_blog_username', $host );
2023-05-30 11:22:20 +02:00
}
2023-07-11 14:34:11 +02:00
/**
* Get the preferred User-Name.
*
* @return string The User-Name.
*/
2023-07-05 15:32:26 +02:00
public function get_preferred_username() {
2023-07-11 09:21:16 +02:00
$username = \get_option( 'activitypub_blog_user_identifier' );
if ( $username ) {
return $username;
}
2023-05-30 11:22:20 +02:00
return self::get_default_username();
}
2023-07-11 14:34:11 +02:00
/**
* Get the User-Icon.
*
* @return array|null The User-Icon.
*/
2023-07-05 15:32:26 +02:00
public function get_icon() {
$image = wp_get_attachment_image_src( get_theme_mod( 'custom_logo' ) );
if ( $image ) {
return array(
'type' => 'Image',
'url' => esc_url( $image[0] ),
);
}
return null;
}
2023-07-11 14:34:11 +02:00
/**
* Get the User-Header-Image.
*
* @return array|null The User-Header-Image.
*/
public function get_header_image() {
if ( \has_header_image() ) {
2023-07-05 15:32:26 +02:00
return array(
'type' => 'Image',
'url' => esc_url( \get_header_image() ),
);
}
return null;
}
public function get_published() {
$first_post = new WP_Query(
array(
'orderby' => 'date',
'order' => 'ASC',
'number' => 1,
)
);
if ( ! empty( $first_post->posts[0] ) ) {
$time = \strtotime( $first_post->posts[0]->post_date_gmt );
} else {
$time = \time();
}
return \gmdate( 'Y-m-d\TH:i:s\Z', $time );
}
2023-05-24 17:27:46 +02:00
public function get__public_key() {
2023-06-01 12:47:08 +02:00
$key = \get_option( 'activitypub_blog_user_public_key' );
2023-05-31 10:31:49 +02:00
if ( $key ) {
return $key;
}
$this->generate_key_pair();
2023-06-01 12:47:08 +02:00
$key = \get_option( 'activitypub_blog_user_public_key' );
2023-05-31 10:31:49 +02:00
return $key;
}
/**
2023-07-11 14:34:11 +02:00
* Get the User-Private-Key.
*
2023-05-31 10:31:49 +02:00
* @param int $user_id
*
* @return mixed
*/
public function get__private_key() {
2023-06-01 12:47:08 +02:00
$key = \get_option( 'activitypub_blog_user_private_key' );
2023-05-31 10:31:49 +02:00
if ( $key ) {
return $key;
}
$this->generate_key_pair();
2023-06-01 12:47:08 +02:00
return \get_option( 'activitypub_blog_user_private_key' );
2023-05-31 10:31:49 +02:00
}
private function generate_key_pair() {
$key_pair = Signature::generate_key_pair();
if ( ! is_wp_error( $key_pair ) ) {
2023-06-01 12:47:08 +02:00
\update_option( 'activitypub_blog_user_public_key', $key_pair['public_key'] );
\update_option( 'activitypub_blog_user_private_key', $key_pair['private_key'] );
2023-05-31 10:31:49 +02:00
}
2023-05-24 17:27:46 +02:00
}
2023-06-28 16:43:41 +02:00
public function get_attachment() {
return array();
}
public function get_canonical_url() {
return \home_url();
}
/**
* Get the type of the object.
*
* If the Blog is in "single user" mode, return "Person" insted of "Group".
*
* @return string The type of the object.
*/
public function get_type() {
if ( is_single_user() ) {
return 'Person';
} else {
return $this->type;
}
}
}