rdluck 4 жил өмнө
parent
commit
06932b3f36
2 өөрчлөгдсөн 81 нэмэгдсэн , 9 устгасан
  1. 54 7
      controllers/user.go
  2. 27 2
      models/wx_user.go

+ 54 - 7
controllers/user.go

@@ -59,7 +59,7 @@ func (this *UserController) Detail() {
 // @Description 获取短信验证码接口
 // @Param   Mobile   query   string  true       "手机号码"
 // @Param   AreaNum   query   string  true       "地区编码"
-// @Success 200 {object} models.UserDetail
+// @Success Ret=200 获取成功
 // @router /getSmsCode [get]
 func (this *UserCommonController) GetSmsCode() {
 	br := new(models.BaseResponse).Init()
@@ -69,7 +69,7 @@ func (this *UserCommonController) GetSmsCode() {
 	}()
 	mobile := this.GetString("Mobile")
 	if mobile == "" {
-		br.Msg="请输入手机号"
+		br.Msg = "请输入手机号"
 		return
 	}
 	areaNum := this.GetString("AreaNum")
@@ -105,7 +105,7 @@ func (this *UserCommonController) GetSmsCode() {
 // @Title 校验短信验证码
 // @Description 校验短信验证码接口
 // @Param	request	body models.CheckSmsCodeReq true "type json string"
-// @Success 200 {object} models.LoginResp
+// @Success Ret=200 校验成功
 // @router /checkSmsCode [post]
 func (this *UserCommonController) CheckSmsCode() {
 	br := new(models.BaseResponse).Init()
@@ -154,7 +154,7 @@ func (this *UserCommonController) CheckSmsCode() {
 // @Title 获取邮件验证码
 // @Description 获取邮件验证码接口
 // @Param   Email   query   string  true       "手机号码"
-// @Success 200 {object} models.UserDetail
+// @Success Ret=200 获取成功
 // @router /getEmailCode [get]
 func (this *UserCommonController) GetEmailCode() {
 	br := new(models.BaseResponse).Init()
@@ -190,11 +190,10 @@ func (this *UserCommonController) GetEmailCode() {
 	br.Success = true
 }
 
-
 // @Title 校验邮箱验证码
 // @Description 校验邮箱验证码接口
 // @Param	request	body models.CheckEmailCodeReq true "type json string"
-// @Success 200 {object} models.LoginResp
+// @Success Ret=200 校验成功
 // @router /checkEmailCode [post]
 func (this *UserCommonController) CheckEmailCode() {
 	br := new(models.BaseResponse).Init()
@@ -242,9 +241,57 @@ func (this *UserCommonController) CheckEmailCode() {
 
 /*
 $app->post('api/user/login',"UserController@login");//登录
-$app->post('api/user/apply',"UserController@apply");//申请试用
 */
 
+// @Title 申请试用
+// @Description 申请试用接口
+// @Param	request	body models.ApplyReq true "type json string"
+// @Success 200 {object} models.LoginResp
+// @router /apply [post]
+func (this *UserController) Apply() {
+	br := new(models.BaseResponse).Init()
+	defer func() {
+		this.Data["json"] = br
+		this.ServeJSON()
+	}()
+	user := this.User
+	if user == nil {
+		br.Msg = "请登录"
+		br.ErrMsg = "请登录"
+		br.Ret = 408
+		return
+	}
+
+	var req models.ApplyReq
+	err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
+	if err != nil {
+		br.Msg = "参数解析异常!"
+		br.ErrMsg = "参数解析失败,Err:" + err.Error()
+		return
+	}
+	realName := req.RealName
+	userId := user.UserId
+	if req.ApplyMethod == 2 {
+		if realName == "" {
+			br.Msg = "姓名不能为空!"
+			return
+		}
+	}
+
+	if realName == "" {
+		realName = user.RealName
+	}
+	err = models.Apply(userId, req.ApplyMethod, user.Mobile, user.Email, req.CompanyName, realName, user.OpenId)
+	if err != nil {
+		br.Msg = "申请失败!"
+		br.ErrMsg = "申请失败,Err:" + err.Error()
+		return
+	}
+	br.Ret = 200
+	br.Success = true
+	br.Msg = "申请成功"
+}
+
 // @Title 是否小套餐客户
 // @Description 是否小套餐客户接口
 // @Success 200 {object} models.SmallLimitResp

+ 27 - 2
models/wx_user.go

@@ -136,6 +136,31 @@ type SmallLimitResp struct {
 }
 
 type CheckEmailCodeReq struct {
-	Email  string `description:"邮箱"`
+	Email   string `description:"邮箱"`
 	SmsCode string `description:"验证码"`
-}
+}
+
+type ApplyReq struct {
+	ApplyMethod int    `description:"申请方式:"`
+	CompanyName string `description:"公司名称"`
+	RealName    string `description:"姓名"`
+}
+
+func Apply(userId, applyMethod int, mobile, email, companyName, realName, openId string) (err error) {
+	sql := "INSERT INTO user_apply(user_id, mobile, email, company_name, real_name, apply_method) VALUES (?,?,?,?,?,?) "
+	rddpOrm := orm.NewOrm()
+	rddpOrm.Using("rddp")
+	_, err = rddpOrm.Raw(sql, userId, mobile, email, companyName, realName, applyMethod).Exec()
+	if err != nil {
+		return
+	}
+	o := orm.NewOrm()
+	if realName == "" {
+		msql := " UPDATE wx_user SET apply_method = ?,note=? WHERE open_id = ? "
+		_, err = o.Raw(msql, applyMethod, openId).Exec()
+	} else {
+		msql := " UPDATE wx_user SET apply_method = ?,real_name=?,note=? WHERE open_id = ? "
+		_, err = o.Raw(msql, applyMethod, realName, companyName, openId).Exec()
+	}
+	return
+}