2021-05-12 22:09:41 +08:00
|
|
|
// Copyright 2021 The casbin Authors. 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.
|
|
|
|
|
2021-05-12 21:38:31 +08:00
|
|
|
package controllers
|
|
|
|
|
2021-05-12 22:09:41 +08:00
|
|
|
import (
|
2021-05-13 09:39:07 +08:00
|
|
|
"fmt"
|
2021-05-12 22:09:41 +08:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/casdoor/casdoor/object"
|
2021-05-13 09:55:37 +08:00
|
|
|
"github.com/casdoor/casdoor/util"
|
2021-05-12 22:09:41 +08:00
|
|
|
)
|
2021-05-12 21:38:31 +08:00
|
|
|
|
|
|
|
func (c *ApiController) SendVerificationCode() {
|
2021-05-13 09:39:07 +08:00
|
|
|
userId := c.GetSessionUser()
|
|
|
|
if len(userId) == 0 {
|
|
|
|
c.ResponseError("Please sign in first")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
user := object.GetUser(userId)
|
|
|
|
if user == nil {
|
|
|
|
c.ResponseError("No such user.")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-05-12 21:38:31 +08:00
|
|
|
destType := c.Ctx.Request.Form.Get("type")
|
|
|
|
dest := c.Ctx.Request.Form.Get("dest")
|
|
|
|
remoteAddr := c.Ctx.Request.RemoteAddr
|
2021-05-12 22:09:41 +08:00
|
|
|
remoteAddr = remoteAddr[:strings.LastIndex(remoteAddr, ":")]
|
2021-05-12 21:38:31 +08:00
|
|
|
|
|
|
|
if len(destType) == 0 || len(dest) == 0 {
|
|
|
|
c.Data["json"] = Response{Status: "error", Msg: "Missing parameter."}
|
|
|
|
c.ServeJSON()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ret := "Invalid dest type."
|
|
|
|
switch destType {
|
|
|
|
case "email":
|
2021-05-13 09:55:37 +08:00
|
|
|
if !util.IsEmailValid(dest) {
|
|
|
|
c.ResponseError("Invalid Email address")
|
|
|
|
return
|
|
|
|
}
|
2021-05-12 21:38:31 +08:00
|
|
|
ret = object.SendVerificationCodeToEmail(remoteAddr, dest)
|
2021-05-12 22:09:41 +08:00
|
|
|
case "phone":
|
2021-05-13 09:55:37 +08:00
|
|
|
if !util.IsPhoneCnValid(dest) {
|
|
|
|
c.ResponseError("Invalid phone number")
|
|
|
|
return
|
|
|
|
}
|
2021-05-13 09:39:07 +08:00
|
|
|
org := object.GetOrganizationByName(user.Owner)
|
|
|
|
phonePrefix := "86"
|
|
|
|
if org != nil && org.PhonePrefix != "" {
|
|
|
|
phonePrefix = org.PhonePrefix
|
|
|
|
}
|
|
|
|
dest = fmt.Sprintf("+%s%s", phonePrefix, dest)
|
2021-05-12 22:09:41 +08:00
|
|
|
ret = object.SendVerificationCodeToPhone(remoteAddr, dest)
|
2021-05-12 21:38:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var status string
|
|
|
|
if len(ret) == 0 {
|
|
|
|
status = "ok"
|
|
|
|
} else {
|
|
|
|
status = "error"
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Data["json"] = Response{Status: status, Msg: ret}
|
|
|
|
c.ServeJSON()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *ApiController) ResetEmailOrPhone() {
|
|
|
|
userId := c.GetSessionUser()
|
|
|
|
if len(userId) == 0 {
|
|
|
|
c.ResponseError("Please sign in first")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
user := object.GetUser(userId)
|
|
|
|
if user == nil {
|
|
|
|
c.ResponseError("No such user.")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
destType := c.Ctx.Request.Form.Get("type")
|
|
|
|
dest := c.Ctx.Request.Form.Get("dest")
|
|
|
|
code := c.Ctx.Request.Form.Get("code")
|
|
|
|
if len(dest) == 0 || len(code) == 0 || len(destType) == 0 {
|
|
|
|
c.ResponseError("Missing parameter.")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-05-13 09:39:07 +08:00
|
|
|
checkDest := dest
|
|
|
|
if destType == "phone" {
|
|
|
|
org := object.GetOrganizationByName(user.Owner)
|
|
|
|
phonePrefix := "86"
|
|
|
|
if org != nil && org.PhonePrefix != "" {
|
|
|
|
phonePrefix = org.PhonePrefix
|
|
|
|
}
|
|
|
|
checkDest = fmt.Sprintf("+%s%s", phonePrefix, dest)
|
|
|
|
}
|
|
|
|
if ret := object.CheckVerificationCode(checkDest, code); len(ret) != 0 {
|
2021-05-12 21:38:31 +08:00
|
|
|
c.ResponseError(ret)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
switch destType {
|
|
|
|
case "email":
|
|
|
|
user.Email = dest
|
|
|
|
object.SetUserField(user, "email", user.Email)
|
2021-05-12 22:09:41 +08:00
|
|
|
case "phone":
|
2021-05-13 09:39:07 +08:00
|
|
|
user.Phone = dest
|
2021-05-12 22:09:41 +08:00
|
|
|
object.SetUserField(user, "phone", user.Phone)
|
2021-05-12 21:38:31 +08:00
|
|
|
default:
|
|
|
|
c.ResponseError("Unknown type.")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Data["json"] = Response{Status: "ok"}
|
|
|
|
c.ServeJSON()
|
|
|
|
}
|