*: make email naming consistent

This commit is contained in:
Jens Langhammer 2020-06-18 19:35:54 +02:00
parent afc8baff5f
commit 5e8a1e3c0d
13 changed files with 50 additions and 19 deletions

View File

@ -15,7 +15,7 @@ nav:
- Stages:
- Captcha Stage: flow/stages/captcha/index.md
- Dummy Stage: flow/stages/dummy/index.md
- E-Mail Stage: flow/stages/email/index.md
- Email Stage: flow/stages/email/index.md
- Identification Stage: flow/stages/identification/index.md
- Invitation Stage: flow/stages/invitation/index.md
- OTP Stage: flow/stages/otp/index.md

View File

@ -24,10 +24,8 @@ OAUTH2_PROVIDER = {
"SCOPES": {
"openid": "Access OpenID Userinfo",
"openid:userinfo": "Access OpenID Userinfo",
"email": "Access OpenID E-Mail",
# 'write': 'Write scope',
# 'groups': 'Access to your groups',
"user:email": "GitHub Compatibility: User E-Mail",
"email": "Access OpenID Email",
"user:email": "GitHub Compatibility: User Email",
"read:org": "GitHub Compatibility: User Groups",
}
}

View File

@ -6,13 +6,13 @@ from passbook.stages.email.models import EmailStage
class EmailStageSendForm(forms.Form):
"""Form used when sending the e-mail to prevent multiple emails being sent"""
"""Form used when sending the email to prevent multiple emails being sent"""
invalid = forms.CharField(widget=forms.HiddenInput, required=True)
class EmailStageForm(forms.ModelForm):
"""Form to create/edit E-Mail Stage"""
"""Form to create/edit Email Stage"""
class Meta:

View File

@ -8,7 +8,7 @@ from passbook.flows.models import Stage
class EmailTemplates(models.TextChoices):
"""Templates used for rendering the E-Mail"""
"""Templates used for rendering the Email"""
PASSWORD_RESET = (
"stages/email/for_email/password_reset.html",

View File

@ -22,7 +22,7 @@ QS_KEY_TOKEN = "token"
class EmailStageView(FormView, StageView):
"""E-Mail stage which sends E-Mail for verification"""
"""Email stage which sends Email for verification"""
form_class = EmailStageSendForm
template_name = "stages/email/waiting_message.html"
@ -41,7 +41,7 @@ class EmailStageView(FormView, StageView):
token = get_object_or_404(Token, pk=request.GET[QS_KEY_TOKEN])
self.executor.plan.context[PLAN_CONTEXT_PENDING_USER] = token.user
token.delete()
messages.success(request, _("Successfully verified E-Mail."))
messages.success(request, _("Successfully verified Email."))
return self.executor.stage_ok()
return super().get(request, *args, **kwargs)

View File

@ -27,7 +27,7 @@ def send_mails(stage: EmailStage, *messages: List[EmailMultiAlternatives]):
)
# pylint: disable=unused-argument
def _send_mail_task(self, email_stage_pk: int, message: Dict[Any, Any]):
"""Send E-Mail according to EmailStage parameters from background worker.
"""Send Email according to EmailStage parameters from background worker.
Automatically retries if message couldn't be sent."""
stage: EmailStage = EmailStage.objects.get(pk=email_stage_pk)
backend = stage.backend

View File

@ -33,7 +33,7 @@
</table>
<p>
{% blocktrans with expires=expires|naturaltime %}
If you did not request a password change, please ignore this E-Mail. The link above is valid for {{ expires }}.
If you did not request a password change, please ignore this Email. The link above is valid for {{ expires }}.
{% endblocktrans %}
</p>
</td>

View File

@ -7,7 +7,7 @@
<form method="POST" class="pf-c-form">
<p>
{% blocktrans %}
Check your E-Mails for a password reset link.
Check your Emails for a password reset link.
{% endblocktrans %}
</p>
{% csrf_token %}
@ -15,7 +15,7 @@
{% block beneath_form %}
{% endblock %}
<div class="pf-c-form__group pf-m-action">
<button class="pf-c-button pf-m-primary pf-m-block" type="submit">{% trans "Send Recovery E-Mail." %}</button>
<button class="pf-c-button pf-m-primary pf-m-block" type="submit">{% trans "Send Recovery Email." %}</button>
</div>
</form>
{% endblock %}

View File

@ -61,7 +61,7 @@ class TestIdentificationStage(TestCase):
)
def test_invalid_with_username(self):
"""Test invalid with username (user exists but stage only allows e-mail)"""
"""Test invalid with username (user exists but stage only allows email)"""
form_data = {"uid_field": self.user.username}
response = self.client.post(
reverse(
@ -72,7 +72,7 @@ class TestIdentificationStage(TestCase):
self.assertEqual(response.status_code, 200)
def test_invalid_with_invalid_email(self):
"""Test with invalid e-mail (user doesn't exist) -> Will return to login form"""
"""Test with invalid email (user doesn't exist) -> Will return to login form"""
form_data = {"uid_field": self.user.email + "test"}
response = self.client.post(
reverse(

View File

@ -110,7 +110,7 @@ class EnableView(LoginRequiredMixin, FormView):
self.static_device = StaticDevice(user=request.user, confirmed=False)
self.static_device.save()
# Create 9 tokens and save them
# TODO: Send static tokens via E-Mail
# TODO: Send static tokens via Email
for _counter in range(0, 9):
token = StaticToken(
device=self.static_device, token=StaticToken.random_token()

View File

@ -0,0 +1,33 @@
# Generated by Django 3.0.7 on 2020-06-18 17:35
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("passbook_stages_prompt", "0003_auto_20200615_1641"),
]
operations = [
migrations.AlterField(
model_name="prompt",
name="type",
field=models.CharField(
choices=[
("text", "Text"),
("username", "Username"),
("email", "Email"),
("password", "Password"),
("number", "Number"),
("checkbox", "Checkbox"),
("data", "Date"),
("data-time", "Date Time"),
("separator", "Separator"),
("hidden", "Hidden"),
("static", "Static"),
],
max_length=100,
),
),
]

View File

@ -16,7 +16,7 @@ class FieldTypes(models.TextChoices):
TEXT = "text"
# Same as text, but has autocomplete for password managers
USERNAME = "username"
EMAIL = "e-mail"
EMAIL = "email"
PASSWORD = "password" # noqa # nosec
NUMBER = "number"
CHECKBOX = "checkbox"

View File

@ -6080,7 +6080,7 @@ definitions:
enum:
- text
- username
- e-mail
- email
- password
- number
- checkbox