Skip to content

Commit bfebd97

Browse files
committed
feat(templates): drop inline script
1 parent 2134a48 commit bfebd97

File tree

11 files changed

+86
-55
lines changed

11 files changed

+86
-55
lines changed

ChangeLog.rst

+3
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ Note worthy changes
3333
- The "Forgot your password?" help text can now be more easily customized by
3434
providing your own ``"account/password_reset_help_text.html"`` template.
3535

36+
- Removed inline scripts, so that it becomes possible to use a strong Content
37+
Security Policy.
38+
3639

3740
Fixes
3841
-----
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+
})()

allauth/mfa/static/mfa/js/webauthn.js

+9-2
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,20 @@
3333
return addOrSignupForm(o, addBtn, passwordlessFn)
3434
}
3535

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+
3643
function addOrSignupForm (o, actionBtn, passwordlessFn) {
3744
const credentialInput = document.getElementById(o.ids.credential)
3845
const form = credentialInput.closest('form')
3946
actionBtn.addEventListener('click', async function () {
4047
const passwordless = passwordlessFn ? passwordlessFn() : undefined
4148
try {
42-
const credential = await createCredentials(o.data.creation_options, passwordless)
49+
const credential = await createCredentials(getData(o).creation_options, passwordless)
4350
credentialInput.value = JSON.stringify(credential)
4451
form.submit()
4552
} catch (e) {
@@ -81,7 +88,7 @@
8188
authenticateBtn.addEventListener('click', async function (e) {
8289
e.preventDefault()
8390
try {
84-
const credential = await webauthnJSON.get(o.data.request_options)
91+
const credential = await webauthnJSON.get(getData(o).request_options)
8592
credentialInput.value = JSON.stringify(credential)
8693
form.submit()
8794
} catch (e) {

allauth/templates/account/email.html

+6-13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "account/base_manage_email.html" %}
2-
{% load allauth i18n %}
2+
{% load static allauth i18n %}
33
{% block head_title %}
44
{% trans "Email Addresses" %}
55
{% endblock head_title %}
@@ -74,17 +74,10 @@
7474
{% endif %}
7575
{% endblock content %}
7676
{% 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+
}
8982
</script>
9083
{% endblock extra_body %}

allauth/templates/mfa/authenticate.html

+7-8
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,13 @@
5454
{% endelement %}
5555
{{ js_data|json_script:"js_data" }}
5656
{% 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+
}
6564
</script>
6665
{% endif %}
6766
{% endif %}

allauth/templates/mfa/webauthn/add_form.html

+8-9
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,13 @@
2121
{% endelement %}
2222
{% include "mfa/webauthn/snippets/scripts.html" %}
2323
{{ 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+
}
3332
</script>
3433
{% endblock %}

allauth/templates/mfa/webauthn/reauthenticate.html

+7-8
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,12 @@
1818
{% endelement %}
1919
{{ js_data|json_script:"js_data" }}
2020
{% 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+
}
2928
</script>
3029
{% endblock %}

allauth/templates/mfa/webauthn/signup_form.html

+7-8
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,12 @@
3333
</form>
3434
{% include "mfa/webauthn/snippets/scripts.html" %}
3535
{{ 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+
}
4443
</script>
4544
{% endblock %}

allauth/templates/mfa/webauthn/snippets/login_script.html

+6-7
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44
{{ redirect_field }}
55
<input type="hidden" name="credential" id="mfa_credential">
66
</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+
}
1413
</script>

allauth/templates/mfa/webauthn/snippets/scripts.html

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
<noscript>{% translate "This functionality requires JavaScript." %}"</noscript>
33
<script src="{% static 'mfa/js/webauthn-json.js' %}"></script>
44
<script src="{% static 'mfa/js/webauthn.js' %}"></script>
5+
<script src="{% static 'account/js/onload.js' %}"></script>

0 commit comments

Comments
 (0)