def get_customers_by_match(self, login, matches): if login in current_app.config['ADMIN_USERS']: return '*' # all customers for match in [login] + matches: response = g.db.customers.find_one({"match": match}, projection={"customer": 1, "_id": 0}) if response: return response['customer'] raise NoCustomerMatch("No customer lookup configured for user '%s' or '%s'" % (login, ','.join(matches)))
def get_customers_by_match(self, login, matches): if login in current_app.config['ADMIN_USERS']: return '*' # all customers for match in [login] + matches: select = """SELECT customer FROM customers WHERE match=%s""" response = self._fetchone(select, (match,)) if response: return response.customer raise NoCustomerMatch("No customer lookup configured for user '%s' or '%s'" % (login, ','.join(matches)))
def get_customers_by_match(self, login, matches): if login in current_app.config['ADMIN_USERS']: return '*' # all customers customers = [] for match in [login] + matches: response = g.db.customers.find_one({'match': match}, projection={'customer': 1, '_id': 0}) if response: customers.append(response['customer']) if customers: if '*' in customers: return '*' # all customers return customers raise NoCustomerMatch("No customer lookup configured for user '{}' or '{}'".format(login, ','.join(matches)))
def get_customers_by_match(self, login, matches): if login in current_app.config['ADMIN_USERS']: return '*' # all customers customers = [] for match in [login] + matches: select = """SELECT customer FROM customers WHERE match=%s""" response = self._fetchone(select, (match,)) if response: customers.append(response.customer) if customers: if '*' in customers: return '*' # all customers return customers raise NoCustomerMatch("No customer lookup configured for user '{}' or '{}'".format(login, ','.join(matches)))