blob: d8bf1fa1d80c931be01d73fa6a620606f501d081 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
import random
import hashlib
from werkzeug import generate_password_hash
from .abstract import AbstractController
from web.models import User
class UserController(AbstractController):
_db_cls = User
_user_id_key = 'id'
def unset_activation_key(self, obj_id):
self.update({'id': obj_id}, {'activation_key': ""})
def set_activation_key(self, obj_id):
key = str(random.getrandbits(256)).encode("utf-8")
key = hashlib.sha512(key).hexdigest()[:86]
self.update({'id': obj_id}, {'activation_key': key})
def _handle_password(self, attrs):
if attrs.get('password'):
attrs['pwdhash'] = generate_password_hash(attrs.pop('password'))
elif 'password' in attrs:
del attrs['password']
def create(self, **attrs):
self._handle_password(attrs)
return super().create(**attrs)
def update(self, filters, attrs):
self._handle_password(attrs)
return super().update(filters, attrs)
|