1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
|
package sls
import (
"encoding/json"
"fmt"
"net/http"
"github.com/denverdino/aliyungo/common"
"github.com/golang/protobuf/proto"
//"time"
"os"
"strconv"
)
type Client struct {
accessKeyId string //Access Key Id
accessKeySecret string //Access Key Secret
securityToken string //sts token
debug bool
httpClient *http.Client
version string
internal bool
region common.Region
endpoint string
}
func (client *Client) SetDebug(debug bool) {
client.debug = debug
}
type Project struct {
client *Client
Name string `json:"projectName,omitempty"`
Description string `json:"description,omitempty"`
}
//type LogContent struct {
// Key string
// Value string
//}
//
//type LogItem struct {
// Time time.Time
// Contents []*LogContent
//}
//
//type LogGroupItem struct {
// Logs []*LogItem
// Topic string
// Source string
//}
type PutLogsRequest struct {
Project string
LogStore string
LogItems LogGroup
HashKey string
}
const (
SLSDefaultEndpoint = "log.aliyuncs.com"
SLSAPIVersion = "0.6.0"
METHOD_GET = "GET"
METHOD_POST = "POST"
METHOD_PUT = "PUT"
METHOD_DELETE = "DELETE"
)
// NewClient creates a new instance of ECS client
func NewClient(region common.Region, internal bool, accessKeyId, accessKeySecret string) *Client {
endpoint := os.Getenv("SLS_ENDPOINT")
if endpoint == "" {
endpoint = SLSDefaultEndpoint
}
return NewClientWithEndpoint(endpoint, region, internal, accessKeyId, accessKeySecret)
}
func NewClientForAssumeRole(region common.Region, internal bool, accessKeyId, accessKeySecret, securityToken string) *Client {
endpoint := os.Getenv("SLS_ENDPOINT")
if endpoint == "" {
endpoint = SLSDefaultEndpoint
}
return &Client{
accessKeyId: accessKeyId,
accessKeySecret: accessKeySecret,
securityToken: securityToken,
internal: internal,
region: region,
version: SLSAPIVersion,
endpoint: endpoint,
httpClient: &http.Client{},
}
}
func NewClientWithEndpoint(endpoint string, region common.Region, internal bool, accessKeyId, accessKeySecret string) *Client {
return &Client{
accessKeyId: accessKeyId,
accessKeySecret: accessKeySecret,
internal: internal,
region: region,
version: SLSAPIVersion,
endpoint: endpoint,
httpClient: &http.Client{},
}
}
func (client *Client) Project(name string) (*Project, error) {
// newClient := client.forProject(name)
//
// req := &request{
// method: METHOD_GET,
// path: "/",
// }
//
// project := &Project{}
//
// if err := newClient.requestWithJsonResponse(req, project); err != nil {
// return nil, err
// }
// project.client = newClient
// return project, nil
return &Project{
Name: name,
client: client.forProject(name),
}, nil
}
func (client *Client) forProject(name string) *Client {
newclient := *client
region := string(client.region)
if client.internal {
region = fmt.Sprintf("%s-intranet", region)
}
newclient.endpoint = fmt.Sprintf("%s.%s.%s", name, region, client.endpoint)
return &newclient
}
func (client *Client) DeleteProject(name string) error {
req := &request{
method: METHOD_DELETE,
path: "/",
}
newClient := client.forProject(name)
return newClient.requestWithClose(req)
}
func (client *Client) CreateProject(name string, description string) error {
project := &Project{
Name: name,
Description: description,
}
data, err := json.Marshal(project)
if err != nil {
return err
}
req := &request{
method: METHOD_POST,
path: "/",
payload: data,
contentType: "application/json",
}
newClient := client.forProject(name)
return newClient.requestWithClose(req)
}
//
//func marshal() ([]byte, error) {
//
// logGroups := []*LogGroup{}
// tmp := []*LogGroupItem
// for _, logGroupItem := range tmp {
//
// logs := []*Log{}
// for _, logItem := range logGroupItem.Logs {
// contents := []*Log_Content{}
// for key, value := range logItem.Content {
// contents = append(contents, &Log_Content{
// Key: proto.String(key),
// Value: proto.String(value),
// })
// }
//
// logs = append(logs, &Log{
// Time: proto.Uint32(uint32(LogItem.Time.Unix())),
// Contents: contents,
// })
// }
//
// logGroup := &LogGroup{
// Topic: proto.String(LogGroupItem.Topic),
// Source: proto.String(LogGroupItem.Source),
// Logs: logs,
// }
// logGroups = append(logGroups, logGroup)
// }
//
// return proto.Marshal(&LogGroupList{
// LogGroupList: logGroups,
// })
//}
func (client *Client) PutLogs(putLogRequest *PutLogsRequest) error {
if putLogRequest == nil {
return nil
}
data, err := proto.Marshal(&putLogRequest.LogItems)
if err != nil {
return err
}
req := &request{
method: METHOD_POST,
path: "/logstores/" + putLogRequest.LogStore + "/shards/lb",
payload: data,
contentType: "application/x-protobuf",
headers: map[string]string{"x-log-bodyrawsize": strconv.Itoa(len(data))},
}
newClient := client.forProject(putLogRequest.Project)
return newClient.requestWithClose(req)
}
|