BP_REST_Members_Actions_Endpoint::get_item_schema()

Get the members action schema, conforming to JSON Schema.

Description

Return

(array)

Source

File: bp-members/classes/class-bp-rest-members-actions-endpoint.php

206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
public function get_item_schema() {
    $schema = array(
        '$schema'    => 'http://json-schema.org/draft-04/schema#',
        'title'      => 'bp_members_action',
        'type'       => 'object',
        'properties' => array(
            'action' => array(
                'description' => __( 'Action performed or not.', 'buddyboss' ),
                'type'        => 'boolean',
                'context'     => array( 'edit' ),
                'readonly'    => true,
            ),
            'data'   => array(
                'description' => __( 'Object of member.', 'buddyboss' ),
                'type'        => 'object',
                'context'     => array( 'edit' ),
                'readonly'    => true,
                'properties'  => array(
                    'id'                => array(
                        'description' => __( 'A unique numeric ID for the Member.', 'buddyboss' ),
                        'type'        => 'integer',
                        'context'     => array( 'embed', 'view', 'edit' ),
                        'readonly'    => true,
                    ),
                    'name'              => array(
                        'description' => __( 'Display name for the member.', 'buddyboss' ),
                        'type'        => 'string',
                        'context'     => array( 'embed', 'view', 'edit' ),
                        'arg_options' => array(
                            'sanitize_callback' => 'sanitize_text_field',
                        ),
                    ),
                    'mention_name'      => array(
                        'description' => __( 'The name used for that user in @-mentions.', 'buddyboss' ),
                        'type'        => 'string',
                        'context'     => array( 'embed', 'view', 'edit' ),
                        'arg_options' => array(
                            'sanitize_callback' => 'sanitize_text_field',
                        ),
                    ),
                    'link'              => array(
                        'description' => __( 'Profile URL of the member.', 'buddyboss' ),
                        'type'        => 'string',
                        'format'      => 'uri',
                        'context'     => array( 'embed', 'view', 'edit' ),
                        'readonly'    => true,
                    ),
                    'user_login'        => array(
                        'description' => __( 'An alphanumeric identifier for the Member.', 'buddyboss' ),
                        'type'        => 'string',
                        'context'     => array( 'embed', 'view', 'edit' ),
                        'required'    => true,
                        'arg_options' => array(
                            'sanitize_callback' => array( $this, 'check_username' ),
                        ),
                    ),
                    'member_types'      => array(
                        'description' => __( 'Member types associated with the member.', 'buddyboss' ),
                        'type'        => 'object',
                        'context'     => array( 'embed', 'view', 'edit' ),
                        'readonly'    => true,
                    ),
                    'xprofile'          => array(
                        'description' => __( 'Member XProfile groups and its fields.', 'buddyboss' ),
                        'type'        => 'array',
                        'context'     => array( 'view', 'edit' ),
                        'readonly'    => true,
                    ),
                    'friendship_status' => array(
                        'description' => __( 'Friendship relation with, current, logged in user.', 'buddyboss' ),
                        'type'        => 'string',
                        'context'     => array( 'embed', 'view', 'edit' ),
                        'readonly'    => true,
                        'enum'        => array( 'is_friends', 'not_friends', 'pending', 'awaiting_response' ),
                    ),
                    'is_following'      => array(
                        'description' => __( 'Check if a user is following or not.', 'buddyboss' ),
                        'type'        => 'boolean',
                        'context'     => array( 'embed', 'view', 'edit' ),
                        'readonly'    => true,
                    ),
                ),
            ),
        ),
    );
 
    // Avatars.
    if ( true === buddypress()->avatar->show_avatars ) {
        $avatar_properties = array();
 
        $avatar_properties['full'] = array(
            /* translators: Full image size for the member Avatar */
            'description' => sprintf( __( 'Avatar URL with full image size (%1$d x %2$d pixels).', 'buddyboss' ), number_format_i18n( bp_core_avatar_full_width() ), number_format_i18n( bp_core_avatar_full_height() ) ),
            'type'        => 'string',
            'format'      => 'uri',
            'context'     => array( 'embed', 'view', 'edit' ),
        );
 
        $avatar_properties['thumb'] = array(
            /* translators: Thumb imaze size for the member Avatar */
            'description' => sprintf( __( 'Avatar URL with thumb image size (%1$d x %2$d pixels).', 'buddyboss' ), number_format_i18n( bp_core_avatar_thumb_width() ), number_format_i18n( bp_core_avatar_thumb_height() ) ),
            'type'        => 'string',
            'format'      => 'uri',
            'context'     => array( 'embed', 'view', 'edit' ),
        );
 
        $schema['properties']['data']['avatar_urls'] = array(
            'description' => __( 'Avatar URLs for the member.', 'buddyboss' ),
            'type'        => 'object',
            'context'     => array( 'embed', 'view', 'edit' ),
            'readonly'    => true,
            'properties'  => $avatar_properties,
        );
    }
 
    $schema['properties']['data']['cover_url'] = array(
        'description' => __( 'Cover images URL for the member.', 'buddyboss' ),
        'type'        => 'string',
        'context'     => array( 'embed', 'view', 'edit' ),
        'readonly'    => true,
    );
 
    /**
     * Filters the members action schema.
     *
     * @param array $schema The endpoint schema.
     */
    return apply_filters( 'bp_rest_members_action_schema', $this->add_additional_fields_schema( $schema ) );
}

Changelog

Changelog
Version Description
0.1.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.