You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.3 KiB
34 lines
1.3 KiB
from flask import current_app
|
|
from itsdangerous import URLSafeTimedSerializer as Serializer
|
|
from datetime import datetime
|
|
from minibase.app import db, login_manager
|
|
from flask_login import UserMixin
|
|
|
|
# The Default User Loading proccess
|
|
@login_manager.user_loader
|
|
def load_user(user_id):
|
|
return User.query.get(int(user_id))
|
|
|
|
class User(db.Model, UserMixin):
|
|
id = db.Column(db.Integer, primary_key=True)
|
|
username = db.Column(db.String(20), unique=True, nullable=False)
|
|
email_account = db.Column(db.String(120), unique=True, nullable=False)
|
|
email_comm = db.Column(db.String(120), unique=False, nullable=False)
|
|
image_file = db.Column(db.String(20), nullable=False, default='default.jpg')
|
|
password = db.Column(db.String(60), nullable=False)
|
|
# Additional Querry to link a post wiht an author in the sql this won't be an field
|
|
# posts = db.relationship('Post', backref='author', lazy=True)
|
|
|
|
def get_reset_token(self, expires_sec=1800):
|
|
s = Serializer(current_app.config['SECRET_KEY'], expires_sec)
|
|
return s.dumps({'user_id': self.id}).decode('utf-8')
|
|
|
|
@staticmethod
|
|
def verify_reset_token(token):
|
|
s = Serializer(current_app.config['SECRET_KEY'])
|
|
try:
|
|
user_id = s.loads(token)['user_id']
|
|
except:
|
|
return 0
|
|
return User.query.get(user_id)
|