You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.0 KiB
Go

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package auth
import (
"net/http"
"git.noahlan.cn/noahlan/ntool-biz/zero/statusz"
"github.com/zeromicro/go-zero/rest/httpx"
"git.noahlan.cn/n-admin/n-admin-server/api/internal/logic/auth"
"git.noahlan.cn/n-admin/n-admin-server/api/internal/svc"
"git.noahlan.cn/n-admin/n-admin-server/api/internal/types"
)
// swagger:route post /api/auth/login/byCode auth LoginByCode
//
// Log in by code | 验证码登录手机x邮箱
//
// Log in by code | 验证码登录手机x邮箱
//
// Parameters:
// + name: body
// require: true
// in: body
// type: LoginReq
//
// Responses:
// 200: LoginResp
func LoginByCodeHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
const transErr = true
var req types.LoginReq
if err := httpx.Parse(r, &req); err != nil {
statusz.ResponseHandler(r, w, transErr, nil, err)
return
}
l := auth.NewLoginByCodeLogic(r, r.Context(), svcCtx)
resp, err := l.LoginByCode(&req)
statusz.ResponseHandler(r, w, transErr, resp, err)
}
}