Changes between Version 6 and Version 7 of WikiStart/Development


Ignore:
Timestamp:
03/24/25 22:12:09 (11 days ago)
Author:
203206
Comment:

mk2

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart/Development

    v6 v7  
    274274
    275275}}}
     276
     277
     278{{{
     279
     280package com.example.bankapp.controller;
     281
     282import com.example.bankapp.model.Account;
     283import com.example.bankapp.service.AccountService;
     284import org.springframework.beans.factory.annotation.Autowired;
     285import org.springframework.security.core.context.SecurityContextHolder;
     286import org.springframework.stereotype.Controller;
     287import org.springframework.ui.Model;
     288import org.springframework.web.bind.annotation.GetMapping;
     289import org.springframework.web.bind.annotation.PostMapping;
     290import org.springframework.web.bind.annotation.RequestParam;
     291
     292import java.math.BigDecimal;
     293
     294@Controller
     295public class BankController {
     296
     297    @Autowired
     298    private AccountService accountService;
     299
     300    @GetMapping("/dashboard")
     301    public String dashboard(Model model) {
     302        String username = SecurityContextHolder.getContext().getAuthentication().getName();
     303        Account account = accountService.findAccountByUsername(username);
     304        model.addAttribute("account", account);
     305        return "dashboard";
     306    }
     307
     308    @GetMapping("/register")
     309    public String showRegistrationForm() {
     310        return "register";
     311    }
     312
     313    @PostMapping("/register")
     314    public String registerAccount(@RequestParam String username,@RequestParam String email, @RequestParam String password, Model model) {
     315        try {
     316            accountService.registerAccount(username,email, password);
     317            return "redirect:/login";
     318        } catch (RuntimeException e) {
     319            model.addAttribute("error", e.getMessage());
     320            return "register";
     321        }
     322    }
     323
     324    @GetMapping("/login")
     325    public String login() {
     326        return "login";
     327    }
     328
     329    @PostMapping("/deposit")
     330    public String deposit(@RequestParam BigDecimal amount) {
     331        String username = SecurityContextHolder.getContext().getAuthentication().getName();
     332        Account account = accountService.findAccountByUsername(username);
     333        accountService.deposit(account, amount);
     334        return "redirect:/dashboard";
     335    }
     336
     337    @PostMapping("/withdraw")
     338    public String withdraw(@RequestParam BigDecimal amount, Model model) {
     339        String username = SecurityContextHolder.getContext().getAuthentication().getName();
     340        Account account = accountService.findAccountByUsername(username);
     341
     342        try {
     343            accountService.withdraw(account, amount);
     344        } catch (RuntimeException e) {
     345            model.addAttribute("error", e.getMessage());
     346            model.addAttribute("account", account);
     347            return "dashboard";
     348        }
     349
     350        return "redirect:/dashboard";
     351    }
     352
     353    @GetMapping("/transactions")
     354    public String transactionHistory(Model model) {
     355        String username = SecurityContextHolder.getContext().getAuthentication().getName();
     356        Account account = accountService.findAccountByUsername(username);
     357        model.addAttribute("transactions", accountService.getTransactionHistory(account));
     358        return "transactions";
     359    }
     360
     361    @PostMapping("/transfer")
     362    public String transferAmount(@RequestParam String toUsername, @RequestParam BigDecimal amount, @RequestParam String currency, Model model) {
     363        String username = SecurityContextHolder.getContext().getAuthentication().getName();
     364        Account fromAccount = accountService.findAccountByUsername(username);
     365
     366        try {
     367            accountService.transferAmount(fromAccount, toUsername, amount, currency);
     368        } catch (RuntimeException e) {
     369            model.addAttribute("error", e.getMessage());
     370            model.addAttribute("account", fromAccount);
     371            return "dashboard";
     372        }
     373
     374        return "redirect:/dashboard";
     375    }
     376
     377
     378}
     379
     380}}}