2005-07-23 18:16:03 +02:00
|
|
|
<?php
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* WordPress Roles and Capabilities.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage User
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WordPress User Roles.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* <code>
|
|
|
|
* array (
|
|
|
|
* 'rolename' => array (
|
|
|
|
* 'name' => 'rolename',
|
|
|
|
* 'capabilities' => array()
|
|
|
|
* )
|
|
|
|
* )
|
|
|
|
* </code>
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage User
|
|
|
|
*/
|
2005-07-23 18:16:03 +02:00
|
|
|
class WP_Roles {
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* List of roles and capabilities.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
* @var array
|
|
|
|
*/
|
2005-07-23 18:16:03 +02:00
|
|
|
var $roles;
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* List of the role objects.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
* @var array
|
|
|
|
*/
|
2005-07-23 18:16:03 +02:00
|
|
|
var $role_objects = array();
|
2008-09-16 23:51:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* List of role names.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
* @var array
|
|
|
|
*/
|
2005-07-23 18:16:03 +02:00
|
|
|
var $role_names = array();
|
2008-09-16 23:51:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Option name for storing role list.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
* @var string
|
|
|
|
*/
|
2005-07-23 18:16:03 +02:00
|
|
|
var $role_key;
|
2008-09-16 23:51:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether to use the database for retrieval and storage.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
* @access public
|
|
|
|
* @var bool
|
|
|
|
*/
|
2006-08-25 01:23:36 +02:00
|
|
|
var $use_db = true;
|
2005-07-23 18:16:03 +02:00
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* PHP4 Constructor - Call {@link WP_Roles::_init()} method.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*
|
|
|
|
* @return WP_Roles
|
|
|
|
*/
|
2005-07-23 18:16:03 +02:00
|
|
|
function WP_Roles() {
|
2006-03-31 01:35:42 +02:00
|
|
|
$this->_init();
|
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Setup 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
|
|
|
|
* @access protected
|
|
|
|
* @uses $wpdb Used to get the database prefix.
|
|
|
|
* @global array $wp_user_roles Used to set the 'roles' property value.
|
|
|
|
*/
|
2006-03-31 01:35:42 +02:00
|
|
|
function _init () {
|
2006-03-03 18:19:05 +01:00
|
|
|
global $wpdb;
|
2006-08-25 01:23:36 +02:00
|
|
|
global $wp_user_roles;
|
2006-03-03 21:36:40 +01:00
|
|
|
$this->role_key = $wpdb->prefix . 'user_roles';
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( ! empty( $wp_user_roles ) ) {
|
2006-08-25 01:23:36 +02:00
|
|
|
$this->roles = $wp_user_roles;
|
|
|
|
$this->use_db = false;
|
|
|
|
} else {
|
2008-08-06 22:50:30 +02:00
|
|
|
$this->roles = get_option( $this->role_key );
|
2006-08-25 01:23:36 +02:00
|
|
|
}
|
2005-07-23 18:16:03 +02:00
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( empty( $this->roles ) )
|
2005-07-23 18:16:03 +02:00
|
|
|
return;
|
|
|
|
|
2006-03-31 01:35:42 +02:00
|
|
|
$this->role_objects = array();
|
|
|
|
$this->role_names = array();
|
2008-08-06 22:50:30 +02:00
|
|
|
foreach ( (array) $this->roles as $role => $data ) {
|
|
|
|
$this->role_objects[$role] = new WP_Role( $role, $this->roles[$role]['capabilities'] );
|
2005-07-23 18:16:03 +02:00
|
|
|
$this->role_names[$role] = $this->roles[$role]['name'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Add role name with capabilities to list.
|
|
|
|
*
|
|
|
|
* Updates the list of roles, if the role doesn't already exist.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*
|
|
|
|
* @param string $role Role name.
|
|
|
|
* @param string $display_name Role display name.
|
|
|
|
* @param array $capabilities List of role capabilities.
|
|
|
|
* @return null|WP_Role WP_Role object if role is added, null if already exists.
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function add_role( $role, $display_name, $capabilities = array() ) {
|
|
|
|
if ( isset( $this->roles[$role] ) )
|
2005-09-21 01:48:28 +02:00
|
|
|
return;
|
|
|
|
|
2005-11-30 22:13:18 +01:00
|
|
|
$this->roles[$role] = array(
|
|
|
|
'name' => $display_name,
|
2008-08-06 22:50:30 +02:00
|
|
|
'capabilities' => $capabilities
|
|
|
|
);
|
2006-08-25 01:23:36 +02:00
|
|
|
if ( $this->use_db )
|
2008-08-06 22:50:30 +02:00
|
|
|
update_option( $this->role_key, $this->roles );
|
|
|
|
$this->role_objects[$role] = new WP_Role( $role, $capabilities );
|
2005-07-23 18:16:03 +02:00
|
|
|
$this->role_names[$role] = $display_name;
|
2005-11-30 08:32:43 +01:00
|
|
|
return $this->role_objects[$role];
|
2005-07-23 18:16:03 +02:00
|
|
|
}
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Remove role by name.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*
|
|
|
|
* @param string $role Role name.
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function remove_role( $role ) {
|
|
|
|
if ( ! isset( $this->role_objects[$role] ) )
|
2005-07-23 18:16:03 +02:00
|
|
|
return;
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
unset( $this->role_objects[$role] );
|
|
|
|
unset( $this->role_names[$role] );
|
|
|
|
unset( $this->roles[$role] );
|
2007-01-28 22:58:01 +01:00
|
|
|
|
2006-08-25 01:23:36 +02:00
|
|
|
if ( $this->use_db )
|
2008-08-06 22:50:30 +02:00
|
|
|
update_option( $this->role_key, $this->roles );
|
2005-07-23 18:16:03 +02:00
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Add capability to role.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*
|
|
|
|
* @param string $role Role name.
|
|
|
|
* @param string $cap Capability name.
|
|
|
|
* @param bool $grant Optional, default is true. Whether role is capable of preforming capability.
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function add_cap( $role, $cap, $grant = true ) {
|
2005-07-23 18:16:03 +02:00
|
|
|
$this->roles[$role]['capabilities'][$cap] = $grant;
|
2006-08-25 01:23:36 +02:00
|
|
|
if ( $this->use_db )
|
2008-08-06 22:50:30 +02:00
|
|
|
update_option( $this->role_key, $this->roles );
|
2005-07-23 18:16:03 +02:00
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Remove capability from role.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*
|
|
|
|
* @param string $role Role name.
|
|
|
|
* @param string $cap Capability name.
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function remove_cap( $role, $cap ) {
|
|
|
|
unset( $this->roles[$role]['capabilities'][$cap] );
|
2006-08-25 01:23:36 +02:00
|
|
|
if ( $this->use_db )
|
2008-08-06 22:50:30 +02:00
|
|
|
update_option( $this->role_key, $this->roles );
|
2005-07-23 18:16:03 +02:00
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Retrieve role object by name.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*
|
|
|
|
* @param string $role Role name.
|
|
|
|
* @return object|null Null, if role does not exist. WP_Role object, if found.
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function &get_role( $role ) {
|
|
|
|
if ( isset( $this->role_objects[$role] ) )
|
2005-07-23 18:16:03 +02:00
|
|
|
return $this->role_objects[$role];
|
|
|
|
else
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Retrieve list of role names.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*
|
|
|
|
* @return array List of role names.
|
|
|
|
*/
|
2005-07-23 18:16:03 +02:00
|
|
|
function get_names() {
|
|
|
|
return $this->role_names;
|
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Whether role name is currently in the list of available roles.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*
|
|
|
|
* @param string $role Role name to look up.
|
|
|
|
* @return bool
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function is_role( $role )
|
2005-07-23 18:16:03 +02:00
|
|
|
{
|
2008-08-06 22:50:30 +02:00
|
|
|
return isset( $this->role_names[$role] );
|
2006-02-12 08:53:23 +01:00
|
|
|
}
|
2005-07-23 18:16:03 +02:00
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* WordPress Role class.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage User
|
|
|
|
*/
|
2005-07-23 18:16:03 +02:00
|
|
|
class WP_Role {
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Role name.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
* @var string
|
|
|
|
*/
|
2005-07-23 18:16:03 +02:00
|
|
|
var $name;
|
2008-09-16 23:51:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* List of capabilities the role contains.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
* @var array
|
|
|
|
*/
|
2005-07-23 18:16:03 +02:00
|
|
|
var $capabilities;
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* PHP4 Constructor - Setup object properties.
|
|
|
|
*
|
|
|
|
* The list of capabilities, must have the key as the name of the capability
|
|
|
|
* and the value a boolean of whether it is granted to the role or not.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*
|
|
|
|
* @param string $role Role name.
|
|
|
|
* @param array $capabilities List of capabilities.
|
|
|
|
* @return WP_Role
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function WP_Role( $role, $capabilities ) {
|
2005-07-23 18:16:03 +02:00
|
|
|
$this->name = $role;
|
|
|
|
$this->capabilities = $capabilities;
|
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Assign role a capability.
|
|
|
|
*
|
|
|
|
* @see WP_Roles::add_cap() Method uses implementation for role.
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*
|
|
|
|
* @param string $cap Capability name.
|
|
|
|
* @param bool $grant Whether role has capability privilege.
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function add_cap( $cap, $grant = true ) {
|
2005-07-23 18:16:03 +02:00
|
|
|
global $wp_roles;
|
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( ! isset( $wp_roles ) )
|
2006-01-18 02:06:11 +01:00
|
|
|
$wp_roles = new WP_Roles();
|
|
|
|
|
2005-07-23 18:16:03 +02:00
|
|
|
$this->capabilities[$cap] = $grant;
|
2008-08-06 22:50:30 +02:00
|
|
|
$wp_roles->add_cap( $this->name, $cap, $grant );
|
2005-07-23 18:16:03 +02:00
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Remove capability from role.
|
|
|
|
*
|
|
|
|
* This is a container for {@link WP_Roles::remove_cap()} to remove the
|
|
|
|
* capability from the role. That is to say, that {@link
|
|
|
|
* WP_Roles::remove_cap()} implements the functionality, but it also makes
|
|
|
|
* sense to use this class, because you don't need to enter the role name.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*
|
|
|
|
* @param string $cap Capability name.
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function remove_cap( $cap ) {
|
2005-07-23 18:16:03 +02:00
|
|
|
global $wp_roles;
|
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( ! isset( $wp_roles ) )
|
2006-01-18 02:06:11 +01:00
|
|
|
$wp_roles = new WP_Roles();
|
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
unset( $this->capabilities[$cap] );
|
|
|
|
$wp_roles->remove_cap( $this->name, $cap );
|
2005-07-23 18:16:03 +02:00
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Whether role has capability.
|
|
|
|
*
|
|
|
|
* The capabilities is passed through the 'role_has_cap' filter. The first
|
|
|
|
* parameter for the hook is the list of capabilities the class has
|
|
|
|
* assigned. The second parameter is the capability name to look for. The
|
|
|
|
* third and final parameter for the hook is the role name.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*
|
|
|
|
* @param string $cap Capability name.
|
|
|
|
* @return bool True, if user has capability. False, if doesn't have capability.
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function has_cap( $cap ) {
|
|
|
|
$capabilities = apply_filters( 'role_has_cap', $this->capabilities, $cap, $this->name );
|
|
|
|
if ( !empty( $capabilities[$cap] ) )
|
2005-12-13 00:20:44 +01:00
|
|
|
return $capabilities[$cap];
|
2005-07-23 18:16:03 +02:00
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* WordPress User class.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage User
|
|
|
|
*/
|
2005-07-23 18:16:03 +02:00
|
|
|
class WP_User {
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* User data container.
|
|
|
|
*
|
|
|
|
* This will be set as properties of the object.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access private
|
|
|
|
* @var array
|
|
|
|
*/
|
2005-07-23 18:16:03 +02:00
|
|
|
var $data;
|
2008-09-16 23:51:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The user's ID.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
* @access public
|
|
|
|
* @var int
|
|
|
|
*/
|
2006-11-20 05:29:06 +01:00
|
|
|
var $ID = 0;
|
2008-09-16 23:51:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The deprecated user's ID.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
* @deprecated Use WP_User::$ID
|
|
|
|
* @see WP_User::$ID
|
|
|
|
* @var int
|
|
|
|
*/
|
|
|
|
var $id = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The individual capabilities the user has been given.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
* @var array
|
|
|
|
*/
|
2005-07-23 18:16:03 +02:00
|
|
|
var $caps = array();
|
2008-09-16 23:51:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* User metadata option name.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
* @var string
|
|
|
|
*/
|
2005-07-23 18:16:03 +02:00
|
|
|
var $cap_key;
|
2008-09-16 23:51:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The roles the user is part of.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
* @var array
|
|
|
|
*/
|
2005-07-23 18:16:03 +02:00
|
|
|
var $roles = array();
|
2008-09-16 23:51:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* All capabilities the user has, including individual and role based.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
* @var array
|
|
|
|
*/
|
2005-07-23 18:16:03 +02:00
|
|
|
var $allcaps = array();
|
2008-09-16 23:51:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* First name of the user.
|
|
|
|
*
|
|
|
|
* Created to prevent notices.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
* @access public
|
|
|
|
* @var string
|
|
|
|
*/
|
2008-08-14 19:00:37 +02:00
|
|
|
var $first_name = '';
|
2008-09-16 23:51:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Last name of the user.
|
|
|
|
*
|
|
|
|
* Created to prevent notices.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
* @access public
|
|
|
|
* @var string
|
|
|
|
*/
|
2008-08-14 19:00:37 +02:00
|
|
|
var $last_name = '';
|
2005-07-23 18:16:03 +02:00
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* PHP4 Constructor - Sets up the object properties.
|
|
|
|
*
|
|
|
|
* Retrieves the userdata and then assigns all of the data keys to direct
|
|
|
|
* properties of the object. Calls {@link WP_User::_init_caps()} after
|
|
|
|
* setting up the object's user data properties.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*
|
|
|
|
* @param int|string $id User's ID or username
|
|
|
|
* @param int $name Optional. User's username
|
|
|
|
* @return WP_User
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function WP_User( $id, $name = '' ) {
|
2005-07-23 18:16:03 +02:00
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( empty( $id ) && empty( $name ) )
|
2005-12-13 04:46:40 +01:00
|
|
|
return;
|
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( ! is_numeric( $id ) ) {
|
2005-12-15 17:45:20 +01:00
|
|
|
$name = $id;
|
|
|
|
$id = 0;
|
2005-07-23 18:16:03 +02:00
|
|
|
}
|
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( ! empty( $id ) )
|
|
|
|
$this->data = get_userdata( $id );
|
2005-12-15 17:45:20 +01:00
|
|
|
else
|
2008-08-06 22:50:30 +02:00
|
|
|
$this->data = get_userdatabylogin( $name );
|
2005-12-15 17:45:20 +01:00
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( empty( $this->data->ID ) )
|
2005-07-23 18:16:03 +02:00
|
|
|
return;
|
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
foreach ( get_object_vars( $this->data ) as $key => $value ) {
|
2005-11-16 03:54:23 +01:00
|
|
|
$this->{$key} = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->id = $this->ID;
|
2006-03-31 01:35:42 +02:00
|
|
|
$this->_init_caps();
|
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Setup capability object properties.
|
|
|
|
*
|
|
|
|
* Will set the value for the 'cap_key' property to current database table
|
|
|
|
* prefix, followed by 'capabilities'. Will then check to see if the
|
|
|
|
* property matching the 'cap_key' exists and is an array. If so, it will be
|
|
|
|
* used.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
* @access protected
|
|
|
|
*/
|
2006-03-31 01:35:42 +02:00
|
|
|
function _init_caps() {
|
|
|
|
global $wpdb;
|
2006-03-03 21:36:40 +01:00
|
|
|
$this->cap_key = $wpdb->prefix . 'capabilities';
|
2005-11-16 03:54:23 +01:00
|
|
|
$this->caps = &$this->{$this->cap_key};
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( ! is_array( $this->caps ) )
|
2005-07-23 18:16:03 +02:00
|
|
|
$this->caps = array();
|
|
|
|
$this->get_role_caps();
|
|
|
|
}
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Retrieve all of the role capabilities and merge with individual capabilities.
|
|
|
|
*
|
|
|
|
* All of the capabilities of the roles the user belongs to are merged with
|
|
|
|
* the users individual roles. This also means that the user can be denied
|
|
|
|
* specific roles that their role might have, but the specific user isn't
|
|
|
|
* granted permission to.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @uses $wp_roles
|
|
|
|
* @access public
|
|
|
|
*/
|
2005-07-23 18:16:03 +02:00
|
|
|
function get_role_caps() {
|
|
|
|
global $wp_roles;
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( ! isset( $wp_roles ) )
|
2006-01-18 02:06:11 +01:00
|
|
|
$wp_roles = new WP_Roles();
|
|
|
|
|
2005-07-23 18:16:03 +02:00
|
|
|
//Filter out caps that are not role names and assign to $this->roles
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( is_array( $this->caps ) )
|
|
|
|
$this->roles = array_filter( array_keys( $this->caps ), array( &$wp_roles, 'is_role' ) );
|
2005-07-23 18:16:03 +02:00
|
|
|
|
|
|
|
//Build $allcaps from role caps, overlay user's $caps
|
|
|
|
$this->allcaps = array();
|
2008-08-06 22:50:30 +02:00
|
|
|
foreach ( (array) $this->roles as $role ) {
|
|
|
|
$role = $wp_roles->get_role( $role );
|
|
|
|
$this->allcaps = array_merge( $this->allcaps, $role->capabilities );
|
2005-07-23 18:16:03 +02:00
|
|
|
}
|
2008-08-06 22:50:30 +02:00
|
|
|
$this->allcaps = array_merge( $this->allcaps, $this->caps );
|
2005-07-23 18:16:03 +02:00
|
|
|
}
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Add role to user.
|
|
|
|
*
|
|
|
|
* Updates the user's meta data option with capabilities and roles.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*
|
|
|
|
* @param string $role Role name.
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function add_role( $role ) {
|
2005-07-23 18:16:03 +02:00
|
|
|
$this->caps[$role] = true;
|
2008-08-06 22:50:30 +02:00
|
|
|
update_usermeta( $this->ID, $this->cap_key, $this->caps );
|
2005-07-23 18:16:03 +02:00
|
|
|
$this->get_role_caps();
|
|
|
|
$this->update_user_level_from_caps();
|
|
|
|
}
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Remove role from user.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*
|
|
|
|
* @param string $role Role name.
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function remove_role( $role ) {
|
|
|
|
if ( empty( $this->roles[$role] ) || ( count( $this->roles ) <= 1 ) )
|
2005-07-23 18:16:03 +02:00
|
|
|
return;
|
2008-08-06 22:50:30 +02:00
|
|
|
unset( $this->caps[$role] );
|
|
|
|
update_usermeta( $this->ID, $this->cap_key, $this->caps );
|
2005-07-23 18:16:03 +02:00
|
|
|
$this->get_role_caps();
|
|
|
|
}
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Set the role of the user.
|
|
|
|
*
|
|
|
|
* This will remove the previous roles of the user and assign the user the
|
|
|
|
* new one. You can set the role to an empty string and it will remove all
|
|
|
|
* of the roles from the user.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*
|
|
|
|
* @param string $role Role name.
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function set_role( $role ) {
|
|
|
|
foreach ( (array) $this->roles as $oldrole )
|
|
|
|
unset( $this->caps[$oldrole] );
|
|
|
|
if ( !empty( $role ) ) {
|
2006-06-10 22:26:26 +02:00
|
|
|
$this->caps[$role] = true;
|
2008-08-06 22:50:30 +02:00
|
|
|
$this->roles = array( $role => true );
|
2006-06-10 22:26:26 +02:00
|
|
|
} else {
|
|
|
|
$this->roles = false;
|
|
|
|
}
|
2008-08-06 22:50:30 +02:00
|
|
|
update_usermeta( $this->ID, $this->cap_key, $this->caps );
|
2005-07-23 18:16:03 +02:00
|
|
|
$this->get_role_caps();
|
|
|
|
$this->update_user_level_from_caps();
|
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Choose the maximum level the user has.
|
|
|
|
*
|
|
|
|
* Will compare the level from the $item parameter against the $max
|
|
|
|
* parameter. If the item is incorrect, then just the $max parameter value
|
|
|
|
* will be returned.
|
|
|
|
*
|
|
|
|
* Used to get the max level based on the capabilities the user has. This
|
|
|
|
* is also based on roles, so if the user is assigned the Administrator role
|
|
|
|
* then the capability 'level_10' will exist and the user will get that
|
|
|
|
* value.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*
|
|
|
|
* @param int $max Max level of user.
|
|
|
|
* @param string $item Level capability name.
|
|
|
|
* @return int Max Level.
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function level_reduction( $max, $item ) {
|
|
|
|
if ( preg_match( '/^level_(10|[0-9])$/i', $item, $matches ) ) {
|
|
|
|
$level = intval( $matches[1] );
|
|
|
|
return max( $max, $level );
|
2006-11-19 08:56:05 +01:00
|
|
|
} else {
|
|
|
|
return $max;
|
|
|
|
}
|
2005-07-23 18:16:03 +02:00
|
|
|
}
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Update the maximum user level for the user.
|
|
|
|
*
|
|
|
|
* Updates the 'user_level' user metadata (includes prefix that is the
|
|
|
|
* database table prefix) with the maximum user level. Gets the value from
|
|
|
|
* the all of the capabilities that the user has.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*/
|
2005-07-23 18:16:03 +02:00
|
|
|
function update_user_level_from_caps() {
|
2006-11-19 08:56:05 +01:00
|
|
|
global $wpdb;
|
2008-08-06 22:50:30 +02:00
|
|
|
$this->user_level = array_reduce( array_keys( $this->allcaps ), array( &$this, 'level_reduction' ), 0 );
|
|
|
|
update_usermeta( $this->ID, $wpdb->prefix.'user_level', $this->user_level );
|
2005-07-23 18:16:03 +02:00
|
|
|
}
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Add capability and grant or deny access to capability.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*
|
|
|
|
* @param string $cap Capability name.
|
|
|
|
* @param bool $grant Whether to grant capability to user.
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function add_cap( $cap, $grant = true ) {
|
2005-07-23 18:16:03 +02:00
|
|
|
$this->caps[$cap] = $grant;
|
2008-08-06 22:50:30 +02:00
|
|
|
update_usermeta( $this->ID, $this->cap_key, $this->caps );
|
2005-07-23 18:16:03 +02:00
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Remove capability from user.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*
|
|
|
|
* @param string $cap Capability name.
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function remove_cap( $cap ) {
|
|
|
|
if ( empty( $this->caps[$cap] ) ) return;
|
|
|
|
unset( $this->caps[$cap] );
|
|
|
|
update_usermeta( $this->ID, $this->cap_key, $this->caps );
|
2005-07-23 18:16:03 +02:00
|
|
|
}
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Remove all of the capabilities of the user.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
* @access public
|
|
|
|
*/
|
2006-04-13 06:49:38 +02:00
|
|
|
function remove_all_caps() {
|
|
|
|
global $wpdb;
|
|
|
|
$this->caps = array();
|
2008-08-06 22:50:30 +02:00
|
|
|
update_usermeta( $this->ID, $this->cap_key, '' );
|
|
|
|
update_usermeta( $this->ID, $wpdb->prefix.'user_level', '' );
|
2006-04-13 06:49:38 +02:00
|
|
|
$this->get_role_caps();
|
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Whether user has capability or role name.
|
|
|
|
*
|
|
|
|
* This is useful for looking up whether the user has a specific role
|
|
|
|
* assigned to the user. The second optional parameter can also be used to
|
|
|
|
* check for capabilities against a specfic post.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*
|
|
|
|
* @param string|int $cap Capability or role name to search.
|
|
|
|
* @param int $post_id Optional. Post ID to check capability against specific post.
|
|
|
|
* @return bool True, if user has capability; false, if user does not have capability.
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function has_cap( $cap ) {
|
|
|
|
if ( is_numeric( $cap ) )
|
|
|
|
$cap = $this->translate_level_to_cap( $cap );
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
$args = array_slice( func_get_args(), 1 );
|
|
|
|
$args = array_merge( array( $cap, $this->ID ), $args );
|
|
|
|
$caps = call_user_func_array( 'map_meta_cap', $args );
|
2005-07-23 18:16:03 +02:00
|
|
|
// Must have ALL requested caps
|
2008-08-06 22:50:30 +02:00
|
|
|
$capabilities = apply_filters( 'user_has_cap', $this->allcaps, $caps, $args );
|
|
|
|
foreach ( (array) $caps as $cap ) {
|
2007-08-14 05:12:24 +02:00
|
|
|
//echo "Checking cap $cap<br />";
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( empty( $capabilities[$cap] ) || !$capabilities[$cap] )
|
2005-07-23 18:16:03 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Convert numeric level to level capability name.
|
|
|
|
*
|
|
|
|
* Prepends 'level_' to level number.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
* @access public
|
|
|
|
*
|
|
|
|
* @param int $level Level number, 1 to 10.
|
|
|
|
* @return string
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function translate_level_to_cap( $level ) {
|
2005-07-23 18:16:03 +02:00
|
|
|
return 'level_' . $level;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Map meta capabilities to primitive capabilities.
|
|
|
|
*
|
|
|
|
* This does not actually compare whether the user ID has the actual capability,
|
|
|
|
* just what the capability or capabilities are. Meta capability list value can
|
|
|
|
* be 'delete_user', 'edit_user', 'delete_post', 'delete_page', 'edit_post',
|
|
|
|
* 'edit_page', 'read_post', or 'read_page'.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
*
|
|
|
|
* @param string $cap Capability name.
|
|
|
|
* @param int $user_id User ID.
|
|
|
|
* @return array Actual capabilities for meta capability.
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function map_meta_cap( $cap, $user_id ) {
|
|
|
|
$args = array_slice( func_get_args(), 2 );
|
2005-07-23 18:16:03 +02:00
|
|
|
$caps = array();
|
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
switch ( $cap ) {
|
2006-06-05 18:52:21 +02:00
|
|
|
case 'delete_user':
|
|
|
|
$caps[] = 'delete_users';
|
|
|
|
break;
|
|
|
|
case 'edit_user':
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( !isset( $args[0] ) || $user_id != $args[0] ) {
|
2008-01-31 22:44:17 +01:00
|
|
|
$caps[] = 'edit_users';
|
|
|
|
}
|
2006-06-05 18:52:21 +02:00
|
|
|
break;
|
2006-02-11 10:56:02 +01:00
|
|
|
case 'delete_post':
|
2008-08-06 22:50:30 +02:00
|
|
|
$author_data = get_userdata( $user_id );
|
2007-08-14 05:12:24 +02:00
|
|
|
//echo "post ID: {$args[0]}<br />";
|
2008-08-06 22:50:30 +02:00
|
|
|
$post = get_post( $args[0] );
|
2006-02-14 02:10:51 +01:00
|
|
|
if ( 'page' == $post->post_type ) {
|
2008-08-06 22:50:30 +02:00
|
|
|
$args = array_merge( array( 'delete_page', $user_id ), $args );
|
|
|
|
return call_user_func_array( 'map_meta_cap', $args );
|
2006-02-14 02:10:51 +01:00
|
|
|
}
|
2008-08-06 22:50:30 +02:00
|
|
|
$post_author_data = get_userdata( $post->post_author );
|
2007-08-14 05:12:24 +02:00
|
|
|
//echo "current user id : $user_id, post author id: " . $post_author_data->ID . "<br />";
|
2006-02-11 10:56:02 +01:00
|
|
|
// If the user is the author...
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( $user_id == $post_author_data->ID ) {
|
2006-02-11 10:56:02 +01:00
|
|
|
// If the post is published...
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( 'publish' == $post->post_status )
|
2006-02-11 10:56:02 +01:00
|
|
|
$caps[] = 'delete_published_posts';
|
|
|
|
else
|
|
|
|
// If the post is draft...
|
|
|
|
$caps[] = 'delete_posts';
|
|
|
|
} else {
|
|
|
|
// The user is trying to edit someone else's post.
|
|
|
|
$caps[] = 'delete_others_posts';
|
|
|
|
// The post is published, extra cap required.
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( 'publish' == $post->post_status )
|
2006-02-11 10:56:02 +01:00
|
|
|
$caps[] = 'delete_published_posts';
|
2008-08-06 22:50:30 +02:00
|
|
|
elseif ( 'private' == $post->post_status )
|
2006-05-12 01:13:35 +02:00
|
|
|
$caps[] = 'delete_private_posts';
|
2006-02-11 10:56:02 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'delete_page':
|
2008-08-06 22:50:30 +02:00
|
|
|
$author_data = get_userdata( $user_id );
|
2007-08-14 05:12:24 +02:00
|
|
|
//echo "post ID: {$args[0]}<br />";
|
2008-08-06 22:50:30 +02:00
|
|
|
$page = get_page( $args[0] );
|
|
|
|
$page_author_data = get_userdata( $page->post_author );
|
2007-08-14 05:12:24 +02:00
|
|
|
//echo "current user id : $user_id, page author id: " . $page_author_data->ID . "<br />";
|
2006-02-11 10:56:02 +01:00
|
|
|
// If the user is the author...
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( $user_id == $page_author_data->ID ) {
|
2006-02-11 10:56:02 +01:00
|
|
|
// If the page is published...
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( $page->post_status == 'publish' )
|
2006-02-11 10:56:02 +01:00
|
|
|
$caps[] = 'delete_published_pages';
|
|
|
|
else
|
|
|
|
// If the page is draft...
|
|
|
|
$caps[] = 'delete_pages';
|
|
|
|
} else {
|
|
|
|
// The user is trying to edit someone else's page.
|
|
|
|
$caps[] = 'delete_others_pages';
|
|
|
|
// The page is published, extra cap required.
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( $page->post_status == 'publish' )
|
2006-02-11 10:56:02 +01:00
|
|
|
$caps[] = 'delete_published_pages';
|
2008-08-06 22:50:30 +02:00
|
|
|
elseif ( $page->post_status == 'private' )
|
2006-05-12 01:13:35 +02:00
|
|
|
$caps[] = 'delete_private_pages';
|
2006-02-11 10:56:02 +01:00
|
|
|
}
|
|
|
|
break;
|
2005-07-23 18:16:03 +02:00
|
|
|
// edit_post breaks down to edit_posts, edit_published_posts, or
|
|
|
|
// edit_others_posts
|
|
|
|
case 'edit_post':
|
2008-08-06 22:50:30 +02:00
|
|
|
$author_data = get_userdata( $user_id );
|
2007-08-14 05:12:24 +02:00
|
|
|
//echo "post ID: {$args[0]}<br />";
|
2008-08-06 22:50:30 +02:00
|
|
|
$post = get_post( $args[0] );
|
2006-02-14 02:10:51 +01:00
|
|
|
if ( 'page' == $post->post_type ) {
|
2008-08-06 22:50:30 +02:00
|
|
|
$args = array_merge( array( 'edit_page', $user_id ), $args );
|
|
|
|
return call_user_func_array( 'map_meta_cap', $args );
|
2006-02-14 02:10:51 +01:00
|
|
|
}
|
2008-08-06 22:50:30 +02:00
|
|
|
$post_author_data = get_userdata( $post->post_author );
|
2007-08-14 05:12:24 +02:00
|
|
|
//echo "current user id : $user_id, post author id: " . $post_author_data->ID . "<br />";
|
2005-07-23 18:16:03 +02:00
|
|
|
// If the user is the author...
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( $user_id == $post_author_data->ID ) {
|
2005-07-23 18:16:03 +02:00
|
|
|
// If the post is published...
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( 'publish' == $post->post_status )
|
2005-07-23 18:16:03 +02:00
|
|
|
$caps[] = 'edit_published_posts';
|
|
|
|
else
|
|
|
|
// If the post is draft...
|
|
|
|
$caps[] = 'edit_posts';
|
|
|
|
} else {
|
|
|
|
// The user is trying to edit someone else's post.
|
|
|
|
$caps[] = 'edit_others_posts';
|
|
|
|
// The post is published, extra cap required.
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( 'publish' == $post->post_status )
|
2005-07-23 18:16:03 +02:00
|
|
|
$caps[] = 'edit_published_posts';
|
2008-08-06 22:50:30 +02:00
|
|
|
elseif ( 'private' == $post->post_status )
|
2006-05-12 01:13:35 +02:00
|
|
|
$caps[] = 'edit_private_posts';
|
2005-07-23 18:16:03 +02:00
|
|
|
}
|
|
|
|
break;
|
2006-02-11 10:56:02 +01:00
|
|
|
case 'edit_page':
|
2008-08-06 22:50:30 +02:00
|
|
|
$author_data = get_userdata( $user_id );
|
2007-08-14 05:12:24 +02:00
|
|
|
//echo "post ID: {$args[0]}<br />";
|
2008-08-06 22:50:30 +02:00
|
|
|
$page = get_page( $args[0] );
|
|
|
|
$page_author_data = get_userdata( $page->post_author );
|
2007-08-14 05:12:24 +02:00
|
|
|
//echo "current user id : $user_id, page author id: " . $page_author_data->ID . "<br />";
|
2006-02-11 10:56:02 +01:00
|
|
|
// If the user is the author...
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( $user_id == $page_author_data->ID ) {
|
2006-02-11 10:56:02 +01:00
|
|
|
// If the page is published...
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( 'publish' == $page->post_status )
|
2006-02-11 10:56:02 +01:00
|
|
|
$caps[] = 'edit_published_pages';
|
|
|
|
else
|
|
|
|
// If the page is draft...
|
|
|
|
$caps[] = 'edit_pages';
|
|
|
|
} else {
|
|
|
|
// The user is trying to edit someone else's page.
|
|
|
|
$caps[] = 'edit_others_pages';
|
|
|
|
// The page is published, extra cap required.
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( 'publish' == $page->post_status )
|
2006-02-11 10:56:02 +01:00
|
|
|
$caps[] = 'edit_published_pages';
|
2008-08-06 22:50:30 +02:00
|
|
|
elseif ( 'private' == $page->post_status )
|
2006-05-12 01:13:35 +02:00
|
|
|
$caps[] = 'edit_private_pages';
|
2006-02-11 10:56:02 +01:00
|
|
|
}
|
|
|
|
break;
|
2005-12-13 01:54:52 +01:00
|
|
|
case 'read_post':
|
2008-08-06 22:50:30 +02:00
|
|
|
$post = get_post( $args[0] );
|
2006-02-14 02:10:51 +01:00
|
|
|
if ( 'page' == $post->post_type ) {
|
2008-08-06 22:50:30 +02:00
|
|
|
$args = array_merge( array( 'read_page', $user_id ), $args );
|
|
|
|
return call_user_func_array( 'map_meta_cap', $args );
|
2006-02-14 02:10:51 +01:00
|
|
|
}
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-12-13 01:54:52 +01:00
|
|
|
if ( 'private' != $post->post_status ) {
|
|
|
|
$caps[] = 'read';
|
2006-02-12 08:53:23 +01:00
|
|
|
break;
|
2005-12-13 01:54:52 +01:00
|
|
|
}
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
$author_data = get_userdata( $user_id );
|
|
|
|
$post_author_data = get_userdata( $post->post_author );
|
|
|
|
if ( $user_id == $post_author_data->ID )
|
2005-12-13 01:54:52 +01:00
|
|
|
$caps[] = 'read';
|
|
|
|
else
|
|
|
|
$caps[] = 'read_private_posts';
|
|
|
|
break;
|
2006-02-14 02:10:51 +01:00
|
|
|
case 'read_page':
|
2008-08-06 22:50:30 +02:00
|
|
|
$page = get_page( $args[0] );
|
2006-02-14 02:10:51 +01:00
|
|
|
|
|
|
|
if ( 'private' != $page->post_status ) {
|
|
|
|
$caps[] = 'read';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
$author_data = get_userdata( $user_id );
|
|
|
|
$page_author_data = get_userdata( $page->post_author );
|
|
|
|
if ( $user_id == $page_author_data->ID )
|
2006-02-14 02:10:51 +01:00
|
|
|
$caps[] = 'read';
|
|
|
|
else
|
|
|
|
$caps[] = 'read_private_pages';
|
|
|
|
break;
|
2005-07-23 18:16:03 +02:00
|
|
|
default:
|
|
|
|
// If no meta caps match, return the original cap.
|
|
|
|
$caps[] = $cap;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $caps;
|
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Whether current user has capability or role.
|
|
|
|
*
|
|
|
|
* @since 2.0.0
|
|
|
|
*
|
|
|
|
* @param string $capability Capability or role name.
|
|
|
|
* @return bool
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function current_user_can( $capability ) {
|
2006-02-22 20:08:55 +01:00
|
|
|
$current_user = wp_get_current_user();
|
2005-07-23 18:16:03 +02:00
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( empty( $current_user ) )
|
2005-07-23 18:16:03 +02:00
|
|
|
return false;
|
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
$args = array_slice( func_get_args(), 1 );
|
|
|
|
$args = array_merge( array( $capability ), $args );
|
2007-05-28 20:34:06 +02:00
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
return call_user_func_array( array( &$current_user, 'has_cap' ), $args );
|
2005-07-23 18:16:03 +02:00
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Retrieve role object.
|
|
|
|
*
|
|
|
|
* @see WP_Roles::get_role() Uses method to retrieve role object.
|
|
|
|
* @since 2.0.0
|
|
|
|
*
|
|
|
|
* @param string $role Role name.
|
|
|
|
* @return object
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function get_role( $role ) {
|
2005-11-29 19:47:28 +01:00
|
|
|
global $wp_roles;
|
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( ! isset( $wp_roles ) )
|
2006-01-18 02:06:11 +01:00
|
|
|
$wp_roles = new WP_Roles();
|
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
return $wp_roles->get_role( $role );
|
2005-11-29 19:47:28 +01:00
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Add role, if it does not exist.
|
|
|
|
*
|
|
|
|
* @see WP_Roles::add_role() Uses method to add role.
|
|
|
|
* @since 2.0.0
|
|
|
|
*
|
|
|
|
* @param string $role Role name.
|
|
|
|
* @param string $display_name Display name for role.
|
|
|
|
* @param array $capabilities List of capabilities.
|
|
|
|
* @return null|WP_Role WP_Role object if role is added, null if already exists.
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function add_role( $role, $display_name, $capabilities = array() ) {
|
2005-11-30 21:04:04 +01:00
|
|
|
global $wp_roles;
|
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( ! isset( $wp_roles ) )
|
2006-01-18 02:06:11 +01:00
|
|
|
$wp_roles = new WP_Roles();
|
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
return $wp_roles->add_role( $role, $display_name, $capabilities );
|
2005-11-30 21:04:04 +01:00
|
|
|
}
|
|
|
|
|
2008-09-16 23:51:36 +02:00
|
|
|
/**
|
|
|
|
* Remove role, if it exists.
|
|
|
|
*
|
|
|
|
* @see WP_Roles::remove_role() Uses method to remove role.
|
|
|
|
* @since 2.0.0
|
|
|
|
*
|
|
|
|
* @param string $role Role name.
|
|
|
|
* @return null
|
|
|
|
*/
|
2008-08-06 22:50:30 +02:00
|
|
|
function remove_role( $role ) {
|
2005-11-30 21:04:04 +01:00
|
|
|
global $wp_roles;
|
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
if ( ! isset( $wp_roles ) )
|
2006-01-18 02:06:11 +01:00
|
|
|
$wp_roles = new WP_Roles();
|
|
|
|
|
2008-08-06 22:50:30 +02:00
|
|
|
return $wp_roles->remove_role( $role );
|
2005-11-30 21:04:04 +01:00
|
|
|
}
|
|
|
|
|
2005-11-30 22:13:18 +01:00
|
|
|
?>
|