-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathplugin.php
147 lines (124 loc) · 4.57 KB
/
plugin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<?php
/**
* Plugin Name: WP-API Get User
* Plugin URI: https://github.com/dest81/wp-api-get-user-by-username
* Description: that allows get user by username related by WP-API
* Version: 0.1.1
* Author URI:
* License: MIT
*/
class WP_API_Get_User {
protected $server;
/**
*
* Prepare a User entity from a WP_User instance.
*
* @param WP_User $user
* @param string $context One of 'view', 'edit', 'embed'
* @return array
*/
protected function prepare_user( $user, $context = 'view' ) {
$user_fields = array(
'ID' => $user->ID,
'username' => $user->user_login,
'name' => $user->display_name,
'first_name' => $user->first_name,
'last_name' => $user->last_name,
'nickname' => $user->nickname,
'slug' => $user->user_nicename,
'URL' => $user->user_url,
'avatar' => json_get_avatar_url( $user->user_email ),
'description' => $user->description,
);
$user_fields['registered'] = date( 'c', strtotime( $user->user_registered ) );
if ( $context === 'view' || $context === 'edit' ) {
$user_fields['roles'] = $user->roles;
$user_fields['capabilities'] = $user->allcaps;
$user_fields['email'] = false;
}
if ( $context === 'edit' ) {
// The user's specific caps should only be needed if you're editing
// the user, as allcaps should handle most uses
$user_fields['email'] = $user->user_email;
$user_fields['extra_capabilities'] = $user->caps;
}
$user_fields['meta'] = array(
'links' => array(
'self' => json_url( '/users/' . $user->ID ),
'archives' => json_url( '/users/' . $user->ID . '/posts' ),
),
);
return apply_filters( 'json_prepare_user', $user_fields, $user, $context );
}
/**
* Class constructor
*/
public function __construct() {
add_action('wp_json_server_before_serve', array($this, 'init'));
}
/**
* Plugin bootstrap
*
* @param WP_JSON_ResponseHandler $server Server object.
*/
public function init($server) {
$this->server = $server;
add_filter('json_endpoints', array($this, 'register_routes'));
}
/**
* Registers routes for the endpoints
*
* @param array $routes Existing routes
* @return array Modified routes
*/
public function register_routes($routes) {
$routes['/users/user/(?P<login>[0-9a-zA-Z_-]+)'] = array(
array(array($this, 'get_user_by_login'), WP_JSON_Server::READABLE)
);
$routes['/users/email/(?P<email>.+)'] = array(
array(array($this, 'get_user_by_email'), WP_JSON_Server::READABLE)
);
return $routes;
}
/**
* Retrieve a user by login.
*
* @param str $login User Login
* @param string $context
* @return response
*/
public function get_user_by_login( $login, $context = 'view' ) {
$login = (string) $login;
$current_user_id = get_current_user_id();
if ( $current_user_id !== $id && ! current_user_can( 'list_users' ) ) {
return new WP_Error( 'json_user_cannot_list', __( 'Sorry, you are not allowed to view this user.' ), array( 'status' => 403 ) );
}
$user = get_user_by( 'login', $login );
if ( empty( $user->ID ) ) {
//return new WP_Error( 'json_user_invalid_id', __( 'Invalid username.' ), array( 'status' => 400 ) );
return [];
}
return $this->prepare_user( $user, $context );
}
/**
* Retrieve a user by email.
*
* @param str $email User Email
* @param string $context
* @return response
*/
public function get_user_by_email( $email, $context = 'view' ) {
$email = (string) $email;
$current_user_id = get_current_user_id();
if ( $current_user_id !== $id && ! current_user_can( 'list_users' ) ) {
return new WP_Error( 'json_user_cannot_list', __( 'Sorry, you are not allowed to view this user.' ), array( 'status' => 403 ) );
}
$user = get_user_by( 'email', $email );
if ( empty( $user->ID ) ) {
//return new WP_Error( 'json_user_invalid_id', __( 'Invalid username.' ), array( 'status' => 400 ) );
return [];
}
return $this->prepare_user( $user, $context );
}
}
$multipost = new WP_API_Get_User();