-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPayPal.sql
651 lines (547 loc) · 11.8 KB
/
PayPal.sql
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
create database PayPal;
use PayPal;
-- creating Account table
create table Account
(
actId int identity(1,1) primary key,
email varchar(100),
passwd varchar(50),
_name varchar(50),
phoneNum varchar(50)
)
-- creating Admin account
create table AdminAccount
(
adminId int identity(1,1) primary key,
actId int foreign key references Account(actId) on update cascade,
privileges int,
)
-- creating user account table, it will hold both normi and business users
create table UserAccount
(
actId int primary key foreign key references Account(actId) on update cascade,
_address varchar(200),
_status varchar(100),
_type int,
businessName varchar(200) null
)
-- creating invoice table
create table Invoice
(
invoiceId int identity(1,1) primary key,
bill float,
dateGen date,
receipt varchar(100)
);
create table CreditCard
(
id int identity(1,1) primary key,
expirationDate date,
cvv int,
cardNum varchar(50),
balance float
)
create table UserCards
(
id int identity(1,1) primary key,
cardId int foreign key references CreditCard(id),
userId int foreign key references Account(actId)
)
-- creating shipment table
create table Shipment
(
shipmentId int identity(1,1) primary key,
_address varchar(200),
_status varchar(100),
_User int foreign key references Account(actId),
dispatchDate date,
arrivalDate date,
details varchar(200),
fee float
)
-- Creating a Table Standard Transaction
create table Transactions
(
id int identity(1,1) primary key,
datePerformed date,
amount float,
invoiceId int foreign key references Invoice(invoiceId) on delete set null on update cascade,
transStatus varchar(100),
instant bit,
shipmentID int foreign key references Shipment(shipmentId) on delete set null on update cascade null,
beneficiary int foreign key references Account(actId),
benefactor int foreign key references Account(actId),
_type int
)
-- creating Request table
create table Request
(
reqId int identity(1,1) primary key,
_message varchar(200),
_status varchar(200),
requester int foreign key references Account(actId)
)
-- creating Monetary request
create table monetaryReq
(
reqId int foreign key references Request(reqId),
id int identity(1,1) primary key,
amount float,
requestee int foreign key references Account(actId)
)
-- creating Report table
create table Report
(
id int identity(1,1) primary key,
reqId int foreign key references Request(reqId),
response varchar(200),
adminAct int foreign key references AdminAccount(adminId),
reportedAct int foreign key references Account(actId)
)
create table UserOrders
(
id int identity(1,1) primary key,
orderId int foreign key references Shipment(shipmentId),
userId int foreign key references Account(actId)
)
-- proc to add a std user to UserAccount
go
create proc addStdUser
@name varchar(50),
@email varchar(100),
@passwd varchar(50),
@phone varchar(50),
@addr varchar(200)
as
begin
insert into dbo.Account values(@email,@passwd,@name,@phone);
declare @id int = 0
select @id=actId
from Account
where Account._name = @name and Account.email=@email
insert into UserAccount values(@id,@addr,'active',1,null);
return;
end
-- proc to add business user to UserAcccount
go
create proc addBsnUser
@name varchar(50),
@email varchar(100),
@passwd varchar(100),
@phone varchar(100),
@addr varchar(200),
@bnName varchar(200)
as
begin
insert into dbo.Account values(@email,@passwd,@name,@phone);
declare @id int = 0
select @id=actId
from Account
where Account._name = @name and Account.email=@email
insert into UserAccount values(@id,@addr,'active',2,@bnName);
return;
end
-- proc to add an Admin account to Accounts and AdminAccounts
go
create proc addAdmin
@name varchar(50),
@email varchar(100),
@passwd varchar(100),
@phone varchar(100),
@priv int
as
begin
insert into dbo.Account values(@email,@passwd,@name,@phone);
declare @id int = 0
select @id=actId
from Account
where Account._name = @name and Account.email=@email
insert into AdminAccount values(@id,@priv);
return;
end
-- proc that returns the table of all user accounts
go
create proc getAllUserAccounts
as
begin
select *
from Account join UserAccount on Account.actId = UserAccount.actId
end
-- proc that returns the table of all admins
go
create proc getAllAdmins
as
begin
select *
from Account join AdminAccount on Account.actId = AdminAccount.actId
end
-- proc that returns account specified by actId
go
create proc getAccount
@actId int
as
begin
if @actId in (select actId from UserAccount)
select *
from Account join UserAccount on Account.actId =UserAccount.actId
where Account.actId = @actId
else if @actId in (select actId from AdminAccount)
select *
from Account join AdminAccount on Account.actId = AdminAccount.actId
where Account.actId = @actId
end
-- proc to add a new transaction
go
create proc AddTransaction
@dtPerf date,
@amount float,
@invId int,
@tStat varchar(100),
@inst bit,
@ship int,
@receiver int,
@sender int,
@type int
as
begin
insert into Transactions values (@dtPerf,@amount,@invId,@tStat,@inst,@ship,@receiver,@sender,@type);
end
-- proc to get transaction by id
go
create proc getTransaction
@transId int
as
begin
if @transId in (select id from Transactions)
select *
from Transactions
where id =@transId
end
-- proc to get all transactions
go
create proc getAllTransactions
as
begin
select * from Transactions;
end
-- proc to delete a transaction using id
go
create proc deleteTransaction
@transId int
as
begin
delete from Transactions
where id = @transId
end
-- proc to add a credit card
go
create proc addCreditCard
@expDate date,
@cvv int,
@cardNum varchar(50),
@balance float,
@id int out
as
begin
insert into CreditCard values(@expDate,@cvv,@cardNum,@balance);
select @id=id
from CreditCard
where cardNum=@cardNum and cvv = @cvv
end
-- proc to get all cards of a user useing actId
go
create proc getAllCards
@actId int
as
begin
select *
from CreditCard join UserCards on CreditCard.id = UserCards.cardId
where userId = @actId
end
-- proc to remove credit card using card id
go
create proc removeCard
@cardId int
as
begin
delete from UserCards where cardId=@cardId;
delete from CreditCard where id =@cardId;
end
-- proc to add a new request
go
create proc addRequest
@message varchar(200),
@stat varchar(200),
@requester int,
@id int out
as
begin
insert into Request values (@message,@stat,@requester);
select @id = reqId
from Request
where requester = @requester
end
-- proc to add monetary request
go
create proc addMonetaryRequest
@message varchar(200),
@stat varchar(200),
@requester int,
@amount float,
@requestee int,
@id int out
as
begin
insert into Request values (@message,@stat,@requester);
declare @rId int
select @rId = reqId
from Request
where requester = @requester and _message = @message
insert into monetaryReq (reqId,amount,requestee) values (@rId,@amount,@requestee);
select @id = id
from monetaryReq
where reqId = @rId
end
-- proc to add report request
go
create proc addReportRequest
@message varchar(200),
@stat varchar(200),
@requester int,
@reported int,
@admin int null,
@response varchar(200),
@id int out
as
begin
insert into Request values (@message,@stat,@requester);
declare @rId int
select @rId = reqId
from Request
where requester = @requester and _message = @message
insert into Report(reqId,response,adminAct,reportedAct) values (@rId,@response,@admin,@reported);
select @id = id
from Report
where reqId = @rId
end
-- proc to get a request by its id
go
create proc getRequest
@reqId int
as
begin
if @reqId in (select reqId from monetaryReq)
begin
select *
from Request join monetaryReq on Request.reqId = monetaryReq.reqId
where Request.reqId=@reqId
return
end
else if @reqId in (select reqId from Report)
begin
select *
from Request as R join Report as Rp on R.reqId = Rp.reqId
where R.reqId=@reqId
return
end
else
begin
select *
from Request
where reqId=@reqId
return
end
end
-- proc to get all requests of an account by acountId
go
create proc getallRequests
@actId int
as
begin
select *
from Request
where requester = @actId
end
-- proc to get all monetary requests of an account by accountId
go
create proc getallMonReq
@actId int
as
begin
select *
from Request as R join monetaryReq as M on R.reqId = M.reqId
where R.requester=@actId or M.requestee=@actId
end
-- proc to get all Reports of an account or by an account using account ID
go
create proc getAllReports
@actId int
as
begin
select *
from Request as R join Report as Rp on R.reqId = Rp.reqId
where requester = @actId or reportedAct = @actId
end
-- proc to delete a request
go
create proc deleteRequest
@reqId int
as
begin
if @reqId in (select reqId from monetaryReq)
begin
delete from monetaryReq
where reqId = @reqId;
end
else if @reqId in (select reqId from Report)
begin
delete from Report
where reqId = @reqId
end
delete from Request
where reqId = @reqId
end
-- procedure to generate a new invoice
go
create proc createInvoice
@bill float,
@dateGen date,
@receipt varchar(100),
@invId int out
as
begin
insert into Invoice values (@bill,@dateGen,@receipt);
select @invId = invoiceId
from Invoice
where bill=@bill and dateGen=@dateGen and receipt = @receipt
end
-- procedure to get all invoice of account using accountId
go
create procedure getAllInvoice
@actId int
as
begin
select Invoice.invoiceId,bill,dateGen as DateOfTransaction, receipt as Receipt
from Transactions join Invoice on Transactions.invoiceId = Invoice.invoiceId
where beneficiary = @actId or benefactor = @actId
end
-- proc to delete an invoice by InvoiceId
go
create proc deleteInvoice
@invId int
as
begin
delete from Invoice
where invoiceId = @invId
end
-- proc to delete an account by accountId
go
create proc deleteAccount
@actId int
as
begin
if @actId in (select actId from AdminAccount)
begin
delete from AdminAccount
where actId = @actId
end
else if @actId in (select actId from UserAccount)
begin
delete from UserAccount
where actId = @actId
end
delete from Account
where actId =@actId
end
-- all test funcs
exec deleteInvoice
@invId=2;
exec getAllInvoice
@actId = 1;
declare @iId int
exec createInvoice
@bill = 2500,
@dateGen = '2019/11/4',
@receipt = 'Xiami Airdots x1 at 2500rs',
@invId = @iId out;
select @iId
exec getAllReports
@actId = 1;
exec getallMonReq
@actId = 1;
exec getallRequests
@actId = 1;
exec getRequest
@reqId=3;
declare @tid int
exec addReportRequest
@message ='bhae inko block kardo fake account hai',
@stat = 'unresolved',
@requester =2,
@reported =1,
@admin =1,
@response = null,
@id =@tid out
select @tid
declare @gId int
exec addMonetaryRequest
@message = 'Can i please get 100 for something urgent',
@stat ='unresolved',
@requester =2,
@amount =500,
@requestee = 1,
@id =@gId out;
select @gId
declare @oId int
exec addRequest
@message ='Yar paise leke bhag gya koi',
@stat = 'unresolved',
@requester = 1,
@id = @oId out;
select @oId
select * from Request
exec getAllAdmins
exec getAllUserAccounts
exec getAccount
@actId = 3;
insert into Invoice values(20.56,'2011/3/18','Credit Share (Friendly)');
exec AddTransaction
@dtPerf = '2011/3/18',
@amount =20.56,
@invId = 1,
@tStat ='pending',
@inst = 0,
@ship = null,
@receiver =2,
@sender = 1,
@type =1;
exec getTransaction
@transId=2;
exec getAllTransactions
declare @gId int
exec addCreditCard
@expDate = '2022/3/18',
@cvv = 1439,
@cardNum = '1575321439',
@balance = 4000,
@id = @gId out;
select @gId
insert into CreditCard values ('2025/12/14',5722,'1575325722',10000);
insert into UserCards values(1,1)
insert into UserCards values(2,1);
exec getAllCards
@actId =1;
exec removeCard
@cardId =2
exec deleteRequest
@reqId = 3;
select * from Account
select * from AdminAccount
select * from UserAccount
select * from Invoice
select * from Transactions
select * from CreditCard
select * from UserCards
select * from Request
select * from monetaryReq
select * from Report