dibbler/helpers.py

72 lines
1.9 KiB
Python
Raw Normal View History

2010-05-07 19:32:39 +02:00
from db import *
from sqlalchemy import or_
def search_user(string, session):
exact_match = session.query(User).filter(or_(User.name==string, User.card==string)).first()
if exact_match:
return exact_match
user_list = session.query(User).filter(or_(User.name.like('%'+string+'%'),User.card.like('%'+string+'%'))).all()
return user_list
def search_product(string, session):
exact_match = session.query(Product)\
.filter(or_(Product.bar_code==string,
Product.name==string)).first()
if exact_match:
return exact_match
product_list = session.query(Product)\
.filter(or_(Product.bar_code.like('%'+string+'%'),
Product.name.like('%'+string+'%'))).all()
return product_list
def guess_data_type(string):
if string.startswith('NTNU'):
return 'card'
if string.isdigit():
return 'bar_code'
if string.isalpha() and string.islower():
return 'username'
return 'product_name'
2010-05-07 19:32:39 +02:00
def retrieve_user(string, session):
first = session.query(User).filter(or_(User.name==string, User.card==string)).first()
if first:
print "Found user "+first.name
return first
else:
list = session.query(User).filter(or_(User.name.like('%'+string+'%'),User.card.like('%'+string+'%'))).all()
if len(list) == 0:
print "No users found matching your search"
return None
if len(list) == 1:
print "Found one user: "+list[0].name
if confirm():
return list[0]
else:
return None
else:
print "Found "+str(len(list))+" users:"
return select_from_list(list)
def confirm(prompt='Confirm? (y/n) '):
2010-05-07 19:32:39 +02:00
while True:
input = raw_input(prompt)
2010-05-07 19:32:39 +02:00
if input in ["y","yes"]:
return True
elif input in ["n","no"]:
return False
else:
print "Nonsense!"
def select_from_list(list):
while True:
for i in range(len(list)):
print i+1, " ) ", list[i].name
choice = raw_input("Select user :\n")
if choice in [str(x+1) for x in range(len(list))]:
return list[int(choice)-1]
else:
return None