Skip to content
Snippets Groups Projects
Commit acf4e7de authored by Filip Piták's avatar Filip Piták
Browse files

Add currency code data into Scheduled Payment entity

parent ede25dc7
No related branches found
No related tags found
No related merge requests found
Showing
with 72 additions and 26 deletions
...@@ -31,6 +31,7 @@ CREATE TABLE IF NOT EXISTS scheduled_payment ...@@ -31,6 +31,7 @@ CREATE TABLE IF NOT EXISTS scheduled_payment
source_account_id BIGINT, source_account_id BIGINT,
target_account_id BIGINT, target_account_id BIGINT,
amount DECIMAL, amount DECIMAL,
currency_code VARCHAR(3),
recurrence_type VARCHAR(50), recurrence_type VARCHAR(50),
recurrence_payment_day INTEGER recurrence_payment_day INTEGER
); );
......
...@@ -20,10 +20,10 @@ VALUES (3656018305580485508, 'a5dc3241-71c9-4594-8a07-083c9c2b7b1c', 1, 1000, 0, ...@@ -20,10 +20,10 @@ VALUES (3656018305580485508, 'a5dc3241-71c9-4594-8a07-083c9c2b7b1c', 1, 1000, 0,
(994, 'ACC4', 1, 1000, 1, 'CZK'); (994, 'ACC4', 1, 1000, 1, 'CZK');
INSERT INTO scheduled_payment (id, source_account_id, target_account_id, amount, recurrence_type, recurrence_payment_day) INSERT INTO scheduled_payment (id, source_account_id, target_account_id, amount, currency_code, recurrence_type, recurrence_payment_day)
VALUES VALUES
(991, 2, 3, 100, 0, 2), (991, 2, 3, 100, 'EUR', 0, 2),
(992, 2, 3, 200, 0, 3), (992, 2, 3, 200, 'EUR', 0, 3),
(993, 3, 2, 1200, 1, 15); (993, 3, 2, 1200, 'EUR', 1, 15);
package cz.muni.pa165.banking.application.controller; package cz.muni.pa165.banking.application.controller;
import cz.muni.pa165.banking.account.management.AccountApi; import cz.muni.pa165.banking.account.management.AccountApi;
import cz.muni.pa165.banking.account.management.dto.AccountDto; import cz.muni.pa165.banking.account.management.dto.*;
import cz.muni.pa165.banking.account.management.dto.NewAccountDto;
import cz.muni.pa165.banking.account.management.dto.ScheduledPaymentDto;
import cz.muni.pa165.banking.account.management.dto.ScheduledPaymentsDto;
import cz.muni.pa165.banking.application.facade.AccountFacade; import cz.muni.pa165.banking.application.facade.AccountFacade;
import cz.muni.pa165.banking.exception.EntityNotFoundException; import cz.muni.pa165.banking.exception.EntityNotFoundException;
import org.springframework.http.HttpStatus; import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity; import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
import java.time.LocalDate;
@RestController @RestController
public class AccountController implements AccountApi { public class AccountController implements AccountApi {
...@@ -37,13 +36,13 @@ public class AccountController implements AccountApi { ...@@ -37,13 +36,13 @@ public class AccountController implements AccountApi {
@Override @Override
public ResponseEntity<ScheduledPaymentsDto> getScheduledPayments(String accountNumber) { public ResponseEntity<ScheduledPaymentsDto> getScheduledPayments(String accountNumber) {
ScheduledPaymentsDto payments; ScheduledPaymentsDto payments = accountFacade.findScheduledPaymentsByNumber(accountNumber);
try{ return ResponseEntity.ok(payments);
payments = accountFacade.findScheduledPaymentsByNumber(accountNumber); }
}
catch (EntityNotFoundException e){ @Override
return new ResponseEntity<>(HttpStatus.NOT_FOUND); public ResponseEntity<ScheduledPaymentsDto> getScheduledPaymentsOf(LocalDate date) {
} ScheduledPaymentsDto payments = accountFacade.scheduledPaymentsOfDay(date);
return ResponseEntity.ok(payments); return ResponseEntity.ok(payments);
} }
......
...@@ -25,13 +25,7 @@ public class UserController implements UserApi{ ...@@ -25,13 +25,7 @@ public class UserController implements UserApi{
@Override @Override
public ResponseEntity<UserDto> findUserById(Long userId) { public ResponseEntity<UserDto> findUserById(Long userId) {
UserDto user; UserDto user = userFacade.findById(userId);
try{
user = userFacade.findById(userId);
}
catch (EntityNotFoundException e){
return new ResponseEntity<>(HttpStatus.NOT_FOUND);
}
return ResponseEntity.ok(user); return ResponseEntity.ok(user);
} }
......
package cz.muni.pa165.banking.application.facade; package cz.muni.pa165.banking.application.facade;
import cz.muni.pa165.banking.account.management.dto.AccountDto; import cz.muni.pa165.banking.account.management.dto.*;
import cz.muni.pa165.banking.account.management.dto.NewAccountDto;
import cz.muni.pa165.banking.account.management.dto.ScheduledPaymentDto;
import cz.muni.pa165.banking.account.management.dto.ScheduledPaymentsDto;
import cz.muni.pa165.banking.application.mapper.DtoMapper; import cz.muni.pa165.banking.application.mapper.DtoMapper;
import cz.muni.pa165.banking.application.service.AccountService; import cz.muni.pa165.banking.application.service.AccountService;
import cz.muni.pa165.banking.domain.account.Account; import cz.muni.pa165.banking.domain.account.Account;
...@@ -12,7 +9,9 @@ import cz.muni.pa165.banking.exception.EntityNotFoundException; ...@@ -12,7 +9,9 @@ import cz.muni.pa165.banking.exception.EntityNotFoundException;
import cz.muni.pa165.banking.exception.UnexpectedValueException; import cz.muni.pa165.banking.exception.UnexpectedValueException;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import java.time.LocalDate;
import java.util.Currency; import java.util.Currency;
import java.util.List;
@Component @Component
...@@ -60,4 +59,13 @@ public class AccountFacade { ...@@ -60,4 +59,13 @@ public class AccountFacade {
public AccountDto findByAccountNumber(String accountNumber) { public AccountDto findByAccountNumber(String accountNumber) {
return mapper.map(accountService.findByNumber(accountNumber)); return mapper.map(accountService.findByNumber(accountNumber));
} }
public ScheduledPaymentsDto scheduledPaymentsOfDay(LocalDate date) {
List<ScheduledPayment> payments = accountService.scheduledPaymentsOfDay(date);
ScheduledPaymentsDto result = new ScheduledPaymentsDto();
result.setScheduledPayments(payments.stream()
.map(mapper::map)
.toList());
return result;
}
} }
...@@ -45,6 +45,8 @@ public interface DtoMapper { ...@@ -45,6 +45,8 @@ public interface DtoMapper {
return result; return result;
} }
ScheduledPaymentDto map(ScheduledPayment scheduledPayment);
ScheduledPaymentType map(RecurrenceType type); ScheduledPaymentType map(RecurrenceType type);
RecurrenceType map(ScheduledPaymentType type); RecurrenceType map(ScheduledPaymentType type);
......
...@@ -6,6 +6,7 @@ import cz.muni.pa165.banking.domain.account.repository.AccountRepository; ...@@ -6,6 +6,7 @@ import cz.muni.pa165.banking.domain.account.repository.AccountRepository;
import cz.muni.pa165.banking.domain.scheduled.ScheduledPayment; import cz.muni.pa165.banking.domain.scheduled.ScheduledPayment;
import cz.muni.pa165.banking.domain.scheduled.ScheduledPaymentProjection; import cz.muni.pa165.banking.domain.scheduled.ScheduledPaymentProjection;
import cz.muni.pa165.banking.domain.scheduled.recurrence.Recurrence; import cz.muni.pa165.banking.domain.scheduled.recurrence.Recurrence;
import cz.muni.pa165.banking.domain.scheduled.recurrence.RecurrenceQuerySpecificationBuilder;
import cz.muni.pa165.banking.domain.scheduled.recurrence.RecurrenceType; import cz.muni.pa165.banking.domain.scheduled.recurrence.RecurrenceType;
import cz.muni.pa165.banking.domain.scheduled.repository.ScheduledPaymentRepository; import cz.muni.pa165.banking.domain.scheduled.repository.ScheduledPaymentRepository;
import cz.muni.pa165.banking.domain.user.repository.UserRepository; import cz.muni.pa165.banking.domain.user.repository.UserRepository;
...@@ -15,6 +16,7 @@ import org.springframework.stereotype.Service; ...@@ -15,6 +16,7 @@ import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.time.LocalDate;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.stream.Collectors; import java.util.stream.Collectors;
...@@ -74,6 +76,7 @@ public class AccountService { ...@@ -74,6 +76,7 @@ public class AccountService {
newScheduledPayment.setSourceAccountId(senderAccount.getId()); newScheduledPayment.setSourceAccountId(senderAccount.getId());
newScheduledPayment.setTargetAccountId(receiverAccount.getId()); newScheduledPayment.setTargetAccountId(receiverAccount.getId());
newScheduledPayment.setAmount(amount); newScheduledPayment.setAmount(amount);
newScheduledPayment.setCurrencyCode(senderAccount.getCurrency().getCurrencyCode());
Recurrence recurrence = new Recurrence(); Recurrence recurrence = new Recurrence();
recurrence.setType(recurrenceType); recurrence.setType(recurrenceType);
...@@ -109,4 +112,7 @@ public class AccountService { ...@@ -109,4 +112,7 @@ public class AccountService {
.toList(); .toList();
} }
public List<ScheduledPayment> scheduledPaymentsOfDay(LocalDate date) {
return scheduledPaymentsRepository.findAll(RecurrenceQuerySpecificationBuilder.forDay(date));
}
} }
...@@ -22,6 +22,9 @@ public class ScheduledPayment { ...@@ -22,6 +22,9 @@ public class ScheduledPayment {
private BigDecimal amount; private BigDecimal amount;
@Column(name = "currency_code")
private String currencyCode;
@Embedded @Embedded
@AttributeOverrides({ @AttributeOverrides({
@AttributeOverride(name = "type", column = @Column(name = "recurrence_type")), @AttributeOverride(name = "type", column = @Column(name = "recurrence_type")),
...@@ -65,6 +68,14 @@ public class ScheduledPayment { ...@@ -65,6 +68,14 @@ public class ScheduledPayment {
this.amount = amount; this.amount = amount;
} }
public String getCurrencyCode() {
return currencyCode;
}
public void setCurrencyCode(String currencyCode) {
this.currencyCode = currencyCode;
}
public Recurrence getRecurrence() { public Recurrence getRecurrence() {
return recurrence; return recurrence;
} }
......
...@@ -129,6 +129,7 @@ components: ...@@ -129,6 +129,7 @@ components:
- senderAccountNumber - senderAccountNumber
- receiverAccountNumber - receiverAccountNumber
- amount - amount
- currencyCode
- type - type
- day - day
properties: properties:
...@@ -140,6 +141,8 @@ components: ...@@ -140,6 +141,8 @@ components:
type: number type: number
format: decimal format: decimal
description: amount of money to send description: amount of money to send
currencyCode:
type: string
type: type:
$ref: '#/components/schemas/ScheduledPaymentType' $ref: '#/components/schemas/ScheduledPaymentType'
day: day:
...@@ -309,3 +312,25 @@ paths: ...@@ -309,3 +312,25 @@ paths:
$ref: '#/components/schemas/ScheduledPaymentDto' $ref: '#/components/schemas/ScheduledPaymentDto'
"400": "400":
description: NOK description: NOK
/scheduled:
get:
tags:
- Account
summary: Scheduled payments of a day
operationId: getScheduledPaymentsOf
requestBody:
required: true
content:
application/json:
schema:
type: string
format: date
nullable: false
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/ScheduledPaymentsDto'
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment