Setting native eol:style

git-svn-id: http://svn.automattic.com/wordpress/trunk@2735 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
matt 2005-07-23 16:16:03 +00:00
parent 84611d5844
commit 4c1fa286cc
2 changed files with 378 additions and 378 deletions

View File

@ -1,345 +1,345 @@
<?php <?php
class WP_Roles { class WP_Roles {
var $roles; var $roles;
var $role_objects = array(); var $role_objects = array();
var $role_names = array(); var $role_names = array();
var $role_key; var $role_key;
function WP_Roles() { function WP_Roles() {
global $table_prefix; global $table_prefix;
$this->role_key = $table_prefix . 'user_roles'; $this->role_key = $table_prefix . 'user_roles';
$this->roles = get_option($this->role_key); $this->roles = get_option($this->role_key);
if ( empty($this->roles) ) if ( empty($this->roles) )
return; return;
foreach ($this->roles as $role => $data) { foreach ($this->roles as $role => $data) {
$this->role_objects[$role] = new WP_Role($role, $this->roles[$role]['capabilities']); $this->role_objects[$role] = new WP_Role($role, $this->roles[$role]['capabilities']);
$this->role_names[$role] = $this->roles[$role]['name']; $this->role_names[$role] = $this->roles[$role]['name'];
} }
} }
function add_role($role, $capabilities, $display_name) { function add_role($role, $capabilities, $display_name) {
$this->roles[$role] = array('name' => $display_name, $this->roles[$role] = array('name' => $display_name,
'capabilities' => $capabilities); 'capabilities' => $capabilities);
update_option($this->role_key, $this->roles); update_option($this->role_key, $this->roles);
$this->role_objects[$role] = new WP_Role($role, $capabilities); $this->role_objects[$role] = new WP_Role($role, $capabilities);
$this->role_names[$role] = $display_name; $this->role_names[$role] = $display_name;
} }
function remove_role($role) { function remove_role($role) {
if ( ! isset($this->role_objects[$role]) ) if ( ! isset($this->role_objects[$role]) )
return; return;
unset($this->role_objects[$role]); unset($this->role_objects[$role]);
unset($this->role_names[$role]); unset($this->role_names[$role]);
unset($this->roles[$role]); unset($this->roles[$role]);
update_option($this->role_key, $this->roles); update_option($this->role_key, $this->roles);
} }
function add_cap($role, $cap, $grant) { function add_cap($role, $cap, $grant) {
$this->roles[$role]['capabilities'][$cap] = $grant; $this->roles[$role]['capabilities'][$cap] = $grant;
update_option($this->role_key, $this->roles); update_option($this->role_key, $this->roles);
} }
function remove_cap($role, $cap) { function remove_cap($role, $cap) {
unset($this->roles[$role]['capabilities'][$cap]); unset($this->roles[$role]['capabilities'][$cap]);
update_option($this->role_key, $this->roles); update_option($this->role_key, $this->roles);
} }
function &get_role($role) { function &get_role($role) {
if ( isset($this->role_objects[$role]) ) if ( isset($this->role_objects[$role]) )
return $this->role_objects[$role]; return $this->role_objects[$role];
else else
return null; return null;
} }
function get_names() { function get_names() {
return $this->role_names; return $this->role_names;
} }
function is_role($role) function is_role($role)
{ {
return empty($this->role_names[$role]); return empty($this->role_names[$role]);
} }
} }
class WP_Role { class WP_Role {
var $name; var $name;
var $capabilities; var $capabilities;
function WP_Role($role, $capabilities) { function WP_Role($role, $capabilities) {
$this->name = $role; $this->name = $role;
$this->capabilities = $capabilities; $this->capabilities = $capabilities;
} }
function add_cap($cap, $grant) { function add_cap($cap, $grant) {
global $wp_roles; global $wp_roles;
$this->capabilities[$cap] = $grant; $this->capabilities[$cap] = $grant;
$wp_roles->add_cap($this->name, $cap); $wp_roles->add_cap($this->name, $cap);
} }
function remove_cap($cap) { function remove_cap($cap) {
global $wp_roles; global $wp_roles;
unset($this->capabilities[$cap]); unset($this->capabilities[$cap]);
$wp_roles->remove_cap($this->name, $cap); $wp_roles->remove_cap($this->name, $cap);
} }
function has_cap($cap) { function has_cap($cap) {
if ( !empty($this->capabilities[$cap]) ) if ( !empty($this->capabilities[$cap]) )
return $this->capabilities[$cap]; return $this->capabilities[$cap];
else else
return false; return false;
} }
} }
class WP_User { class WP_User {
var $data; var $data;
var $id = 0; var $id = 0;
var $caps = array(); var $caps = array();
var $cap_key; var $cap_key;
var $roles = array(); var $roles = array();
var $allcaps = array(); var $allcaps = array();
function WP_User($id) { function WP_User($id) {
global $wp_roles, $table_prefix; global $wp_roles, $table_prefix;
if ( is_numeric($id) ) { if ( is_numeric($id) ) {
$this->data = get_userdata($id); $this->data = get_userdata($id);
} else { } else {
$this->data = get_userdatabylogin($id); $this->data = get_userdatabylogin($id);
} }
if ( empty($this->data->ID) ) if ( empty($this->data->ID) )
return; return;
$this->id = $this->data->ID; $this->id = $this->data->ID;
$this->cap_key = $table_prefix . 'capabilities'; $this->cap_key = $table_prefix . 'capabilities';
$this->caps = &$this->data->{$this->cap_key}; $this->caps = &$this->data->{$this->cap_key};
if ( ! is_array($this->caps) ) if ( ! is_array($this->caps) )
$this->caps = array(); $this->caps = array();
$this->get_role_caps(); $this->get_role_caps();
} }
function get_role_caps() { function get_role_caps() {
global $wp_roles; global $wp_roles;
//Filter out caps that are not role names and assign to $this->roles //Filter out caps that are not role names and assign to $this->roles
if(is_array($this->caps)) if(is_array($this->caps))
$this->roles = array_filter($this->caps, array(&$wp_roles, 'is_role')); $this->roles = array_filter($this->caps, array(&$wp_roles, 'is_role'));
//Build $allcaps from role caps, overlay user's $caps //Build $allcaps from role caps, overlay user's $caps
$this->allcaps = array(); $this->allcaps = array();
foreach($this->roles as $role => $value) { foreach($this->roles as $role => $value) {
$role = $wp_roles->get_role($role); $role = $wp_roles->get_role($role);
$this->allcaps = array_merge($this->allcaps, $role->capabilities); $this->allcaps = array_merge($this->allcaps, $role->capabilities);
} }
$this->allcaps = array_merge($this->allcaps, $this->caps); $this->allcaps = array_merge($this->allcaps, $this->caps);
} }
function add_role($role) { function add_role($role) {
$this->caps[$role] = true; $this->caps[$role] = true;
update_usermeta($this->id, $this->cap_key, $this->caps); update_usermeta($this->id, $this->cap_key, $this->caps);
$this->get_role_caps(); $this->get_role_caps();
$this->update_user_level_from_caps(); $this->update_user_level_from_caps();
} }
function remove_role($role) { function remove_role($role) {
if ( empty($this->roles[$role]) || (count($this->roles) <= 1) ) if ( empty($this->roles[$role]) || (count($this->roles) <= 1) )
return; return;
unset($this->caps[$role]); unset($this->caps[$role]);
update_usermeta($this->id, $this->cap_key, $this->caps); update_usermeta($this->id, $this->cap_key, $this->caps);
$this->get_role_caps(); $this->get_role_caps();
} }
function set_role($role) { function set_role($role) {
foreach($this->roles as $oldrole => $value) foreach($this->roles as $oldrole => $value)
unset($this->caps[$oldrole]); unset($this->caps[$oldrole]);
$this->caps[$role] = true; $this->caps[$role] = true;
$this->roles = array($role => true); $this->roles = array($role => true);
update_usermeta($this->id, $this->cap_key, $this->caps); update_usermeta($this->id, $this->cap_key, $this->caps);
$this->get_role_caps(); $this->get_role_caps();
$this->update_user_level_from_caps(); $this->update_user_level_from_caps();
} }
function level_reduction($max, $item) { function level_reduction($max, $item) {
if(preg_match('/^level_(10|[0-9])$/i', $item, $matches)) { if(preg_match('/^level_(10|[0-9])$/i', $item, $matches)) {
$level = intval($matches[1]); $level = intval($matches[1]);
return max($max, $level); return max($max, $level);
} else { } else {
return $max; return $max;
} }
} }
function update_user_level_from_caps() { function update_user_level_from_caps() {
global $table_prefix; global $table_prefix;
$this->data->user_level = array_reduce(array_keys($this->allcaps), array(&$this, 'level_reduction'), 0); $this->data->user_level = array_reduce(array_keys($this->allcaps), array(&$this, 'level_reduction'), 0);
update_usermeta($this->id, $table_prefix.'user_level', $this->data->user_level); update_usermeta($this->id, $table_prefix.'user_level', $this->data->user_level);
} }
function add_cap($cap, $grant = true) { function add_cap($cap, $grant = true) {
$this->caps[$cap] = $grant; $this->caps[$cap] = $grant;
update_usermeta($this->id, $this->cap_key, $this->caps); update_usermeta($this->id, $this->cap_key, $this->caps);
} }
function remove_cap($cap) { function remove_cap($cap) {
if ( empty($this->roles[$cap]) ) return; if ( empty($this->roles[$cap]) ) return;
unset($this->caps[$cap]); unset($this->caps[$cap]);
update_usermeta($this->id, $this->cap_key, $this->caps); update_usermeta($this->id, $this->cap_key, $this->caps);
} }
//has_cap(capability_or_role_name) or //has_cap(capability_or_role_name) or
//has_cap('edit_post', post_id) //has_cap('edit_post', post_id)
function has_cap($cap) { function has_cap($cap) {
global $wp_roles; global $wp_roles;
if ( is_numeric($cap) ) if ( is_numeric($cap) )
$cap = $this->translate_level_to_cap($cap); $cap = $this->translate_level_to_cap($cap);
$args = array_slice(func_get_args(), 1); $args = array_slice(func_get_args(), 1);
$args = array_merge(array($cap, $this->id), $args); $args = array_merge(array($cap, $this->id), $args);
$caps = call_user_func_array('map_meta_cap', $args); $caps = call_user_func_array('map_meta_cap', $args);
// Must have ALL requested caps // Must have ALL requested caps
foreach ($caps as $cap) { foreach ($caps as $cap) {
//echo "Checking cap $cap<br/>"; //echo "Checking cap $cap<br/>";
if(empty($this->allcaps[$cap]) || !$this->allcaps[$cap]) if(empty($this->allcaps[$cap]) || !$this->allcaps[$cap])
return false; return false;
} }
return true; return true;
} }
function translate_level_to_cap($level) { function translate_level_to_cap($level) {
return 'level_' . $level; return 'level_' . $level;
} }
} }
// Map meta capabilities to primitive capabilities. // Map meta capabilities to primitive capabilities.
function map_meta_cap($cap, $user_id) { function map_meta_cap($cap, $user_id) {
$args = array_slice(func_get_args(), 2); $args = array_slice(func_get_args(), 2);
$caps = array(); $caps = array();
switch ($cap) { switch ($cap) {
// edit_post breaks down to edit_posts, edit_published_posts, or // edit_post breaks down to edit_posts, edit_published_posts, or
// edit_others_posts // edit_others_posts
case 'edit_post': case 'edit_post':
$author_data = get_userdata($user_id); $author_data = get_userdata($user_id);
//echo "post ID: {$args[0]}<br/>"; //echo "post ID: {$args[0]}<br/>";
$post = get_post($args[0]); $post = get_post($args[0]);
$post_author_data = get_userdata($post->post_author); $post_author_data = get_userdata($post->post_author);
//echo "current user id : $user_id, post author id: " . $post_author_data->ID . "<br/>"; //echo "current user id : $user_id, post author id: " . $post_author_data->ID . "<br/>";
// If the user is the author... // If the user is the author...
if ($user_id == $post_author_data->ID) { if ($user_id == $post_author_data->ID) {
// If the post is published... // If the post is published...
if ($post->post_status == 'publish') if ($post->post_status == 'publish')
$caps[] = 'edit_published_posts'; $caps[] = 'edit_published_posts';
else else
// If the post is draft... // If the post is draft...
$caps[] = 'edit_posts'; $caps[] = 'edit_posts';
} else { } else {
// The user is trying to edit someone else's post. // The user is trying to edit someone else's post.
$caps[] = 'edit_others_posts'; $caps[] = 'edit_others_posts';
// The post is published, extra cap required. // The post is published, extra cap required.
if ($post->post_status == 'publish') if ($post->post_status == 'publish')
$caps[] = 'edit_published_posts'; $caps[] = 'edit_published_posts';
} }
break; break;
default: default:
// If no meta caps match, return the original cap. // If no meta caps match, return the original cap.
$caps[] = $cap; $caps[] = $cap;
} }
return $caps; return $caps;
} }
// Capability checking wrapper around the global $current_user object. // Capability checking wrapper around the global $current_user object.
function current_user_can($capability) { function current_user_can($capability) {
global $current_user; global $current_user;
$args = array_slice(func_get_args(), 1); $args = array_slice(func_get_args(), 1);
$args = array_merge(array($capability), $args); $args = array_merge(array($capability), $args);
if ( empty($current_user) ) if ( empty($current_user) )
return false; return false;
return call_user_func_array(array(&$current_user, 'has_cap'), $args); return call_user_func_array(array(&$current_user, 'has_cap'), $args);
} }
// //
// These are deprecated. Use current_user_can(). // These are deprecated. Use current_user_can().
// //
/* returns true if $user_id can create a new post */ /* returns true if $user_id can create a new post */
function user_can_create_post($user_id, $blog_id = 1, $category_id = 'None') { function user_can_create_post($user_id, $blog_id = 1, $category_id = 'None') {
$author_data = get_userdata($user_id); $author_data = get_userdata($user_id);
return ($author_data->user_level > 1); return ($author_data->user_level > 1);
} }
/* returns true if $user_id can create a new post */ /* returns true if $user_id can create a new post */
function user_can_create_draft($user_id, $blog_id = 1, $category_id = 'None') { function user_can_create_draft($user_id, $blog_id = 1, $category_id = 'None') {
$author_data = get_userdata($user_id); $author_data = get_userdata($user_id);
return ($author_data->user_level >= 1); return ($author_data->user_level >= 1);
} }
/* returns true if $user_id can edit $post_id */ /* returns true if $user_id can edit $post_id */
function user_can_edit_post($user_id, $post_id, $blog_id = 1) { function user_can_edit_post($user_id, $post_id, $blog_id = 1) {
$author_data = get_userdata($user_id); $author_data = get_userdata($user_id);
$post = get_post($post_id); $post = get_post($post_id);
$post_author_data = get_userdata($post->post_author); $post_author_data = get_userdata($post->post_author);
if ( (($user_id == $post_author_data->ID) && !($post->post_status == 'publish' && $author_data->user_level < 2)) if ( (($user_id == $post_author_data->ID) && !($post->post_status == 'publish' && $author_data->user_level < 2))
|| ($author_data->user_level > $post_author_data->user_level) || ($author_data->user_level > $post_author_data->user_level)
|| ($author_data->user_level >= 10) ) { || ($author_data->user_level >= 10) ) {
return true; return true;
} else { } else {
return false; return false;
} }
} }
/* returns true if $user_id can delete $post_id */ /* returns true if $user_id can delete $post_id */
function user_can_delete_post($user_id, $post_id, $blog_id = 1) { function user_can_delete_post($user_id, $post_id, $blog_id = 1) {
// right now if one can edit, one can delete // right now if one can edit, one can delete
return user_can_edit_post($user_id, $post_id, $blog_id); return user_can_edit_post($user_id, $post_id, $blog_id);
} }
/* returns true if $user_id can set new posts' dates on $blog_id */ /* returns true if $user_id can set new posts' dates on $blog_id */
function user_can_set_post_date($user_id, $blog_id = 1, $category_id = 'None') { function user_can_set_post_date($user_id, $blog_id = 1, $category_id = 'None') {
$author_data = get_userdata($user_id); $author_data = get_userdata($user_id);
return (($author_data->user_level > 4) && user_can_create_post($user_id, $blog_id, $category_id)); return (($author_data->user_level > 4) && user_can_create_post($user_id, $blog_id, $category_id));
} }
/* returns true if $user_id can edit $post_id's date */ /* returns true if $user_id can edit $post_id's date */
function user_can_edit_post_date($user_id, $post_id, $blog_id = 1) { function user_can_edit_post_date($user_id, $post_id, $blog_id = 1) {
$author_data = get_userdata($user_id); $author_data = get_userdata($user_id);
return (($author_data->user_level > 4) && user_can_edit_post($user_id, $post_id, $blog_id)); return (($author_data->user_level > 4) && user_can_edit_post($user_id, $post_id, $blog_id));
} }
/* returns true if $user_id can edit $post_id's comments */ /* returns true if $user_id can edit $post_id's comments */
function user_can_edit_post_comments($user_id, $post_id, $blog_id = 1) { function user_can_edit_post_comments($user_id, $post_id, $blog_id = 1) {
// right now if one can edit a post, one can edit comments made on it // right now if one can edit a post, one can edit comments made on it
return user_can_edit_post($user_id, $post_id, $blog_id); return user_can_edit_post($user_id, $post_id, $blog_id);
} }
/* returns true if $user_id can delete $post_id's comments */ /* returns true if $user_id can delete $post_id's comments */
function user_can_delete_post_comments($user_id, $post_id, $blog_id = 1) { function user_can_delete_post_comments($user_id, $post_id, $blog_id = 1) {
// right now if one can edit comments, one can delete comments // right now if one can edit comments, one can delete comments
return user_can_edit_post_comments($user_id, $post_id, $blog_id); return user_can_edit_post_comments($user_id, $post_id, $blog_id);
} }
function user_can_edit_user($user_id, $other_user) { function user_can_edit_user($user_id, $other_user) {
$user = get_userdata($user_id); $user = get_userdata($user_id);
$other = get_userdata($other_user); $other = get_userdata($other_user);
if ( $user->user_level > $other->user_level || $user->user_level > 8 || $user->ID == $other->ID ) if ( $user->user_level > $other->user_level || $user->user_level > 8 || $user->ID == $other->ID )
return true; return true;
else else
return false; return false;
} }
?> ?>

View File

@ -1,35 +1,35 @@
<?php <?php
function username_exists( $username ) { function username_exists( $username ) {
global $wpdb; global $wpdb;
$username = sanitize_user( $username ); $username = sanitize_user( $username );
$query = "SELECT user_login FROM $wpdb->users WHERE user_login = '$username'"; $query = "SELECT user_login FROM $wpdb->users WHERE user_login = '$username'";
$query = apply_filters('username_exists', $query); $query = apply_filters('username_exists', $query);
return $wpdb->get_var( $query ); return $wpdb->get_var( $query );
} }
function create_user( $username, $password, $email, $user_level ) { function create_user( $username, $password, $email, $user_level ) {
global $wpdb; global $wpdb;
$username = $wpdb->escape( $username ); $username = $wpdb->escape( $username );
$email = $wpdb->escape( $email ); $email = $wpdb->escape( $email );
$password = md5( $password ); $password = md5( $password );
$user_nicename = sanitize_title( $username ); $user_nicename = sanitize_title( $username );
$now = gmdate('Y-m-d H:i:s'); $now = gmdate('Y-m-d H:i:s');
$query = "INSERT INTO $wpdb->users $query = "INSERT INTO $wpdb->users
(user_login, user_pass, user_email, user_registered, user_nicename, display_name) (user_login, user_pass, user_email, user_registered, user_nicename, display_name)
VALUES VALUES
('$username', '$password', '$email', '$now', '$user_nicename', '$username')"; ('$username', '$password', '$email', '$now', '$user_nicename', '$username')";
$query = apply_filters('create_user_query', $query); $query = apply_filters('create_user_query', $query);
$wpdb->query( $query ); $wpdb->query( $query );
$user_id = $wpdb->insert_id; $user_id = $wpdb->insert_id;
$user_level = (int) $user_level; $user_level = (int) $user_level;
update_usermeta( $user_id, $wpdb->prefix . 'user_level', $user_level); update_usermeta( $user_id, $wpdb->prefix . 'user_level', $user_level);
$user = new WP_User($user_id); $user = new WP_User($user_id);
$user->set_role(get_settings('default_role')); $user->set_role(get_settings('default_role'));
return $user_id; return $user_id;
} }
?> ?>