123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807 |
- package new_mobile_api_controllers
-
- import (
- "Xcx_New/controllers/mobile_api_controllers"
- "Xcx_New/enums"
- "Xcx_New/models"
- "Xcx_New/service"
- "Xcx_New/utils"
- "encoding/json"
- "fmt"
- "github.com/astaxie/beego"
- "io/ioutil"
- "net/http"
- "net/url"
- "strconv"
- "strings"
- "time"
- )
-
- //func InitGoodTypesConfig(org *models.Org){
- //
- //
- //}
-
- type HomeController struct {
- NewMobileBaseAPIAuthController
- }
-
- func (this *HomeController) GetHomeData() {
-
- adminUserInfo := this.GetMobileAdminUserInfo()
- if adminUserInfo.Org != nil && adminUserInfo.Org.Id != 0 {
- //获取该管理员所有机构列表
- var orgs []*models.Org
- adminUser, err := service.GetHomeData(adminUserInfo.AdminUser.Id)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
- return
- }
- for _, item := range adminUser.Org {
- orgs = append(orgs, item)
- }
- for _, item := range adminUser.VMApp_Role {
- for _, subItem := range item.Org {
- orgs = append(orgs, subItem)
- }
- }
- orgs = RemoveRepeatedOrgElement(orgs)
-
- var isSubSuperAdmin bool = false
- if adminUserInfo.AppRole != nil && adminUserInfo.AppRole.Id > 0 {
- app_role, _ := service.GetAppRoleById(adminUserInfo.AppRole.Id)
- if len(app_role.RoleIds) > 0 {
- role_ids := strings.Split(app_role.RoleIds, ",")
- if adminUserInfo.AdminUser.Id != adminUserInfo.Org.Creator {
- for _, item := range role_ids {
- id, _ := strconv.ParseInt(item, 10, 64)
- if id > 0 {
- role, _ := service.GetRoleByRoleID(id)
- if role != nil {
- if role.IsSystem == 1 && role.RoleName == "子管理员" {
- isSubSuperAdmin = true
- }
- }
- }
- }
- }
- }
- }
-
- apps, err := service.GetAllApp(adminUserInfo.Org.Id)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
- return
- }
-
- banners, err := service.GetSystemBanner()
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
- return
- }
-
- cretor := adminUserInfo.AdminUser.Id
- this.ServeSuccessJSON(map[string]interface{}{
- "orgs": orgs,
- "apps": apps,
- "banners": banners,
- "isCreateOrg": true,
- "isSubSuperAdmin": isSubSuperAdmin,
- "cretor": cretor,
- })
- } else {
-
- apps, err := service.GetAllApp(0)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
- return
- }
- banners, err := service.GetSystemBanner()
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
- return
- }
-
- this.ServeSuccessJSON(map[string]interface{}{
- "isCreateOrg": false,
- "apps": apps,
- "banners": banners,
- "isSubSuperAdmin": false,
- })
- }
-
- }
-
- func RemoveRepeatedOrgElement(orgs []*models.Org) (newOrgs []*models.Org) {
- newOrgs = make([]*models.Org, 0)
- for i := 0; i < len(orgs); i++ {
- repeat := false
- for j := i + 1; j < len(orgs); j++ {
- if orgs[i].Id == orgs[j].Id {
- repeat = true
- break
- }
- }
- if !repeat {
- newOrgs = append(newOrgs, orgs[i])
- }
- }
- return
- }
-
- func (this *HomeController) ChangeOrg() {
- org_id, _ := this.GetInt64("org_id")
- adminUserInfo := this.GetMobileAdminUserInfo()
-
- tempOrg, err := service.GetOrgById(org_id)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
- return
- }
-
- if tempOrg == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeOrgNoExist)
- return
- }
-
- mobile := adminUserInfo.AdminUser.Mobile
- // 只取最近被创建的 admin_role
- adminUser, getAdminErr := service.GetValidAdminUserByMobileReturnErr(mobile) //账号信息唯一值
- if getAdminErr != nil {
- utils.ErrorLog("获取管理员失败:%v", getAdminErr)
- this.Data["json"] = enums.MakeFailResponseJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- this.ServeJSON()
- return
- } else if adminUser == nil {
- utils.ErrorLog("查找不到 mobile = %v 的用户", mobile)
- this.Data["json"] = enums.MakeFailResponseJSONWithSGJErrorCode(enums.ErrorCodeAccountOrPasswordWrong)
- this.ServeJSON()
- return
- } else {
-
- var appRole *models.App_Role
- var org *models.Org
- var subscibe *models.ServeSubscibe
- var app *models.OrgApp
-
- //根据登录信息的机构和用户id,去获取对应用户信息和机构信息
- tempApp, _ := service.GetOrgApp(tempOrg.Id, 3)
- tempRole, _ := service.GetAppRole(tempOrg.Id, tempApp.Id, adminUser.Id)
-
- tempSubscibe, getSubscibeErr := service.GetOrgServeSubscibe(tempOrg.Id)
- if getSubscibeErr != nil {
- utils.ErrorLog("获取机构订阅信息失败:%v", getSubscibeErr)
- this.Data["json"] = enums.MakeFailResponseJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- this.ServeJSON()
- return
- }
-
- subscibe = tempSubscibe
- org = tempOrg
- appRole = tempRole
- app = tempApp
-
- templateInfo, _ := service.GetOrgInfoTemplate(org.Id)
-
- mobileAdminUserInfo := &mobile_api_controllers.MobileAdminUserInfo{
- AdminUser: adminUser,
- Org: org,
- App: app,
- AppRole: appRole,
- Subscibe: subscibe,
- TemplateInfo: &templateInfo,
- }
-
- if org != nil && appRole != nil {
- // 插入一条登录记录
- ip := this.GetString("ip")
- loginLog := &models.AdminUserLoginLog{
- AdminUserId: adminUser.Id,
- OrgId: org.Id,
- AppId: appRole.AppId,
- IP: ip,
- OperateType: 3,
- AppType: 3,
- CreateTime: time.Now().Unix(),
- }
- if insertErr := service.InsertLoginLog(loginLog); insertErr != nil {
- utils.ErrorLog("为手机号为%v的用户插入一条登录记录失败:%v", mobile, insertErr)
- }
- }
-
- //删除session和cookie
- this.DelSession("mobile_admin_user_info")
- this.Ctx.SetCookie("token_cookie", "")
-
- //设置new seesion
- this.SetSession("mobile_admin_user_info", mobileAdminUserInfo)
- //设置new cookie
- mobile := adminUser.Mobile + "-" + strconv.FormatInt(org.Id, 10) + "-" + strconv.FormatInt(appRole.Id, 10)
- token := utils.GenerateLoginToken(mobile)
- expiration, _ := beego.AppConfig.Int64("mobile_token_expiration_second")
- this.Ctx.SetCookie("token_cookie", token, expiration, "/")
-
- var configList interface{}
- var dict_config_list interface{}
- var FiledList []*models.FiledConfig
-
- if org.Id > 0 {
- dict_config_list, _ = service.GetDictConfigList(org.Id)
- configList, _ = service.GetConfigList(org.Id)
- FiledList, _ = service.FindFiledByOrgId(org.Id)
- }
- if len(FiledList) == 0 {
- var err error
- if org.Id > 0 {
- err = service.BatchInsertFiledConfig(org.Id)
- if err == nil {
- FiledList, _ = service.FindFiledByOrgId(org.Id)
- } else {
- utils.ErrorLog("字段批量插入失败:%v", err)
- }
- } else {
- FiledList = make([]*models.FiledConfig, 0)
- }
-
- if org.Id > 0 {
- //产寻该机构是否有收缩压和舒张压
- pressure, err := service.GetDefaultSystolicPressure(org.Id)
- fmt.Println(err)
- if len(pressure) == 0 {
- err = service.BathInsertQualityControlTwo(org.Id)
- } else {
- utils.ErrorLog("字段批量插入失败:%v", err)
- }
- major, err := service.GetInspectionMajor(org.Id)
- if len(major) == 0 {
- QualityeList, err := service.FindQualityByOrgId(org.Id)
- if len(QualityeList) == 0 {
- err = service.BatchInsertQualityControl(org.Id)
- } else {
- utils.ErrorLog("字段批量插入失败:%v", err)
- }
-
- InspectionList, err := service.FindeInspectionByOrgId(org.Id)
- if len(InspectionList) == 0 {
- err = service.BatchInspectionConfiguration(org.Id)
- } else {
- utils.ErrorLog("字段批量插入失败:%v", err)
- }
- } else {
- utils.ErrorLog("字段批量插入失败:%v", err)
- }
-
- }
-
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "admin": adminUser,
- "user": appRole,
- "org": org,
- "template_info": map[string]interface{}{
- "id": templateInfo.ID,
- "org_id": templateInfo.OrgId,
- "template_id": templateInfo.TemplateId,
- },
- "config_list": configList,
- "dict_config_list": dict_config_list,
- "filed_list": FiledList,
- })
- }
-
- }
-
- func (this *HomeController) CreateOrg() {
-
- adminUserInfo := this.GetMobileAdminUserInfo()
- adminUser := adminUserInfo.AdminUser
-
- //if didCreateOrg, checkCreateOrgErr := service.DidAdminUserCreateOrg(adminUser.Id); checkCreateOrgErr != nil {
- // this.Data["json"] = enums.MakeFailResponseJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- // this.ServeJSON()
- // return
- //} else if didCreateOrg {
- // this.Data["json"] = enums.MakeFailResponseJSONWithSGJErrorCode(enums.ErrorCodeRepeatCreateOrg)
- // this.ServeJSON()
- // return
- //}
-
- name := this.GetString("org_name")
- shortName := name
- provinceName := this.GetString("provinces_name")
- cityName := this.GetString("city_name")
- districtName := this.GetString("district_name")
- address := this.GetString("address")
- org_type := this.GetString("org_type")
- contactName := this.GetString("contact_name")
-
- openXT := true
- openCDM := false
- openSCRM := false
- openMall := false
-
- if len(name) == 0 || len(shortName) == 0 || len(contactName) == 0 || len(address) == 0 || len(provinceName) <= 0 || len(cityName) <= 0 || len(districtName) <= 0 || len(org_type) <= 0 {
- this.Data["json"] = enums.MakeFailResponseJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- this.ServeJSON()
- return
- }
- orgPhone := this.GetString("telephone")
-
- provinceID := 0
- cityID := 0
- districtID := 0
-
- province, getProvinceErr := service.GetProvinceWithName(provinceName)
- if getProvinceErr != nil {
- utils.ErrorLog("查询省名失败:%v", getProvinceErr)
- this.Data["json"] = enums.MakeFailResponseJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- this.ServeJSON()
- return
- } else if province != nil {
- provinceID = int(province.ID)
- city, getCityErr := service.GetCityWithName(province.ID, cityName)
- if getCityErr != nil {
- utils.ErrorLog("查询城市名失败:%v", getCityErr)
- this.Data["json"] = enums.MakeFailResponseJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- this.ServeJSON()
- return
- } else if city != nil {
- cityID = int(city.ID)
- district, getDistrictErr := service.GetDistrictWithName(city.ID, districtName)
- if getDistrictErr != nil {
- utils.ErrorLog("查询区县名失败:%v", getDistrictErr)
- this.Data["json"] = enums.MakeFailResponseJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- this.ServeJSON()
- return
- } else if district != nil {
- districtID = int(district.ID)
- }
- }
- }
-
- var orgs []*models.Org
- vmAdminUser, err := service.GetHomeData(adminUser.Id)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
- return
- }
- for _, item := range vmAdminUser.Org {
- orgs = append(orgs, item)
- }
- for _, item := range vmAdminUser.VMApp_Role {
- for _, subItem := range item.Org {
- orgs = append(orgs, subItem)
- }
- }
- orgs = RemoveRepeatedOrgElement(orgs)
-
- orgType := service.GetOrgTypeByName(org_type)
-
- org := &models.Org{
- Creator: adminUser.Id,
- OrgName: name,
- OrgShortName: shortName,
- Province: int64(provinceID),
- City: int64(cityID),
- District: int64(districtID),
- Address: address,
- OrgType: orgType.ID,
- Telephone: orgPhone,
- ContactName: contactName,
- Claim: 1,
- Evaluate: 5,
- Status: 1,
- CreateTime: time.Now().Unix(),
- ModifyTime: time.Now().Unix(),
- }
-
- createErr := service.CreateOrg(org, adminUser.Name, openXT, openCDM, openSCRM, openMall) // 创建机构以及所有类型的 app,如果有新类型的平台,则需要在这个方法里面把创建这一新类型的 app 的代码加上
-
- if createErr != nil {
- utils.ErrorLog("mobile=%v的超级管理员创建机构失败:%v", adminUser.Mobile, createErr)
- this.Data["json"] = enums.MakeFailResponseJSONWithSGJErrorCode(enums.ErrorCodeDBCreate)
- this.ServeJSON()
- } else {
-
- //初始化病人和排班相关数据
- InitPatientAndSchedule(org)
- //初始化透析方案
- InitSystemPrescrption(org)
- //初始化医嘱模版
- //InitAdviceTemplate(org)
- //初始化角色和权限
- InitRoleAndPurviews(org)
- //初始化设备管理
- InitEquitMentInformation(org)
- //初始化显示配置和打印模版
- InitShowConfig(org)
- //初始化商品类型
- InitGoodTypesConfig(org)
-
- if len(orgs) == 0 {
- ip := utils.GetIP(this.Ctx.Request)
- ssoDomain := beego.AppConfig.String("sso_domain")
- api := ssoDomain + "/m/login/pwd"
- values := make(url.Values)
- values.Set("mobile", adminUser.Mobile)
- values.Set("password", adminUser.Password)
- values.Set("app_type", "3")
- values.Set("ip", ip)
- resp, requestErr := http.PostForm(api, values)
-
- if requestErr != nil {
- utils.ErrorLog("请求SSO登录接口失败: %v", requestErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- defer resp.Body.Close()
- body, ioErr := ioutil.ReadAll(resp.Body)
- if ioErr != nil {
- utils.ErrorLog("SSO登录接口返回数据读取失败: %v", ioErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- var respJSON map[string]interface{}
- utils.InfoLog(string(body))
- if err := json.Unmarshal([]byte(string(body)), &respJSON); err != nil {
- utils.ErrorLog("SSO登录接口返回数据解析JSON失败: %v", err)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
-
- if respJSON["state"].(float64) != 1 {
- msg := respJSON["msg"].(string)
- utils.ErrorLog("SSO登录接口请求失败: %v", msg)
- if int(respJSON["code"].(float64)) == 609 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeAccountOrPasswordWrong)
- return
- }
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else {
- utils.SuccessLog("SSO登录成功")
- // 下面这几段 Map=>JSON=>Struct 的流程可能会造成速度很慢
- userJSON := respJSON["data"].(map[string]interface{})["admin"].(map[string]interface{})
- userJSONBytes, _ := json.Marshal(userJSON)
- var adminUser models.AdminUser
- if err := json.Unmarshal(userJSONBytes, &adminUser); err != nil {
- utils.ErrorLog("解析管理员失败:%v", err)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
-
- var org models.Org
- if respJSON["data"].(map[string]interface{})["org"] != nil {
- orgJSON := respJSON["data"].(map[string]interface{})["org"].(map[string]interface{})
- orgJSONBytes, _ := json.Marshal(orgJSON)
- if err := json.Unmarshal(orgJSONBytes, &org); err != nil {
- utils.ErrorLog("解析机构失败:%v", err)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- }
-
- var app models.OrgApp
-
- if respJSON["data"].(map[string]interface{})["app"] != nil {
- appJSON := respJSON["data"].(map[string]interface{})["app"].(map[string]interface{})
- appJSONBytes, _ := json.Marshal(appJSON)
- if err := json.Unmarshal(appJSONBytes, &app); err != nil {
- utils.ErrorLog("解析应用失败:%v", err)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- }
-
- var appRole models.App_Role
-
- if respJSON["data"].(map[string]interface{})["app_role"] != nil {
- appRoleJSON := respJSON["data"].(map[string]interface{})["app_role"].(map[string]interface{})
- appRoleJSONBytes, _ := json.Marshal(appRoleJSON)
- if err := json.Unmarshal(appRoleJSONBytes, &appRole); err != nil {
- utils.ErrorLog("解析AppRole失败:%v", err)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- }
-
- var subscibe models.ServeSubscibe
- if respJSON["data"].(map[string]interface{})["subscibe"] != nil {
- subscibeJSON := respJSON["data"].(map[string]interface{})["subscibe"].(map[string]interface{})
- subscibeJSONBytes, _ := json.Marshal(subscibeJSON)
- if err := json.Unmarshal(subscibeJSONBytes, &subscibe); err != nil {
- utils.ErrorLog("解析Subscibe失败:%v", err)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
-
- }
-
- //service.GetOrgSubscibeState(&subscibe)
- templateInfo, _ := service.GetOrgInfoTemplate(org.Id)
-
- mobileAdminUserInfo := &mobile_api_controllers.MobileAdminUserInfo{
- AdminUser: &adminUser,
- Org: &org,
- App: &app,
- AppRole: &appRole,
- Subscibe: &subscibe,
- TemplateInfo: &templateInfo,
- }
- this.Ctx.SetCookie("token_cookie", "")
-
- //设置seesion
- this.SetSession("mobile_admin_user_info", mobileAdminUserInfo)
-
- //设置cookie
- mobile := adminUser.Mobile + "-" + strconv.FormatInt(org.Id, 10) + "-" + strconv.FormatInt(appRole.Id, 10)
- token := utils.GenerateLoginToken(mobile)
- expiration, _ := beego.AppConfig.Int64("mobile_token_expiration_second")
- this.Ctx.SetCookie("token_cookie", token, expiration, "/")
-
- var configList interface{}
- var dict_config_list interface{}
-
- var FiledList []*models.FiledConfig
-
- if org.Id > 0 {
- dict_config_list, _ = service.GetDictConfigList(org.Id)
-
- configList, _ = service.GetConfigList(org.Id)
- FiledList, _ = service.FindFiledByOrgId(org.Id)
- }
- if len(FiledList) == 0 {
- var err error
- if org.Id > 0 {
- err = service.BatchInsertFiledConfig(org.Id)
- if err == nil {
- FiledList, _ = service.FindFiledByOrgId(org.Id)
- } else {
- utils.ErrorLog("字段批量插入失败:%v", err)
- }
- } else {
- FiledList = make([]*models.FiledConfig, 0)
- }
- }
-
- if org.Id > 0 {
- major, requestErr := service.GetInspectionMajor(org.Id)
- if len(major) == 0 {
- QualityeList, err := service.FindQualityByOrgId(org.Id)
- if len(QualityeList) == 0 {
- err = service.BatchInsertQualityControl(org.Id)
- } else {
- utils.ErrorLog("字段批量插入失败:%v", err)
- }
-
- InspectionList, err := service.FindeInspectionByOrgId(org.Id)
- if len(InspectionList) == 0 {
- err = service.BatchInspectionConfiguration(org.Id)
- } else {
- utils.ErrorLog("字段批量插入失败:%v", err)
- }
- } else {
- utils.ErrorLog("字段批量插入失败:%v", requestErr)
- }
-
- }
-
- this.ServeSuccessJSON(map[string]interface{}{
- "admin": adminUser,
- "user": appRole,
- "org": org,
- "template_info": map[string]interface{}{
- "id": templateInfo.ID,
- "org_id": templateInfo.OrgId,
- "template_id": templateInfo.TemplateId,
- },
- "config_list": configList,
- "dict_config_list": dict_config_list,
-
- "filed_list": FiledList,
- "status": 1,
- })
- }
-
- } else {
- this.ServeSuccessJSON(map[string]interface{}{
- "org": org,
- "status": 2,
- })
-
- }
-
- }
-
- }
-
- func (this *HomeController) ModifyPsw() {
- mobile := this.GetString("mobile")
- code := this.GetString("code")
- password := this.GetString("password")
- checkErr := this.checkParam(mobile, code, password)
- if checkErr != nil {
- this.ServeFailJSONWithSGJErrorCode(checkErr.Code)
- return
- }
- adminUser, _ := service.GetValidAdminUserByMobileReturnErr(mobile)
- modifyErr := service.ModifyPassword(adminUser.Id, password)
- if modifyErr != nil {
- utils.ErrorLog("修改mobile=%v的用户的密码时失败: %v", mobile, modifyErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDBUpdate)
- return
- } else {
- // 修改成功后验证码就要使其失效
- redisClient := service.RedisClient()
- defer redisClient.Close()
- redisClient.Del("code_msg_" + mobile)
- this.ServeSuccessJSON(map[string]interface{}{
- "admin": adminUser,
- })
- return
- }
- }
-
- func (this *HomeController) checkParam(mobile string, code string, password string) *enums.SGJError {
- if utils.CellPhoneRegexp().MatchString(mobile) == false {
- return &enums.SGJError{Code: enums.ErrorCodeMobileFormat}
- }
- if len(code) == 0 {
- return &enums.SGJError{Code: enums.ErrorCodeVerificationCodeWrong}
- }
- if len(password) == 0 {
- return &enums.SGJError{Code: enums.ErrorCodePasswordEmpty}
- }
- if service.IsMobileRegister(mobile) == false {
- return &enums.SGJError{Code: enums.ErrorCodeMobileNotExit}
- }
- redisClient := service.RedisClient()
- defer redisClient.Close()
- cache_code, _ := redisClient.Get("code_msg_" + mobile).Result()
- if cache_code != code {
- return &enums.SGJError{Code: enums.ErrorCodeVerificationCodeWrong}
- }
- return nil
- }
-
- func (this *HomeController) GetFuncPermission() {
- adminUserInfo := this.GetMobileAdminUserInfo()
- user_id := adminUserInfo.AdminUser.Id
- app_id := adminUserInfo.App.Id
- org_id := adminUserInfo.Org.Id
- create_url := this.GetString("create_url")
- modify_url := this.GetString("modify_url")
- modify_other_url := this.GetString("modify_other_url")
- del_url := this.GetString("del_url")
- del_other_url := this.GetString("del_other_url")
- exce_url := this.GetString("exce_url")
- check_url := this.GetString("check_url")
- modify_exce_url := this.GetString("modify_exce_url")
- module, _ := this.GetInt64("module", 0)
-
- app_role, _ := service.GetAppRole(org_id, app_id, user_id)
- var is_has_create bool
- var is_has_modify bool
- var is_has_modify_other bool
- var is_has_del bool
- var is_has_del_other bool
- var is_has_exce bool
- var is_has_check bool
- var is_has_modify_exce bool
-
- if adminUserInfo.AdminUser.Id != adminUserInfo.Org.Creator {
-
- if app_role != nil {
- if len(app_role.RoleIds) > 0 {
- roles := strings.Split(app_role.RoleIds, ",")
- var userRolePurviews string
- for _, item := range roles {
- role_id, _ := strconv.ParseInt(item, 10, 64)
- purviews, _ := service.GetRoleFuncPurviewIds(role_id)
- if len(userRolePurviews) == 0 {
- userRolePurviews = purviews
- } else {
- userRolePurviews = userRolePurviews + "," + purviews
- }
- }
- userRolePurviewsArr := RemoveRepeatedPurviewElement2(strings.Split(userRolePurviews, ","))
- funcPurviews, _ := service.FindAllFuncPurview(userRolePurviewsArr)
- for _, item := range funcPurviews {
- //for _, url := range strings.Split(item.Urlfor,","){
- if strings.Split(item.Urlfor, ",")[0] == create_url {
- is_has_create = true
- }
- if strings.Split(item.Urlfor, ",")[0] == modify_url {
- is_has_modify = true
- }
- if strings.Split(item.Urlfor, ",")[0] == modify_other_url {
- is_has_modify_other = true
- }
- if strings.Split(item.Urlfor, ",")[0] == del_url {
- is_has_del = true
- }
- if strings.Split(item.Urlfor, ",")[0] == del_other_url {
- is_has_del_other = true
- }
- if strings.Split(item.Urlfor, ",")[0] == exce_url {
- is_has_exce = true
- }
- if strings.Split(item.Urlfor, ",")[0] == check_url {
- is_has_check = true
- }
- if strings.Split(item.Urlfor, ",")[0] == modify_exce_url {
- is_has_modify_exce = true
- }
-
- }
- } else {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeRole)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "is_has_create": is_has_create,
- "is_has_modify": is_has_modify,
- "is_has_modify_other": is_has_modify_other,
- "is_has_del": is_has_del,
- "is_has_del_other": is_has_del_other,
- "is_has_exce": is_has_exce,
- "is_has_check": is_has_check,
- "is_has_modify_exce": is_has_modify_exce,
- "module": module,
- })
- } else {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeAdminUserIsExit)
- return
-
- }
-
- } else {
- this.ServeSuccessJSON(map[string]interface{}{
- "is_has_create": true,
- "is_has_modify": true,
- "is_has_modify_other": true,
- "is_has_del": true,
- "is_has_del_other": true,
- "is_has_exce": true,
- "is_has_check": true,
- "is_has_modify_exce": true,
- "module": true,
- })
-
- }
-
- }
- func RemoveRepeatedPurviewElement2(arr []string) (newArr []string) {
- newArr = make([]string, 0)
- for i := 0; i < len(arr); i++ {
- repeat := false
- for j := i + 1; j < len(arr); j++ {
- if arr[i] == arr[j] {
- repeat = true
- break
- }
- }
- if !repeat {
- newArr = append(newArr, arr[i])
- }
- }
- return
- }
-
- func RemoveRepeatedOrgElementTwo(orgs []*models.SgjUserOrg) (newOrgs []*models.SgjUserOrg) {
- newOrgs = make([]*models.SgjUserOrg, 0)
- for i := 0; i < len(orgs); i++ {
- repeat := false
- for j := i + 1; j < len(orgs); j++ {
- if orgs[i].ID == orgs[j].ID {
- repeat = true
- break
- }
- }
- if !repeat {
- newOrgs = append(newOrgs, orgs[i])
- }
- }
- return
- }
|