Working on event person, registration, badge, session, presentation, and presenter create and update. _v3 things

This commit is contained in:
Scott Idem
2021-08-25 16:25:46 -04:00
parent 8ff404e534
commit c93792634a
11 changed files with 372 additions and 74 deletions

View File

@@ -115,20 +115,80 @@ def get_contact_rec_list(
# ### END ### API Contact Methods ### get_contact_rec_list() ###
# ### BEGIN ### API Contact Methods ### get_account_id_w_contact_id() ###
# Updated 2021-08-24
def get_account_id_w_contact_id(
contact_id: int|str,
) -> bool|int|None:
log.setLevel(logging.WARNING) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
log.debug(locals())
if contact_id := redis_lookup_id_random(record_id_random=contact_id, table_name='contact'): pass
else: return False
data = {}
data['contact_id'] = contact_id
sql = f"""
SELECT `contact`.id AS 'contact_id', `contact`.id_random AS 'contact_id_random', `contact`.account_id AS account_id
FROM `contact` AS `contact`
WHERE `contact`.id = :contact_id
LIMIT 1;
"""
log.setLevel(logging.WARNING) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
if contact_data_result := sql_select(data=data, sql=sql):
log.setLevel(logging.WARNING) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
log.debug(contact_data_result)
if account_id := contact_data_result.get('account_id', None): return account_id
else: return False
else: return None
# ### END ### API Contact Methods ### get_account_id_w_contact_id() ###
# ### BEGIN ### API Contact Methods ### create_contact_obj() ###
# NOTE: This will create a contact and then also create a linked address if contact_obj.address data is passed.
# NOTE: In the future it should be required that account_id, for_type, and for_id should be passed separately. account_id might not be required *if* it can be looked up based on for_type and for_id.
# Reviewed and updated 2021-08-24
def create_contact_obj(
contact_obj_new: Contact_Base,
account_id: int|str = None,
for_type: str = None,
for_id: int|str = None,
create_sub_obj: bool = False,
fail_any: bool = False, # Fail if any thing goes wrong for sub objects
) -> int|bool:
log.setLevel(logging.WARNING) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
log.debug(locals())
if not contact_obj_new:
return False
if account_id := redis_lookup_id_random(record_id_random=account_id, table_name='account'): pass
else: return False
if for_id := redis_lookup_id_random(record_id_random=for_id, table_name=for_type): pass
else: return False
log.debug(type(contact_obj_new))
if isinstance(contact_obj_new, dict):
if account_id:
contact_obj_new['account_id'] = account_id
if for_type:
contact_obj_new['for_type'] = for_type
if for_id:
contact_obj_new['for_id'] = for_id
try:
contact_obj_new = Contact_Base(**contact_obj_new)
log.setLevel(logging.DEBUG) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
log.debug(contact_obj_new)
except ValidationError as e:
log.error(e.json())
return False
else:
if account_id:
contact_obj_new.account_id = account_id
if for_type:
contact_obj_new.for_type = for_type
if for_id:
contact_obj_new.for_id = for_id
contact_obj_data = contact_obj_new.dict(by_alias=False, exclude_defaults=False, exclude_unset=True, exclude={'address', 'created_on', 'updated_on'})
@@ -144,7 +204,13 @@ def create_contact_obj(
address_obj_new = contact_obj_new.address
address_obj_new.for_type = 'contact'
address_obj_new.for_id = contact_id
create_address_obj_result = create_address_obj(address_obj_new=address_obj_new)
create_address_obj_result = create_address_obj(
address_obj_new = address_obj_new,
account_id = account_id,
for_type = 'contact',
for_id = contact_id,
fail_any = fail_any,
)
if isinstance(create_address_obj_result, int):
address_id = create_address_obj_result
# NOTE: This last update should no longer be needed now that the contact.address_id is not supposed to be used.
@@ -173,13 +239,16 @@ def update_contact_obj(
contact_obj_up: Contact_Base,
create_sub_obj: bool = False,
fail_any: bool = False, # Fail if any thing goes wrong for sub objects
return_dict: bool = False,
) -> bool:
log.setLevel(logging.WARNING) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
log.setLevel(logging.DEBUG) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
log.debug(locals())
if contact_id := redis_lookup_id_random(record_id_random=contact_id, table_name='contact'): pass
else: return False
account_id = get_account_id_w_contact_id(contact_id)
contact_obj_up.id = contact_id
log.debug(contact_obj_up)
@@ -189,34 +258,104 @@ def update_contact_obj(
#contact_dict_up = contact_obj_up.dict(by_alias=False, exclude_unset=True)
if contact_obj_up.address_id and contact_obj_up.address:
address_id = contact_obj_up.address_id
address_obj_up = contact_obj_up.address
log.debug(address_id)
log.debug(address_obj_up)
if address_obj_up_result := update_address_obj(
address_id = address_id,
address_obj_up = address_obj_up,
create_sub_obj = create_sub_obj,
):
log.debug(address_obj_up_result)
if contact_obj_up.address:
log.setLevel(logging.DEBUG) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
address_obj_unknown = contact_obj_up.address
log.debug(address_obj_unknown)
if isinstance(contact_obj_up.address, dict):
address_id = address_obj_unknown.get('address_id_random', None)
else:
log.debug(address_obj_up_result)
return False
elif contact_obj_up.address and not contact_obj_up.address.id:
# NOTE: This will blindly create a new address even if there was one associated but the contact.address_id was not found.
address_obj_in = contact_obj_up.address
log.debug(address_obj_in)
if address_obj_in_result := create_address_obj(address_obj_new=address_obj_in):
# log.setLevel(logging.DEBUG) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
log.debug(address_obj_in_result)
# NOTE: This last update should no longer be needed now that the contact.address_id is not supposed to be used.
# Need to update the contact with the new address_id
contact_obj_up.address_id = address_obj_in_result # REMOVE
address_id = address_obj_unknown.id
if address_id:
# from app.methods.address_methods import update_address_obj_v3
if update_address_obj_result := update_address_obj(
address_id = address_id,
address_obj_up = address_obj_unknown,
create_sub_obj = create_sub_obj,
fail_any = fail_any,
):
address_id = update_address_obj_result
log.info(f'Address updated. Address ID: {address_id}')
else:
log.warning(f'Address not updated. Contact ID: {contact_id}')
log.debug(update_address_obj_result)
address_id = None
if fail_any: return False
if isinstance(update_address_obj_result, int):
address_id = update_address_obj_result
log.info(f'Address updated. Address ID: {address_id}')
else:
log.warning(f'Address not updated. Contact ID: {contact_id}')
log.debug(update_address_obj_result)
address_id = None
if fail_any: return False
else:
# log.setLevel(logging.DEBUG) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
log.debug(address_obj_in_result)
return False
log.info(f'No Address ID found.')
# from app.methods.address_methods import create_address_obj_v3
if create_address_obj_result := create_address_obj(
account_id = account_id,
for_type = 'contact',
for_id = contact_id,
address_obj_new = address_obj_unknown,
fail_any = fail_any,
):
if isinstance(create_address_obj_result, int):
address_id = create_address_obj_result
log.info(f'Address created. Address ID: {address_id}')
else:
log.warning(f'Address not created. Contact ID: {contact_id}')
log.debug(create_address_obj_result)
address_id = None
if fail_any: return False
else:
log.warning(f'Address not created. Contact ID: {contact_id}')
log.debug(create_address_obj_result)
address_id = None
if fail_any: return False
# return_dict['address_id'] = address_id
else:
log.info('Address not found or not in a dict.')
pass
# if contact_obj_up.address_id and contact_obj_up.address:
# address_id = contact_obj_up.address_id
# address_obj_up = contact_obj_up.address
# log.debug(address_id)
# log.debug(address_obj_up)
# if address_obj_up_result := update_address_obj(
# address_id = address_id,
# address_obj_up = address_obj_up,
# create_sub_obj = create_sub_obj,
# ):
# log.debug(address_obj_up_result)
# else:
# log.debug(address_obj_up_result)
# return False
# elif contact_obj_up.address and not contact_obj_up.address.id:
# # NOTE: This will blindly create a new address even if there was one associated but the contact.address_id was not found.
# address_obj_in = contact_obj_up.address
# log.debug(address_obj_in)
# if address_obj_in_result := create_address_obj(
# address_obj_new = address_obj_in,
# account_id = account_id,
# for_type = 'contact',
# for_id = contact_id,
# ):
# # log.setLevel(logging.DEBUG) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
# log.debug(address_obj_in_result)
# # NOTE: This last update should no longer be needed now that the contact.address_id is not supposed to be used.
# # Need to update the contact with the new address_id
# contact_obj_up.address_id = address_obj_in_result # REMOVE
# else:
# # log.setLevel(logging.DEBUG) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
# log.debug(address_obj_in_result)
# return False
contact_dict_up = contact_obj_up.dict(by_alias=False, exclude_unset=True, exclude={'address'})
log.debug(contact_dict_up)