2022-02-13 23:39:27 +08:00
|
|
|
// Copyright 2021 The Casdoor Authors. All Rights Reserved.
|
2021-05-12 22:09:41 +08:00
|
|
|
//
|
|
|
|
// 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-09-04 22:20:47 +08:00
|
|
|
"errors"
|
2021-05-13 09:39:07 +08:00
|
|
|
"fmt"
|
2021-05-12 22:09:41 +08:00
|
|
|
"strings"
|
|
|
|
|
2022-06-18 16:00:31 +08:00
|
|
|
"github.com/casdoor/casdoor/captcha"
|
2022-01-20 14:11:46 +08:00
|
|
|
"github.com/casdoor/casdoor/object"
|
|
|
|
"github.com/casdoor/casdoor/util"
|
2021-05-12 22:09:41 +08:00
|
|
|
)
|
2021-05-12 21:38:31 +08:00
|
|
|
|
2021-05-24 01:18:21 +08:00
|
|
|
func (c *ApiController) getCurrentUser() *object.User {
|
|
|
|
var user *object.User
|
2021-07-18 07:15:22 +08:00
|
|
|
userId := c.GetSessionUsername()
|
2021-05-24 01:18:21 +08:00
|
|
|
if userId == "" {
|
|
|
|
user = nil
|
|
|
|
} else {
|
|
|
|
user = object.GetUser(userId)
|
|
|
|
}
|
|
|
|
return user
|
|
|
|
}
|
|
|
|
|
2021-08-07 22:02:56 +08:00
|
|
|
// SendVerificationCode ...
|
2021-12-03 20:42:36 +08:00
|
|
|
// @Title SendVerificationCode
|
|
|
|
// @Tag Verification API
|
2021-12-13 09:49:43 +08:00
|
|
|
// @router /send-verification-code [post]
|
2021-05-12 21:38:31 +08:00
|
|
|
func (c *ApiController) SendVerificationCode() {
|
|
|
|
destType := c.Ctx.Request.Form.Get("type")
|
|
|
|
dest := c.Ctx.Request.Form.Get("dest")
|
2021-05-22 20:57:55 +08:00
|
|
|
checkType := c.Ctx.Request.Form.Get("checkType")
|
|
|
|
checkId := c.Ctx.Request.Form.Get("checkId")
|
|
|
|
checkKey := c.Ctx.Request.Form.Get("checkKey")
|
2021-12-07 00:05:53 +08:00
|
|
|
checkUser := c.Ctx.Request.Form.Get("checkUser")
|
2022-07-10 00:40:52 +08:00
|
|
|
applicationId := c.Ctx.Request.Form.Get("applicationId")
|
2021-08-03 22:18:59 +08:00
|
|
|
remoteAddr := util.GetIPFromRequest(c.Ctx.Request)
|
2021-05-12 21:38:31 +08:00
|
|
|
|
2022-07-25 23:46:38 +08:00
|
|
|
if destType == "" {
|
|
|
|
c.ResponseError("Missing parameter: type.")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if dest == "" {
|
|
|
|
c.ResponseError("Missing parameter: dest.")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if applicationId == "" {
|
|
|
|
c.ResponseError("Missing parameter: applicationId.")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if !strings.Contains(applicationId, "/") {
|
|
|
|
c.ResponseError("Wrong parameter: applicationId.")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if checkType == "" {
|
|
|
|
c.ResponseError("Missing parameter: checkType.")
|
2021-05-12 21:38:31 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-06-21 12:22:46 +08:00
|
|
|
captchaProvider := captcha.GetCaptchaProvider(checkType)
|
2021-05-22 20:57:55 +08:00
|
|
|
|
2022-06-21 12:22:46 +08:00
|
|
|
if captchaProvider != nil {
|
|
|
|
if checkKey == "" {
|
|
|
|
c.ResponseError("Missing parameter: checkKey.")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
isHuman, err := captchaProvider.VerifyCaptcha(checkKey, checkId)
|
|
|
|
if err != nil {
|
2022-06-26 22:09:57 +08:00
|
|
|
c.ResponseError(err.Error())
|
2022-06-21 12:22:46 +08:00
|
|
|
return
|
|
|
|
}
|
2022-06-26 22:09:57 +08:00
|
|
|
|
2022-06-21 12:22:46 +08:00
|
|
|
if !isHuman {
|
|
|
|
c.ResponseError("Turing test failed.")
|
|
|
|
return
|
|
|
|
}
|
2021-05-22 20:57:55 +08:00
|
|
|
}
|
|
|
|
|
2021-05-24 01:18:21 +08:00
|
|
|
user := c.getCurrentUser()
|
2022-07-10 00:40:52 +08:00
|
|
|
application := object.GetApplication(applicationId)
|
|
|
|
organization := object.GetOrganization(fmt.Sprintf("%s/%s", application.Owner, application.Organization))
|
2021-10-31 08:49:39 +08:00
|
|
|
|
2022-03-07 15:15:59 +08:00
|
|
|
if checkUser == "true" && user == nil && object.GetUserByFields(organization.Name, dest) == nil {
|
|
|
|
c.ResponseError("Please login first")
|
2021-12-07 00:05:53 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-08-09 16:50:49 +08:00
|
|
|
sendResp := errors.New("invalid dest type")
|
2022-03-15 12:54:57 +08:00
|
|
|
|
|
|
|
if user == nil && checkUser != "" && checkUser != "true" {
|
2022-07-10 00:40:52 +08:00
|
|
|
name := application.Organization
|
2022-03-15 12:54:57 +08:00
|
|
|
user = object.GetUser(fmt.Sprintf("%s/%s", name, checkUser))
|
|
|
|
}
|
2021-05-12 21:38:31 +08:00
|
|
|
switch destType {
|
|
|
|
case "email":
|
2022-03-15 12:54:57 +08:00
|
|
|
if user != nil && util.GetMaskedEmail(user.Email) == dest {
|
|
|
|
dest = user.Email
|
|
|
|
}
|
2021-05-13 09:55:37 +08:00
|
|
|
if !util.IsEmailValid(dest) {
|
|
|
|
c.ResponseError("Invalid Email address")
|
|
|
|
return
|
|
|
|
}
|
2021-05-24 01:02:38 +08:00
|
|
|
|
|
|
|
provider := application.GetEmailProvider()
|
2021-09-04 22:20:47 +08:00
|
|
|
sendResp = object.SendVerificationCodeToEmail(organization, user, provider, remoteAddr, dest)
|
2021-05-12 22:09:41 +08:00
|
|
|
case "phone":
|
2022-03-15 12:54:57 +08:00
|
|
|
if user != nil && util.GetMaskedPhone(user.Phone) == dest {
|
|
|
|
dest = user.Phone
|
|
|
|
}
|
2021-05-13 09:55:37 +08:00
|
|
|
if !util.IsPhoneCnValid(dest) {
|
|
|
|
c.ResponseError("Invalid phone number")
|
|
|
|
return
|
|
|
|
}
|
2022-07-10 00:40:52 +08:00
|
|
|
if organization == nil {
|
|
|
|
c.ResponseError("The organization doesn't exist.")
|
2021-05-18 20:11:03 +08:00
|
|
|
return
|
2021-05-13 09:39:07 +08:00
|
|
|
}
|
2021-05-24 01:02:38 +08:00
|
|
|
|
2022-07-10 00:40:52 +08:00
|
|
|
dest = fmt.Sprintf("+%s%s", organization.PhonePrefix, dest)
|
2021-05-24 01:02:38 +08:00
|
|
|
provider := application.GetSmsProvider()
|
2021-09-04 22:20:47 +08:00
|
|
|
sendResp = object.SendVerificationCodeToPhone(organization, user, provider, remoteAddr, dest)
|
2021-05-12 21:38:31 +08:00
|
|
|
}
|
|
|
|
|
2021-09-04 22:20:47 +08:00
|
|
|
if sendResp != nil {
|
2021-10-31 08:49:39 +08:00
|
|
|
c.Data["json"] = Response{Status: "error", Msg: sendResp.Error()}
|
|
|
|
} else {
|
|
|
|
c.Data["json"] = Response{Status: "ok"}
|
2021-05-12 21:38:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
c.ServeJSON()
|
|
|
|
}
|
|
|
|
|
2021-08-07 22:02:56 +08:00
|
|
|
// ResetEmailOrPhone ...
|
2021-12-03 20:42:36 +08:00
|
|
|
// @Tag Account API
|
|
|
|
// @Title ResetEmailOrPhone
|
|
|
|
// @router /api/reset-email-or-phone [post]
|
2021-05-12 21:38:31 +08:00
|
|
|
func (c *ApiController) ResetEmailOrPhone() {
|
2022-09-18 15:43:49 +08:00
|
|
|
user, ok := c.RequireSignedInUser()
|
2021-05-17 23:25:28 +08:00
|
|
|
if !ok {
|
2021-05-12 21:38:31 +08:00
|
|
|
return
|
|
|
|
}
|
2021-05-17 23:25:28 +08:00
|
|
|
|
2021-05-12 21:38:31 +08:00
|
|
|
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
|
2022-07-30 18:17:13 +08:00
|
|
|
org := object.GetOrganizationByUser(user)
|
2021-05-13 09:39:07 +08:00
|
|
|
if destType == "phone" {
|
2022-07-30 18:17:13 +08:00
|
|
|
phoneItem := object.GetAccountItemByName("Phone", org)
|
|
|
|
if phoneItem == nil {
|
|
|
|
c.ResponseError("Unable to get the phone modify rule.")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if pass, errMsg := object.CheckAccountItemModifyRule(phoneItem, user); !pass {
|
|
|
|
c.ResponseError(errMsg)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-05-13 09:39:07 +08:00
|
|
|
phonePrefix := "86"
|
|
|
|
if org != nil && org.PhonePrefix != "" {
|
|
|
|
phonePrefix = org.PhonePrefix
|
|
|
|
}
|
|
|
|
checkDest = fmt.Sprintf("+%s%s", phonePrefix, dest)
|
2022-07-30 18:17:13 +08:00
|
|
|
} else if destType == "email" {
|
|
|
|
emailItem := object.GetAccountItemByName("Email", org)
|
|
|
|
if emailItem == nil {
|
|
|
|
c.ResponseError("Unable to get the email modify rule.")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if pass, errMsg := object.CheckAccountItemModifyRule(emailItem, user); !pass {
|
|
|
|
c.ResponseError(errMsg)
|
|
|
|
return
|
|
|
|
}
|
2021-05-13 09:39:07 +08:00
|
|
|
}
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2021-05-18 20:11:03 +08:00
|
|
|
object.DisableVerificationCode(checkDest)
|
2021-05-12 21:38:31 +08:00
|
|
|
c.Data["json"] = Response{Status: "ok"}
|
|
|
|
c.ServeJSON()
|
|
|
|
}
|
2022-06-18 16:00:31 +08:00
|
|
|
|
|
|
|
// VerifyCaptcha ...
|
|
|
|
// @Title VerifyCaptcha
|
|
|
|
// @Tag Verification API
|
|
|
|
// @router /verify-captcha [post]
|
|
|
|
func (c *ApiController) VerifyCaptcha() {
|
|
|
|
captchaType := c.Ctx.Request.Form.Get("captchaType")
|
|
|
|
|
|
|
|
captchaToken := c.Ctx.Request.Form.Get("captchaToken")
|
|
|
|
clientSecret := c.Ctx.Request.Form.Get("clientSecret")
|
|
|
|
if captchaToken == "" {
|
|
|
|
c.ResponseError("Missing parameter: captchaToken.")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if clientSecret == "" {
|
|
|
|
c.ResponseError("Missing parameter: clientSecret.")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
provider := captcha.GetCaptchaProvider(captchaType)
|
|
|
|
if provider == nil {
|
|
|
|
c.ResponseError("Invalid captcha provider.")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
isValid, err := provider.VerifyCaptcha(captchaToken, clientSecret)
|
|
|
|
if err != nil {
|
2022-06-26 22:09:57 +08:00
|
|
|
c.ResponseError(err.Error())
|
2022-06-18 16:00:31 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.ResponseOk(isValid)
|
|
|
|
}
|