Archived
Template
1
0
This repository has been archived on 2023-12-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
golang-base-project/routes/resendactivation.go

51 lines
1.6 KiB
Go
Raw Permalink Normal View History

2021-12-12 14:56:13 +01:00
package routes
import (
"github.com/gin-gonic/gin"
"github.com/uberswe/golang-base-project/models"
"log"
"net/http"
)
func (controller Controller) ResendActivation(c *gin.Context) {
pd := PageData{
Title: "Resend Activation Email",
IsAuthenticated: isAuthenticated(c),
}
c.HTML(http.StatusOK, "resendactivation.html", pd)
}
func (controller Controller) ResendActivationPost(c *gin.Context) {
pd := PageData{
Title: "Resend Activation Email",
IsAuthenticated: isAuthenticated(c),
}
email := c.PostForm("email")
user := models.User{Email: email}
res := controller.db.Where(&user).First(&user)
if res.Error == nil && user.ActivatedAt == nil {
activationToken := models.Token{
Type: models.TokenUserActivation,
ModelID: int(user.ID),
}
res = controller.db.Where(&activationToken).First(&activationToken)
if res.Error == nil {
// If the activation token exists we simply send an email
go controller.sendActivationEmail(activationToken.Value, user.Email)
} else {
// If there is no token then we need to generate a new token
go controller.activationEmailHandler(user.ID, user.Email)
}
} else {
log.Println(res.Error)
}
// We always return a positive response here to prevent user enumeration and other attacks
pd.Messages = append(pd.Messages, Message{
Type: "success",
Content: "A new activation email has been sent if the account exists and is not already activated. Please remember to check your spam inbox in case the email is not showing in your inbox.",
})
c.HTML(http.StatusOK, "resendactivation.html", pd)
}