Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
site-kwei
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
aeltheos
site-kwei
Commits
39132d93
Commit
39132d93
authored
4 years ago
by
Dorian Lesbre
Browse files
Options
Downloads
Patches
Plain Diff
Added missing files
parent
73e90a6b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
accounts/tokens.py
+77
-0
77 additions, 0 deletions
accounts/tokens.py
home/templates/registration/activation_email.html
+8
-0
8 additions, 0 deletions
home/templates/registration/activation_email.html
with
85 additions
and
0 deletions
accounts/tokens.py
0 → 100644
+
77
−
0
View file @
39132d93
# Code adapted from django.contrib.auth.tokens
from
datetime
import
date
from
django.conf
import
settings
from
django.utils.crypto
import
constant_time_compare
,
salted_hmac
from
django.utils.http
import
base36_to_int
,
int_to_base36
class
EmailVerificationTokenGenerator
:
"""
Strategy object used to generate and check tokens for the email
verification mechanism.
"""
key_salt
=
"
shared.EmailVerificationTokenGenerator
"
secret
=
settings
.
SECRET_KEY
def
make_token
(
self
,
user
):
"""
Return a token that can be used once to do a password reset
for the given user.
"""
return
self
.
_make_token_with_timestamp
(
user
,
self
.
_num_days
(
self
.
_today
()))
def
check_token
(
self
,
user
,
token
):
"""
Check that a password reset token is correct for a given user.
"""
if
not
(
user
and
token
):
return
False
# Parse the token
try
:
ts_b36
,
_
=
token
.
split
(
"
-
"
)
except
ValueError
:
return
False
try
:
ts
=
base36_to_int
(
ts_b36
)
except
ValueError
:
return
False
# Check that the timestamp/uid has not been tampered with
if
not
constant_time_compare
(
self
.
_make_token_with_timestamp
(
user
,
ts
),
token
):
return
False
return
True
def
_make_token_with_timestamp
(
self
,
user
,
timestamp
):
# timestamp is number of days since 2001-1-1. Converted to
# base 36, this gives us a 3 digit string until about 2121
ts_b36
=
int_to_base36
(
timestamp
)
hash_string
=
salted_hmac
(
self
.
key_salt
,
self
.
_make_hash_value
(
user
,
timestamp
),
secret
=
self
.
secret
,
).
hexdigest
()[::
2
]
# Limit to 20 characters to shorten the URL.
return
"
%s-%s
"
%
(
ts_b36
,
hash_string
)
def
_make_hash_value
(
self
,
user
,
timestamp
):
"""
Hash the user
'
s primary key and its email to make sure that the token
is invalidated after email change.
Running this data through salted_hmac() prevents cracking attempts,
provided the secret isn
'
t compromised.
"""
return
str
(
user
.
pk
)
+
user
.
email
+
str
(
timestamp
)
def
_num_days
(
self
,
dt
):
return
(
dt
-
date
(
2001
,
1
,
1
)).
days
def
_today
(
self
):
# Used for mocking in tests
return
date
.
today
()
email_token_generator
=
EmailVerificationTokenGenerator
()
This diff is collapsed.
Click to expand it.
home/templates/registration/activation_email.html
0 → 100644
+
8
−
0
View file @
39132d93
{% autoescape off %}
Bonjour {{ user.first_name }} {{ user.last_name }},
Veuillez suivre le lien ci dessous pour valider votre compte :
http://{{ domain }}{% url 'accounts:activate' uidb64=uid token=token %}
{% endautoescape %}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment