添加mq和controller
parent
e65ac973c7
commit
9e7b384836
|
@ -28,7 +28,7 @@ type ConfAPI struct {
|
||||||
init bool
|
init bool
|
||||||
}
|
}
|
||||||
type ElasticSearch struct{
|
type ElasticSearch struct{
|
||||||
Address string `yaml:"string"`
|
Address string `yaml:"address"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type EntityRedis struct {
|
type EntityRedis struct {
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
package controller
|
package controller
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"background/model"
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
|
"qiniupkg.com/x/log.v7"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -12,14 +12,25 @@ func AddHardware(c *gin.Context) {
|
||||||
defer func() {
|
defer func() {
|
||||||
c.JSON(200,resp)
|
c.JSON(200,resp)
|
||||||
}()
|
}()
|
||||||
|
var hardware model.Hardware
|
||||||
|
|
||||||
|
e := c.BindJSON(&hardware)
|
||||||
|
if nil != e{
|
||||||
|
log.Print(e)
|
||||||
|
print(e)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if nil != hardware.CreateHardware(){
|
||||||
|
print(e)
|
||||||
|
return
|
||||||
|
}
|
||||||
resp.Data = nil
|
resp.Data = nil
|
||||||
resp.Msg = "OK"
|
resp.Msg = "OK"
|
||||||
resp.Status = 0
|
resp.Status = 0
|
||||||
}
|
}
|
||||||
|
|
||||||
func DeleteHardWare(c *gin.Context) {
|
func DeleteHardWare(c *gin.Context) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func UpdateHardWare(c *gin.Context) {
|
func UpdateHardWare(c *gin.Context) {
|
||||||
|
|
|
@ -19,7 +19,6 @@ type ElkEngine struct {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
func (p *ElkEngine)Create(index string,types string,id string,data interface{}) (error) {
|
func (p *ElkEngine)Create(index string,types string,id string,data interface{}) (error) {
|
||||||
if nil != p{
|
if nil != p{
|
||||||
if (reflect.TypeOf(data).Kind() != reflect.String) && (reflect.TypeOf(data).Kind() != reflect.Struct){
|
if (reflect.TypeOf(data).Kind() != reflect.String) && (reflect.TypeOf(data).Kind() != reflect.Struct){
|
||||||
|
|
|
@ -38,11 +38,13 @@ func Init() {
|
||||||
}else{
|
}else{
|
||||||
gDb = Database{Type: string(""), DB: initMysqlTLS(mysqlconf)}
|
gDb = Database{Type: string(""), DB: initMysqlTLS(mysqlconf)}
|
||||||
}
|
}
|
||||||
|
InitELK()
|
||||||
}
|
}
|
||||||
|
|
||||||
func InitELK() {
|
func InitELK() {
|
||||||
var e error
|
var e error
|
||||||
elkconf := config.GetElkConfig()
|
elkconf := config.GetElkConfig()
|
||||||
|
log.Print(elkconf)
|
||||||
gElkEngine.cli,e = elastic.NewClient(
|
gElkEngine.cli,e = elastic.NewClient(
|
||||||
elastic.SetURL(elkconf.Address),
|
elastic.SetURL(elkconf.Address),
|
||||||
// Must turn off sniff in docker
|
// Must turn off sniff in docker
|
||||||
|
|
2
main.go
2
main.go
|
@ -116,6 +116,8 @@ func main() {
|
||||||
api.POST("/image_upload",fileController.OnUpload) // 上传图片
|
api.POST("/image_upload",fileController.OnUpload) // 上传图片
|
||||||
api.GET("/image_download/:file",fileController.OnDownLoad) // 下载图片
|
api.GET("/image_download/:file",fileController.OnDownLoad) // 下载图片
|
||||||
api.GET("/doc_types",controller.ArticlesTypes) // 获取所有的文章类型
|
api.GET("/doc_types",controller.ArticlesTypes) // 获取所有的文章类型
|
||||||
|
|
||||||
|
api.POST("/hardware",controller.AddHardware) // 新增硬件
|
||||||
}
|
}
|
||||||
|
|
||||||
e := r.Run(":" + strconv.Itoa(config.GetPort()))
|
e := r.Run(":" + strconv.Itoa(config.GetPort()))
|
||||||
|
|
|
@ -1,6 +1,11 @@
|
||||||
package model
|
package model
|
||||||
|
|
||||||
import "time"
|
import (
|
||||||
|
"background/db"
|
||||||
|
"github.com/pkg/errors"
|
||||||
|
"qiniupkg.com/x/log.v7"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
// this api is based on elasticsearch
|
// this api is based on elasticsearch
|
||||||
type Hardware struct {
|
type Hardware struct {
|
||||||
|
@ -12,8 +17,14 @@ type Hardware struct {
|
||||||
Doc string `json:"doc"` //文档资料
|
Doc string `json:"doc"` //文档资料
|
||||||
}
|
}
|
||||||
|
|
||||||
func (*Hardware )Create() error{
|
func (this *Hardware )CreateHardware( ) error{
|
||||||
|
if nil == this{
|
||||||
|
return errors.New("null pointer")
|
||||||
|
}
|
||||||
|
e := db.GetElastic().Create("hardware","0","",*this)
|
||||||
|
if nil != e{
|
||||||
|
log.Print(e.Error())
|
||||||
|
return e
|
||||||
|
}
|
||||||
return nil;
|
return nil;
|
||||||
}
|
}
|
Loading…
Reference in New Issue