2016-09-08 04:25:45 -05:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2017-10-12 03:12:15 -05:00
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2016-09-08 04:25:45 -05:00
|
|
|
"github.com/grafana/grafana/pkg/api/dtos"
|
2017-10-07 03:31:39 -05:00
|
|
|
"github.com/grafana/grafana/pkg/components/simplejson"
|
2016-09-08 04:25:45 -05:00
|
|
|
"github.com/grafana/grafana/pkg/middleware"
|
|
|
|
"github.com/grafana/grafana/pkg/services/annotations"
|
2017-11-16 07:24:56 -06:00
|
|
|
"github.com/grafana/grafana/pkg/util"
|
2016-09-08 04:25:45 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func GetAnnotations(c *middleware.Context) Response {
|
|
|
|
|
|
|
|
query := &annotations.ItemQuery{
|
2016-09-09 04:30:55 -05:00
|
|
|
From: c.QueryInt64("from") / 1000,
|
|
|
|
To: c.QueryInt64("to") / 1000,
|
|
|
|
OrgId: c.OrgId,
|
|
|
|
AlertId: c.QueryInt64("alertId"),
|
|
|
|
DashboardId: c.QueryInt64("dashboardId"),
|
|
|
|
PanelId: c.QueryInt64("panelId"),
|
|
|
|
Limit: c.QueryInt64("limit"),
|
2017-10-07 03:31:39 -05:00
|
|
|
Tags: c.QueryStrings("tags"),
|
2017-11-21 04:27:53 -06:00
|
|
|
Type: c.Query("type"),
|
2016-09-08 04:25:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
repo := annotations.GetRepository()
|
|
|
|
|
|
|
|
items, err := repo.Find(query)
|
|
|
|
if err != nil {
|
|
|
|
return ApiError(500, "Failed to get annotations", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, item := range items {
|
2017-10-07 03:31:39 -05:00
|
|
|
if item.Email != "" {
|
|
|
|
item.AvatarUrl = dtos.GetGravatarUrl(item.Email)
|
|
|
|
}
|
|
|
|
item.Time = item.Time * 1000
|
2016-09-08 04:25:45 -05:00
|
|
|
}
|
|
|
|
|
2017-10-07 03:31:39 -05:00
|
|
|
return Json(200, items)
|
2016-09-08 04:25:45 -05:00
|
|
|
}
|
2016-10-14 02:33:16 -05:00
|
|
|
|
2017-10-18 03:13:02 -05:00
|
|
|
type CreateAnnotationError struct {
|
|
|
|
message string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *CreateAnnotationError) Error() string {
|
|
|
|
return e.message
|
|
|
|
}
|
|
|
|
|
2017-11-16 09:18:03 -06:00
|
|
|
func PostAnnotation(c *middleware.Context, cmd dtos.PostAnnotationsCmd) Response {
|
2017-04-10 12:22:58 -05:00
|
|
|
repo := annotations.GetRepository()
|
|
|
|
|
2017-10-18 03:13:02 -05:00
|
|
|
if cmd.Text == "" {
|
|
|
|
err := &CreateAnnotationError{"text field should not be empty"}
|
2017-11-16 09:18:03 -06:00
|
|
|
return ApiError(500, "Failed to save annotation", err)
|
2017-10-18 03:13:02 -05:00
|
|
|
}
|
|
|
|
|
2017-04-10 12:22:58 -05:00
|
|
|
item := annotations.Item{
|
|
|
|
OrgId: c.OrgId,
|
2017-10-07 03:31:39 -05:00
|
|
|
UserId: c.UserId,
|
2017-04-10 12:22:58 -05:00
|
|
|
DashboardId: cmd.DashboardId,
|
|
|
|
PanelId: cmd.PanelId,
|
|
|
|
Epoch: cmd.Time / 1000,
|
|
|
|
Text: cmd.Text,
|
2017-10-07 03:31:39 -05:00
|
|
|
Data: cmd.Data,
|
|
|
|
Tags: cmd.Tags,
|
2017-04-10 12:22:58 -05:00
|
|
|
}
|
|
|
|
|
2017-10-18 03:13:02 -05:00
|
|
|
if item.Epoch == 0 {
|
|
|
|
item.Epoch = time.Now().Unix()
|
|
|
|
}
|
|
|
|
|
2017-04-12 09:26:34 -05:00
|
|
|
if err := repo.Save(&item); err != nil {
|
2017-11-16 09:18:03 -06:00
|
|
|
return ApiError(500, "Failed to save annotation", err)
|
2017-04-10 12:22:58 -05:00
|
|
|
}
|
|
|
|
|
2017-11-16 07:24:56 -06:00
|
|
|
startID := item.Id
|
|
|
|
|
2017-04-12 09:26:34 -05:00
|
|
|
// handle regions
|
|
|
|
if cmd.IsRegion {
|
2017-11-16 07:24:56 -06:00
|
|
|
item.RegionId = startID
|
2017-04-12 09:26:34 -05:00
|
|
|
|
2017-10-07 03:31:39 -05:00
|
|
|
if item.Data == nil {
|
|
|
|
item.Data = simplejson.New()
|
|
|
|
}
|
|
|
|
|
2017-04-12 09:26:34 -05:00
|
|
|
if err := repo.Update(&item); err != nil {
|
2017-11-16 09:18:03 -06:00
|
|
|
return ApiError(500, "Failed set regionId on annotation", err)
|
2017-04-12 09:26:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
item.Id = 0
|
2017-10-07 03:31:39 -05:00
|
|
|
item.Epoch = cmd.TimeEnd / 1000
|
2017-04-12 09:26:34 -05:00
|
|
|
|
|
|
|
if err := repo.Save(&item); err != nil {
|
2017-11-16 09:18:03 -06:00
|
|
|
return ApiError(500, "Failed save annotation for region end time", err)
|
2017-04-12 09:26:34 -05:00
|
|
|
}
|
2017-11-16 07:24:56 -06:00
|
|
|
|
2017-11-16 09:18:03 -06:00
|
|
|
return Json(200, util.DynMap{
|
2017-11-16 07:24:56 -06:00
|
|
|
"message": "Annotation added",
|
|
|
|
"id": startID,
|
|
|
|
"endId": item.Id,
|
|
|
|
})
|
2017-04-12 09:26:34 -05:00
|
|
|
}
|
|
|
|
|
2017-11-16 09:18:03 -06:00
|
|
|
return Json(200, util.DynMap{
|
2017-11-16 07:24:56 -06:00
|
|
|
"message": "Annotation added",
|
|
|
|
"id": startID,
|
|
|
|
})
|
2017-04-10 12:22:58 -05:00
|
|
|
}
|
|
|
|
|
2017-10-12 03:12:15 -05:00
|
|
|
func formatGraphiteAnnotation(what string, data string) string {
|
2017-10-18 03:13:02 -05:00
|
|
|
text := what
|
|
|
|
if data != "" {
|
|
|
|
text = text + "\n" + data
|
|
|
|
}
|
|
|
|
return text
|
2017-10-12 03:12:15 -05:00
|
|
|
}
|
|
|
|
|
2017-11-16 09:18:03 -06:00
|
|
|
func PostGraphiteAnnotation(c *middleware.Context, cmd dtos.PostGraphiteAnnotationsCmd) Response {
|
2017-10-12 03:12:15 -05:00
|
|
|
repo := annotations.GetRepository()
|
|
|
|
|
2017-10-18 03:13:02 -05:00
|
|
|
if cmd.What == "" {
|
|
|
|
err := &CreateAnnotationError{"what field should not be empty"}
|
2017-11-16 09:18:03 -06:00
|
|
|
return ApiError(500, "Failed to save Graphite annotation", err)
|
2017-10-18 03:13:02 -05:00
|
|
|
}
|
|
|
|
|
2017-10-12 03:12:15 -05:00
|
|
|
if cmd.When == 0 {
|
|
|
|
cmd.When = time.Now().Unix()
|
|
|
|
}
|
|
|
|
text := formatGraphiteAnnotation(cmd.What, cmd.Data)
|
|
|
|
|
|
|
|
// Support tags in prior to Graphite 0.10.0 format (string of tags separated by space)
|
|
|
|
var tagsArray []string
|
|
|
|
switch tags := cmd.Tags.(type) {
|
|
|
|
case string:
|
2017-10-18 03:13:02 -05:00
|
|
|
if tags != "" {
|
|
|
|
tagsArray = strings.Split(tags, " ")
|
|
|
|
} else {
|
|
|
|
tagsArray = []string{}
|
|
|
|
}
|
2017-10-12 03:12:15 -05:00
|
|
|
case []interface{}:
|
|
|
|
for _, t := range tags {
|
|
|
|
if tagStr, ok := t.(string); ok {
|
|
|
|
tagsArray = append(tagsArray, tagStr)
|
|
|
|
} else {
|
2017-10-18 03:13:02 -05:00
|
|
|
err := &CreateAnnotationError{"tag should be a string"}
|
2017-11-16 09:18:03 -06:00
|
|
|
return ApiError(500, "Failed to save Graphite annotation", err)
|
2017-10-12 03:12:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
default:
|
2017-10-18 03:13:02 -05:00
|
|
|
err := &CreateAnnotationError{"unsupported tags format"}
|
2017-11-16 09:18:03 -06:00
|
|
|
return ApiError(500, "Failed to save Graphite annotation", err)
|
2017-10-12 03:12:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
item := annotations.Item{
|
|
|
|
OrgId: c.OrgId,
|
|
|
|
UserId: c.UserId,
|
|
|
|
Epoch: cmd.When,
|
|
|
|
Text: text,
|
|
|
|
Tags: tagsArray,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := repo.Save(&item); err != nil {
|
2017-11-16 09:18:03 -06:00
|
|
|
return ApiError(500, "Failed to save Graphite annotation", err)
|
2017-10-12 03:12:15 -05:00
|
|
|
}
|
|
|
|
|
2017-11-16 09:18:03 -06:00
|
|
|
return Json(200, util.DynMap{
|
2017-11-16 07:24:56 -06:00
|
|
|
"message": "Graphite annotation added",
|
|
|
|
"id": item.Id,
|
|
|
|
})
|
2017-10-12 03:12:15 -05:00
|
|
|
}
|
|
|
|
|
2017-10-07 03:31:39 -05:00
|
|
|
func UpdateAnnotation(c *middleware.Context, cmd dtos.UpdateAnnotationsCmd) Response {
|
|
|
|
annotationId := c.ParamsInt64(":annotationId")
|
|
|
|
|
|
|
|
repo := annotations.GetRepository()
|
|
|
|
|
|
|
|
item := annotations.Item{
|
|
|
|
OrgId: c.OrgId,
|
|
|
|
UserId: c.UserId,
|
|
|
|
Id: annotationId,
|
|
|
|
Epoch: cmd.Time / 1000,
|
|
|
|
Text: cmd.Text,
|
|
|
|
Tags: cmd.Tags,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := repo.Update(&item); err != nil {
|
|
|
|
return ApiError(500, "Failed to update annotation", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if cmd.IsRegion {
|
|
|
|
itemRight := item
|
|
|
|
itemRight.RegionId = item.Id
|
|
|
|
itemRight.Epoch = cmd.TimeEnd / 1000
|
|
|
|
|
|
|
|
// We don't know id of region right event, so set it to 0 and find then using query like
|
|
|
|
// ... WHERE region_id = <item.RegionId> AND id != <item.RegionId> ...
|
|
|
|
itemRight.Id = 0
|
|
|
|
|
|
|
|
if err := repo.Update(&itemRight); err != nil {
|
|
|
|
return ApiError(500, "Failed to update annotation for region end time", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ApiSuccess("Annotation updated")
|
|
|
|
}
|
|
|
|
|
2016-10-14 02:33:16 -05:00
|
|
|
func DeleteAnnotations(c *middleware.Context, cmd dtos.DeleteAnnotationsCmd) Response {
|
|
|
|
repo := annotations.GetRepository()
|
|
|
|
|
|
|
|
err := repo.Delete(&annotations.DeleteParams{
|
|
|
|
AlertId: cmd.PanelId,
|
|
|
|
DashboardId: cmd.DashboardId,
|
|
|
|
PanelId: cmd.PanelId,
|
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return ApiError(500, "Failed to delete annotations", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ApiSuccess("Annotations deleted")
|
|
|
|
}
|
2017-10-07 03:31:39 -05:00
|
|
|
|
|
|
|
func DeleteAnnotationById(c *middleware.Context) Response {
|
|
|
|
repo := annotations.GetRepository()
|
|
|
|
annotationId := c.ParamsInt64(":annotationId")
|
|
|
|
|
|
|
|
err := repo.Delete(&annotations.DeleteParams{
|
|
|
|
Id: annotationId,
|
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return ApiError(500, "Failed to delete annotation", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ApiSuccess("Annotation deleted")
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeleteAnnotationRegion(c *middleware.Context) Response {
|
|
|
|
repo := annotations.GetRepository()
|
|
|
|
regionId := c.ParamsInt64(":regionId")
|
|
|
|
|
|
|
|
err := repo.Delete(&annotations.DeleteParams{
|
|
|
|
RegionId: regionId,
|
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return ApiError(500, "Failed to delete annotation region", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ApiSuccess("Annotation region deleted")
|
|
|
|
}
|