config.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. MYSQL_URL string //数据库连接
  11. MYSQL_URL_DATA string
  12. PYTHON_PATH string // python可执行文件地址
  13. )
  14. // 日志配置
  15. var (
  16. LogPath string //调用过程中的日志存放地址
  17. LogFile string
  18. BinLogPath string //数据库相关的日志存放地址
  19. BinLogFile string
  20. ApiLogPath string //接口请求地址和接口返回值日志存放地址
  21. ApiLogFile string
  22. LogMaxDays int //日志最大保留天数
  23. )
  24. var BusinessCode string //商户号
  25. // 卓创资讯
  26. var (
  27. SCI99_COOKIE_PATH string
  28. IS_INIT_SCI99 string
  29. )
  30. // 粮油商务网
  31. var (
  32. LY_USERNAME string
  33. LY_PASSWORD string
  34. LY_JSON_PATH string
  35. LY_OPEN string
  36. )
  37. var (
  38. EDB_LIB_URL string
  39. APP_EDB_LIB_NAME_EN string
  40. EDB_LIB_Md5_KEY string
  41. )
  42. var (
  43. OLD_EXCEL_PATH_JR string
  44. )
  45. func init() {
  46. tmpRunMode, err := web.AppConfig.String("run_mode")
  47. if err != nil {
  48. panic("配置文件读取run_mode错误 " + err.Error())
  49. }
  50. RunMode = tmpRunMode
  51. if RunMode == "" {
  52. localIp, err := GetLocalIP()
  53. fmt.Println("localIp:", localIp)
  54. if localIp == "10.0.0.123" {
  55. RunMode = "debug"
  56. } else {
  57. RunMode = "release"
  58. }
  59. configPath := `/home/code/config/eta_crawler/conf/app.conf`
  60. err = web.LoadAppConfig("ini", configPath)
  61. if err != nil {
  62. fmt.Println("web.LoadAppConfig Err:" + err.Error())
  63. }
  64. }
  65. config, err := web.AppConfig.GetSection(RunMode)
  66. if err != nil {
  67. panic("配置文件读取错误 " + err.Error())
  68. }
  69. beeLogger.Log.Info(RunMode + " 模式")
  70. // 商家编码
  71. BusinessCode = config["business_code"]
  72. if BusinessCode == BusinessCodeRelease {
  73. MYSQL_URL = config["mysql_url"]
  74. MYSQL_URL_DATA = config["mysql_url_data"]
  75. }
  76. if BusinessCode == BusinessCodeFuBang {
  77. SCI99_COOKIE_PATH = config["sci99_cookie_path"]
  78. IS_INIT_SCI99 = config["is_init_sci99"]
  79. EDB_LIB_URL = config["edb_lib_url"]
  80. APP_EDB_LIB_NAME_EN = config["app_edb_lib_name_en"]
  81. EDB_LIB_Md5_KEY = config["edb_lib_md5_key"]
  82. }
  83. if BusinessCode == BusinessCodeJinRui {
  84. APP_EDB_LIB_NAME_EN = config["app_edb_lib_name_en"]
  85. EDB_LIB_Md5_KEY = config["edb_lib_md5_key"]
  86. EDB_LIB_URL = config["edb_lib_url"]
  87. OLD_EXCEL_PATH_JR = config["old_excel_path_jr"]
  88. }
  89. if RunMode == "release" {
  90. } else {
  91. }
  92. //日志配置
  93. {
  94. LogPath = config["log_path"]
  95. LogFile = config["log_file"]
  96. BinLogPath = config["binlog_path"]
  97. BinLogFile = config["binlog_file"]
  98. ApiLogPath = config["apilog_path"]
  99. ApiLogFile = config["apilog_file"]
  100. logMaxDaysStr := config["log_max_day"]
  101. LogMaxDays, _ = strconv.Atoi(logMaxDaysStr)
  102. }
  103. PYTHON_PATH = config["python_path"]
  104. if PYTHON_PATH == "" {
  105. PYTHON_PATH = "python3"
  106. }
  107. {
  108. LY_USERNAME = config["ly_username"]
  109. LY_PASSWORD = config["ly_password"]
  110. LY_JSON_PATH = config["ly_json_path"]
  111. LY_OPEN = config["ly_open"]
  112. }
  113. }