Skip to content

Commit dc3b071

Browse files
author
Srinath Menon
committed
transaction model done,
mobile num added to account,
1 parent 48c9c07 commit dc3b071

File tree

15 files changed

+215
-30
lines changed

15 files changed

+215
-30
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.9.6 on 2016-11-16 21:13
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations, models
6+
import django.utils.timezone
7+
import phonenumber_field.modelfields
8+
9+
10+
class Migration(migrations.Migration):
11+
12+
dependencies = [
13+
('accounts', '0002_bankaccount_grid'),
14+
]
15+
16+
operations = [
17+
migrations.AddField(
18+
model_name='bankaccount',
19+
name='balance',
20+
field=models.DecimalField(decimal_places=2, default=0, max_digits=20),
21+
),
22+
migrations.AddField(
23+
model_name='bankaccount',
24+
name='created_at',
25+
field=models.DateTimeField(default=django.utils.timezone.now),
26+
),
27+
migrations.AddField(
28+
model_name='bankaccount',
29+
name='mobile_num',
30+
field=phonenumber_field.modelfields.PhoneNumberField(default='+919503668116', max_length=128),
31+
preserve_default=False,
32+
),
33+
migrations.AddField(
34+
model_name='bankaccount',
35+
name='updated_at',
36+
field=models.DateTimeField(default=django.utils.timezone.now),
37+
),
38+
]

project_template/accounts/models.py

+44-28
Original file line numberDiff line numberDiff line change
@@ -7,50 +7,41 @@
77

88

99
from django.db.models import Max
10+
from django.utils import timezone
1011

1112
import string
1213
import random
1314

1415
from django.contrib.auth.models import User
1516
from django.db.models import signals
1617
import json
18+
19+
from phonenumber_field.modelfields import PhoneNumberField
20+
21+
from project_template.settings import BANK_ACCOUNT_NUMBER_SEED
1722
from .tasks import create_pdf
1823
# Create your models here.
1924

2025

2126
class BankAccount(models.Model):
2227
user = models.ForeignKey(User)
2328
number = models.CharField(max_length=12, unique=True)
29+
mobile_num = PhoneNumberField()
30+
balance = models.DecimalField(max_digits=20, decimal_places=2, default=0)
2431
password3d = models.CharField(max_length=128)
2532
grid = JSONField()
2633
cvv = models.CharField(max_length=3)
2734

35+
created_at = models.DateTimeField(default=timezone.now)
36+
updated_at = models.DateTimeField(default=timezone.now)
37+
2838
def save(self, force_insert=False, force_update=False, using=None,
29-
update_fields=None):
39+
update_fields=None):
3040
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()
5445

5546
return super(BankAccount, self).save(
5647
force_insert=force_insert,
@@ -59,6 +50,31 @@ def save(self, force_insert=False, force_update=False, using=None,
5950
update_fields=update_fields
6051
)
6152

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+
6278
def set_password3d(self, raw_password):
6379
self.password3d = make_password(raw_password)
6480

@@ -80,9 +96,9 @@ def get_raw_grid(self):
8096

8197

8298
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)
87103

88104
signals.post_save.connect(create_bank_account, sender=User)

project_template/project_template/settings.py

+5
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,11 @@
4444

4545
# custom apps
4646
'accounts',
47+
'transactions',
4748

4849
# 3rd party apps
4950
'djcelery',
51+
'phonenumber_field',
5052

5153
'rest_framework',
5254
'rest_framework.authtoken',
@@ -186,3 +188,6 @@
186188
ACCOUNT_USERNAME_REQUIRED = False
187189

188190
SITE_ID = 1
191+
192+
# Custom Variables
193+
BANK_ACCOUNT_NUMBER_SEED = '500000000000'

project_template/requirements.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
amqp==1.4.9
22
anyjson==0.3.3
3+
Babel==2.3.4
34
billiard==3.3.0.23
45
celery==3.1.0
56
Django==1.9.6
67
django-allauth==0.28.0
78
django-celery==3.1.17
9+
django-phonenumber-field==1.1.0
810
django-rest-auth==0.8.2
911
djangorestframework==3.5.3
1012
kombu==3.0.37
1113
oauthlib==2.0.0
14+
phonenumberslite==7.7.4
1215
Pillow==3.4.2
1316
pkg-resources==0.0.0
1417
psycopg2==2.6.2

project_template/staticfiles/angular-src/myapps/auth/signup/controller.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@
1111
var vm = this;
1212

1313
vm.email = '';
14+
vm.mobile_num = '';
1415
vm.password1 = '';
1516
vm.password2 = '';
1617

1718
vm.signUp = signUp;
1819

1920
function signUp() {
20-
signUpFactory.signUp(vm.email, vm.password1, vm.password2)
21+
signUpFactory.signUp(vm.email, vm.mobile_num, vm.password1, vm.password2)
2122
.then(function (response) {
2223

2324
});

project_template/staticfiles/angular-src/myapps/auth/signup/services.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@
1313

1414
factory.signUp = signUp;
1515

16-
function signUp(email, password1, password2) {
16+
function signUp(email, mobile_num, password1, password2) {
1717
var deferred = $q.defer();
1818
$http({
1919
url : '/rest-auth/registration/',
2020
method : 'POST',
2121
data : {
2222
'email' : email,
23+
'mobile_num': mobile_num,
2324
'password1' : password1,
2425
'password2' : password2
2526
}

project_template/staticfiles/angular-src/myapps/auth/signup/signup.html

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ <h2 class="md-toolbar-tools"><span>Sign up</span></h2>
88
<label>Email</label>
99
<input ng-model="vm.email" type="email" required>
1010
</md-input-container>
11+
<md-input-container>
12+
<label>Mobile Number</label>
13+
<input ng-model="vm.mobile_num" type="text" required>
14+
</md-input-container>
1115
<md-input-container>
1216
<label>Password</label>
1317
<input name="password1" ng-model="vm.password1" type="password" required>

project_template/transactions/__init__.py

Whitespace-only changes.
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.contrib import admin
2+
3+
# Register your models here.

project_template/transactions/apps.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from __future__ import unicode_literals
2+
3+
from django.apps import AppConfig
4+
5+
6+
class TransactionsConfig(AppConfig):
7+
name = 'transactions'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.9.6 on 2016-11-16 21:13
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations, models
6+
import django.utils.timezone
7+
8+
9+
class Migration(migrations.Migration):
10+
11+
initial = True
12+
13+
dependencies = [
14+
]
15+
16+
operations = [
17+
migrations.CreateModel(
18+
name='Transaction',
19+
fields=[
20+
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
21+
('from_account_number', models.CharField(max_length=12)),
22+
('to_account_number', models.CharField(max_length=12)),
23+
('amount', models.DecimalField(decimal_places=2, max_digits=20)),
24+
('status', models.IntegerField(choices=[(0, 'Initiated'), (1, 'Declined'), (2, 'Aborted'), (3, 'Successful')], default=0)),
25+
('created_at', models.DateTimeField(default=django.utils.timezone.now)),
26+
('updated_at', models.DateTimeField(default=django.utils.timezone.now)),
27+
],
28+
),
29+
]

project_template/transactions/migrations/__init__.py

Whitespace-only changes.
+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
from __future__ import unicode_literals
2+
3+
from django.db import models
4+
5+
6+
# Create your models here.
7+
from django.utils import timezone
8+
9+
from accounts.models import BankAccount
10+
11+
TRANSACTION_STATUS = (
12+
(0, 'Initiated'),
13+
(1, 'Declined'),
14+
(2, 'Aborted'),
15+
(3, 'Successful'),
16+
)
17+
18+
19+
class Transaction(models.Model):
20+
from_account_number = models.CharField(max_length=12)
21+
to_account_number = models.CharField(max_length=12)
22+
amount = models.DecimalField(max_digits=20, decimal_places=2)
23+
status = models.IntegerField(choices=TRANSACTION_STATUS, default=0)
24+
25+
created_at = models.DateTimeField(default=timezone.now)
26+
updated_at = models.DateTimeField(default=timezone.now)
27+
28+
def save(self, force_insert=False, force_update=False, using=None,
29+
update_fields=None):
30+
31+
# Update timestamp
32+
self.updated_at = timezone.now()
33+
34+
return super(Transaction, self).save(
35+
force_insert=force_insert,
36+
force_update=force_update,
37+
using=using,
38+
update_fields=update_fields
39+
)
40+
41+
def abort(self):
42+
self.status = 1
43+
self.save()
44+
return self
45+
46+
def transfer(self):
47+
try:
48+
from_acc = BankAccount.objects.get(number=self.from_account_number)
49+
except models.Model.DoesNotExist:
50+
from_acc = None
51+
52+
try:
53+
to_acc = BankAccount.objects.get(number=self.to_account_number)
54+
except models.Model.DoesNotExist:
55+
to_acc = None
56+
57+
if from_acc:
58+
if from_acc.balance < self.amount:
59+
raise Exception('Insufficient Funds')
60+
from_acc.balance = from_acc.balance - self.amount
61+
from_acc.save()
62+
63+
if to_acc:
64+
to_acc.balance = to_acc.balance + self.amount
65+
to_acc.save()
66+
67+
self.status = 3
68+
self.save()
69+
return self
70+
71+
72+
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.test import TestCase
2+
3+
# Create your tests here.
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.shortcuts import render
2+
3+
# Create your views here.

0 commit comments

Comments
 (0)