7
7
8
8
9
9
from django .db .models import Max
10
+ from django .utils import timezone
10
11
11
12
import string
12
13
import random
13
14
14
15
from django .contrib .auth .models import User
15
16
from django .db .models import signals
16
17
import json
18
+
19
+ from phonenumber_field .modelfields import PhoneNumberField
20
+
21
+ from project_template .settings import BANK_ACCOUNT_NUMBER_SEED
17
22
from .tasks import create_pdf
18
23
# Create your models here.
19
24
20
25
21
26
class BankAccount (models .Model ):
22
27
user = models .ForeignKey (User )
23
28
number = models .CharField (max_length = 12 , unique = True )
29
+ mobile_num = PhoneNumberField ()
30
+ balance = models .DecimalField (max_digits = 20 , decimal_places = 2 , default = 0 )
24
31
password3d = models .CharField (max_length = 128 )
25
32
grid = JSONField ()
26
33
cvv = models .CharField (max_length = 3 )
27
34
35
+ created_at = models .DateTimeField (default = timezone .now )
36
+ updated_at = models .DateTimeField (default = timezone .now )
37
+
28
38
def save (self , force_insert = False , force_update = False , using = None ,
29
- update_fields = None ):
39
+ update_fields = None ):
30
40
if self .pk is None :
31
- #Account Number generation
32
- prev_acc_num = BankAccount .objects .aggregate (max = Max ('number' ))['max' ]
33
- if prev_acc_num == '' :
34
- prev_acc_num = 0
35
- self .number = str (int (prev_acc_num ) + 1 ).zfill (12 )
36
-
37
- #3dpassword generation
38
- self ._raw_password3d = '' .join (random .choice (string .digits ) for _ in range (6 ))
39
- self .set_password3d (self ._raw_password3d )
40
-
41
- #CVV Generation
42
- self .cvv = '' .join (random .choice (string .digits ) for _ in range (3 ))
43
-
44
- #grid generation
45
- key = 'A'
46
- self ._raw_grid = {}
47
- self .grid = {}
48
-
49
- for i in range (16 ):
50
- rnd = '' .join (random .choice (string .digits ) for _ in range (2 ))
51
- self ._raw_grid [key ] = rnd
52
- self .grid [key ] = make_password (rnd )
53
- key = chr (ord (key ) + 1 )
41
+ self .initialize_account ()
42
+
43
+ # Update timestamp
44
+ self .updated_at = timezone .now ()
54
45
55
46
return super (BankAccount , self ).save (
56
47
force_insert = force_insert ,
@@ -59,6 +50,31 @@ def save(self, force_insert=False, force_update=False, using=None,
59
50
update_fields = update_fields
60
51
)
61
52
53
+ def initialize_account (self ):
54
+ # Account Number generation
55
+ prev_acc_num = BankAccount .objects .aggregate (max = Max ('number' ))['max' ]
56
+ if prev_acc_num == '' :
57
+ prev_acc_num = BANK_ACCOUNT_NUMBER_SEED
58
+ self .number = str (int (prev_acc_num ) + 1 ).zfill (12 )
59
+
60
+ # 3dpassword generation
61
+ self ._raw_password3d = '' .join (random .choice (string .digits ) for _ in range (6 ))
62
+ self .set_password3d (self ._raw_password3d )
63
+
64
+ # CVV Generation
65
+ self .cvv = '' .join (random .choice (string .digits ) for _ in range (3 ))
66
+
67
+ # grid generation
68
+ key = 'A'
69
+ self ._raw_grid = {}
70
+ self .grid = {}
71
+
72
+ for i in range (16 ):
73
+ rnd = '' .join (random .choice (string .digits ) for _ in range (2 ))
74
+ self ._raw_grid [key ] = rnd
75
+ self .grid [key ] = make_password (rnd )
76
+ key = chr (ord (key ) + 1 )
77
+
62
78
def set_password3d (self , raw_password ):
63
79
self .password3d = make_password (raw_password )
64
80
@@ -80,9 +96,9 @@ def get_raw_grid(self):
80
96
81
97
82
98
def create_bank_account (sender , instance , created , ** kwargs ):
83
- if created :
84
- acc = BankAccount (user = instance )
85
- acc .save ()
86
- create_pdf (acc )
99
+ if created :
100
+ acc = BankAccount (user = instance )
101
+ acc .save ()
102
+ create_pdf (acc )
87
103
88
104
signals .post_save .connect (create_bank_account , sender = User )
0 commit comments