##### ##### This file is part of Mail-in-a-Box-LDAP which is released under the ##### terms of the GNU Affero General Public License as published by the ##### Free Software Foundation, either version 3 of the License, or (at ##### your option) any later version. See file LICENSE or go to ##### https://github.com/downtownallday/mailinabox-ldap for full license ##### details. ##### class DictQuery(object): @staticmethod def find(data_list, q_list, return_first_exact=False, reverse=False): '''find items in list `data_list` using the query specified in `q_list` (a list of dicts). side-effects: q_list is modified ('_val' is added) ''' if data_list is None: if return_first_exact: return None else: return [] if type(q_list) is not list: q_list = [ q_list ] # set _val to value.lower() if ignorecase is True for q in q_list: if q=='*': continue ignorecase = q.get('ignorecase', False) match_val = q['value'] if ignorecase and match_val is not None: match_val = match_val.lower() q['_val'] = match_val # find all matches matches = [] direction = -1 if reverse else 1 idx = len(data_list)-1 if reverse else 0 while (reverse and idx>=0) or (not reverse and idx