base_api_controller.go 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  1. package controllers
  2. import (
  3. "XT_New/enums"
  4. "XT_New/service"
  5. "fmt"
  6. "strconv"
  7. "strings"
  8. )
  9. type BaseAPIController struct {
  10. BaseController
  11. }
  12. // func (this *BaseAPIController) Prepare() {
  13. // this.BaseController.Prepare()
  14. // beego.Trace("============================================================")
  15. // beego.Trace("session ID: %v", this.Ctx.Input.Cookie("beegosessionID"))
  16. // beego.Trace("session : %v", this.GetSession("info"))
  17. // this.SetSession("info", time.Now().Format("2006/01/02 15:04:05"))
  18. // beego.Trace("============================================================")
  19. // }
  20. // 输出数据格式化
  21. /*
  22. success json:
  23. {
  24. "state": 1,
  25. "code": 0,
  26. "data": json,
  27. }
  28. fail json:
  29. {
  30. "state": 0,
  31. "code": int,
  32. "msg": string,
  33. }
  34. */
  35. func (this *BaseAPIController) ServeSuccessJSON(data map[string]interface{}) {
  36. this.Data["json"] = enums.MakeSuccessResponseJSON(data)
  37. this.ServeJSON()
  38. }
  39. func (this *BaseAPIController) ServeFailJSONWithSGJErrorCode(code int) {
  40. this.Data["json"] = enums.MakeFailResponseJSONWithSGJErrorCode(code)
  41. this.ServeJSON()
  42. }
  43. func (this *BaseAPIController) ServeFailJSONWithSGJError(err *enums.SGJError) {
  44. this.Data["json"] = enums.MakeFailResponseJSONWithSGJError(err)
  45. this.ServeJSON()
  46. }
  47. func (this *BaseAPIController) ServeFailJsonSend(code int, msg string) {
  48. this.Data["json"] = enums.MakeFailResponseJSON(msg, code)
  49. this.ServeJSON()
  50. }
  51. type BaseAuthAPIController struct {
  52. BaseAPIController
  53. }
  54. func (this *BaseAuthAPIController) Prepare() {
  55. this.BaseAPIController.Prepare()
  56. if this.GetAdminUserInfo() == nil {
  57. //var userAdmin models.AdminUser
  58. //userAdmin.Id = 400
  59. //userAdmin.Mobile = "13535547901"
  60. //
  61. ////userAdmin.Id = 597
  62. ////userAdmin.Mobile = "19874122664"
  63. //userAdmin.IsSuperAdmin = false
  64. //userAdmin.Status = 1
  65. //userAdmin.CreateTime = 1530786071
  66. //userAdmin.ModifyTime = 1530786071
  67. //var subscibe models.ServeSubscibe
  68. //subscibe.ID = 1
  69. //subscibe.OrgId = 12
  70. //subscibe.PeriodStart = 1538035409
  71. //subscibe.PeriodEnd = 1569571409
  72. //subscibe.State = 1
  73. //subscibe.Status = 1
  74. //subscibe.CreatedTime = 1538035409
  75. //subscibe.UpdatedTime = 1538035409
  76. //subscibes := make(map[int64]*models.ServeSubscibe, 0)
  77. //subscibes[4] = &subscibe
  78. //var adminUserInfo service.AdminUserInfo
  79. //adminUserInfo.CurrentOrgId = 12
  80. //adminUserInfo.CurrentAppId = 18
  81. //adminUserInfo.AdminUser = &userAdmin
  82. //adminUserInfo.Subscibes = subscibes
  83. //this.SetSession("admin_user_info", &adminUserInfo)
  84. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeNotLogin)
  85. this.StopRun()
  86. }
  87. adminUserInfo := this.GetAdminUserInfo()
  88. if this.Ctx.Request.Header.Get("Permission") == "2" {
  89. org, _ := service.GetOrgById(adminUserInfo.CurrentOrgId)
  90. if adminUserInfo.AdminUser.Id != org.Creator { //超级管理员不受此限制
  91. isPermission := false
  92. adminUserInfo := this.GetAdminUserInfo()
  93. //该机构下该用户有多少个
  94. role, _ := service.GetUserAllRole(adminUserInfo.CurrentOrgId, adminUserInfo.AdminUser.Id)
  95. var roles []string
  96. if len(role.RoleIds) <= 0 { //该用户没有设置角色
  97. } else {
  98. roles = strings.Split(role.RoleIds, ",")
  99. }
  100. fmt.Println(roles)
  101. //获取该用户下所有角色的权限总集
  102. var userRolePurviews string
  103. var userRolePurviewsArr []string
  104. for _, item := range roles {
  105. role_id, _ := strconv.ParseInt(item, 10, 64)
  106. purviews, _ := service.GetRoleFuncPurviewIds(role_id)
  107. if len(userRolePurviews) == 0 {
  108. userRolePurviews = purviews
  109. } else {
  110. userRolePurviews = userRolePurviews + "," + purviews
  111. }
  112. }
  113. //该用户所拥有角色的权限的总集
  114. userRolePurviewsArr = RemoveRepeatedPurviewElement2(strings.Split(userRolePurviews, ","))
  115. fmt.Println(userRolePurviewsArr)
  116. //系统所记录的权限列表
  117. allPermission, _ := service.GetAllFunctionPurview()
  118. for _, item := range allPermission {
  119. fmt.Println(len(strings.Split(item.Urlfor, ",")))
  120. fmt.Println(strings.Split(item.Urlfor, ","))
  121. //fmt.Println(strings.Split(this.Ctx.Request.RequestURI, "?")[0] + "?" + "mode=" + this.GetString("mode"))
  122. //判断当前路由是否在权限路由列表里面
  123. if strings.Split(item.Urlfor, ",")[1] == strings.Split(this.Ctx.Request.RequestURI, "?")[0]+"?"+"mode="+this.GetString("mode") {
  124. //获取该角色的所有权限
  125. for _, items := range userRolePurviewsArr {
  126. id, _ := strconv.ParseInt(items, 10, 64)
  127. fmt.Println(id)
  128. fmt.Println(item.ID)
  129. if id == item.ID {
  130. isPermission = true
  131. }
  132. }
  133. if !isPermission {
  134. msg, _ := service.FindErrorMsgByStr(strings.Split(this.Ctx.Request.RequestURI, "?")[0] + "?" + "mode=" + this.GetString("mode"))
  135. json := make(map[string]interface{})
  136. json["msg"] = msg
  137. json["code"] = 0
  138. json["state"] = 0
  139. this.Data["json"] = json
  140. this.ServeJSON()
  141. this.StopRun()
  142. }
  143. }
  144. }
  145. }
  146. }
  147. if this.Ctx.Request.Header.Get("Permission") == "3" {
  148. org, _ := service.GetOrgById(adminUserInfo.CurrentOrgId)
  149. if adminUserInfo.AdminUser.Id != org.Creator { //超级管理员不受此限制
  150. isPermission := false
  151. adminUserInfo := this.GetAdminUserInfo()
  152. //该机构下该用户有多少个
  153. role, _ := service.GetUserAllRole(adminUserInfo.CurrentOrgId, adminUserInfo.AdminUser.Id)
  154. var roles []string
  155. if len(role.RoleIds) <= 0 { //该用户没有设置角色
  156. } else {
  157. roles = strings.Split(role.RoleIds, ",")
  158. }
  159. fmt.Println(roles)
  160. //获取该用户下所有角色的权限总集
  161. var userRolePurviews string
  162. var userRolePurviewsArr []string
  163. for _, item := range roles {
  164. role_id, _ := strconv.ParseInt(item, 10, 64)
  165. purviews, _ := service.GetRoleFuncPurviewIds(role_id)
  166. if len(userRolePurviews) == 0 {
  167. userRolePurviews = purviews
  168. } else {
  169. userRolePurviews = userRolePurviews + "," + purviews
  170. }
  171. }
  172. //该用户所拥有角色的权限的总集
  173. userRolePurviewsArr = RemoveRepeatedPurviewElement2(strings.Split(userRolePurviews, ","))
  174. fmt.Println(userRolePurviewsArr)
  175. //系统所记录的权限列表
  176. allPermission, _ := service.GetAllFunctionPurview()
  177. for _, item := range allPermission {
  178. fmt.Println(strings.Split(item.Urlfor, ",")[2])
  179. fmt.Println(strings.Split(this.Ctx.Request.RequestURI, "?")[0] + "?" + "mode=" + this.GetString("mode"))
  180. //判断当前路由是否在权限路由列表里面
  181. if strings.Split(item.Urlfor, ",")[2] == strings.Split(this.Ctx.Request.RequestURI, "?")[0]+"?"+"mode="+this.GetString("mode") {
  182. //获取该角色的所有权限
  183. for _, items := range userRolePurviewsArr {
  184. id, _ := strconv.ParseInt(items, 10, 64)
  185. fmt.Println(id)
  186. fmt.Println(item.ID)
  187. if id == item.ID {
  188. isPermission = true
  189. }
  190. }
  191. if !isPermission {
  192. msg, _ := service.FindErrorMsgByStr(strings.Split(this.Ctx.Request.RequestURI, "?")[0] + "?" + "mode=" + this.GetString("mode"))
  193. json := make(map[string]interface{})
  194. json["msg"] = msg
  195. json["code"] = 0
  196. json["state"] = 0
  197. this.Data["json"] = json
  198. this.ServeJSON()
  199. this.StopRun()
  200. }
  201. }
  202. }
  203. }
  204. }
  205. //if this.Ctx.Request.Method != "GET" {
  206. // adminUserInfo := this.GetAdminUserInfo()
  207. //
  208. // err := service.GetOrgSubscibeState(adminUserInfo.Subscibes[adminUserInfo.CurrentOrgId])
  209. // if err != nil || adminUserInfo.Subscibes[adminUserInfo.CurrentOrgId].State == 3 {
  210. // this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeNotSubscibe)
  211. // this.StopRun()
  212. // }
  213. //}
  214. //if this.Ctx.Request.Header.Get("Permission") == "1" {
  215. // isPermission := false
  216. //
  217. // //adminUserInfo := this.GetAdminUserInfo()
  218. //
  219. // //service.GetUserAllRole(adminUserInfo.CurrentOrgId)
  220. //
  221. //
  222. //
  223. //
  224. // roles := []int64{1,2} //模拟该用户有多少角色
  225. // var targetRole models.RolePurview
  226. // var userRolePurview []string
  227. //
  228. // //用户角色1对应的权限
  229. // role1 := models.RolePurview{PurviewIds:"11,12,13"}
  230. //
  231. // //用户角色2对应的权限
  232. // role2 := models.RolePurview{PurviewIds:"11,15,16"}
  233. //
  234. //
  235. // //模拟角色2
  236. // //判断该用户有多少个角色,合并最大角色权限
  237. // if len(roles) == 1{ //单个
  238. // targetRole = role1
  239. // userRolePurview = strings.Split(targetRole.PurviewIds, ",")
  240. //
  241. // }else{ //多个
  242. // targetRole = role1
  243. // targetRole.PurviewIds = targetRole.PurviewIds + "," + role2.PurviewIds
  244. // userRolePurview = strings.Split(targetRole.PurviewIds, ",")
  245. // }
  246. //
  247. // userRolePurview = RemoveRepeatedElement2(userRolePurview)
  248. //
  249. // fmt.Println(userRolePurview)
  250. // //所有权限列表
  251. // allPermission := []models.Purview{{Id:10,Urlfor:"/m/api/dialysis/dialysisPrescription-/api/dialysis/prescription"},
  252. // {Id:11,Urlfor:"/m/api/dialysis/dialysisPrescription1-/api/dialysis/prescription1"},
  253. // {Id:12,Urlfor:"/m/api/dialysis/dialysisPrescription2-/api/dialysis/prescription2"},
  254. // {Id:13,Urlfor:"/m/api/dialysis/dialysisPrescription3-/api/dialysis/prescription3"},
  255. // {Id:14,Urlfor:"/m/api/dialysis/dialysisPrescription4-/api/dialysis/prescription4"},
  256. // {Id:15,Urlfor:"/m/api/dialysis/dialysisPrescription5-/api/dialysis/prescription5"},
  257. // {Id:16,Urlfor:"/m/api/dialysis/dialysisPrescription6-/api/dialysis/prescription6"}}
  258. // for _, item := range allPermission {
  259. // //判断当前路由是否在权限路由列表里面
  260. // if strings.Split(item.Urlfor, "-")[1] == strings.Split(this.Ctx.Request.RequestURI , "?")[0]{
  261. // fmt.Println(strings.Split(this.Ctx.Request.RequestURI , "?")[0])
  262. //
  263. // //获取该角色的所有权限
  264. // for _, items := range userRolePurview{
  265. // id, _ := strconv.ParseInt(items, 10, 64)
  266. // if id == item.Id{
  267. // isPermission = true
  268. // }
  269. // }
  270. // if !isPermission{
  271. // this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodePreExist)
  272. // this.StopRun()
  273. // }
  274. // }
  275. //
  276. // }
  277. //}
  278. }
  279. type BaseServeAPIController struct {
  280. BaseAPIController
  281. }
  282. func (this *BaseServeAPIController) Prepare() {
  283. this.BaseAPIController.Prepare()
  284. if this.GetAdminUserInfo() == nil {
  285. //var userAdmin models.AdminUser
  286. //userAdmin.Id = 400
  287. //userAdmin.Mobile = "13535547901"
  288. ////userAdmin.Id = 597
  289. ////userAdmin.Mobile = "19874122664"
  290. //userAdmin.IsSuperAdmin = false
  291. //userAdmin.Status = 1
  292. //userAdmin.CreateTime = 1530786071
  293. //userAdmin.ModifyTime = 1530786071
  294. //var subscibe models.ServeSubscibe
  295. //subscibe.ID = 1
  296. //subscibe.OrgId = 12
  297. //subscibe.PeriodStart = 1538035409
  298. //subscibe.PeriodEnd = 1569571409
  299. //subscibe.State = 1
  300. //subscibe.Status = 1
  301. //subscibe.CreatedTime = 1538035409
  302. //subscibe.UpdatedTime = 1538035409
  303. //subscibes := make(map[int64]*models.ServeSubscibe, 0)
  304. //subscibes[4] = &subscibe
  305. //var adminUserInfo service.AdminUserInfo
  306. //adminUserInfo.CurrentOrgId = 12
  307. //adminUserInfo.CurrentAppId = 18
  308. //adminUserInfo.AdminUser = &userAdmin
  309. //adminUserInfo.Subscibes = subscibes
  310. //this.SetSession("admin_user_info", &adminUserInfo)
  311. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeNotLogin)
  312. this.StopRun()
  313. }
  314. //if adminUserInfo.AppRole != nil {
  315. // if adminUserInfo.AppRole.Id > 0 {
  316. // app_role, _ := service.FindAppRoleById(adminUserInfo.AppRole.Id)
  317. // if app_role != nil {
  318. // if app_role.Status != 1 {
  319. // this.DelSession("mobile_admin_user_info")
  320. // this.Ctx.SetCookie("token_cookie", "")
  321. // this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeForbidden)
  322. // this.StopRun()
  323. // }
  324. // }
  325. // }
  326. //
  327. //}
  328. //fmt.Println("222222222")
  329. }
  330. func RemoveRepeatedPurviewElement2(arr []string) (newArr []string) {
  331. newArr = make([]string, 0)
  332. for i := 0; i < len(arr); i++ {
  333. repeat := false
  334. for j := i + 1; j < len(arr); j++ {
  335. if arr[i] == arr[j] {
  336. repeat = true
  337. break
  338. }
  339. }
  340. if !repeat {
  341. newArr = append(newArr, arr[i])
  342. }
  343. }
  344. return
  345. }