蛋蛋星球 后台端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

437 lines
18 KiB

  1. package router
  2. import (
  3. "applet/app/cfg"
  4. "applet/app/hdl"
  5. "applet/app/hdl/advertising"
  6. "applet/app/hdl/article"
  7. "applet/app/hdl/cloud_bundle"
  8. "applet/app/hdl/comm"
  9. "applet/app/hdl/content_reward"
  10. "applet/app/hdl/financial_center"
  11. "applet/app/hdl/friend_circle"
  12. "applet/app/hdl/im"
  13. "applet/app/hdl/institutional_management/egg_energy"
  14. "applet/app/hdl/institutional_management/egg_point_coefficient"
  15. "applet/app/hdl/institutional_management/module_setting"
  16. "applet/app/hdl/institutional_management/public_platoon"
  17. "applet/app/hdl/marketing_applications/new_user_red_package"
  18. "applet/app/hdl/member_center"
  19. "applet/app/hdl/notice"
  20. "applet/app/hdl/setCenter/oss/aliyun"
  21. "applet/app/hdl/setCenter/web"
  22. "applet/app/hdl/user_feedback"
  23. "applet/app/hdl/user_real_name"
  24. "applet/app/hdl/website"
  25. "applet/app/mw"
  26. _ "applet/docs"
  27. "github.com/gin-gonic/gin"
  28. swaggerFiles "github.com/swaggo/files"
  29. ginSwagger "github.com/swaggo/gin-swagger"
  30. )
  31. // 初始化路由
  32. func Init() *gin.Engine {
  33. // debug, release, test 项目阶段
  34. mode := "release"
  35. if cfg.Debug {
  36. mode = "debug"
  37. }
  38. gin.SetMode(mode)
  39. //创建一个新的启动器
  40. r := gin.New()
  41. r.GET("/api/swagger/*any", func(c *gin.Context) {
  42. // r.Use(mw.SwagAuth())
  43. ginSwagger.DisablingWrapHandler(swaggerFiles.Handler, "SWAGGER")(c)
  44. })
  45. // 是否打印访问日志, 在非正式环境都打印
  46. if mode != "release" {
  47. r.Use(gin.Logger())
  48. }
  49. r.Use(gin.Recovery())
  50. r.GET("/favicon.ico", func(c *gin.Context) {
  51. c.Status(204)
  52. })
  53. r.NoRoute(func(c *gin.Context) {
  54. c.JSON(404, gin.H{"code": 404, "msg": "page not found", "data": []struct{}{}})
  55. })
  56. r.NoMethod(func(c *gin.Context) {
  57. c.JSON(405, gin.H{"code": 405, "msg": "method not allowed", "data": []struct{}{}})
  58. })
  59. r.Use(mw.Cors)
  60. route(r.Group("/api"))
  61. return r
  62. }
  63. func route(r *gin.RouterGroup) {
  64. r.GET("/test", hdl.Demo)
  65. r.POST("/login", hdl.Login)
  66. {
  67. //打包机调用,不需要校验
  68. r.GET("/cloudBundle/base", cloud_bundle.Base) //打包基本信息
  69. r.POST("/cloudBundle/update/state", cloud_bundle.UpdateState) //打包更新状态
  70. r.POST("/cloudBundle/upload", cloud_bundle.Upload) //打包 上传apk
  71. r.GET("/getSTSVoucher", comm.GetSTSVoucher) // 获取 STS 凭证
  72. //这里是官网的接口
  73. rWebsite := r.Group("/website") //官网信息
  74. {
  75. rWebsite.GET("/info", website.WebsiteInfo) // 官网
  76. rWebsite.GET("/getModuleSetting", website.GetModuleSetting) // 获取页面样式
  77. rWebsite.POST("/certificate", website.Certificate) // 查询证书
  78. }
  79. }
  80. r.Use(mw.Auth) // 以下接口需要JWT验证
  81. rComm(r.Group("/comm"))
  82. r.GET("/config", hdl.Config)
  83. rIm(r.Group("/im"))
  84. r.Use(mw.CheckPermission) // 检测权限
  85. rRole(r.Group("/role"))
  86. rInstitutionalManagement(r.Group("/institutionalManagement"))
  87. rMarketingApplications(r.Group("/marketingApplications"))
  88. rMemberCenter(r.Group("/memberCenter"))
  89. rHomePage(r.Group("/homePage"))
  90. rSettCenter(r.Group("/settCenter"))
  91. rFinancialCenter(r.Group("/financialCenter"))
  92. rAdvertising(r.Group("/advertising"))
  93. rNotice(r.Group("/notice"))
  94. rArticle(r.Group("/article"))
  95. rUserFeedback(r.Group("/userFeedback"))
  96. rCloudBundle(r.Group("/cloudBundle")) //云打包
  97. rUserRealName(r.Group("/userRealName")) //实名认证
  98. rFriendCircleSettings(r.Group("/friendCircleSettings")) // 朋友圈设置
  99. }
  100. func rSettCenter(r *gin.RouterGroup) { //设置中心
  101. rOss := r.Group("/oss") //oss设置
  102. {
  103. rOssAliYun := rOss.Group("/aliYun") //阿里云
  104. {
  105. rOssAliYun.GET("/getBasic", aliyun.GetBasic)
  106. rOssAliYun.POST("/setBasic", aliyun.SetBasic)
  107. }
  108. }
  109. rWeb := r.Group("/web") //网站信息
  110. {
  111. rWeb.GET("/getBasic", web.GetBasic)
  112. rWeb.POST("/setBasic", web.SetBasic)
  113. }
  114. }
  115. func rHomePage(r *gin.RouterGroup) {
  116. r.GET("/totalData", hdl.GetTotalData)
  117. r.GET("/activeData", hdl.GetActiveData)
  118. r.GET("/growData", hdl.GetGrowData)
  119. }
  120. func rAdvertising(r *gin.RouterGroup) {
  121. r.GET("/getBasic", advertising.GetBasic)
  122. r.POST("/setBasic", advertising.SetBasic)
  123. r.POST("/list", advertising.List)
  124. r.POST("/save", advertising.Save)
  125. r.POST("/del", advertising.Del)
  126. r.GET("/getLimit", advertising.GetLimit)
  127. r.POST("/setLimit", advertising.SetLimit)
  128. r.POST("/function/list", advertising.FunctionList)
  129. r.POST("/function/save", advertising.FunctionSave)
  130. r.POST("/function/del", advertising.FunctionDel)
  131. }
  132. func rNotice(r *gin.RouterGroup) {
  133. rBase := r.Group("/base") //极光
  134. {
  135. rBase.POST("/list", notice.List)
  136. rBase.POST("/save", notice.Save)
  137. rBase.POST("/del", notice.Del)
  138. }
  139. rJpush := r.Group("/jPush") //极光
  140. {
  141. rJpush.POST("/push/list", notice.PushList)
  142. rJpush.POST("/getUserList", notice.JPushGetUserList)
  143. rJpush.GET("/getTagList", notice.JPushGetTagList)
  144. rJpush.GET("/getLevelList", notice.JPushGetLevelList)
  145. rJpush.POST("/push/save", notice.PushSave)
  146. }
  147. rAliyunSms := r.Group("/aliyunSms") //阿里云短信
  148. {
  149. rAliyunSms.POST("/file/phone", notice.AliyunSmsFilePhone)
  150. rAliyunSms.POST("/getUserList", notice.AliyunSmsGetUserList)
  151. rAliyunSms.GET("/getTagList", notice.AliyunSmsTagList)
  152. rAliyunSms.GET("/getLevelList", notice.AliyunSmsGetLevelList)
  153. rAliyunSms.GET("/sale/base", notice.AliyunSmsSaleBase)
  154. rAliyunSms.POST("/sale/save", notice.AliyunSmsSaleSave)
  155. rAliyunSms.POST("/push/list", notice.AliyunSmsPushList)
  156. rAliyunSms.POST("/push/save", notice.AliyunSmsPushSave)
  157. }
  158. }
  159. func rArticle(r *gin.RouterGroup) { //文章
  160. rCate := r.Group("/cate") //
  161. {
  162. rCate.POST("/list", article.CateList)
  163. rCate.POST("/save", article.CateSave)
  164. rCate.POST("/del", article.CateDel)
  165. }
  166. rContent := r.Group("/content") //
  167. {
  168. rContent.POST("/list", article.List)
  169. rContent.POST("/save", article.Save)
  170. rContent.POST("/del", article.Del)
  171. }
  172. }
  173. func rUserFeedback(r *gin.RouterGroup) { //用户反馈
  174. rCate := r.Group("/cate") //
  175. {
  176. rCate.POST("/list", user_feedback.CateList)
  177. rCate.POST("/save", user_feedback.CateSave)
  178. rCate.POST("/del", user_feedback.CateDel)
  179. }
  180. rContent := r.Group("/content") //
  181. {
  182. rContent.POST("/list", user_feedback.List)
  183. rContent.POST("/record/list", user_feedback.RecordList)
  184. rContent.POST("/say", user_feedback.Say)
  185. rContent.POST("/change/state", user_feedback.ChangeState)
  186. rContent.POST("/del", user_feedback.Del)
  187. }
  188. }
  189. func rCloudBundle(r *gin.RouterGroup) { //云打包
  190. r.POST("/list", cloud_bundle.List)
  191. r.POST("/build", cloud_bundle.Build)
  192. r.POST("/del", cloud_bundle.Del)
  193. r.POST("/audit/set", cloud_bundle.AuditSet)
  194. r.POST("/audit/clear", cloud_bundle.AuditClear)
  195. r.GET("/img/base", cloud_bundle.ImgBase)
  196. r.POST("/img/base/save", cloud_bundle.ImgBaseSave)
  197. r.GET("/version/base", cloud_bundle.VersionBase)
  198. r.POST("/version/base/save", cloud_bundle.VersionBaseSave)
  199. }
  200. func rUserRealName(r *gin.RouterGroup) { //实名认证
  201. r.POST("/list", user_real_name.List)
  202. r.POST("/save", user_real_name.Save)
  203. r.GET("/base", user_real_name.Base)
  204. r.POST("/base/save", user_real_name.BaseSave)
  205. }
  206. func rInstitutionalManagement(r *gin.RouterGroup) { //制度管理
  207. rPublicPlatoon := r.Group("/publicPlatoon") //公排设置
  208. {
  209. rPublicPlatoon.GET("/getBasic", public_platoon.GetPublicPlatoonBasic)
  210. rPublicPlatoon.PUT("/updateBasic", public_platoon.UpdatePublicPlatoonBasic)
  211. rPublicPlatoon.GET("/relationshipMap", public_platoon.GetRelationshipMap)
  212. rPublicPlatoon.GET("/findUserRelationshipMap", public_platoon.FindUserRelationshipMap)
  213. rPublicPlatoon.GET("/findSubUserRelationshipMap", public_platoon.FindSubUserRelationshipMap)
  214. rPublicPlatoon.POST("/exchangeUserPosition", public_platoon.ExchangeUserPosition)
  215. rPublicPlatoon.POST("/selectMember", public_platoon.SelectMember)
  216. rPublicPlatoonUserFreePunish := rPublicPlatoon.Group("/publicPlatoonUserFreePunish")
  217. {
  218. rPublicPlatoonUserFreePunish.POST("/index", public_platoon.GetFreePublishUser)
  219. rPublicPlatoonUserFreePunish.POST("/save", public_platoon.AddFreePublishUser)
  220. rPublicPlatoonUserFreePunish.DELETE("/delete", public_platoon.DeleteFreePublishUser)
  221. }
  222. rCommunityDividends := rPublicPlatoon.Group("/communityDividends")
  223. {
  224. rCommunityDividends.POST("/communityDividendsList", public_platoon.ListCommunityDividends)
  225. rCommunityDividends.POST("/communityDividendsAdd", public_platoon.AddCommunityDividends)
  226. rCommunityDividends.POST("/communityDividendsWithUserList", public_platoon.ListCommunityDividendsWithUser)
  227. rCommunityDividends.POST("/communityDividendsWithUserAdd", public_platoon.AddCommunityDividendsWithUser)
  228. }
  229. rUserDailyActivityAnalysis := rPublicPlatoon.Group("/userDailyActivityAnalysis")
  230. {
  231. rUserDailyActivityAnalysis.POST("/index", public_platoon.UserDailyActivityAnalysis)
  232. }
  233. }
  234. rEggEnergy := r.Group("/eggEnergy") //蛋蛋能量
  235. {
  236. rEggEnergy.GET("/getVirtualCoinList", egg_energy.GetVirtualCoinList)
  237. rEggEnergy.GET("/getBasic", egg_energy.GetEggEnergyBasic)
  238. rEggEnergy.POST("/updateBasic", egg_energy.UpdateEggEnergyBasic)
  239. rEggEnergy.GET("/getVipSetting", egg_energy.GetEggEnergyVipSetting)
  240. rEggEnergy.POST("/addVipSetting", egg_energy.AddEggEnergyVipSetting)
  241. rEggEnergy.POST("/updateVipSetting", egg_energy.UpdateEggEnergyVipSetting)
  242. rEggEnergyUserCoin := rEggEnergy.Group("/userCoin")
  243. {
  244. rEggEnergyUserCoin.POST("/eggEnergyUserCoinList", egg_energy.GetEggEnergyUserCoinList)
  245. rEggEnergyUserCoin.POST("/eggEnergyUserCoinFlowList", egg_energy.GetEggEnergyUserCoinFlowList)
  246. rEggEnergyUserCoin.POST("/eggPointsUserCoinList", egg_energy.GetEggPointsUserCoinList)
  247. rEggEnergyUserCoin.POST("/getEggPointsUserCoinFlowList", egg_energy.GetEggPointsUserCoinFlowList)
  248. }
  249. rEggEnergyAvailableEnergy := rEggEnergy.Group("/availableEnergy")
  250. {
  251. rEggEnergyAvailableEnergy.POST("/list", egg_energy.DynamicDataFlowList)
  252. }
  253. rEggGlobalData := rEggEnergy.Group("/globalData")
  254. {
  255. rEggGlobalData.GET("/coreDataList", egg_energy.GetEggCoreDataList)
  256. rEggGlobalData.GET("/pointsCenterPriceCurve", egg_energy.GetPriceCurve)
  257. rEggGlobalData.POST("/fundDataList", egg_energy.GetFundDataList)
  258. rEggGlobalData.POST("/fundDataRecordList", egg_energy.GetFundDataRecordList)
  259. rEggGlobalData.POST("/fundDataAdd", egg_energy.AddFundData)
  260. }
  261. rPlatformRevenue := rEggEnergy.Group("/platformRevenue")
  262. {
  263. rPlatformRevenue.POST("/getVideoReward", egg_energy.GetVideoReward)
  264. rPlatformRevenue.POST("/setVideoReward", egg_energy.SetVideoReward)
  265. rPlatformRevenue.POST("/platformRevenueList", egg_energy.ListPlatformRevenue)
  266. rPlatformRevenue.POST("/platformRevenueAdd", egg_energy.AddPlatformRevenue)
  267. }
  268. rEggPoint := rEggEnergy.Group("/eggPoint")
  269. {
  270. rEggPoint.POST("/userEggIndex", egg_energy.UserEggIndex)
  271. rEggPoint.POST("/statisticsUserEggIndex", egg_energy.StatisticsUserEggIndex)
  272. rEggPoint.POST("/userEggFlow", egg_energy.UserEggFlow)
  273. rEggPoint.POST("/manualScore", egg_energy.ManualScore)
  274. }
  275. rContributionValue := rEggEnergy.Group("/contributionValue")
  276. {
  277. rContributionValue.GET("/basic", egg_energy.GetContributionValueBasicSetting)
  278. rContributionValue.POST("/updateBasic", egg_energy.UpdateContributionValueBasicSetting)
  279. }
  280. }
  281. rModuleSetting := r.Group("/moduleSetting")
  282. {
  283. rModuleSetting.GET("/getModuleSetting", module_setting.ModuleSettingGet)
  284. rModuleSetting.POST("/getArticle", article.List)
  285. rModuleSetting.POST("/updateModuleSetting", module_setting.ModuleSettingUpdate)
  286. }
  287. rContentReward := r.Group("/contentReward") // 内容奖励
  288. {
  289. rVideo := rContentReward.Group("/video")
  290. {
  291. rVideo.GET("/base", content_reward.VideoBase) //
  292. rVideo.POST("/save", content_reward.VideoBaseSave) //
  293. }
  294. rPlaylet := rContentReward.Group("/playlet")
  295. {
  296. rPlaylet.GET("/base", content_reward.PlayletBase) //
  297. rPlaylet.POST("/save", content_reward.PlayletBaseSave) //
  298. }
  299. }
  300. rEggPointCoefficient := r.Group("/eggPointCoefficient") // 蛋蛋分区间系数管理
  301. {
  302. rEggPointCoefficient.GET("/index", egg_point_coefficient.EggPointCoefficientGet) // 查询
  303. rEggPointCoefficient.POST("/add", egg_point_coefficient.EggPointCoefficientBatchAdd) // 新增
  304. rEggPointCoefficient.POST("/update", egg_point_coefficient.EggPointCoefficientUpdate) // 更新
  305. rEggPointCoefficient.DELETE("/del", egg_point_coefficient.EggPointCoefficientDel) // 删除
  306. }
  307. }
  308. func rMarketingApplications(r *gin.RouterGroup) { //营销应用
  309. rNewUserRedPackage := r.Group("/newUserRedPackage") //新人红包
  310. {
  311. rNewUserRedPackage.GET("/getBasic", new_user_red_package.NewUserRedPackageGetBasic)
  312. rNewUserRedPackage.PUT("/updateBasic", new_user_red_package.NewUserRedPackageUpdateBasic)
  313. rNewUserRedPackage.POST("/recordList", new_user_red_package.NewUserRedPackageRecordList)
  314. rNewUserRedPackage.POST("/recordFlowList", new_user_red_package.NewUserRedPackageRecordFlowList)
  315. }
  316. }
  317. func rMemberCenter(r *gin.RouterGroup) { // 会员中心
  318. rUserManagement := r.Group("/userManagement")
  319. {
  320. rUserManagement.POST("/getUserList", member_center.UserManagementGetUserList)
  321. rUserManagement.GET("/userData", member_center.UserManagementGetOneBasic)
  322. rUserManagement.POST("/updateUserInfo", member_center.UserManagementUpdateUserInfo)
  323. rUserManagement.GET("/getFans", member_center.UserManagementGetFans)
  324. rUserManagement.GET("/balanceDetail", member_center.UserManagementGetBalanceDetail)
  325. rUserManagement.GET("/getVirtualCoinDetail", member_center.UserManagementGetVirtualCoinDetail)
  326. }
  327. rTagManagement := r.Group("/tagManagement")
  328. {
  329. rTagManagement.GET("/getTagList", member_center.GetTagList)
  330. rTagManagement.POST("/addTag", member_center.AddTag)
  331. rTagManagement.POST("/updateTag", member_center.UpdateTag)
  332. rTagManagement.DELETE("/deleteTag", member_center.DeleteTag)
  333. }
  334. rLevelManagement := r.Group("/levelManagement")
  335. {
  336. rLevelManagement.GET("/getLevelList", member_center.GetLevelList)
  337. rLevelManagement.GET("/getOneLevel", member_center.GetOneLevel)
  338. rLevelManagement.POST("/updateLevel", member_center.UpdateLevel)
  339. rLevelManagement.POST("/addLevel", member_center.AddLevel)
  340. rLevelManagement.DELETE("/deleteLevel", member_center.DeleteLevel)
  341. rLevelManagement.DELETE("/deleteLevelTask", member_center.DeleteLevelTask)
  342. }
  343. rCertificate := r.Group("/certificate")
  344. {
  345. rCertificate.POST("/list", member_center.CertificateList)
  346. rCertificate.POST("/save", member_center.CertificateSave)
  347. rCertificate.POST("/del", member_center.CertificateDel)
  348. }
  349. }
  350. func rIm(r *gin.RouterGroup) {
  351. r.GET("/getBasic", im.GetBasic)
  352. r.POST("/setBasic", im.SetBasic)
  353. r.POST("/pageEmoticon", im.PageEmoticon)
  354. r.POST("/addEmoticon", im.AddEmoticon)
  355. r.POST("/setEmoticonState", im.SetEmoticonState)
  356. r.POST("/updateEmoticon", im.UpdateEmoticon)
  357. r.POST("/deleteEmoticon", im.DeleteEmoticon)
  358. r.POST("/pageCustomerService", im.PageCustomerService)
  359. r.POST("/addCustomerService", im.AddCustomerService)
  360. r.POST("/setCustomerServiceState", im.SetCustomerServiceState)
  361. r.POST("/updateCustomerServiceMemo", im.UpdateCustomerServiceMemo)
  362. r.GET("/redPackageRecordsDetail", im.RedPackageRecordsDetail)
  363. r.POST("/pageSendRedPackageOrd", im.PageSendRedPackageOrd)
  364. r.POST("/groupList", im.GroupList)
  365. r.POST("/groupUserList", im.GroupUserList)
  366. r.POST("/batchSendGroupMessage", im.BatchSendGroupMessage)
  367. r.POST("/batchSendUserMessage", im.BatchSendUserMessage)
  368. }
  369. func rFinancialCenter(r *gin.RouterGroup) {
  370. rWithdraw := r.Group("/withdraw")
  371. {
  372. rWithdraw.GET("/setting", financial_center.GetWithdrawSetting)
  373. rWithdraw.POST("/updateWithdrawSetting", financial_center.UpdateWithdrawSetting)
  374. rWithdraw.POST("/applyList", financial_center.GetWithdrawApplyList)
  375. rWithdraw.POST("/audit", financial_center.WithdrawApplyAudit)
  376. }
  377. }
  378. func rFriendCircleSettings(r *gin.RouterGroup) {
  379. rBasic := r.Group("/basic")
  380. {
  381. rBasic.GET("/index", friend_circle.GetFriendCircleBasicSettings) // 获取动态基础设置
  382. rBasic.POST("/save", friend_circle.UpdateFriendCircleBasicSettings) // 更新动态设置
  383. }
  384. rBlackList := r.Group("/blackList")
  385. {
  386. rBlackList.GET("/index", friend_circle.GetBlackList) // 获取黑名单
  387. rBlackList.POST("/add", friend_circle.AddBlackList) // 添加黑名单
  388. rBlackList.DELETE("/del", friend_circle.DeleteBlackList) // 删除黑名单
  389. }
  390. rDynamic := r.Group("/dynamic")
  391. {
  392. rDynamic.POST("/index", friend_circle.GetDynamic) // 获取动态列表
  393. rDynamic.POST("/update", friend_circle.UpdateDynamic) // 更新动态
  394. rDynamic.DELETE("/del", friend_circle.DeleteDynamic) // 删除动态
  395. rDynamic.POST("/release", friend_circle.ReleaseDynamic) // 发布动态
  396. }
  397. }
  398. func rRole(r *gin.RouterGroup) {
  399. r.GET("/roleList", hdl.RoleList) // 角色列表
  400. r.POST("/addRole", hdl.AddRole) // 角色添加
  401. r.POST("/roleBindPermissionGroup", hdl.RoleBindPermissionGroup) // 角色绑定权限组
  402. r.POST("/updateRoleState", hdl.UpdateRoleState) // 修改角色状态
  403. r.POST("/updateRole", hdl.UpdateRole) // 修改角色状态
  404. r.DELETE("/deleteRole/:id", hdl.DeleteRole) // 删除角色
  405. r.GET("/permissionGroupList", hdl.PermissionGroupList) // 权限组列表
  406. r.POST("/adminList", hdl.AdminList) // 管理员列表
  407. r.POST("/updateAdminState", hdl.UpdateAdminState) // 修改管理员状态
  408. r.POST("/updateAdmin", hdl.UpdateAdmin) // 修改管理员信息
  409. r.POST("/addAdmin", hdl.AddAdmin) // 新增管理员
  410. r.DELETE("/deleteAdmin/:adm_id", hdl.DeleteAdmin) // 删除管理员
  411. r.GET("/adminInfo", hdl.AdminInfo) // 获取管理员信息
  412. r.POST("/bindAdminRole", hdl.BindAdminRole) // 绑定角色
  413. }
  414. func rComm(r *gin.RouterGroup) {
  415. r.POST("/getMenuList", comm.MenuList) // 获取菜单栏列表
  416. r.POST("/getOssUrl", comm.GetOssUrl) // 获取阿里云上传PutObject所需的签名URL
  417. r.GET("/getSTSVoucher", comm.GetSTSVoucher) // 获取 STS 凭证
  418. r.GET("/adminInfo", comm.GetAdminInfo)
  419. }