-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWPUserDataSource.php
225 lines (198 loc) · 5.55 KB
/
WPUserDataSource.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<?php
namespace DataKit\Plugin\Data;
use DataKit\DataViews\Data\BaseDataSource;
use DataKit\DataViews\Data\MutableDataSource;
use DataKit\DataViews\Data\Exception\DataNotFoundException;
use DataKit\DataViews\Data\Exception\ActionForbiddenException;
/**
* A data source backed by WordPress users.
*
* @since $ver$
*/
final class WPUserDataSource extends BaseDataSource implements MutableDataSource {
/**
* The base WP_User_Query instance that all queries will use as a starting point.
*
* Example: new \WP_User_Query( [ 'role' => 'editor' ] ) would be the base, and then searches will be performed
* on top of that.
*
* @since $ver$
*
* @var \WP_User_Query
*/
private \WP_User_Query $base_query;
/**
* Creates the data source.
*
* @since $ver$
*
* @param \WP_User_Query|array|string|null $query The WP_User_Query instance or an array of query arguments or null.
*/
public function __construct( $query = null ) {
if ( ! $query instanceof \WP_User_Query ) {
$args = $query;
// Prevent initial query on creation of the data source.
$query = new \WP_User_Query();
$query->prepare_query( $args );
}
$this->base_query = $query;
}
/**
* @inheritDoc
*
* @since $ver$
*/
public function id(): string {
return sprintf( 'wpuser-%s', wp_hash( wp_json_encode( $this->base_query->query_vars ) ) );
}
/**
* Merges the base query with additional query arguments.
*
* @since $ver$
*
* @param array $additional_args Additional query arguments.
*
* @return array The updated query.
*/
private function merge_query_vars( array $additional_args = [] ): array {
return array_merge( $this->base_query->query_vars, $additional_args );
}
/**
* @inheritDoc
*
* @since $ver$
*/
public function get_data_ids( int $limit = 100, int $offset = 0 ): array {
$query = array_merge(
$this->get_sorting(),
[
'number' => $limit,
'offset' => $offset,
'fields' => 'ID',
'search' => '*' . (string) $this->search . '*',
],
);
$query = $this->merge_query_vars( $query );
$user_query = new \WP_User_Query( $query );
$results = $user_query->get_results();
return $results ? array_map( 'strval', $results ) : [];
}
/**
* @inheritDoc
*
* @since $ver$
*/
public function get_data_by_id( string $id ): array {
$user = get_userdata( (int) $id );
if ( ! $user ) {
// phpcs:ignore WordPress.Security.EscapeOutput.ExceptionNotEscaped
throw DataNotFoundException::with_id( $this, $id );
}
// Get all user meta data.
$user_meta = get_user_meta( (int) $id );
// Flatten user meta.
$flattened_meta = [];
foreach ( $user_meta as $key => $value ) {
$flattened_meta[ $key ] = maybe_unserialize( $value[0] );
}
// Combine user data with user meta.
return array_merge(
[
'display_name' => $user->display_name,
'id' => $user->ID,
'user_email' => $user->user_email,
'user_login' => $user->user_login,
'user_nicename' => $user->user_nicename,
'user_registered' => $user->user_registered,
'user_status' => $user->user_status,
'user_url' => $user->user_url,
],
$flattened_meta,
);
}
/**
* @inheritDoc
*
* @since $ver$
*/
public function count(): int {
$query = $this->merge_query_vars(
[
'fields' => 'ID',
'count_total' => true,
'search' => '*' . (string) $this->search . '*',
],
);
$user_query = new \WP_User_Query( $query );
return $user_query->get_total();
}
/**
* Returns the sorting criteria based on the sort object.
*
* @since $ver$
*
* @return array The sorting criteria.
*/
private function get_sorting(): array {
if ( ! $this->sort ) {
return [];
}
$sort = $this->sort->to_array();
return [
'orderby' => $sort['field'],
'order' => strtoupper( $sort['direction'] ),
];
}
/**
* @inheritDoc
*
* @since $ver$
*/
public function can_delete(): bool {
return current_user_can( 'delete_users' );
}
/**
* @inheritDoc
* @since $ver$
*
* @throws DataNotFoundException If the user does not exist before deletion.
* @throws ActionForbiddenException If the current user tries to delete their own user.
*/
public function delete_data_by_id( string ...$ids ): void {
// wp_delete_user() requires user.php, which isn't loaded inside a REST request.
require_once ABSPATH . 'wp-admin/includes/user.php';
foreach ( $ids as $id ) {
if ( ! get_userdata( (int) $id ) ) {
// phpcs:ignore WordPress.Security.EscapeOutput.ExceptionNotEscaped
throw DataNotFoundException::with_id( $this, $id );
}
if ( get_current_user_id() === (int) $id ) {
throw new ActionForbiddenException(
$this, // phpcs:ignore WordPress.Security.EscapeOutput.ExceptionNotEscaped
esc_html__( 'You cannot delete your own user.', 'datakit' ),
);
}
wp_delete_user( (int) $id );
}
}
/**
* @inheritDoc
*
* @since $ver$
*/
public function get_fields(): array {
return [
'ID' => __( 'User ID', 'datakit' ),
'user_login' => __( 'User Login Name', 'datakit' ),
'user_nicename' => __( 'User Nice Name', 'datakit' ),
'user_email' => __( 'User Email', 'datakit' ),
'user_url' => __( 'User URL', 'datakit' ),
'user_registered' => __( 'User Registration Date', 'datakit' ),
'display_name' => __( 'User Display Name', 'datakit' ),
'nickname' => __( 'User Nickname', 'datakit' ),
'first_name' => __( 'User First Name', 'datakit' ),
'last_name' => __( 'User Last Name', 'datakit' ),
'description' => __( 'User Description', 'datakit' ),
];
}
}