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

210 lines
4 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;
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';
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() {
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
/**
* Generate and save a default Username.
*
* @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
$host_parts = \explode( '.', $host );
if ( \count( $host_parts ) <= 2 && strlen( $host ) <= 15 ) {
return $host;
}
// check blog title
$blog_title = \get_bloginfo( 'name' );
$blog_title = \sanitize_title( $blog_title );
if ( strlen( $blog_title ) <= 15 ) {
return $blog_title;
}
$default_identifier = array(
'feed',
'all',
'everyone',
'authors',
'follow',
'posts',
);
// get random item of $default_identifier
$default = $default_identifier[ \array_rand( $default_identifier ) ];
return $default;
}
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-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;
}
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;
}
/**
* @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();
}
}