prune_captcha 1.18.0__tar.gz → 1.18.1__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.0
3
+ Version: 1.18.1
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/
@@ -66,6 +66,16 @@ PUZZLE_IMAGE_STATIC_PATH = "website/static/website/images/puzzles/"
66
66
 
67
67
  Important: You must import the static files (css, js) present in "prune_captcha/static/".
68
68
 
69
+ ```html
70
+ <header>
71
+ <link
72
+ rel="stylesheet"
73
+ href="{% static 'prune_captcha/css/captcha.css' %}"
74
+ />
75
+ <script defer src="{% static 'prune_captcha/js/captcha.js' %}"></script>
76
+ </header>
77
+ ```
78
+
69
79
  ### Utilisation
70
80
 
71
81
  - GET request (form display)
@@ -116,6 +126,7 @@ Important: You must import the static files (css, js) present in "prune_captcha/
116
126
 
117
127
  | Version | Date | Notes |
118
128
  | ------- | ---------- | ---------------------------------- |
129
+ | 1.18.1 | 2025-05-22 | some improvements |
119
130
  | 1.18.0 | 2025-05-22 | create "addHiddenInputs" func |
120
131
  | 1.17.0 | 2025-05-21 | fix pos_answer |
121
132
  | 1.16.1 | 2025-05-21 | fix static |
@@ -48,6 +48,16 @@ PUZZLE_IMAGE_STATIC_PATH = "website/static/website/images/puzzles/"
48
48
 
49
49
  Important: You must import the static files (css, js) present in "prune_captcha/static/".
50
50
 
51
+ ```html
52
+ <header>
53
+ <link
54
+ rel="stylesheet"
55
+ href="{% static 'prune_captcha/css/captcha.css' %}"
56
+ />
57
+ <script defer src="{% static 'prune_captcha/js/captcha.js' %}"></script>
58
+ </header>
59
+ ```
60
+
51
61
  ### Utilisation
52
62
 
53
63
  - GET request (form display)
@@ -98,6 +108,7 @@ Important: You must import the static files (css, js) present in "prune_captcha/
98
108
 
99
109
  | Version | Date | Notes |
100
110
  | ------- | ---------- | ---------------------------------- |
111
+ | 1.18.1 | 2025-05-22 | some improvements |
101
112
  | 1.18.0 | 2025-05-22 | create "addHiddenInputs" func |
102
113
  | 1.17.0 | 2025-05-21 | fix pos_answer |
103
114
  | 1.16.1 | 2025-05-21 | fix static |
@@ -8,6 +8,7 @@ const addHiddenInputs = () => {
8
8
  const input = document.createElement("input");
9
9
  input.type = "text";
10
10
  input.name = name;
11
+ input.id = `puzzle_${name}`;
11
12
  input.placeholder = name
12
13
  .replace(/_/g, " ")
13
14
  .replace(/\b\w/g, (c) => c.toUpperCase());
@@ -17,8 +18,8 @@ const addHiddenInputs = () => {
17
18
  };
18
19
  addHiddenInputs();
19
20
 
20
- const inputPosX = document.querySelector('input[name="pos_x_answer"]');
21
- const inputPosY = document.querySelector('input[name="pos_y_answer"]');
21
+ const inputPosX = document.querySelector('input[id="puzzle_pos_x_answer"]');
22
+ const inputPosY = document.querySelector('input[id="puzzle_pos_y_answer"]');
22
23
 
23
24
  let isDragging = false;
24
25
  let offsetX = 0;
@@ -19,9 +19,11 @@ def create_and_get_captcha(
19
19
  if f.lower().endswith((".jpg", ".jpeg", ".png", ".gif", ".webp"))
20
20
  ]
21
21
  selected_image = random.choice(puzzle_images)
22
- request.session["pos_x_solution"] = pos_x_solution
23
- request.session["pos_y_solution"] = pos_y_solution
24
- request.session["precision"] = precision
22
+ request.session["puzzle"] = {
23
+ "pos_x_solution": pos_x_solution,
24
+ "pos_y_solution": pos_y_solution,
25
+ "precision": precision,
26
+ }
25
27
  return {
26
28
  "width": width,
27
29
  "height": height,
@@ -40,12 +42,10 @@ def verify_captcha(request: HttpRequest) -> bool:
40
42
  pos_y_answer = int(request.POST.get("pos_y_answer"))
41
43
  if pos_x_answer is None or pos_y_answer is None:
42
44
  return False
43
- pos_x_solution = request.session.get("pos_x_solution")
44
- pos_y_solution = request.session.get("pos_y_solution")
45
- precision = request.session.get("precision")
45
+ puzzle = request.session.get("puzzle")
46
46
  if (
47
- abs(pos_x_solution - pos_x_answer) <= precision
48
- and abs(pos_y_solution - pos_y_answer) <= precision
47
+ abs(puzzle.pos_x_solution - pos_x_answer) <= puzzle.precision
48
+ and abs(puzzle.pos_y_solution - pos_y_answer) <= puzzle.precision
49
49
  ):
50
50
  return True
51
51
  else:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: prune_captcha
3
- Version: 1.18.0
3
+ Version: 1.18.1
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/
@@ -66,6 +66,16 @@ PUZZLE_IMAGE_STATIC_PATH = "website/static/website/images/puzzles/"
66
66
 
67
67
  Important: You must import the static files (css, js) present in "prune_captcha/static/".
68
68
 
69
+ ```html
70
+ <header>
71
+ <link
72
+ rel="stylesheet"
73
+ href="{% static 'prune_captcha/css/captcha.css' %}"
74
+ />
75
+ <script defer src="{% static 'prune_captcha/js/captcha.js' %}"></script>
76
+ </header>
77
+ ```
78
+
69
79
  ### Utilisation
70
80
 
71
81
  - GET request (form display)
@@ -116,6 +126,7 @@ Important: You must import the static files (css, js) present in "prune_captcha/
116
126
 
117
127
  | Version | Date | Notes |
118
128
  | ------- | ---------- | ---------------------------------- |
129
+ | 1.18.1 | 2025-05-22 | some improvements |
119
130
  | 1.18.0 | 2025-05-22 | create "addHiddenInputs" func |
120
131
  | 1.17.0 | 2025-05-21 | fix pos_answer |
121
132
  | 1.16.1 | 2025-05-21 | fix static |
@@ -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.0"
29
+ version = "1.18.1"
30
30
  description = "A tool to protect formulaire from spam."
31
31
  readme = "README.md"
32
32
  dependencies = [
File without changes