BP_Groups_Member_Suggestions

Adds support for user at-mentions (for users in a specific Group) to the Suggestions API.

Description

Source

File: bp-groups/classes/class-bp-groups-member-suggestions.php

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
class BP_Groups_Member_Suggestions extends BP_Members_Suggestions {
 
    /**
     * Default arguments for this suggestions service.
     *
     * @since BuddyPress 2.1.0
     * @var array $args {
     *     @type int    $group_id     Positive integers will restrict the search to members in that group.
     *                                Negative integers will restrict the search to members in every other group.
     *     @type int    $limit        Maximum number of results to display. Default: 16.
     *     @type bool   $only_friends If true, only match the current user's friends. Default: false.
     *     @type string $term         The suggestion service will try to find results that contain this string.
     *                                Mandatory.
     * }
     */
    protected $default_args = array(
        'group_id'     => 0,
        'limit'        => 16,
        'only_friends' => false,
        'term'         => '',
        'type'         => '',
    );
 
 
    /**
     * Validate and sanitise the parameters for the suggestion service query.
     *
     * @since BuddyPress 2.1.0
     *
     * @return true|WP_Error If validation fails, return a WP_Error object. On success, return true (bool).
     */
    public function validate() {
        $this->args['group_id'] = (int) $this->args['group_id'];
 
        /**
         * Filters the arguments used to validate and sanitize suggestion service query.
         *
         * @since BuddyPress 2.1.0
         *
         * @param array                        $args  Array of arguments for the suggestion service query.
         * @param BP_Groups_Member_Suggestions $this  Instance of the current suggestion class.
         */
        $this->args             = apply_filters( 'bp_groups_member_suggestions_args', $this->args, $this );
 
        // Check for invalid or missing mandatory parameters.
        if ( ! $this->args['group_id'] || ! bp_is_active( 'groups' ) ) {
            return new WP_Error( 'missing_requirement' );
        }
 
        // Check that the specified group_id exists, and that the current user can access it.
        $the_group = groups_get_group( absint( $this->args['group_id'] ) );
 
        if ( $the_group->id === 0 || ! $the_group->user_has_access ) {
            return new WP_Error( 'access_denied' );
        }
 
        /**
         * Filters the validation results for the suggestion service query.
         *
         * @since BuddyPress 2.1.0
         *
         * @param bool|WP_Error                $value True if valid, WP_Error if not.
         * @param BP_Groups_Member_Suggestions $this  Instance of the current suggestion class.
         */
        return apply_filters( 'bp_groups_member_suggestions_validate_args', parent::validate(), $this );
    }
 
    /**
     * Find and return a list of username suggestions that match the query.
     *
     * @since BuddyPress 2.1.0
     *
     * @return array|WP_Error Array of results. If there were problems, returns a WP_Error object.
     */
    public function get_suggestions() {
        $user_query = array(
            'count_total'     => ''// Prevents total count.
            'type'            => 'alphabetical',
 
            'group_role'      => array( 'admin', 'member', 'mod' ),
            'page'            => 1,
            'per_page'        => $this->args['limit'],
            'search_terms'    => $this->args['term'],
            'search_wildcard' => 'right',
        );
 
        // Only return matches of friends of this user.
        if ( $this->args['only_friends'] && is_user_logged_in() ) {
            $user_query['user_id'] = get_current_user_id();
        }
 
        // Positive Group IDs will restrict the search to members in that group.
        if ( $this->args['group_id'] > 0 ) {
            $user_query['group_id'] = $this->args['group_id'];
 
        // Negative Group IDs will restrict the search to members in every other group.
        } else {
            $group_query = array(
                'count_total'     => ''// Prevents total count.
                'type'            => 'alphabetical',
 
                'group_id'        => absint( $this->args['group_id'] ),
                'group_role'      => array( 'admin', 'member', 'mod' ),
                'page'            => 1,
            );
            $group_users = new BP_Group_Member_Query( $group_query );
 
            if ( $group_users->results ) {
                $user_query['exclude'] = wp_list_pluck( $group_users->results, 'ID' );
            } else {
                $user_query['include'] = array( 0 );
            }
        }
 
        /**
         * Filters the arguments for the user query for the Suggestion API.
         *
         * @since BuddyPress 2.1.0
         *
         * @param array                        $user_query Array of arguments for the query.
         * @param BP_Groups_Member_Suggestions $this       Instance of the current suggestion class.
         */
        $user_query = apply_filters( 'bp_groups_member_suggestions_query_args', $user_query, $this );
        if ( is_wp_error( $user_query ) ) {
            return $user_query;
        }
 
 
        if ( isset( $user_query['group_id'] ) ) {
            $user_query = new BP_Group_Member_Query( $user_query );
        } else {
            $user_query = new BP_User_Query( $user_query );
        }
 
        $results = array();
        foreach ( $user_query->results as $user ) {
            $result          = new stdClass();
            $result->ID      = $user->user_nicename;
            $result->image   = bp_core_fetch_avatar( array( 'html' => false, 'item_id' => $user->ID ) );
            $result->name    = bp_core_get_user_displayname( $user->ID );
            $result->user_id = $user->ID;
 
            $results[] = $result;
        }
 
        /**
         * Filters the results of the member suggestions user query.
         *
         * @since BuddyPress 2.1.0
         *
         * @param array                        $results Array of member suggestions.
         * @param BP_Groups_Member_Suggestions $this    Instance of the current suggestion class.
         */
        return apply_filters( 'bp_groups_member_suggestions_get_suggestions', $results, $this );
    }
}

Changelog

Changelog
Version Description
BuddyPress 2.1.0 Introduced.

Methods

  • get_suggestions — Find and return a list of username suggestions that match the query.
  • validate — Validate and sanitise the parameters for the suggestion service query.

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.