From f26a0cab5bca17b7eab57f6330e576271e17a17f Mon Sep 17 00:00:00 2001
From: liuxiaolong <736321739@qq.com>
Date: 星期三, 13 十一月 2019 19:12:08 +0800
Subject: [PATCH] update ynSwagger,sync to master

---
 extend/config/config.go |   85 +++++++++++++++++++++---------------------
 1 files changed, 43 insertions(+), 42 deletions(-)

diff --git a/extend/config/config.go b/extend/config/config.go
index 20e52bc..2ab67ab 100644
--- a/extend/config/config.go
+++ b/extend/config/config.go
@@ -6,46 +6,37 @@
 	"github.com/spf13/viper"
 )
 
+type threshold struct {
+	Value int    `mapstructure: "value"`
+	Color string `mapstructure: "color"`
+}
 type server struct {
-	Runmode   string `mapstructure: "runmode"`
-	JwtSecret string `mapstructure: "jwtSecret"`
-	JwtExpire string `mapstructure: "jwtExpire"`
-	Url       string `mapstructure: "url"`
-	ImageUrl  string `mapstructure: "imageUrl"`
-	PublicDomain string `mapstructure: "publicDomain"`
+	Runmode        string `mapstructure: "runmode"`
+	JwtSecret      string `mapstructure: "jwtSecret"`
+	JwtExpire      string `mapstructure: "jwtExpire"`
+	Url            string `mapstructure: "url"`
+	AnalyServerId  string `mapstructure: "analyServerId"`
 	NetworkAdapter string `mapstructure: "networkAdapter"`
+
+	DeviceNum       string `mapstructure: "deviceNum"`       //璁惧缂栧彿
+	DeviceType      string `mapstructure: "deviceType"`      //璁惧鍨嬪彿
+	DeviceSerialNum string `mapstructure: "deviceSerialNum"` //璁惧搴忓垪鍙�
+	MasterVersion   string `mapstructure: "masterVersion"`   //涓绘帶鐗堟湰
+	WebVersion      string `mapstructure: "webVersion"`      //web鐗堟湰
+	ChannelCount    string `mapstructure: "channelCount"`    //閫氶亾涓暟
+	DiskCount       string `mapstructure: "diskCount"`       //纭洏涓暟
+
+	SudoPassword  string      `mapstructure: "sudoPassword"` //绯荤粺瀵嗙爜
+	SysThresholds []threshold `mapstructure: "sysThresholds"`
+	PTZSpeed      int         `mapstructure: "ptzSpeed"` // 浜戝彴绉诲姩閫熷害
 }
 
 var Server = &server{}
 
-type weedfs struct {
-	Ip string `mapstructure: "ip"`
-	UploadPort int `mapstructure: "uploadport"`
-	VisitPort int `mapstructure: "visitport"`
-}
-
-var WeedFs = &weedfs{}
-
-type redis struct {
-	Host     string `mapstructure:"host"`
-	Port     int    `mapstructure:"port"`
-	Password string `mapstructure:"password`
-	DBNum    int    `mapstructure:"db"`
-}
-
-var RedisConf = &redis{}
-
-type database struct {
-	Drive    string `mapstructure:"drive"`
-	Name     string `mapstructure:"name"`
-	FilePath string `mapstructure:"filepath"`
-}
-
 // wp add es 绱㈠紩 浠ュ強 IP port
 type esinfo struct {
-	Masterip string      `mapstructure:"masterip"`
-	Httpport string      `mapstructure:"httpport"`
-	EsIndex  esindexlist `mapstructure:"index"`
+	Shards  string      `mapstructure:"shards"`
+	EsIndex esindexlist `mapstructure:"index"`
 }
 
 type esindexlist struct {
@@ -54,28 +45,40 @@
 	Dbtablepersons index `mapstructure:"dbtablepersons"`
 	Personaction   index `mapstructure:"personaction"`
 }
-
 type index struct {
 	IndexName string `mapstructure:"index"`
 	IndexType string `mapstructure:"type"`
 }
 
+type sopath struct {
+	Ip   string `mapstructure:"ip"`
+	Port string `mapstructure:"port"`
+}
+
+var SoPath = &sopath{}
+
 var EsInfo = &esinfo{}
 
-var DBconf = &database{}
+type facedetect struct {
+	Ip   string `mapstructure:"Ip"`
+	Port int    `mapstructure:"port"`
+}
 
 type dbpersoncompare struct {
-	Url string `mapstructure:"url"`
+	Ip   string `mapstructure:"ip"`
+	Port int    `mapstructure:"port"`
 }
 
 type espersoncompare struct {
-	Url []string `mapstructure:"url"`
+	Port int      `mapstructure:"port"`
+	Ips  []string `mapstructure:"ips"`
 }
 
 var DbPersonCompInfo = &dbpersoncompare{}
 
 var EsCompServerInfo = &espersoncompare{}
 
+var FaceDetectSet = &facedetect{}
 
 // Init is an exported method that takes the environment starts the viper
 // (external lib) and returns the configuration struct.
@@ -83,17 +86,15 @@
 	var err error
 	viper.SetConfigType("yaml")
 	viper.SetConfigName(env)
-	viper.AddConfigPath("../config/")
-	viper.AddConfigPath("config/")
+	viper.AddConfigPath("/opt/vasystem/config/")
 	err = viper.ReadInConfig()
 	if err != nil {
 		log.Fatal("error on parsing configuration file")
 	}
 	viper.UnmarshalKey("es", EsInfo)
 	viper.UnmarshalKey("server", Server)
-	viper.UnmarshalKey("redis", RedisConf)
-	viper.UnmarshalKey("database", DBconf)
-	viper.UnmarshalKey("weedfs", WeedFs)
-	viper.UnmarshalKey("dbpersoncompare",DbPersonCompInfo)
+	viper.UnmarshalKey("sopath", SoPath)
+	viper.UnmarshalKey("facedetect", FaceDetectSet)
+	viper.UnmarshalKey("dbpersoncompare", DbPersonCompInfo)
 	viper.UnmarshalKey("espersoncompare", EsCompServerInfo)
 }

--
Gitblit v1.8.0