|
|
package pushdata
|
|
|
|
|
|
import (
|
|
|
"bytes"
|
|
|
"encoding/json"
|
|
|
"fmt"
|
|
|
"net/http"
|
|
|
"time"
|
|
|
|
|
|
"github.com/dgrijalva/jwt-go"
|
|
|
)
|
|
|
|
|
|
type FieldName struct {
|
|
|
Name string `json:"name"`
|
|
|
}
|
|
|
|
|
|
type RespData struct {
|
|
|
Code int `json:"code"`
|
|
|
Code int `json:"code"`
|
|
|
Msg string `json:"msg"`
|
|
|
}
|
|
|
|
|
|
func (resp *RespData) IsOk() bool {
|
|
|
return resp.Code == 0
|
|
|
}
|
|
|
|
|
|
type ReqCreateTable struct {
|
|
|
Name string `json:"name"`
|
|
|
Fields []FieldName `json:"fields"`
|
|
|
Data []map[string]string `json:"data"`
|
|
|
type Client struct {
|
|
|
Host string
|
|
|
AppSecret string // 调试用 3Oo4dG64X0
|
|
|
AppKey string // 调试用 GnAmG4jybB
|
|
|
}
|
|
|
|
|
|
type ReqAppendData struct {
|
|
|
Name string `json:"name"`
|
|
|
Fields []FieldName `json:"fields"`
|
|
|
Data []map[string]string `json:"data"`
|
|
|
func NewClient() *Client {
|
|
|
return &Client{
|
|
|
Host: "http://character-library-metadata-bastion-test.fjmaimaimai.com",
|
|
|
AppSecret: "3Oo4dG64X0",
|
|
|
AppKey: "GnAmG4jybB",
|
|
|
}
|
|
|
}
|
|
|
|
|
|
type AppTable interface {
|
|
|
AppTableName() string // 应用表名称
|
|
|
AppTableField() []FieldName // 应用字段
|
|
|
func (c *Client) useHeader() (h http.Header) {
|
|
|
token := jwt.New(jwt.SigningMethodHS256)
|
|
|
tk, err := token.SignedString([]byte(c.AppSecret))
|
|
|
if err != nil {
|
|
|
fmt.Printf("err:%s \n", err)
|
|
|
}
|
|
|
h = http.Header{}
|
|
|
h.Add("x-mmm-accesstoken", tk)
|
|
|
h.Add("x-mmm-appkey", c.AppKey)
|
|
|
return
|
|
|
}
|
|
|
|
|
|
type GenData interface {
|
|
|
DataForAppend() (ReqAppendData, error) //生成需要追加的数据
|
|
|
type ReqAppendData struct {
|
|
|
Name string `json:"name"` // 应用表名称
|
|
|
Fields []FieldName `json:"fields"` // 应用字段
|
|
|
Data []map[string]string `json:"data"` // 数据
|
|
|
}
|
|
|
|
|
|
type AppTableFile interface {
|
|
|
AppTable
|
|
|
GenData
|
|
|
// AppendData 追加应用表数据
|
|
|
func (c *Client) AppendData(reqData ReqAppendData) error {
|
|
|
apiUrl := c.Host + `/api/app-table-file/append-data`
|
|
|
bodyData, err := json.Marshal(reqData)
|
|
|
if err != nil {
|
|
|
return fmt.Errorf("推送数据到字库,追加应用表数据:%s", err)
|
|
|
}
|
|
|
req, err := http.NewRequest(http.MethodPost, apiUrl, bytes.NewReader(bodyData))
|
|
|
if err != nil {
|
|
|
return fmt.Errorf("推送数据到字库,追加应用表数据:%s", err)
|
|
|
}
|
|
|
req.Header = c.useHeader()
|
|
|
req.Header.Add("Content-Type", "application/json")
|
|
|
httpClient := http.DefaultClient
|
|
|
httpClient.Timeout = 60 * time.Second
|
|
|
resp, err := httpClient.Do(req)
|
|
|
if err != nil {
|
|
|
return fmt.Errorf("推送数据到字库,追加应用表数据:%s", err)
|
|
|
}
|
|
|
defer resp.Body.Close()
|
|
|
var respData RespData
|
|
|
j := json.NewDecoder(resp.Body)
|
|
|
err = j.Decode(&respData)
|
|
|
if err != nil {
|
|
|
return fmt.Errorf("推送数据到字库,追加应用表数据:%s", err)
|
|
|
}
|
|
|
if !respData.IsOk() {
|
|
|
return fmt.Errorf("推送数据到字库,追加应用表数据响应:%s", respData.Msg)
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
type Client struct {
|
|
|
entry []AppTableFile
|
|
|
host string
|
|
|
type ReqSearchTable struct {
|
|
|
Name string `json:"name"`
|
|
|
}
|
|
|
|
|
|
// RegistEntry 注册数据推送项
|
|
|
func (c *Client) RegistEntry(item AppTableFile) {
|
|
|
c.entry = append(c.entry, item)
|
|
|
// SearchTable 查询应用数据表
|
|
|
func (c *Client) SearchTable(name string) {
|
|
|
apiUrl := `/api/app-table-file/list`
|
|
|
_ = apiUrl
|
|
|
}
|
|
|
|
|
|
// CreateTable 创建应用表
|
|
|
func (c *Client) CreateTable() {
|
|
|
|
|
|
type ReqCreateTable struct {
|
|
|
Name string `json:"name"` // 应用表名称
|
|
|
Fields []FieldName `json:"fields"` // 应用字段
|
|
|
Data []map[string]string `json:"data"`
|
|
|
}
|
|
|
|
|
|
// AppendData 追加应用表数据
|
|
|
func (c *Client) AppendData() {
|
|
|
|
|
|
// CreateTable 创建应用表
|
|
|
func (c *Client) CreateTable() {
|
|
|
apiUrl := `/api/app-table-file/create`
|
|
|
_ = apiUrl
|
|
|
} |
...
|
...
|
|