harbor/controllers/password.go

202 lines
5.5 KiB
Go
Raw Normal View History

2016-02-01 12:59:10 +01:00
/*
Copyright (c) 2016 VMware, Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
2016-02-26 11:54:14 +01:00
2016-02-01 12:59:10 +01:00
package controllers
import (
"bytes"
"net/http"
2016-02-01 12:59:10 +01:00
"os"
"regexp"
"text/template"
"github.com/vmware/harbor/dao"
"github.com/vmware/harbor/models"
"github.com/vmware/harbor/utils"
"github.com/vmware/harbor/utils/log"
2016-02-01 12:59:10 +01:00
"github.com/astaxie/beego"
)
2016-02-26 11:35:55 +01:00
// ChangePasswordController handles request to /changePassword
2016-02-01 12:59:10 +01:00
type ChangePasswordController struct {
BaseController
}
2016-02-26 11:35:55 +01:00
// Get renders the page for user to change password.
2016-02-01 12:59:10 +01:00
func (cpc *ChangePasswordController) Get() {
sessionUserID := cpc.GetSession("userId")
if sessionUserID == nil {
cpc.Redirect("/signIn", http.StatusFound)
2016-02-25 04:48:22 +01:00
return
2016-02-01 12:59:10 +01:00
}
cpc.Data["Username"] = cpc.GetSession("username")
cpc.ForwardTo("page_title_change_password", "change-password")
}
2016-02-26 11:35:55 +01:00
// ForgotPasswordController handles request to /forgotPassword
2016-02-01 12:59:10 +01:00
type ForgotPasswordController struct {
BaseController
}
2016-02-26 11:35:55 +01:00
// Get Renders the page for user to input Email to reset password.
func (fpc *ForgotPasswordController) Get() {
fpc.ForwardTo("page_title_forgot_password", "forgot-password")
}
type messageDetail struct {
2016-02-01 12:59:10 +01:00
Hint string
URL string
UUID string
2016-02-01 12:59:10 +01:00
}
2016-02-26 11:35:55 +01:00
// SendEmail verifies the Email address and contact SMTP server to send reset password Email.
func (cc *CommonController) SendEmail() {
2016-02-01 12:59:10 +01:00
email := cc.GetString("email")
2016-02-01 12:59:10 +01:00
pass, _ := regexp.MatchString(`^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$`, email)
if !pass {
cc.CustomAbort(http.StatusBadRequest, "email_content_illegal")
} else {
2016-02-01 12:59:10 +01:00
queryUser := models.User{Email: email}
exist, err := dao.UserExists(queryUser, "email")
if err != nil {
log.Errorf("Error occurred in UserExists: %v", err)
cc.CustomAbort(http.StatusInternalServerError, "Internal error.")
2016-02-01 12:59:10 +01:00
}
if !exist {
cc.CustomAbort(http.StatusNotFound, "email_does_not_exist")
2016-02-01 12:59:10 +01:00
}
messageTemplate, err := template.ParseFiles("views/reset-password-mail.tpl")
if err != nil {
log.Errorf("Parse email template file failed: %v", err)
cc.CustomAbort(http.StatusInternalServerError, err.Error())
2016-02-01 12:59:10 +01:00
}
message := new(bytes.Buffer)
harborURL := os.Getenv("HARBOR_URL")
if harborURL == "" {
harborURL = "localhost"
2016-02-01 12:59:10 +01:00
}
uuid, err := dao.GenerateRandomString()
if err != nil {
log.Errorf("Error occurred in GenerateRandomString: %v", err)
cc.CustomAbort(http.StatusInternalServerError, "Internal error.")
2016-02-01 12:59:10 +01:00
}
2016-02-26 11:35:55 +01:00
err = messageTemplate.Execute(message, messageDetail{
Hint: cc.Tr("reset_email_hint"),
URL: harborURL,
UUID: uuid,
2016-02-01 12:59:10 +01:00
})
if err != nil {
log.Errorf("Message template error: %v", err)
cc.CustomAbort(http.StatusInternalServerError, "internal_error")
2016-02-01 12:59:10 +01:00
}
config, err := beego.AppConfig.GetSection("mail")
if err != nil {
log.Errorf("Can not load app.conf: %v", err)
cc.CustomAbort(http.StatusInternalServerError, "internal_error")
2016-02-01 12:59:10 +01:00
}
mail := utils.Mail{
From: config["from"],
To: []string{email},
Subject: cc.Tr("reset_email_subject"),
2016-02-01 12:59:10 +01:00
Message: message.String()}
err = mail.SendMail()
if err != nil {
log.Errorf("Send email failed: %v", err)
cc.CustomAbort(http.StatusInternalServerError, "send_email_failed")
2016-02-01 12:59:10 +01:00
}
2016-02-26 03:15:01 +01:00
user := models.User{ResetUUID: uuid, Email: email}
2016-02-26 04:26:54 +01:00
dao.UpdateUserResetUUID(user)
2016-02-01 12:59:10 +01:00
}
}
2016-02-26 11:35:55 +01:00
// ResetPasswordController handles request to /resetPassword
2016-02-01 12:59:10 +01:00
type ResetPasswordController struct {
BaseController
}
2016-02-26 11:35:55 +01:00
// Get checks if reset_uuid in the reset link is valid and render the result page for user to reset password.
2016-02-01 12:59:10 +01:00
func (rpc *ResetPasswordController) Get() {
resetUUID := rpc.GetString("reset_uuid")
if resetUUID == "" {
log.Error("Reset uuid is blank.")
rpc.Redirect("/", http.StatusFound)
2016-02-25 04:48:22 +01:00
return
}
2016-02-26 03:15:01 +01:00
queryUser := models.User{ResetUUID: resetUUID}
2016-02-01 12:59:10 +01:00
user, err := dao.GetUser(queryUser)
if err != nil {
log.Errorf("Error occurred in GetUser: %v", err)
rpc.CustomAbort(http.StatusInternalServerError, "Internal error.")
2016-02-01 12:59:10 +01:00
}
if user != nil {
2016-02-26 03:15:01 +01:00
rpc.Data["ResetUuid"] = user.ResetUUID
2016-02-01 12:59:10 +01:00
rpc.ForwardTo("page_title_reset_password", "reset-password")
} else {
rpc.Redirect("/", http.StatusFound)
2016-02-01 12:59:10 +01:00
}
}
2016-02-26 11:35:55 +01:00
// ResetPassword handles request from the reset page and reset password
func (cc *CommonController) ResetPassword() {
2016-02-01 12:59:10 +01:00
resetUUID := cc.GetString("reset_uuid")
if resetUUID == "" {
cc.CustomAbort(http.StatusBadRequest, "Reset uuid is blank.")
}
2016-02-01 12:59:10 +01:00
2016-02-26 03:15:01 +01:00
queryUser := models.User{ResetUUID: resetUUID}
2016-02-01 12:59:10 +01:00
user, err := dao.GetUser(queryUser)
if err != nil {
log.Errorf("Error occurred in GetUser: %v", err)
cc.CustomAbort(http.StatusInternalServerError, "Internal error.")
2016-02-01 12:59:10 +01:00
}
if user == nil {
log.Error("User does not exist")
cc.CustomAbort(http.StatusBadRequest, "User does not exist")
}
2016-02-01 12:59:10 +01:00
password := cc.GetString("password")
2016-02-01 12:59:10 +01:00
if password != "" {
user.Password = password
err = dao.ResetUserPassword(*user)
if err != nil {
log.Errorf("Error occurred in ResetUserPassword: %v", err)
cc.CustomAbort(http.StatusInternalServerError, "Internal error.")
}
2016-02-01 12:59:10 +01:00
} else {
cc.CustomAbort(http.StatusBadRequest, "password_is_required")
2016-02-01 12:59:10 +01:00
}
}