Update CaptchaWidget to log generated captcha code and session details

1 parent d3981fcf
...@@ -380,7 +380,9 @@ class CaptchaWidget(Widget): ...@@ -380,7 +380,9 @@ class CaptchaWidget(Widget):
file_name = "" file_name = ""
# if not cstruct: # if not cstruct:
kode_captcha, file_name = img_captcha(self.request) kode_captcha, file_name = img_captcha(self.request)
self.request.session["captcha"] = kode_captcha self.request.session["captcha_code"] = kode_captcha
_logging.error(f"Generated captcha code: {kode_captcha}")
_logging.error(self.request.session.items())
# cstruct = cstruct or self.url+file_name # cstruct = cstruct or self.url+file_name
cstruct = self.url+file_name cstruct = self.url+file_name
...@@ -398,7 +400,7 @@ class CaptchaWidget(Widget): ...@@ -398,7 +400,7 @@ class CaptchaWidget(Widget):
pstruct = pstruct.strip() pstruct = pstruct.strip()
if not pstruct: if not pstruct:
return null return null
settings = get_settings()
captcha_message = "Captcha tidak sesuai" captcha_message = "Captcha tidak sesuai"
captcha_session = self.request.session.get("captcha", "") captcha_session = self.request.session.get("captcha", "")
if captcha_session: if captcha_session:
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!