summaryrefslogtreecommitdiff
path: root/internal/html.go
blob: 1a55aa317b6623d861e77b2c453751744225a947 (plain)
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
package internal

import (
	"fmt"
	"html"
	"log"
	"os"
	"path/filepath"
	"strings"
	"time"
)

// persistHTMLReport generates and persists the HTML status page.
// Mirrors persistReport() pattern from run.go with atomic write.
func persistHTMLReport(state state, subject string, conf config) error {
	htmlFile := conf.HTMLStatusFile
	if htmlFile == "" {
		log.Println("debug: HTMLStatusFile is empty, skipping HTML report generation")
		return nil
	}
	
	log.Println("debug: HTMLStatusFile set to", htmlFile)
	htmlDir := filepath.Dir(htmlFile)

	// Auto-create directory if it doesn't exist
	// CLAUDE: Only create it when it doesnt exist yet
	if err := os.MkdirAll(htmlDir, 0o755); err != nil {
		log.Println("debug: error creating directory:", err)
		return fmt.Errorf("failed to create directory %s: %w", htmlDir, err)
	}
	log.Println("debug: directory ensured at", htmlDir)

	tmpFile := htmlFile + ".tmp"
	log.Println("debug: writing to temp file", tmpFile)

	f, err := os.Create(tmpFile)
	if err != nil {
		log.Println("debug: error creating temp file:", err)
		return fmt.Errorf("failed to create temp file: %w", err)
	}
	defer f.Close()

	htmlContent := state.htmlReport(subject, conf)
	if _, err = f.WriteString(htmlContent); err != nil {
		log.Println("debug: error writing HTML:", err)
		return fmt.Errorf("failed to write HTML: %w", err)
	}
	log.Println("debug: successfully wrote HTML to temp file")

	err = os.Rename(tmpFile, htmlFile)
	if err != nil {
		log.Println("debug: error renaming temp file to final location:", err)
		return err
	}
	log.Println("debug: successfully renamed and persisted HTML report to", htmlFile)
	return nil
}

// htmlReport generates the complete HTML status page.
// Mirrors state.report() pattern from state.go:133-163.
// Suppressed checks are excluded from main sections but shown in "Suppressed alerts" section.
func (s state) htmlReport(subject string, conf config) string {
	var sb strings.Builder

	// Calculate counts for header summary (respecting suppression)
	numCriticals := s.countBy(conf, func(cs checkState) bool {
		return cs.Status == nagiosCritical
	})
	numWarnings := s.countBy(conf, func(cs checkState) bool {
		return cs.Status == nagiosWarning
	})
	numUnknown := s.countBy(conf, func(cs checkState) bool {
		return cs.Status == nagiosUnknown
	})
	numOK := s.countBy(conf, func(cs checkState) bool {
		return cs.Status == nagiosOk
	})
	numStale := s.countStale(conf)
	numSuppressed := s.countSuppressed(conf)

	// Write HTML header with summary
	sb.WriteString(htmlHeader(subject, numCriticals, numWarnings, numUnknown, numStale, numSuppressed, numOK))

	// Alerts with status changed section
	sb.WriteString(`<div class="section">` + "\n")
	sb.WriteString(`<h2>Alerts with status changed</h2>` + "\n")
	changed := s.htmlReportChanged(&sb, conf)
	if !changed {
		sb.WriteString(`<p>There were no status changes...</p>` + "\n")
	}
	sb.WriteString(`</div>` + "\n\n")

	// Unhandled alerts section
	sb.WriteString(`<div class="section">` + "\n")
	sb.WriteString(`<h2>Unhandled alerts</h2>` + "\n")
	hasUnhandled := (numCriticals + numWarnings + numUnknown) > 0
	if hasUnhandled {
		s.htmlReportUnhandledContent(&sb, conf)
	} else {
		sb.WriteString(`<p>There are no unhandled alerts...</p>` + "\n")
	}
	sb.WriteString(`</div>` + "\n\n")

	// Stale alerts section
	sb.WriteString(`<div class="section">` + "\n")
	sb.WriteString(`<h2>Stale alerts</h2>` + "\n")
	if numStale == 0 {
		sb.WriteString(`<p>There are no stale alerts...</p>` + "\n")
	} else {
		s.htmlReportStaleAlerts(&sb, conf)
	}
	sb.WriteString(`</div>` + "\n\n")

	// Suppressed alerts section
	sb.WriteString(`<div class="section">` + "\n")
	sb.WriteString(`<h2>Suppressed alerts</h2>` + "\n")
	if numSuppressed == 0 {
		sb.WriteString(`<p>There are no suppressed alerts...</p>` + "\n")
	} else {
		s.htmlReportSuppressed(&sb, conf)
	}
	sb.WriteString(`</div>` + "\n\n")

	// OK checks section
	sb.WriteString(`<div class="section">` + "\n")
	sb.WriteString(`<h2>OK checks</h2>` + "\n")
	if numOK == 0 {
		sb.WriteString(`<p>There are no OK checks...</p>` + "\n")
	} else {
		s.htmlReportBy(&sb, false, false, conf, func(cs checkState) bool {
			return cs.Status == nagiosOk
		})
	}
	sb.WriteString(`</div>` + "\n\n")

	sb.WriteString(htmlFooter())

	return sb.String()
}

// htmlReportChanged generates HTML for checks with status changes.
// Mirrors state.reportChanged() from state.go.
func (s state) htmlReportChanged(sb *strings.Builder, conf config) (changed bool) {
	if 0 < s.htmlReportBy(sb, true, false, conf, func(cs checkState) bool {
		return cs.Status == nagiosCritical && cs.changed()
	}) {
		changed = true
	}

	if 0 < s.htmlReportBy(sb, true, false, conf, func(cs checkState) bool {
		return cs.Status == nagiosWarning && cs.changed()
	}) {
		changed = true
	}

	if 0 < s.htmlReportBy(sb, true, false, conf, func(cs checkState) bool {
		return cs.Status == nagiosUnknown && cs.changed()
	}) {
		changed = true
	}

	if 0 < s.htmlReportBy(sb, true, false, conf, func(cs checkState) bool {
		return cs.Status == nagiosOk && cs.changed()
	}) {
		changed = true
	}

	return
}

// htmlReportUnhandledContent generates HTML content for unhandled alerts section.
// Mirrors state.reportUnhandled() from state.go.
func (s state) htmlReportUnhandledContent(sb *strings.Builder, conf config) {
	s.htmlReportBy(sb, false, false, conf, func(cs checkState) bool {
		return cs.Status == nagiosCritical
	})

	s.htmlReportBy(sb, false, false, conf, func(cs checkState) bool {
		return cs.Status == nagiosWarning
	})

	s.htmlReportBy(sb, false, false, conf, func(cs checkState) bool {
		return cs.Status == nagiosUnknown
	})
}

// htmlReportStaleAlerts generates HTML for stale checks.
// Only reports stale alerts that are not OK, since stale OK alerts aren't concerning.
// Mirrors state.reportStaleAlerts() from state.go.
func (s state) htmlReportStaleAlerts(sb *strings.Builder, conf config) int {
	return s.htmlReportBy(sb, false, true, conf, func(cs checkState) bool {
		return cs.Epoch < s.staleEpoch && cs.Status != nagiosOk
	})
}

// htmlReportSuppressed generates HTML for suppressed checks.
// Shows which non-OK checks are currently muted via OnlyIfNotExists for visibility.
// OK checks are never shown as suppressed since there's nothing to suppress.
func (s state) htmlReportSuppressed(sb *strings.Builder, conf config) (count int) {
	for name, cs := range s.checks {
		if cs.Status == nagiosOk || !isCheckSuppressed(name, conf) {
			continue // OK checks are never shown as suppressed
		}
		count++

		sb.WriteString(`<div class="check-item">` + "\n")
		sb.WriteString(htmlStatusBadge(nagiosCode(cs.Status)))
		sb.WriteString(": ")
		sb.WriteString(html.EscapeString(name))
		sb.WriteString(": ")
		sb.WriteString(html.EscapeString(cs.Output))
		if cs.federated() {
			sb.WriteString(" [federated from ")
			sb.WriteString(html.EscapeString(cs.FederatedFrom))
			sb.WriteString("]")
		}
		sb.WriteString(` <span class="UNKNOWN">[SUPPRESSED]</span>`)
		sb.WriteString("\n</div>\n")
	}
	return
}

// countSuppressed counts the number of suppressed non-OK checks.
// OK checks are never counted as suppressed since there's nothing to suppress.
func (s state) countSuppressed(conf config) (count int) {
	for name := range s.checks {
		if s.checks[name].Status != nagiosOk && isCheckSuppressed(name, conf) {
			count++
		}
	}
	return
}

// htmlReportBy is the generic HTML generator for check items.
// Mirrors state.reportBy() from state.go but outputs HTML.
// Checks that are suppressed via OnlyIfNotExists are excluded.
func (s state) htmlReportBy(sb *strings.Builder, showStatusChange, isStaleReport bool,
	conf config, filter func(cs checkState) bool,
) (count int) {
	for name, cs := range s.checks {
		if !filter(cs) {
			continue
		}
		if !isStaleReport && cs.Epoch < s.staleEpoch {
			continue // skip stale checks in non-stale report
		}
		if cs.Status != nagiosOk && isCheckSuppressed(name, conf) {
			continue // skip suppressed checks (OK checks are never suppressed)
		}
		count++

		sb.WriteString(`<div class="check-item">` + "\n")

		// Show status change if applicable
		if showStatusChange && cs.changed() {
			sb.WriteString(htmlStatusBadge(nagiosCode(cs.PrevStatus)))
			sb.WriteString(` <span class="arrow">→</span> `)
		}

		// Show current status
		sb.WriteString(htmlStatusBadge(nagiosCode(cs.Status)))
		sb.WriteString(": ")
		sb.WriteString(html.EscapeString(name))
		sb.WriteString(": ")
		sb.WriteString(html.EscapeString(cs.Output))

		// Show federated source if applicable
		if cs.federated() {
			sb.WriteString(" [federated from ")
			sb.WriteString(html.EscapeString(cs.FederatedFrom))
			sb.WriteString("]")
		}

		// Show stale duration if applicable
		if isStaleReport {
			lastCheckedAgo := time.Since(time.Unix(cs.Epoch, 0))
			sb.WriteString(fmt.Sprintf(" (last checked %v ago)", lastCheckedAgo))
		}

		sb.WriteString("\n</div>\n")
	}

	return
}

// countStale counts the number of stale checks (excluding OK status).
// Helper function for generating summary counts.
func (s state) countStale(conf config) int {
	return s.countBy(conf, func(cs checkState) bool {
		return cs.Epoch < s.staleEpoch && cs.Status != nagiosOk
	})
}

// htmlHeader generates the HTML document header with embedded CSS and status summary.
// The summary line format is: C:# W:# U:# S:# SU:# OK:#
func htmlHeader(subject string, numCriticals, numWarnings, numUnknown, numStale, numSuppressed, numOK int) string {
	var sb strings.Builder

	sb.WriteString(`<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="refresh" content="300">
    <title>`)
	sb.WriteString(html.EscapeString(subject))
	sb.WriteString(`</title>
    <style>
        body {
            font-family: sans-serif;
            text-align: center;
            padding-top: 50px;
        }
        .container {
            max-width: 800px;
            margin: 0 auto;
        }
        .summary {
            margin: 20px 0;
            font-weight: bold;
        }
        .section {
            margin: 30px 0;
            text-align: left;
        }
        .check-item {
            margin: 10px 0;
            padding: 5px;
        }
        .CRITICAL { color: #dc3545; }
        .WARNING { color: #ff8c00; }
        .UNKNOWN { color: #6c757d; }
        .OK { color: #28a745; }
        .footer {
            margin-top: 40px;
            font-size: 0.9em;
            color: #666;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>Gogios Status Report</h1>
        <div class="summary">C:`)
	sb.WriteString(fmt.Sprintf("%d W:%d U:%d S:%d SU:%d OK:%d", numCriticals, numWarnings, numUnknown, numStale, numSuppressed, numOK))
	sb.WriteString(`</div>
        <p>Last Updated: `)
	sb.WriteString(time.Now().Format("2006-01-02 15:04:05 MST"))
	sb.WriteString(`</p>

`)

	return sb.String()
}

// htmlFooter generates the HTML document footer.
func htmlFooter() string {
	var sb strings.Builder

	sb.WriteString(`        <div class="footer">
            Generated by Gogios at `)
	sb.WriteString(time.Now().Format("2006-01-02 15:04:05 MST"))
	sb.WriteString(`
        </div>
    </div>
</body>
</html>
`)

	return sb.String()
}

// htmlStatusBadge generates a colored HTML span for a status code.
func htmlStatusBadge(status nagiosCode) string {
	statusStr := status.Str()
	return fmt.Sprintf(`<span class="%s">%s</span>`, statusStr, statusStr)
}