2015-08-26 06:58:21 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2015-09-22 14:54:26 +02:00
|
|
|
* User API: WP_Roles class
|
|
|
|
*
|
|
|
|
* @package WordPress
|
2015-09-22 15:46:25 +02:00
|
|
|
* @subpackage Users
|
2015-09-22 14:54:26 +02:00
|
|
|
* @since 4.4.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Core class used to implement a user roles API.
|
2015-08-26 06:58:21 +02:00
|
|
|
*
|
|
|
|
* The role option is simple, the structure is organized by role name that store
|
|
|
|
* the name in value of the 'name' key. The capabilities are stored as an array
|
|
|
|
* in the value of the 'capability' key.
|
|
|
|
*
|
|
|
|
* array (
|
2017-12-01 00:11:00 +01:00
|
|
|
* 'rolename' => array (
|
|
|
|
* 'name' => 'rolename',
|
|
|
|
* 'capabilities' => array()
|
|
|
|
* )
|
2015-08-26 06:58:21 +02:00
|
|
|
* )
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
*/
|
|
|
|
class WP_Roles {
|
|
|
|
/**
|
|
|
|
* List of roles and capabilities.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
2018-03-22 19:56:33 +01:00
|
|
|
* @var array[]
|
2015-08-26 06:58:21 +02:00
|
|
|
*/
|
|
|
|
public $roles;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List of the role objects.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
2018-03-22 19:56:33 +01:00
|
|
|
* @var WP_Role[]
|
2015-08-26 06:58:21 +02:00
|
|
|
*/
|
|
|
|
public $role_objects = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List of role names.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
2018-03-22 19:56:33 +01:00
|
|
|
* @var string[]
|
2015-08-26 06:58:21 +02:00
|
|
|
*/
|
|
|
|
public $role_names = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Option name for storing role list.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $role_key;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether to use the database for retrieval and storage.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public $use_db = true;
|
|
|
|
|
2017-09-27 23:44:44 +02:00
|
|
|
/**
|
|
|
|
* The site ID the roles are initialized for.
|
|
|
|
*
|
|
|
|
* @since 4.9.0
|
|
|
|
* @var int
|
|
|
|
*/
|
|
|
|
protected $site_id = 0;
|
|
|
|
|
2015-08-26 06:58:21 +02:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
2018-02-09 17:55:31 +01:00
|
|
|
* @since 4.9.0 The `$site_id` argument was added.
|
2017-09-27 23:44:44 +02:00
|
|
|
*
|
|
|
|
* @global array $wp_user_roles Used to set the 'roles' property value.
|
|
|
|
*
|
|
|
|
* @param int $site_id Site ID to initialize roles for. Default is the current site.
|
2015-08-26 06:58:21 +02:00
|
|
|
*/
|
2017-09-27 23:44:44 +02:00
|
|
|
public function __construct( $site_id = null ) {
|
|
|
|
global $wp_user_roles;
|
|
|
|
|
|
|
|
$this->use_db = empty( $wp_user_roles );
|
|
|
|
|
|
|
|
$this->for_site( $site_id );
|
2015-08-26 06:58:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-05-13 20:41:31 +02:00
|
|
|
* Make private/protected methods readable for backward compatibility.
|
2015-08-26 06:58:21 +02:00
|
|
|
*
|
|
|
|
* @since 4.0.0
|
|
|
|
*
|
2020-07-23 22:01:04 +02:00
|
|
|
* @param string $name Method to call.
|
|
|
|
* @param array $arguments Arguments to pass when calling.
|
2015-08-26 06:58:21 +02:00
|
|
|
* @return mixed|false Return value of the callback, false otherwise.
|
|
|
|
*/
|
|
|
|
public function __call( $name, $arguments ) {
|
|
|
|
if ( '_init' === $name ) {
|
2019-09-15 13:53:56 +02:00
|
|
|
return $this->_init( ...$arguments );
|
2015-08-26 06:58:21 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set up the object properties.
|
|
|
|
*
|
|
|
|
* The role key is set to the current prefix for the $wpdb object with
|
|
|
|
* 'user_roles' appended. If the $wp_user_roles global is set, then it will
|
|
|
|
* be used and the role option will not be updated or used.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
2017-09-27 23:44:44 +02:00
|
|
|
* @deprecated 4.9.0 Use WP_Roles::for_site()
|
2015-08-26 06:58:21 +02:00
|
|
|
*/
|
|
|
|
protected function _init() {
|
2017-09-27 23:44:44 +02:00
|
|
|
_deprecated_function( __METHOD__, '4.9.0', 'WP_Roles::for_site()' );
|
2016-10-10 08:38:31 +02:00
|
|
|
|
2017-09-27 23:44:44 +02:00
|
|
|
$this->for_site();
|
2015-08-26 06:58:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reinitialize the object
|
|
|
|
*
|
|
|
|
* Recreates the role objects. This is typically called only by switch_to_blog()
|
2016-01-28 04:35:27 +01:00
|
|
|
* after switching wpdb to a new site ID.
|
2015-08-26 06:58:21 +02:00
|
|
|
*
|
|
|
|
* @since 3.5.0
|
2017-09-27 23:44:44 +02:00
|
|
|
* @deprecated 4.7.0 Use WP_Roles::for_site()
|
2015-08-26 06:58:21 +02:00
|
|
|
*/
|
|
|
|
public function reinit() {
|
2017-09-27 23:44:44 +02:00
|
|
|
_deprecated_function( __METHOD__, '4.7.0', 'WP_Roles::for_site()' );
|
|
|
|
|
|
|
|
$this->for_site();
|
2015-08-26 06:58:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add role name with capabilities to list.
|
|
|
|
*
|
|
|
|
* Updates the list of roles, if the role doesn't already exist.
|
|
|
|
*
|
|
|
|
* The capabilities are defined in the following format `array( 'read' => true );`
|
|
|
|
* To explicitly deny a role a capability you set the value for that capability to false.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
*
|
2019-10-26 23:09:04 +02:00
|
|
|
* @param string $role Role name.
|
2015-08-26 06:58:21 +02:00
|
|
|
* @param string $display_name Role display name.
|
2019-10-26 23:09:04 +02:00
|
|
|
* @param bool[] $capabilities List of capabilities keyed by the capability name,
|
|
|
|
* e.g. array( 'edit_posts' => true, 'delete_posts' => false ).
|
2015-08-26 06:58:21 +02:00
|
|
|
* @return WP_Role|void WP_Role object, if role is added.
|
|
|
|
*/
|
|
|
|
public function add_role( $role, $display_name, $capabilities = array() ) {
|
2015-09-09 05:42:25 +02:00
|
|
|
if ( empty( $role ) || isset( $this->roles[ $role ] ) ) {
|
2015-08-26 06:58:21 +02:00
|
|
|
return;
|
2015-09-09 05:42:25 +02:00
|
|
|
}
|
2015-08-26 06:58:21 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->roles[ $role ] = array(
|
|
|
|
'name' => $display_name,
|
|
|
|
'capabilities' => $capabilities,
|
|
|
|
);
|
|
|
|
if ( $this->use_db ) {
|
2015-08-26 06:58:21 +02:00
|
|
|
update_option( $this->role_key, $this->roles );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
|
|
|
$this->role_objects[ $role ] = new WP_Role( $role, $capabilities );
|
|
|
|
$this->role_names[ $role ] = $display_name;
|
|
|
|
return $this->role_objects[ $role ];
|
2015-08-26 06:58:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove role by name.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
*
|
|
|
|
* @param string $role Role name.
|
|
|
|
*/
|
|
|
|
public function remove_role( $role ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! isset( $this->role_objects[ $role ] ) ) {
|
2015-08-26 06:58:21 +02:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2015-08-26 06:58:21 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
unset( $this->role_objects[ $role ] );
|
|
|
|
unset( $this->role_names[ $role ] );
|
|
|
|
unset( $this->roles[ $role ] );
|
2015-08-26 06:58:21 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $this->use_db ) {
|
2015-08-26 06:58:21 +02:00
|
|
|
update_option( $this->role_key, $this->roles );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2015-08-26 06:58:21 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( get_option( 'default_role' ) == $role ) {
|
2015-08-26 06:58:21 +02:00
|
|
|
update_option( 'default_role', 'subscriber' );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2015-08-26 06:58:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add capability to role.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
*
|
2020-07-23 22:01:04 +02:00
|
|
|
* @param string $role Role name.
|
|
|
|
* @param string $cap Capability name.
|
|
|
|
* @param bool $grant Optional. Whether role is capable of performing capability.
|
|
|
|
* Default true.
|
2015-08-26 06:58:21 +02:00
|
|
|
*/
|
|
|
|
public function add_cap( $role, $cap, $grant = true ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! isset( $this->roles[ $role ] ) ) {
|
2015-08-26 06:58:21 +02:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2015-08-26 06:58:21 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->roles[ $role ]['capabilities'][ $cap ] = $grant;
|
|
|
|
if ( $this->use_db ) {
|
2015-08-26 06:58:21 +02:00
|
|
|
update_option( $this->role_key, $this->roles );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2015-08-26 06:58:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove capability from role.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
*
|
|
|
|
* @param string $role Role name.
|
2020-06-28 13:49:02 +02:00
|
|
|
* @param string $cap Capability name.
|
2015-08-26 06:58:21 +02:00
|
|
|
*/
|
|
|
|
public function remove_cap( $role, $cap ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! isset( $this->roles[ $role ] ) ) {
|
2015-08-26 06:58:21 +02:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2015-08-26 06:58:21 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
unset( $this->roles[ $role ]['capabilities'][ $cap ] );
|
|
|
|
if ( $this->use_db ) {
|
2015-08-26 06:58:21 +02:00
|
|
|
update_option( $this->role_key, $this->roles );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2015-08-26 06:58:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve role object by name.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
*
|
|
|
|
* @param string $role Role name.
|
|
|
|
* @return WP_Role|null WP_Role object if found, null if the role does not exist.
|
|
|
|
*/
|
|
|
|
public function get_role( $role ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( isset( $this->role_objects[ $role ] ) ) {
|
|
|
|
return $this->role_objects[ $role ];
|
|
|
|
} else {
|
2015-08-26 06:58:21 +02:00
|
|
|
return null;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2015-08-26 06:58:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve list of role names.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
*
|
2018-03-22 19:56:33 +01:00
|
|
|
* @return string[] List of role names.
|
2015-08-26 06:58:21 +02:00
|
|
|
*/
|
|
|
|
public function get_names() {
|
|
|
|
return $this->role_names;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether role name is currently in the list of available roles.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
*
|
|
|
|
* @param string $role Role name to look up.
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function is_role( $role ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
return isset( $this->role_names[ $role ] );
|
2015-08-26 06:58:21 +02:00
|
|
|
}
|
2017-09-27 23:44:44 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes all of the available roles.
|
|
|
|
*
|
|
|
|
* @since 4.9.0
|
|
|
|
*/
|
|
|
|
public function init_roles() {
|
|
|
|
if ( empty( $this->roles ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->role_objects = array();
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->role_names = array();
|
2017-09-27 23:44:44 +02:00
|
|
|
foreach ( array_keys( $this->roles ) as $role ) {
|
|
|
|
$this->role_objects[ $role ] = new WP_Role( $role, $this->roles[ $role ]['capabilities'] );
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->role_names[ $role ] = $this->roles[ $role ]['name'];
|
2017-09-27 23:44:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* After the roles have been initialized, allow plugins to add their own roles.
|
|
|
|
*
|
|
|
|
* @since 4.7.0
|
|
|
|
*
|
2021-07-30 21:35:58 +02:00
|
|
|
* @param WP_Roles $wp_roles A reference to the WP_Roles object.
|
2017-09-27 23:44:44 +02:00
|
|
|
*/
|
|
|
|
do_action( 'wp_roles_init', $this );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the site to operate on. Defaults to the current site.
|
|
|
|
*
|
|
|
|
* @since 4.9.0
|
|
|
|
*
|
|
|
|
* @global wpdb $wpdb WordPress database abstraction object.
|
|
|
|
*
|
|
|
|
* @param int $site_id Site ID to initialize roles for. Default is the current site.
|
|
|
|
*/
|
|
|
|
public function for_site( $site_id = null ) {
|
|
|
|
global $wpdb;
|
|
|
|
|
|
|
|
if ( ! empty( $site_id ) ) {
|
|
|
|
$this->site_id = absint( $site_id );
|
|
|
|
} else {
|
|
|
|
$this->site_id = get_current_blog_id();
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->role_key = $wpdb->get_blog_prefix( $this->site_id ) . 'user_roles';
|
|
|
|
|
|
|
|
if ( ! empty( $this->roles ) && ! $this->use_db ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->roles = $this->get_roles_data();
|
|
|
|
|
|
|
|
$this->init_roles();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the ID of the site for which roles are currently initialized.
|
|
|
|
*
|
|
|
|
* @since 4.9.0
|
|
|
|
*
|
|
|
|
* @return int Site ID.
|
|
|
|
*/
|
|
|
|
public function get_site_id() {
|
|
|
|
return $this->site_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the available roles data.
|
|
|
|
*
|
|
|
|
* @since 4.9.0
|
|
|
|
*
|
|
|
|
* @global array $wp_user_roles Used to set the 'roles' property value.
|
|
|
|
*
|
|
|
|
* @return array Roles array.
|
|
|
|
*/
|
|
|
|
protected function get_roles_data() {
|
|
|
|
global $wp_user_roles;
|
|
|
|
|
|
|
|
if ( ! empty( $wp_user_roles ) ) {
|
|
|
|
return $wp_user_roles;
|
|
|
|
}
|
|
|
|
|
2020-02-09 17:55:09 +01:00
|
|
|
if ( is_multisite() && get_current_blog_id() != $this->site_id ) {
|
2017-09-27 23:44:44 +02:00
|
|
|
remove_action( 'switch_blog', 'wp_switch_roles_and_user', 1 );
|
|
|
|
|
|
|
|
$roles = get_blog_option( $this->site_id, $this->role_key, array() );
|
|
|
|
|
|
|
|
add_action( 'switch_blog', 'wp_switch_roles_and_user', 1, 2 );
|
|
|
|
|
|
|
|
return $roles;
|
|
|
|
}
|
|
|
|
|
|
|
|
return get_option( $this->role_key, array() );
|
|
|
|
}
|
2015-08-26 06:58:21 +02:00
|
|
|
}
|