mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
There is already default handling of title. Remove instances where people are unknowingly overriding it For instances where we want to set special things, make sure to use CommonSettings.Title, so people can still override
99 lines
2.0 KiB
Go
99 lines
2.0 KiB
Go
package newrelic
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/rivo/tview"
|
|
"github.com/wtfutil/wtf/wtf"
|
|
nr "github.com/yfronto/newrelic"
|
|
)
|
|
|
|
type Widget struct {
|
|
wtf.TextWidget
|
|
|
|
app *tview.Application
|
|
client *Client
|
|
settings *Settings
|
|
}
|
|
|
|
func NewWidget(app *tview.Application, settings *Settings) *Widget {
|
|
widget := Widget{
|
|
TextWidget: wtf.NewTextWidget(app, settings.common, false),
|
|
|
|
app: app,
|
|
settings: settings,
|
|
}
|
|
|
|
widget.client = NewClient(widget.settings.apiKey, widget.settings.applicationID)
|
|
|
|
return &widget
|
|
}
|
|
|
|
/* -------------------- Exported Functions -------------------- */
|
|
|
|
func (widget *Widget) Refresh() {
|
|
app, appErr := widget.client.Application()
|
|
deploys, depErr := widget.client.Deployments()
|
|
|
|
appName := "error"
|
|
if appErr == nil {
|
|
appName = app.Name
|
|
}
|
|
|
|
var content string
|
|
if depErr != nil {
|
|
widget.View.SetWrap(true)
|
|
content = depErr.Error()
|
|
} else {
|
|
widget.View.SetWrap(false)
|
|
content = widget.contentFrom(deploys)
|
|
}
|
|
|
|
widget.app.QueueUpdateDraw(func() {
|
|
widget.View.SetTitle(widget.ContextualTitle(fmt.Sprintf("%s - [green]%s[white]", widget.CommonSettings.Title, appName)))
|
|
widget.View.Clear()
|
|
widget.View.SetText(content)
|
|
})
|
|
}
|
|
|
|
/* -------------------- Unexported Functions -------------------- */
|
|
|
|
func (widget *Widget) contentFrom(deploys []nr.ApplicationDeployment) string {
|
|
str := fmt.Sprintf(
|
|
" %s\n",
|
|
"[red]Latest Deploys[white]",
|
|
)
|
|
|
|
revisions := []string{}
|
|
|
|
for _, deploy := range deploys {
|
|
if (deploy.Revision != "") && wtf.Exclude(revisions, deploy.Revision) {
|
|
lineColor := "white"
|
|
if wtf.IsToday(deploy.Timestamp) {
|
|
lineColor = "lightblue"
|
|
}
|
|
|
|
revLen := 8
|
|
if revLen > len(deploy.Revision) {
|
|
revLen = len(deploy.Revision)
|
|
}
|
|
|
|
str = str + fmt.Sprintf(
|
|
" [green]%s[%s] %s %-.16s[white]\n",
|
|
deploy.Revision[0:revLen],
|
|
lineColor,
|
|
deploy.Timestamp.Format("Jan 02 15:04 MST"),
|
|
wtf.NameFromEmail(deploy.User),
|
|
)
|
|
|
|
revisions = append(revisions, deploy.Revision)
|
|
|
|
if len(revisions) == widget.settings.deployCount {
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
return str
|
|
}
|