-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcharts.go
152 lines (138 loc) · 3.45 KB
/
charts.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
//
// TheFederation Github Integration Server
// Copyright (C) 2018 Lukas Matt <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
package main
import (
"net/http"
"github.com/wcharczuk/go-chart"
"github.com/wcharczuk/go-chart/drawing"
"github.com/jinzhu/gorm"
_ "github.com/jinzhu/gorm/dialects/sqlite"
"time"
"fmt"
"sort"
)
type DataSet struct {
X []time.Time
Y []float64
}
func (d DataSet) Len() int {
return len(d.X)
}
func (d DataSet) Swap(i, j int) {
d.X[i], d.X[j] = d.X[j], d.X[i]
d.Y[i], d.Y[j] = d.Y[j], d.Y[i]
}
func (d DataSet) Less(i, j int) bool {
return d.X[i].Before(d.X[j])
}
func buildsPNG(w http.ResponseWriter, r *http.Request) {
db, err := gorm.Open(databaseDriver, databaseDSN)
if err != nil {
logger.Println(err)
return
}
defer db.Close()
var builds Builds
err = db.Find(&builds).Error
if err != nil {
logger.Println(err)
fmt.Fprintf(w, "ups.. something went wrong :(")
return
}
var passed = make(map[time.Time]float64)
var failed = make(map[time.Time]float64)
for _, build := range builds {
year, month, day := build.CreatedAt.Date()
date := time.Date(year, month, day,0, 0, 0, 0, time.Local)
if build.Status == BUILD_FINISHED {
passed[date] += 1
} else if build.Status == BUILD_FINISHED_ERROR {
failed[date] += 1
}
}
var maxX float64
var p, f DataSet
for k, v := range passed {
p.X = append(p.X, k)
p.Y = append(p.Y, v)
if v > maxX {
maxX = v
}
}
for k, v := range failed {
f.X = append(f.X, k)
f.Y = append(f.Y, v)
if v > maxX {
maxX = v
}
}
sort.Sort(p)
sort.Sort(f)
graph := chart.Chart{
Background: chart.Style{
FontSize: 30,
},
XAxis: chart.XAxis{
Name: "Day",
NameStyle: chart.StyleShow(),
Style: chart.Style{
Show: true,
},
},
YAxis: chart.YAxis{
Name: "Count",
NameStyle: chart.StyleShow(),
Style: chart.Style{
Show: true,
},
Range: &chart.ContinuousRange{
Min: 0.0,
Max: maxX + 2,
},
},
Series: []chart.Series{
chart.TimeSeries{
Name: "failed",
Style: chart.Style{
Show: true,
StrokeWidth: 3,
StrokeColor: drawing.ColorFromHex("A93226"),
FillColor: drawing.ColorFromHex("CD6155").WithAlpha(64),
},
YValues: f.Y,
XValues: f.X,
},
chart.TimeSeries{
Name: "passed",
Style: chart.Style{
Show: true,
StrokeWidth: 3,
StrokeColor: drawing.ColorFromHex("229954"),
FillColor: drawing.ColorFromHex("27AE60").WithAlpha(64),
},
YValues: p.Y,
XValues: p.X,
},
},
}
w.Header().Set("Content-Type", "image/png")
graph.Elements = []chart.Renderable{
chart.Legend(&graph),
}
graph.Render(chart.PNG, w)
}