prune_captcha 1.18.4__tar.gz → 1.18.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: prune_captcha
3
- Version: 1.18.4
3
+ Version: 1.18.6
4
4
  Summary: A tool to protect formulaire from spam.
5
5
  Author-email: Arnout <bastien@prune.sh>
6
6
  Project-URL: Made_by, https://prune.sh/
@@ -126,6 +126,8 @@ Important: You must import the static files (css, js) present in "prune_captcha/
126
126
 
127
127
  | Version | Date | Notes |
128
128
  | ------- | ---------- | ---------------------------------- |
129
+ | 1.18.6 | 2025-05-28 | added PUZZLE_HINT_TEXT |
130
+ | 1.18.5 | 2025-05-23 | ValueError fixed |
129
131
  | 1.18.4 | 2025-05-23 | deleted var |
130
132
  | 1.18.3 | 2025-05-22 | add puzzle info |
131
133
  | 1.18.2 | 2025-05-22 | fix |
@@ -108,6 +108,8 @@ Important: You must import the static files (css, js) present in "prune_captcha/
108
108
 
109
109
  | Version | Date | Notes |
110
110
  | ------- | ---------- | ---------------------------------- |
111
+ | 1.18.6 | 2025-05-28 | added PUZZLE_HINT_TEXT |
112
+ | 1.18.5 | 2025-05-23 | ValueError fixed |
111
113
  | 1.18.4 | 2025-05-23 | deleted var |
112
114
  | 1.18.3 | 2025-05-22 | add puzzle info |
113
115
  | 1.18.2 | 2025-05-22 | fix |
@@ -11,3 +11,7 @@ class DjangoPuzzleConfig(AppConfig):
11
11
  raise ImproperlyConfigured(
12
12
  "prune_captcha: vous devez définir PUZZLE_IMAGE_STATIC_PATH dans settings.py"
13
13
  )
14
+ if not hasattr(settings, "PUZZLE_HINT_TEXT "):
15
+ raise ImproperlyConfigured(
16
+ "prune_captcha: vous devez définir PUZZLE_HINT_TEXT dans settings.py"
17
+ )
@@ -1,7 +1,7 @@
1
1
  {% load static %}
2
2
 
3
3
  <div class="prune-captcha">
4
- <p class="puzzle-info">Veuillez glisser la pièce au bon emplacement</p>
4
+ <p class="puzzle-info">{{ puzzle.hint_text }}</p>
5
5
  <div class="puzzle-container" style="width: {{ puzzle.width }}px; height: {{ puzzle.height }}px; background-image: url('{% static puzzle.image %}'); background-size: {{ puzzle.width }}px {{ puzzle.height }}px;">
6
6
  <div class="puzzle-background" style="background-image: url('{% static puzzle.image %}'); background-size: {{ puzzle.width }}px {{ puzzle.height }}px;"></div>
7
7
  <div class="puzzle-mask" style="top: {{ puzzle.pos_y_solution }}px; left: {{ puzzle.pos_x_solution }}px; width: {{ puzzle.piece_width }}px; height: {{ puzzle.piece_height }}px;"></div>
@@ -34,12 +34,20 @@ def create_and_get_captcha(
34
34
  "piece_pos_x": piece_pos_x,
35
35
  "piece_pos_y": piece_pos_y,
36
36
  "image": f"{puzzle_images_path}{selected_image}",
37
+ "hint_text": settings.PUZZLE_HINT_TEXT,
37
38
  }
38
39
 
39
40
 
40
41
  def verify_captcha(request: HttpRequest) -> bool:
41
- pos_x_answer = int(request.POST.get("pos_x_answer"))
42
- pos_y_answer = int(request.POST.get("pos_y_answer"))
42
+ pos_x_answer_str = request.POST.get("pos_x_answer")
43
+ pos_y_answer_str = request.POST.get("pos_y_answer")
44
+ if pos_x_answer_str is None or pos_y_answer_str is None:
45
+ return False
46
+ try:
47
+ pos_x_answer = int(pos_x_answer_str)
48
+ pos_y_answer = int(pos_y_answer_str)
49
+ except ValueError:
50
+ return False
43
51
  if pos_x_answer is None or pos_y_answer is None:
44
52
  return False
45
53
  puzzle = request.session.get("puzzle")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: prune_captcha
3
- Version: 1.18.4
3
+ Version: 1.18.6
4
4
  Summary: A tool to protect formulaire from spam.
5
5
  Author-email: Arnout <bastien@prune.sh>
6
6
  Project-URL: Made_by, https://prune.sh/
@@ -126,6 +126,8 @@ Important: You must import the static files (css, js) present in "prune_captcha/
126
126
 
127
127
  | Version | Date | Notes |
128
128
  | ------- | ---------- | ---------------------------------- |
129
+ | 1.18.6 | 2025-05-28 | added PUZZLE_HINT_TEXT |
130
+ | 1.18.5 | 2025-05-23 | ValueError fixed |
129
131
  | 1.18.4 | 2025-05-23 | deleted var |
130
132
  | 1.18.3 | 2025-05-22 | add puzzle info |
131
133
  | 1.18.2 | 2025-05-22 | fix |
@@ -26,7 +26,7 @@ classifiers = [
26
26
  keywords = ["captcha", "django", "code-quality"]
27
27
  urls = {Made_by = "https://prune.sh/"}
28
28
  name = "prune_captcha"
29
- version = "1.18.4"
29
+ version = "1.18.6"
30
30
  description = "A tool to protect formulaire from spam."
31
31
  readme = "README.md"
32
32
  dependencies = [
File without changes