diff options
author | Muriithi Frederick Muriuki | 2018-03-31 14:45:17 +0300 |
---|---|---|
committer | Muriithi Frederick Muriuki | 2018-03-31 14:45:17 +0300 |
commit | 31747256e466456cc88aac60780836a6534f18cd (patch) | |
tree | a7b371e4ec217ffb37594e15f5e603ae28511dc2 /wqflask/flask_security/passwordless.py | |
parent | cfce6d80be4fb38573c37d1943db2687d54cf2fc (diff) | |
parent | 5424741a4a126bfd5f04df7cbcdc30b4e1376b86 (diff) | |
download | genenetwork2-31747256e466456cc88aac60780836a6534f18cd.tar.gz |
Merge branch 'testing' of https://github.com/genenetwork/genenetwork2 into testing
* Fix conflicts
Diffstat (limited to 'wqflask/flask_security/passwordless.py')
-rw-r--r-- | wqflask/flask_security/passwordless.py | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/wqflask/flask_security/passwordless.py b/wqflask/flask_security/passwordless.py deleted file mode 100644 index b0accb2c..00000000 --- a/wqflask/flask_security/passwordless.py +++ /dev/null @@ -1,59 +0,0 @@ -# -*- coding: utf-8 -*- -""" - flask.ext.security.passwordless - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - - Flask-Security passwordless module - - :copyright: (c) 2012 by Matt Wright. - :license: MIT, see LICENSE for more details. -""" - -from flask import request, current_app as app -from werkzeug.local import LocalProxy - -from .signals import login_instructions_sent -from .utils import send_mail, url_for_security, get_token_status, \ - config_value - - -# Convenient references -_security = LocalProxy(lambda: app.extensions['security']) - -_datastore = LocalProxy(lambda: _security.datastore) - - -def send_login_instructions(user): - """Sends the login instructions email for the specified user. - - :param user: The user to send the instructions to - :param token: The login token - """ - token = generate_login_token(user) - url = url_for_security('token_login', token=token) - login_link = request.url_root[:-1] + url - - send_mail(config_value('EMAIL_SUBJECT_PASSWORDLESS'), user.email, - 'login_instructions', user=user, login_link=login_link) - - login_instructions_sent.send(dict(user=user, login_token=token), - app=app._get_current_object()) - - -def generate_login_token(user): - """Generates a unique login token for the specified user. - - :param user: The user the token belongs to - """ - return _security.login_serializer.dumps([str(user.id)]) - - -def login_token_status(token): - """Returns the expired status, invalid status, and user of a login token. - For example:: - - expired, invalid, user = login_token_status('...') - - :param token: The login token - """ - return get_token_status(token, 'login', 'LOGIN') |