| 276 | |
| 277 | |
| 278 | {{{ |
| 279 | |
| 280 | package com.example.bankapp.controller; |
| 281 | |
| 282 | import com.example.bankapp.model.Account; |
| 283 | import com.example.bankapp.service.AccountService; |
| 284 | import org.springframework.beans.factory.annotation.Autowired; |
| 285 | import org.springframework.security.core.context.SecurityContextHolder; |
| 286 | import org.springframework.stereotype.Controller; |
| 287 | import org.springframework.ui.Model; |
| 288 | import org.springframework.web.bind.annotation.GetMapping; |
| 289 | import org.springframework.web.bind.annotation.PostMapping; |
| 290 | import org.springframework.web.bind.annotation.RequestParam; |
| 291 | |
| 292 | import java.math.BigDecimal; |
| 293 | |
| 294 | @Controller |
| 295 | public 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 | }}} |