mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-17 02:32:32 -05:00
remove debug
This commit is contained in:
@@ -80,20 +80,15 @@ def send_sms_to_provider(notification):
|
||||
|
||||
# We start by trying to get the phone number from a job in s3. If we fail, we assume
|
||||
# the phone number is for the verification code on login, which is not a job.
|
||||
print(f"IN THE TRY AND JOB_ID is {notification.job_id}")
|
||||
recipient = None
|
||||
# It is our 2facode, maybe
|
||||
if notification.job_id is None:
|
||||
print(f"IN THE IF AND WE ARE GOING TO GET THE 2FA KEY")
|
||||
key = f"2facode-{notification.id}".replace(" ", "")
|
||||
print(hilite(f"KEY IS SEND_TO_PROVIDERS IS {key}"))
|
||||
recipient = redis_store.get(key)
|
||||
if recipient:
|
||||
recipient = recipient.decode("utf-8")
|
||||
|
||||
print(hilite(f"RECIPIENT IN SEND TO PROVIDERS IS {recipient}"))
|
||||
else:
|
||||
print(f"IN THE ELSE AND WE ARE GOING TO GET FROM S3")
|
||||
try:
|
||||
recipient = get_phone_number_from_s3(
|
||||
notification.service_id,
|
||||
@@ -103,9 +98,7 @@ def send_sms_to_provider(notification):
|
||||
except Exception:
|
||||
# It is our 2facode, maybe
|
||||
key = f"2facode-{notification.id}".replace(" ", "")
|
||||
print(hilite(f"KEY IS SEND_TO_PROVIDERS IS {key}"))
|
||||
recipient = redis_store.get(key)
|
||||
print(hilite(f"RECIPIENT IN SEND TO PROVIDERS IS {recipient}"))
|
||||
|
||||
if recipient:
|
||||
recipient = recipient.decode("utf-8")
|
||||
|
||||
@@ -307,9 +307,7 @@ def send_user_2fa_code(user_id, code_type):
|
||||
|
||||
|
||||
def send_user_sms_code(user_to_send_to, data):
|
||||
print(hilite("SEND_USER_SMS_CODE"))
|
||||
recipient = data.get("to") or user_to_send_to.mobile_number
|
||||
print(hilite(f"RECIPIENT {recipient}"))
|
||||
secret_code = create_secret_code()
|
||||
personalisation = {"verify_code": secret_code}
|
||||
|
||||
@@ -373,7 +371,6 @@ def create_2fa_code(
|
||||
key = f"2facode-{saved_notification.id}".replace(" ", "")
|
||||
recipient = str(recipient)
|
||||
redis_store.set(key, recipient, ex=60 * 60)
|
||||
print(hilite(f"SET REDIS 2facode-{saved_notification.id} to {recipient}"))
|
||||
|
||||
# Assume that we never want to observe the Notify service's research mode
|
||||
# setting for this notification - we still need to be able to log into the
|
||||
|
||||
Reference in New Issue
Block a user