42 lines
1.5 KiB
Kotlin
42 lines
1.5 KiB
Kotlin
package kr.co.vividnext.sodalive.alarm
|
|
|
|
import kr.co.vividnext.sodalive.common.ApiResponse
|
|
import kr.co.vividnext.sodalive.common.SodaException
|
|
import kr.co.vividnext.sodalive.member.Member
|
|
import org.springframework.security.core.annotation.AuthenticationPrincipal
|
|
import org.springframework.web.bind.annotation.GetMapping
|
|
import org.springframework.web.bind.annotation.PathVariable
|
|
import org.springframework.web.bind.annotation.PostMapping
|
|
import org.springframework.web.bind.annotation.RequestMapping
|
|
import org.springframework.web.bind.annotation.RestController
|
|
|
|
@RestController
|
|
@RequestMapping("/alarm")
|
|
class AlarmController(private val service: AlarmService) {
|
|
@GetMapping
|
|
fun getSlotQuantityAndPrice(
|
|
@AuthenticationPrincipal(expression = "#this == 'anonymousUser' ? null : member") member: Member?
|
|
) = run {
|
|
if (member == null) throw SodaException("로그인 정보를 확인해주세요.")
|
|
|
|
ApiResponse.ok(
|
|
service.getSlotQuantityAndPrice(memberId = member.id!!)
|
|
)
|
|
}
|
|
|
|
@PostMapping("/buy-slot/{container}")
|
|
fun buyExtraSlot(
|
|
@PathVariable("container") container: String,
|
|
@AuthenticationPrincipal(expression = "#this == 'anonymousUser' ? null : member") member: Member?
|
|
) = run {
|
|
if (member == null) throw SodaException("로그인 정보를 확인해주세요.")
|
|
|
|
ApiResponse.ok(
|
|
service.buyExtraSlot(
|
|
memberId = member.id!!,
|
|
container = container
|
|
)
|
|
)
|
|
}
|
|
}
|