onasty/internal/transport/http/apiv1/auth.go(view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 |
package apiv1
import (
"net/http"
"time"
"github.com/gin-gonic/gin"
"github.com/olexsmir/onasty/internal/dtos"
)
type signUpRequest struct {
Email string `json:"email"`
Password string `json:"password"`
}
func (a *APIV1) signUpHandler(c *gin.Context) {
var req signUpRequest
if err := c.ShouldBindJSON(&req); err != nil {
newError(c, http.StatusBadRequest, "invalid request")
return
}
if _, err := a.usersrv.SignUp(c.Request.Context(), dtos.SignUp{
Email: req.Email,
Password: req.Password,
CreatedAt: time.Now(),
LastLoginAt: time.Now(),
}); err != nil {
errorResponse(c, err)
return
}
c.Status(http.StatusCreated)
}
type signInRequest struct {
Email string `json:"email"`
Password string `json:"password"`
}
type signInResponse struct {
AccessToken string `json:"access_token"`
RefreshToken string `json:"refresh_token"`
}
func (a *APIV1) signInHandler(c *gin.Context) {
var req signInRequest
if err := c.ShouldBindJSON(&req); err != nil {
newError(c, http.StatusBadRequest, "invalid request")
return
}
toks, err := a.usersrv.SignIn(c.Request.Context(), dtos.SignIn{
Email: req.Email,
Password: req.Password,
})
if err != nil {
errorResponse(c, err)
return
}
c.JSON(http.StatusOK, signInResponse{
AccessToken: toks.Access,
RefreshToken: toks.Refresh,
})
}
type refreshTokenRequest struct {
RefreshToken string `json:"refresh_token"`
}
func (a *APIV1) refreshTokensHandler(c *gin.Context) {
var req refreshTokenRequest
if err := c.ShouldBindJSON(&req); err != nil {
newError(c, http.StatusBadRequest, "invalid request")
return
}
toks, err := a.usersrv.RefreshTokens(c.Request.Context(), req.RefreshToken)
if err != nil {
errorResponse(c, err)
return
}
c.JSON(http.StatusOK, signInResponse{
AccessToken: toks.Access,
RefreshToken: toks.Refresh,
})
}
func (a *APIV1) verifyHandler(c *gin.Context) {
if err := a.usersrv.Verify(c.Request.Context(), c.Param("token")); err != nil {
errorResponse(c, err)
return
}
c.String(http.StatusOK, "email verified")
}
type resendVerificationEmailRequest struct {
Email string `json:"email"`
}
func (a *APIV1) resendVerificationEmailHandler(c *gin.Context) {
var req resendVerificationEmailRequest
if err := c.ShouldBindJSON(&req); err != nil {
newError(c, http.StatusBadRequest, "invalid request")
return
}
if err := a.usersrv.ResendVerificationEmail(
c.Request.Context(),
dtos.ResendVerificationEmail{
Email: req.Email,
}); err != nil {
errorResponse(c, err)
return
}
c.Status(http.StatusOK)
}
type requestResetPasswordRequest struct {
Email string `json:"email"`
}
func (a *APIV1) requestResetPasswordHandler(c *gin.Context) {
var req requestResetPasswordRequest
if err := c.ShouldBindJSON(&req); err != nil {
newError(c, http.StatusBadRequest, "invalid request")
return
}
if err := a.usersrv.RequestPasswordReset(c.Request.Context(), dtos.RequestResetPassword{
Email: req.Email,
}); err != nil {
errorResponse(c, err)
return
}
c.Status(http.StatusOK)
}
type resetPasswordRequest struct {
Password string `json:"password"`
}
func (a *APIV1) resetPasswordHandler(c *gin.Context) {
var req resetPasswordRequest
if err := c.ShouldBindJSON(&req); err != nil {
newError(c, http.StatusBadRequest, "invalid request")
return
}
if err := a.usersrv.ResetPassword(
c.Request.Context(),
dtos.ResetPassword{
Token: c.Param("token"),
NewPassword: req.Password,
},
); err != nil {
errorResponse(c, err)
return
}
c.Status(http.StatusOK)
}
type logoutRequest struct {
RefreshToken string `json:"refresh_token"`
}
func (a *APIV1) logOutHandler(c *gin.Context) {
var req logoutRequest
if err := c.ShouldBindJSON(&req); err != nil {
newError(c, http.StatusBadRequest, "invalid request")
return
}
if err := a.usersrv.Logout(c.Request.Context(), a.getUserID(c), req.RefreshToken); err != nil {
errorResponse(c, err)
return
}
c.Status(http.StatusNoContent)
}
func (a *APIV1) logOutAllHandler(c *gin.Context) {
if err := a.usersrv.LogoutAll(c.Request.Context(), a.getUserID(c)); err != nil {
errorResponse(c, err)
return
}
c.Status(http.StatusNoContent)
}
type changePasswordRequest struct {
CurrentPassword string `json:"current_password"`
NewPassword string `json:"new_password"`
}
func (a *APIV1) changePasswordHandler(c *gin.Context) {
var req changePasswordRequest
if err := c.ShouldBindJSON(&req); err != nil {
newError(c, http.StatusBadRequest, "invalid request")
return
}
if err := a.usersrv.ChangePassword(
c.Request.Context(),
a.getUserID(c),
dtos.ChangeUserPassword{
CurrentPassword: req.CurrentPassword,
NewPassword: req.NewPassword,
}); err != nil {
errorResponse(c, err)
return
}
c.Status(http.StatusOK)
}
const oatuhStateCookie = "oauth_state"
func (a *APIV1) oauthLoginHandler(c *gin.Context) {
redirectInfo, err := a.usersrv.GetOAuthURL(c.Param("provider"))
if err != nil {
errorResponse(c, err)
return
}
c.SetCookie(
oatuhStateCookie,
redirectInfo.State,
int(time.Minute.Seconds()),
"/",
a.domain,
!a.env.IsDevMode(),
true,
)
c.Redirect(http.StatusSeeOther, redirectInfo.URL)
}
func (a *APIV1) oauthCallbackHandler(c *gin.Context) {
state := c.Query("state")
storedState, err := c.Cookie(oatuhStateCookie)
if err != nil || state != storedState {
newError(c, http.StatusBadRequest, "invalid oauth state")
return
}
tokens, err := a.usersrv.HandleOAuthLogin(
c.Request.Context(),
c.Param("provider"),
c.Query("code"),
)
if err != nil {
errorResponse(c, err)
return
}
c.JSON(http.StatusOK, signInResponse{
AccessToken: tokens.Access,
RefreshToken: tokens.Refresh,
})
}
type getMeResponse struct {
Email string `json:"email"`
CreatedAt time.Time `json:"created_at"`
LastLoginAt time.Time `json:"last_login_at"`
NotesCreated int `json:"notes_created"`
}
func (a *APIV1) getMeHandler(c *gin.Context) {
uinfo, err := a.usersrv.GetUserInfo(c.Request.Context(), a.getUserID(c))
if err != nil {
errorResponse(c, err)
return
}
c.JSON(http.StatusOK, getMeResponse{
Email: uinfo.Email,
CreatedAt: uinfo.CreatedAt,
LastLoginAt: uinfo.LastLoginAt,
NotesCreated: uinfo.NotesCreated,
})
}
|