diff --git a/main.py b/main.py index 4158182..419b151 100755 --- a/main.py +++ b/main.py @@ -102,23 +102,33 @@ def listmonk_get_list(list): for group_info in authentik_get_groups(): try: list_info = listmonk_get_list('group-' + group_info['name']) - - except Exception as e: + except: print('> Failed to find group as list, creating group-' + group_info['name']) - create_resp = listmonk_create_list('group-' + group_info['name']) - print(create_resp) - continue + try: + create_resp = listmonk_create_list('group-' + group_info['name']) + except: + print('> Failed to create group-' + group_info['name']) + print(create_resp) + finally: + if debug: + print(create_resp) + continue # sync that apps exists as lists for app_info in authentik_get_apps(): try: list_info = listmonk_get_list('app-' + app_info['slug']) - - except Exception as e: + except: print('> Failed to find app as list, creating app-' + app_info['slug']) - create_resp = listmonk_create_list('app-' + app_info['slug']) - print(create_resp) - continue + try: + create_resp = listmonk_create_list('app-' + app_info['slug']) + except: + print('> Failed to create app-' + app_info['slug']) + print(create_resp) + finally: + if debug: + print(create_resp) + continue # ensure that users are synced for user_info in authentik_get_users(): @@ -131,29 +141,51 @@ for user_info in authentik_get_users(): try: subscriber_info = listmonk_get_subscriber(user_info['username']) - if debug: - print(subscriber_info) - print(user_info) - # if get user info fails, assume that we have to create a new one # TOOD: only create if the error is indeed user-existence related - except Exception as e: + except: print('> Failed to find username, creating subscriber') - create_resp = listmonk_create_subscriber(user_info['email'], user_info['username'], status=user_active) - subscriber_info = listmonk_get_subscriber(user_info['username']) - print(create_resp) + try: + create_resp = listmonk_create_subscriber(user_info['email'], user_info['username'], status=user_active) + except: + print('> Subscriber ' + user_info['username'] + ' failed to be created') + print(create_resp) + finally: + print('> Subscriber ' + user_info['username'] + ' successfully created') + subscriber_info = listmonk_get_subscriber(user_info['username']) + if debug: + print(create_resp) + + if debug: + print(subscriber_info) + print(user_info) # checks if user email matches subscriber email if user_info['email'] != subscriber_info['email']: print('> Email check failed, updating') - set_resp = listmonk_set_subscriber(subscriber_info['id'], user_info['email'], user_info['username'], subscriber_info['status']) - print(set_resp) + try: + set_resp = listmonk_set_subscriber(subscriber_info['id'], user_info['email'], user_info['username'], subscriber_info['status']) + except: + print('> Failed to set email address of ' + user_info['username']) + print(set_resp) + finally: + print('> Email of ' + user_info['username'] + ' succesfully set as ' + user_info['email']) + if debug: + print(set_resp) # check if user and subscriber info match as it relates to status if user_active != subscriber_info['status'] and subscriber_info['status'] != "blocklisted": print('> User status check failed, updating') - set_resp = listmonk_set_subscriber(subscriber_info['id'], user_info['email'], user_info['username'], status=user_active) - print(set_resp) + try: + set_resp = listmonk_set_subscriber(subscriber_info['id'], user_info['email'], user_info['username'], status=user_active) + except: + print('> Failed to set status of ' + user_info['username'] + ' as ' + user_active) + print(set_resp) + finally: + print('> Status of ' + user_info['username'] + ' succesfully set as ' + user_active) + if debug: + print(set_resp) + # creates list of lists_id lists_id = [] @@ -176,13 +208,29 @@ for user_info in authentik_get_users(): for id in groups_id: if id not in lists_id: print('> User lists check failed, updating') - set_resp = listmonk_set_list([subscriber_info['id']], "add", groups_id, status="confirmed") - print(set_resp) - break + try: + set_resp = listmonk_set_list([subscriber_info['id']], "add", groups_id, status="confirmed") + except: + print('> Adding to lists of ' + user_info['username'] + ' failed') + print(set_resp) + finally: + print('> List additions of ' + user_info['username'] + ' successfully set') + if debug: + print(set_resp) + break # checks if lists_id is in list of group id # this will fail is user is in a subcriber list, but not in respective group for id in lists_id: if id not in groups_id: print('> User groups check failed, updating') - set_resp = listmonk_set_list([subscriber_info['id']], "remove", [id], status="") + try: + set_resp = listmonk_set_list([subscriber_info['id']], "remove", [id], status="") + except: + print('> Removing from lists of ' + user_info['username'] + ' failed') + print(set_resp) + finally: + print('> List removals of ' + user_info['username'] + ' successfully set') + if debug: + print(set_resp) +