File tree 11 files changed +86
-55
lines changed
account/static/account/js
11 files changed +86
-55
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,9 @@ Note worthy changes
33
33
- The "Forgot your password?" help text can now be more easily customized by
34
34
providing your own ``"account/password_reset_help_text.html" `` template.
35
35
36
+ - Removed inline scripts, so that it becomes possible to use a strong Content
37
+ Security Policy.
38
+
36
39
37
40
Fixes
38
41
-----
Original file line number Diff line number Diff line change
1
+ ( function ( ) {
2
+ const allauth = window . allauth = window . allauth || { }
3
+
4
+ function manageEmailForm ( o ) {
5
+ const actions = document . getElementsByName ( 'action_remove' )
6
+ if ( actions . length ) {
7
+ actions [ 0 ] . addEventListener ( 'click' , function ( e ) {
8
+ if ( ! window . confirm ( o . i18n . confirmDelete ) ) {
9
+ e . preventDefault ( )
10
+ }
11
+ } )
12
+ }
13
+ }
14
+
15
+ allauth . account = {
16
+ forms : {
17
+ manageEmailForm
18
+ }
19
+ }
20
+ } ) ( )
Original file line number Diff line number Diff line change
1
+ ( function ( ) {
2
+ document . addEventListener ( 'DOMContentLoaded' , function ( ) {
3
+ Array . from ( document . querySelectorAll ( 'script[data-allauth-onload]' ) ) . forEach ( scriptElt => {
4
+ const funcRef = scriptElt . dataset . allauthOnload
5
+ if ( typeof funcRef === 'string' && funcRef . startsWith ( 'allauth.' ) ) {
6
+ const funcArg = JSON . parse ( scriptElt . textContent )
7
+ const func = funcRef . split ( '.' ) . reduce ( ( acc , part ) => acc && acc [ part ] , window )
8
+ func ( funcArg )
9
+ }
10
+ } )
11
+ } )
12
+ } ) ( )
Original file line number Diff line number Diff line change 33
33
return addOrSignupForm ( o , addBtn , passwordlessFn )
34
34
}
35
35
36
+ function getData ( o ) {
37
+ if ( typeof o . ids . data !== 'undefined' ) {
38
+ return JSON . parse ( document . getElementById ( o . ids . data ) . textContent )
39
+ }
40
+ return o . data
41
+ }
42
+
36
43
function addOrSignupForm ( o , actionBtn , passwordlessFn ) {
37
44
const credentialInput = document . getElementById ( o . ids . credential )
38
45
const form = credentialInput . closest ( 'form' )
39
46
actionBtn . addEventListener ( 'click' , async function ( ) {
40
47
const passwordless = passwordlessFn ? passwordlessFn ( ) : undefined
41
48
try {
42
- const credential = await createCredentials ( o . data . creation_options , passwordless )
49
+ const credential = await createCredentials ( getData ( o ) . creation_options , passwordless )
43
50
credentialInput . value = JSON . stringify ( credential )
44
51
form . submit ( )
45
52
} catch ( e ) {
81
88
authenticateBtn . addEventListener ( 'click' , async function ( e ) {
82
89
e . preventDefault ( )
83
90
try {
84
- const credential = await webauthnJSON . get ( o . data . request_options )
91
+ const credential = await webauthnJSON . get ( getData ( o ) . request_options )
85
92
credentialInput . value = JSON . stringify ( credential )
86
93
form . submit ( )
87
94
} catch ( e ) {
Original file line number Diff line number Diff line change 1
1
{% extends "account/base_manage_email.html" %}
2
- {% load allauth i18n %}
2
+ {% load static allauth i18n %}
3
3
{% block head_title %}
4
4
{% trans "Email Addresses" %}
5
5
{% endblock head_title %}
74
74
{% endif %}
75
75
{% endblock content %}
76
76
{% block extra_body %}
77
- < script >
78
- ( function ( ) {
79
- var message = "{% trans 'Do you really want to remove the selected email address?' %}" ;
80
- var actions = document . getElementsByName ( 'action_remove' ) ;
81
- if ( actions . length ) {
82
- actions [ 0 ] . addEventListener ( "click" , function ( e ) {
83
- if ( ! confirm ( message ) ) {
84
- e . preventDefault ( ) ;
85
- }
86
- } ) ;
87
- }
88
- } ) ( ) ;
77
+ < script src ="{% static 'account/js/account.js' %} "> </ script >
78
+ < script src ="{% static 'account/js/onload.js' %} "> </ script >
79
+ < script data-allauth-onload ="allauth.account.forms.manageEmailForm " type ="application/json "> {
80
+ "i18n" : { "confirmDelete" : "{% trans 'Do you really want to remove the selected email address?' %}" }
81
+ }
89
82
</ script >
90
83
{% endblock extra_body %}
Original file line number Diff line number Diff line change 54
54
{% endelement %}
55
55
{{ js_data|json_script:"js_data" }}
56
56
{% include "mfa/webauthn/snippets/scripts.html" %}
57
- < script >
58
- allauth . webauthn . forms . authenticateForm ( {
59
- ids : {
60
- authenticate : "mfa_webauthn_authenticate" ,
61
- credential : "{{ webauthn_form.credential.auto_id }}"
62
- } ,
63
- data : JSON . parse ( document . getElementById ( 'js_data' ) . textContent )
64
- } )
57
+ < script data-allauth-onload ="allauth.webauthn.forms.authenticateForm " type ="application/json "> {
58
+ "ids" : {
59
+ "authenticate" : "mfa_webauthn_authenticate" ,
60
+ "credential" : "{{ webauthn_form.credential.auto_id }}" ,
61
+ "data" : "js_data"
62
+ }
63
+ }
65
64
</ script >
66
65
{% endif %}
67
66
{% endif %}
Original file line number Diff line number Diff line change 21
21
{% endelement %}
22
22
{% include "mfa/webauthn/snippets/scripts.html" %}
23
23
{{ js_data|json_script:"js_data" }}
24
- < script >
25
- allauth . webauthn . forms . addForm ( {
26
- ids : {
27
- add : "mfa_webauthn_add" ,
28
- passwordless : "{{ form.passwordless.auto_id }}" ,
29
- credential : "{{ form.credential.auto_id }}"
30
- } ,
31
- data : JSON . parse ( document . getElementById ( 'js_data' ) . textContent )
32
- } )
24
+ < script data-allauth-onload ="allauth.webauthn.forms.addForm " type ="application/json "> {
25
+ "ids" : {
26
+ "add" : "mfa_webauthn_add" ,
27
+ "passwordless" : "{{ form.passwordless.auto_id }}" ,
28
+ "credential" : "{{ form.credential.auto_id }}" ,
29
+ "data" : "js_data"
30
+ }
31
+ }
33
32
</ script >
34
33
{% endblock %}
Original file line number Diff line number Diff line change 18
18
{% endelement %}
19
19
{{ js_data|json_script:"js_data" }}
20
20
{% include "mfa/webauthn/snippets/scripts.html" %}
21
- < script >
22
- allauth . webauthn . forms . authenticateForm ( {
23
- ids : {
24
- authenticate : "mfa_webauthn_reauthenticate" ,
25
- credential : "{{ form.credential.auto_id }}"
26
- } ,
27
- data : JSON . parse ( document . getElementById ( 'js_data' ) . textContent )
28
- } )
21
+ < script data-allauth-onload ="allauth.webauthn.forms.authenticateForm " type ="application/json "> {
22
+ "ids" : {
23
+ "authenticate" : "mfa_webauthn_reauthenticate" ,
24
+ "credential" : "{{ form.credential.auto_id }}" ,
25
+ "data" : "js_data"
26
+ }
27
+ }
29
28
</ script >
30
29
{% endblock %}
Original file line number Diff line number Diff line change 33
33
</ form >
34
34
{% include "mfa/webauthn/snippets/scripts.html" %}
35
35
{{ js_data|json_script:"js_data" }}
36
- < script >
37
- allauth . webauthn . forms . signupForm ( {
38
- ids : {
39
- signup : "mfa_webauthn_signup" ,
40
- credential : "{{ form.credential.auto_id }}"
41
- } ,
42
- data : JSON . parse ( document . getElementById ( 'js_data' ) . textContent )
43
- } )
36
+ < script data-allauth-onload ="allauth.webauthn.forms.signupForm " type ="application/json "> {
37
+ "ids" : {
38
+ "signup" : "mfa_webauthn_signup" ,
39
+ "credential" : "{{ form.credential.auto_id }}" ,
40
+ "data" : "js_data"
41
+ }
42
+ }
44
43
</ script >
45
44
{% endblock %}
Original file line number Diff line number Diff line change 4
4
{{ redirect_field }}
5
5
< input type ="hidden " name ="credential " id ="mfa_credential ">
6
6
</ form >
7
- < script >
8
- allauth . webauthn . forms . loginForm ( {
9
- ids : {
10
- login : "passkey_login" ,
11
- credential : "mfa_credential" ,
12
- }
13
- } )
7
+ < script data-allauth-onload ="allauth.webauthn.forms.loginForm " type ="application/json "> {
8
+ "ids" : {
9
+ "login" : "passkey_login" ,
10
+ "credential" : "mfa_credential"
11
+ }
12
+ }
14
13
</ script >
Original file line number Diff line number Diff line change 2
2
< noscript > {% translate "This functionality requires JavaScript." %}"</ noscript >
3
3
< script src ="{% static 'mfa/js/webauthn-json.js' %} "> </ script >
4
4
< script src ="{% static 'mfa/js/webauthn.js' %} "> </ script >
5
+ < script src ="{% static 'account/js/onload.js' %} "> </ script >
You can’t perform that action at this time.
0 commit comments