All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.thebund1st.daming.web.rest.SmsVerificationRestController Maven / Gradle / Ivy

package com.thebund1st.daming.web.rest;

import com.thebund1st.daming.application.SmsVerificationCommandHandler;
import com.thebund1st.daming.application.SmsVerifiedJwtIssuer;
import com.thebund1st.daming.commands.SendSmsVerificationCodeCommand;
import com.thebund1st.daming.commands.VerifySmsVerificationCodeCommand;
import com.thebund1st.daming.web.rest.resources.SmsVerifiedJwtResource;
import lombok.RequiredArgsConstructor;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.bind.annotation.RestController;

import static org.springframework.http.HttpStatus.ACCEPTED;

@RequiredArgsConstructor
@RestController
public class SmsVerificationRestController {

    private final SmsVerificationCommandHandler smsVerificationCommandHandler;

    private final SmsVerifiedJwtIssuer smsVerifiedJwtIssuer;

    @PostMapping("/api/sms/verification/code")
    @ResponseStatus(ACCEPTED)
    public void handle(@RequestBody SendSmsVerificationCodeCommand command) {
        smsVerificationCommandHandler.handle(command);
    }

    @DeleteMapping("/api/sms/verification/code")
    public SmsVerifiedJwtResource handle(@RequestBody VerifySmsVerificationCodeCommand command) {
        smsVerificationCommandHandler.handle(command);
        return new SmsVerifiedJwtResource(smsVerifiedJwtIssuer.issue(command.getMobile()));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy