config.go 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. package utils
  2. import (
  3. "fmt"
  4. "strconv"
  5. beeLogger "github.com/beego/bee/v2/logger"
  6. "github.com/beego/beego/v2/server/web"
  7. )
  8. var (
  9. RunMode string //运行模式
  10. )
  11. // 公共api内部服务调用
  12. var (
  13. // EDB_LIB_URL 公共指标库
  14. EDB_LIB_URL string
  15. APP_EDB_LIB_NAME_EN string
  16. EDB_LIB_Md5_KEY string
  17. OpUserId int // 操作人id
  18. OpUserRealName string // 操作人真实名称
  19. )
  20. // 弘则
  21. const (
  22. APPID = "SJCrpOPvagscPxEv"
  23. SECRET = "gLLjT72uFHQZEFtaFCuoZegD1z2ezfyX"
  24. )
  25. // 日志配置
  26. var (
  27. LogPath string //调用过程中的日志存放地址
  28. LogFile string
  29. BinLogPath string //数据库相关的日志存放地址
  30. BinLogFile string
  31. LogMaxDays int //日志最大保留天数
  32. )
  33. // 涌益生猪
  34. var (
  35. YongyiFilePath string //excel文件地址
  36. YongyiReadFilePath string //已读的excel文件地址
  37. YongyiOpen string //是否配置涌益生猪数据源,1已配置
  38. YongyiDownloadHost string
  39. )
  40. // 中国煤炭网
  41. var (
  42. CoalMineFilePath string //excel文件地址
  43. CoalMineOpen string //是否配置中国煤炭网数据源,1已配置
  44. CoalMailAttachmentScriptPath string // 获取邮件附件的脚本目录
  45. CoalMailAttachmentOpen string // 获取邮件附件功能,1已配置
  46. CoalMailAttachmentTime string // 获取邮件附件功能时间
  47. CoalMailAttachmentPythonVersion string // 获取邮件附件功能python版本
  48. )
  49. // 汾渭煤炭
  50. var (
  51. FenweiFileDir string // excel文件目录
  52. FenweiOldFileDir string // 已读取过的excel文件目录
  53. FenweiOpen string // 是否配置汾渭数据源
  54. FenweiNetOpen string // 是否配置汾渭网页数据源
  55. FenweiNetUseName string // 汾渭登录账号
  56. FenweiNetPassword string // 汾渭登录密码
  57. FenweiNetJsonPath string // 汾渭json文件地址
  58. )
  59. // 煤炭江湖
  60. var (
  61. MtjhFilePath string //excel文件地址
  62. MtjhOpen string //是否配置煤炭江湖数据源,1已配置
  63. )
  64. // 粮油商务网
  65. var (
  66. LY_USERNAME string
  67. LY_PASSWORD string
  68. LY_JSON_PATH string
  69. LY_OPEN string
  70. )
  71. // 睿姿得数据
  72. var (
  73. RZD_USERNAME string
  74. RZD_PASSWORD string
  75. RZD_EXCEL_PATH string
  76. RZD_OPEN string
  77. RZD_DOWNLOAD_PATH string
  78. )
  79. // CCF化纤信息
  80. var (
  81. CCFOpen string // 是否配置CCF
  82. CCFCookieFile string // CCF登录Cookie
  83. CCFDataRuleFile string // CCF数据爬取规则
  84. CCFDailyTaskTime string // CCF数据日度任务时间
  85. CCFWeeklyTaskTime string // CCF数据周度任务时间
  86. CCFStockTaskTime string // CCF数据装置任务时间
  87. CCFUseName string // CCF登录账号
  88. CCFPassword string // CCF登录密码
  89. CCFDailyFetchNum int // CCF数据日度每次获取报告数量
  90. CCFWeeklyFetchNum int // CCF数据周度每次获取报告数量
  91. CCFStockFetchNum int // CCF数据装置每次获取报告数量
  92. CCFChartRuleFile string // CCF图表爬取规则
  93. CCFChartAdditionRuleFile string // CCF图表爬取附加规则
  94. CCFChartTaskTime string
  95. )
  96. var (
  97. OilchemAccount string
  98. OilchemPassword string
  99. OilchemCookieFile string
  100. OilchemOpen string
  101. OilchemDataInit string
  102. )
  103. var (
  104. HisugarAccount string
  105. HisugarPassword string
  106. HisugarOpen string
  107. )
  108. var TerminalCode string
  109. func init() {
  110. tmpRunMode, err := web.AppConfig.String("run_mode")
  111. if err != nil {
  112. panic("配置文件读取run_mode错误 " + err.Error())
  113. }
  114. RunMode = tmpRunMode
  115. fmt.Println("RunMode:", RunMode)
  116. config, err := web.AppConfig.GetSection(RunMode)
  117. if err != nil {
  118. panic("配置文件读取错误 " + err.Error())
  119. }
  120. beeLogger.Log.Info(RunMode + " 模式")
  121. // 公共api内部服务调用
  122. {
  123. // 公共指标库相关
  124. EDB_LIB_URL = config["edb_lib_url"]
  125. APP_EDB_LIB_NAME_EN = config["app_edb_lib_name_en"]
  126. EDB_LIB_Md5_KEY = config["edb_lib_md5_key"]
  127. opUserIdStr := config["op_user_id"]
  128. if opUserIdStr != `` {
  129. OpUserId, err = strconv.Atoi(opUserIdStr)
  130. if err != nil {
  131. panic("配置文件中操作人配置错误 " + err.Error())
  132. }
  133. }
  134. OpUserRealName = config["op_user_real_name"]
  135. }
  136. //日志配置
  137. {
  138. LogPath = config["log_path"]
  139. LogFile = config["log_file"]
  140. BinLogPath = config["binlog_path"]
  141. BinLogFile = config["binlog_file"]
  142. logMaxDaysStr := config["log_max_day"]
  143. LogMaxDays, _ = strconv.Atoi(logMaxDaysStr)
  144. }
  145. //涌益咨询文件夹配置
  146. {
  147. YongyiFilePath = config["yongyi_file_path"]
  148. YongyiReadFilePath = config["yongyi_read_file_path"]
  149. YongyiOpen = config["yongyi_open"]
  150. YongyiDownloadHost = config["yongyi_download_host"]
  151. if YongyiDownloadHost == "" {
  152. YongyiDownloadHost = "http://127.0.0.1:7010/"
  153. }
  154. }
  155. //中国煤炭网文件夹配置
  156. {
  157. CoalMineFilePath = config["coal_mine_file_path"]
  158. CoalMineOpen = config["coal_mine_open"]
  159. CoalMailAttachmentScriptPath = config["coal_mail_attachment_script_path"]
  160. CoalMailAttachmentOpen = config["coal_mail_attachment_open"]
  161. CoalMailAttachmentTime = config["coal_mail_attachment_time"]
  162. CoalMailAttachmentPythonVersion = config["coal_mail_attachment_python_version"]
  163. }
  164. // 汾渭配置
  165. {
  166. FenweiOpen = config["fenwei_open"]
  167. FenweiFileDir = config["fenwei_file_dir"]
  168. FenweiOldFileDir = config["fenwei_old_file_dir"]
  169. FenweiNetOpen = config["fenwei_net_open"]
  170. FenweiNetUseName = config["fenwei_net_username"]
  171. FenweiNetPassword = config["fenwei_net_password"]
  172. FenweiNetJsonPath = config["fenwei_net_json_path"]
  173. }
  174. //煤炭江湖文件夹配置
  175. {
  176. MtjhFilePath = config["mtjh_file_path"]
  177. MtjhOpen = config["mtjh_open"]
  178. }
  179. TerminalCode = config["terminal_code"]
  180. // CCF化纤信息
  181. {
  182. CCFOpen = config["ccf_open"]
  183. CCFCookieFile = config["ccf_cookie_file"]
  184. CCFDataRuleFile = config["ccf_data_rule_file"]
  185. CCFDailyTaskTime = config["ccf_daily_task_time"]
  186. CCFWeeklyTaskTime = config["ccf_weekly_task_time"]
  187. CCFStockTaskTime = config["ccf_stock_task_time"]
  188. CCFUseName = config["ccf_username"]
  189. CCFPassword = config["ccf_password"]
  190. CCFDailyFetchNum, _ = strconv.Atoi(config["ccf_daily_fetch_num"])
  191. if CCFDailyFetchNum <= 0 {
  192. CCFDailyFetchNum = 7
  193. }
  194. CCFWeeklyFetchNum, _ = strconv.Atoi(config["ccf_weekly_fetch_num"])
  195. if CCFWeeklyFetchNum <= 0 {
  196. CCFWeeklyFetchNum = 3
  197. }
  198. CCFStockFetchNum, _ = strconv.Atoi(config["ccf_stock_fetch_num"])
  199. if CCFStockFetchNum <= 0 {
  200. CCFStockFetchNum = 3
  201. }
  202. CCFChartRuleFile = config["ccf_chart_rule_file"]
  203. if CCFChartRuleFile == "" {
  204. CCFChartRuleFile = "static/ccf_chart_rule.json"
  205. }
  206. if CCFChartAdditionRuleFile == "" {
  207. CCFChartAdditionRuleFile = "static/ccf_chart_addition_rule.json"
  208. }
  209. CCFChartTaskTime = config["ccf_chart_task_time"]
  210. }
  211. {
  212. LY_USERNAME = config["ly_username"]
  213. LY_PASSWORD = config["ly_password"]
  214. LY_JSON_PATH = config["ly_json_path"]
  215. LY_OPEN = config["ly_open"]
  216. }
  217. {
  218. RZD_USERNAME = config["rzd_username"]
  219. RZD_PASSWORD = config["rzd_password"]
  220. RZD_EXCEL_PATH = config["rzd_excel_path"]
  221. RZD_OPEN = config["rzd_open"]
  222. RZD_DOWNLOAD_PATH = config["rzd_download_path"]
  223. }
  224. // 隆众数据
  225. {
  226. OilchemAccount = config["oilchem_account"]
  227. OilchemPassword = config["oilchem_password"]
  228. OilchemCookieFile = config["oilchem_cookie_file"]
  229. OilchemOpen = config["oilchem_open"]
  230. OilchemDataInit = config["oilchem_data_init"]
  231. }
  232. // 泛糖科技
  233. {
  234. HisugarAccount = config["hisugar_account"]
  235. HisugarPassword = config["hisugar_password"]
  236. HisugarOpen = config["hisugar_open"]
  237. }
  238. }
  239. //修改接口文档
  240. //http://8.136.199.33:8300/swagger/