123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- package utils
- import (
- "fmt"
- "github.com/beego/beego/v2/core/logs"
- "github.com/beego/beego/v2/server/web"
- "rdluck_tools/cache"
- )
- var (
- RunMode string //运行模式
- MYSQL_URL string //数据库连接
- MYSQL_URL_RDDP string //数据库连接
- MYSQL_URL_EDB string
- REDIS_CACHE string //缓存地址
- Rc *cache.Cache //redis缓存
- Re error //redis错误
- )
- var (
- STATIC_DIR string
- )
- //微信配置信息
- var (
- WxId string //微信原始ID
- WxAppId string
- WxAppSecret string
- TemplateIdByProduct string //产品运行报告通知-模板ID
- TemplateRedirectUrl string //模板消息跳转地址
- WxPlatform int //用户来源,需要入库,用来保存该用户来自哪个平台,默认是:1
- )
- //pc端微信配置信息
- var (
- PcWxId string //微信原始ID
- PcWxAppId string
- PcWxAppSecret string
- PcTemplateIdByProduct string //产品运行报告通知-模板ID
- PcTemplateRedirectUrl string //模板消息跳转地址
- WxPcPlatform int //用户来源,需要入库,用来保存该用户来自哪个平台,默认是:3
- )
- func init() {
- tmpRunMode, err := web.AppConfig.String("run_mode")
- if err != nil {
- panic("配置文件读取run_mode错误 " + err.Error())
- }
- RunMode = tmpRunMode
- config, err := web.AppConfig.GetSection(RunMode)
- if err != nil {
- panic("配置文件读取错误 " + err.Error())
- }
- logs.Info(RunMode + " 模式")
- MYSQL_URL = config["mysql_url"]
- MYSQL_URL_RDDP = config["mysql_url_rddp"]
- MYSQL_URL_EDB = config["mysql_url_edb"]
- REDIS_CACHE = config["beego_cache"]
- if len(REDIS_CACHE) <= 0 {
- panic("redis链接参数没有配置")
- }
- Rc, Re = cache.NewCache(REDIS_CACHE) //初始化缓存
- if Re != nil {
- fmt.Println(Re)
- panic(Re)
- }
- if RunMode == "release" {
- WxAppId = "wx4a844c734d8c8e56"
- WxAppSecret = "26c586e7ccb3c575433f0f37797b3eeb"
- WxId = "gh_b67e0049fb8c"
- TemplateIdByProduct = "Cp2wF8gvBtxyWV4DeYuI172oqwyYXVRSm3AyJO42d84"
- TemplateRedirectUrl = "https://ficc.hzinsights.com/reportdtl?id="
- WxPlatform = 1
- WxPcPlatform = 3
- PcWxAppId = "wx615472d6874eeb7f"
- PcWxAppSecret = "97fe374fb0cc90ef58c4b49d431366f1"
- STATIC_DIR = "/home/static/imgs/"
- } else {
- WxAppId = "wx9b5d7291e581233a"
- WxAppSecret = "f4d52e34021eee262dce9682b31f8861"
- WxId = "gh_5dc508325c6f"
- TemplateIdByProduct = "-YjuPOB7Fqd-S3ilabYa6wvjDY9aXmeEfPN6DCiy-EY"
- TemplateRedirectUrl = "http://rddpweb.brilliantstart.cn/reportdtl?id="
- WxPlatform = 1
- WxPcPlatform = 3
- PcWxAppId = "wx7c8084f6e5b1d85a"
- PcWxAppSecret = "9e4210cd5a363aa1f316b7c4b8898418"
- STATIC_DIR = "/home/static/imgs/"
- }
- }
- //http://webapi.brilliantstart.cn/api/
- //http://webapi.brilliantstart.cn/swagger/
- //http://139.196.122.219:8603/swagger/
|