forked from grafana-tools/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
board.go
240 lines (221 loc) · 6.59 KB
/
board.go
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
230
231
232
233
234
235
236
237
238
239
240
package sdk
/*
Copyright 2016 Alexander I.Grafov <[email protected]>
Copyright 2016-2019 The Grafana SDK authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
ॐ तारे तुत्तारे तुरे स्व
*/
import (
"bytes"
"encoding/json"
"strings"
"github.com/gosimple/slug"
)
var (
boardID uint
)
// Constants for templating
const (
TemplatingHideNone = iota
TemplatingHideLabel
TemplatingHideVariable
)
type (
// Board represents Grafana dashboard.
Board struct {
ID uint `json:"id,omitempty"`
UID string `json:"uid,omitempty"`
Slug string `json:"slug"`
Title string `json:"title"`
OriginalTitle string `json:"originalTitle"`
Tags []string `json:"tags"`
Style string `json:"style"`
Timezone string `json:"timezone"`
Editable bool `json:"editable"`
HideControls bool `json:"hideControls" graf:"hide-controls"`
SharedCrosshair bool `json:"sharedCrosshair" graf:"shared-crosshair"`
Panels []*Panel `json:"panels"`
Rows []*Row `json:"rows"`
Templating Templating `json:"templating"`
Annotations struct {
List []Annotation `json:"list"`
} `json:"annotations"`
Refresh *BoolString `json:"refresh,omitempty"`
SchemaVersion uint `json:"schemaVersion"`
Version uint `json:"version"`
Links []Link `json:"links"`
Time Time `json:"time"`
Timepicker Timepicker `json:"timepicker"`
GraphTooltip int `json:"graphTooltip,omitempty"`
}
Time struct {
From string `json:"from"`
To string `json:"to"`
}
Timepicker struct {
Now *bool `json:"now,omitempty"`
RefreshIntervals []string `json:"refresh_intervals"`
TimeOptions []string `json:"time_options"`
}
Templating struct {
List []TemplateVar `json:"list"`
}
TemplateVar struct {
Name string `json:"name"`
Type string `json:"type"`
Auto bool `json:"auto,omitempty"`
AutoCount *int `json:"auto_count,omitempty"`
Datasource *string `json:"datasource"`
Refresh BoolInt `json:"refresh"`
Options []Option `json:"options"`
IncludeAll bool `json:"includeAll"`
AllFormat string `json:"allFormat"`
AllValue string `json:"allValue"`
Multi bool `json:"multi"`
MultiFormat string `json:"multiFormat"`
Query string `json:"query"`
Regex string `json:"regex"`
Current Current `json:"current"`
Label string `json:"label"`
Hide uint8 `json:"hide"`
Sort int `json:"sort"`
}
// for templateVar
Option struct {
Text string `json:"text"`
Value string `json:"value"`
Selected bool `json:"selected"`
}
// for templateVar
Current struct {
Tags []*string `json:"tags,omitempty"`
Text interface{} `json:"text"`
Value interface{} `json:"value"` // TODO select more precise type
}
Annotation struct {
Name string `json:"name"`
Datasource *string `json:"datasource"`
ShowLine bool `json:"showLine"`
IconColor string `json:"iconColor"`
LineColor string `json:"lineColor"`
IconSize uint `json:"iconSize"`
Enable bool `json:"enable"`
Query string `json:"query"`
Expr string `json:"expr"`
Step string `json:"step"`
TextField string `json:"textField"`
TextFormat string `json:"textFormat"`
TitleFormat string `json:"titleFormat"`
TagsField string `json:"tagsField"`
Tags []string `json:"tags"`
TagKeys string `json:"tagKeys"`
Type string `json:"type"`
}
// Link represents link to another dashboard or external weblink
Link struct {
Title string `json:"title"`
Type string `json:"type"`
AsDropdown *bool `json:"asDropdown,omitempty"`
DashURI *string `json:"dashUri,omitempty"`
Dashboard *string `json:"dashboard,omitempty"`
Icon *string `json:"icon,omitempty"`
IncludeVars bool `json:"includeVars"`
KeepTime *bool `json:"keepTime,omitempty"`
Params *string `json:"params,omitempty"`
Tags []string `json:"tags,omitempty"`
TargetBlank *bool `json:"targetBlank,omitempty"`
Tooltip *string `json:"tooltip,omitempty"`
URL *string `json:"url,omitempty"`
}
)
// Height of rows maybe passed as number (ex 200) or
// as string (ex "200px") or empty string
type Height string
func (h *Height) UnmarshalJSON(raw []byte) error {
if raw == nil || bytes.Equal(raw, []byte(`"null"`)) {
return nil
}
if raw[0] != '"' {
tmp := []byte{'"'}
raw = append(tmp, raw...)
raw = append(raw, byte('"'))
}
var tmp string
err := json.Unmarshal(raw, &tmp)
*h = Height(tmp)
return err
}
func NewBoard(title string) *Board {
boardID++
return &Board{
ID: boardID,
Title: title,
Style: "dark",
Timezone: "browser",
Editable: true,
HideControls: false,
Rows: []*Row{},
}
}
func (b *Board) AddLink(link Link) {
b.Links = append(b.Links, link)
}
func (b *Board) RemoveTags(tags ...string) {
// order might change after removing the tags
for _, toRemoveTag := range tags {
tagLen := len(b.Tags)
for i, tag := range b.Tags {
if tag == toRemoveTag {
b.Tags[tagLen-1], b.Tags[i] = b.Tags[i], b.Tags[tagLen-1]
b.Tags = b.Tags[:tagLen-1]
break
}
}
}
}
func (b *Board) AddTags(tags ...string) {
tagFound := make(map[string]bool, len(b.Tags))
for _, tag := range b.Tags {
tagFound[tag] = true
}
for _, tag := range tags {
if tagFound[tag] {
continue
}
b.Tags = append(b.Tags, tag)
tagFound[tag] = true
}
}
func (b *Board) HasTag(tag string) bool {
for _, t := range b.Tags {
if t == tag {
return true
}
}
return false
}
func (b *Board) AddRow(title string) *Row {
if title == "" {
title = "New row"
}
row := &Row{
Title: title,
Collapse: false,
Editable: true,
Height: "250px",
}
b.Rows = append(b.Rows, row)
return row
}
func (b *Board) UpdateSlug() string {
b.Slug = strings.ToLower(slug.Make(b.Title))
return b.Slug
}