aboutsummaryrefslogtreecommitdiffstats
path: root/hived/alertHandlers.go
blob: 54fb04255fbd0a8507835f9131338fe35b1312c9 (plain) (blame)
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
package main

import (
	"context"
	"encoding/json"
	"net/http"
	"time"

	"github.com/labstack/echo/v5"
	"github.com/rs/zerolog/log"
)

func (alertHandler Handler) HandleAlertPost(writer http.ResponseWriter, request *http.Request) {
	var bodyJSON addAlertJSONType

	writer.Header().Add("Content-Type", "application/json")

	err := json.NewDecoder(request.Body).Decode(&bodyJSON)
	if err != nil {
		log.Printf(err.Error())

		err := json.NewEncoder(writer).Encode(map[string]interface{}{
			"isSuccessful": false,
			"error":        "not all parameters are valid.",
		})
		if err != nil {
			log.Error().Err(err)
			http.Error(writer, "internal server error", http.StatusInternalServerError)
		}
	}

	if bodyJSON.Name == "" || bodyJSON.Expr == "" {
		err := json.NewEncoder(writer).Encode(map[string]interface{}{
			"isSuccessful": false,
			"error":        "not all parameters are valid.",
		})
		if err != nil {
			log.Error().Err(errFailedUnmarshall)
			http.Error(writer, "internal server error", http.StatusInternalServerError)
		}

		return
	}

	ctx, cancel := context.WithTimeout(request.Context(), redisContextTimeout*time.Second)
	defer cancel()

	key := "alert:" + bodyJSON.Name
	alertHandler.rdb.Set(ctx, bodyJSON.Name, bodyJSON.Expr, 0)
	alertHandler.rdb.SAdd(ctx, "alertkeys", key)

	err = json.NewEncoder(writer).Encode(map[string]interface{}{
		"isSuccessful": true,
		"error":        "",
	})

	if err != nil {
		log.Error().Err(err)
		http.Error(writer, "internal server error", http.StatusInternalServerError)
	}
}

func (alertHandler Handler) HandleAlertDelete(writer http.ResponseWriter, request *http.Request) {
	var identifier string

	writer.Header().Add("Content-Type", "application/json")

	params := request.URL.Query()

	for key, value := range params {
		switch key {
		case "key":
			identifier = value[0]
		default:
			log.Error().Err(errUnknownParam)
		}
	}

	if identifier == "" {
		err := json.NewEncoder(writer).Encode(map[string]interface{}{
			"isSuccessful": false,
			"error":        "Id parameter is not valid.",
		})
		if err != nil {
			log.Error().Err(err)
			http.Error(writer, "internal server error", http.StatusInternalServerError)
		}

		return
	}

	ctx, cancel := context.WithTimeout(request.Context(), redisContextTimeout*time.Second)
	defer cancel()

	alertHandler.rdb.Del(ctx, identifier)
	setKey := "alert:" + identifier
	alertHandler.rdb.SRem(ctx, "alertkeys", setKey)
	log.Printf(setKey)

	err := json.NewEncoder(writer).Encode(struct {
		IsSuccessful bool   `json:"isSuccessful"`
		Err          string `json:"err"`
	}{IsSuccessful: true, Err: ""})
	if err != nil {
		log.Error().Err(err)
		http.Error(writer, "internal server error", http.StatusInternalServerError)
	}
}

func (alertHandler Handler) HandleAlertGet(writer http.ResponseWriter, request *http.Request) {
	var identifier string

	writer.Header().Add("Content-Type", "application/json")

	params := request.URL.Query()
	for key, value := range params {
		switch key {
		case "key":
			identifier = value[0]
		default:
			log.Error().Err(errUnknownParam)
		}
	}

	if identifier == "" {
		err := json.NewEncoder(writer).Encode(map[string]interface{}{
			"isSuccessful": false,
			"error":        "Id parameter is not valid.",
		})
		if err != nil {
			log.Error().Err(err)
			http.Error(writer, "internal server error", http.StatusInternalServerError)
		}

		return
	}

	ctx, cancel := context.WithTimeout(request.Context(), redisContextTimeout*time.Second)
	defer cancel()

	redisResult := alertHandler.rdb.Get(ctx, identifier)

	redisResultString, err := redisResult.Result()
	if err != nil {
		log.Err(err)
	}

	var ErrorString string
	var IsSuccessful bool
	if err == nil {
		ErrorString = ""
		IsSuccessful = true
	} else {
		ErrorString = err.Error()
		IsSuccessful = false
	}

	writer.Header().Add("Content-Type", "application/json")

	err = json.NewEncoder(writer).Encode(struct {
		IsSuccessful bool   `json:"isSuccessful"`
		Error        string `json:"error"`
		Key          string `json:"key"`
		Expr         string `json:"expr"`
	}{IsSuccessful: IsSuccessful, Error: ErrorString, Key: identifier, Expr: redisResultString})

	if err != nil {
		log.Error().Err(err)
		http.Error(writer, "internal server error", http.StatusInternalServerError)
	}
}

func (aw appWrapper) alertHandler(echoCtx echo.Context) error {
	writer := echoCtx.Response().Writer
	request := echoCtx.Request()

	addSecureHeaders(&writer)

	handler := Handler{rdb: rdb}

	switch request.Method {
	case http.MethodPost:
		handler.HandleAlertPost(writer, request)
	case http.MethodPut:
		http.Error(writer, "Method is not supported.", http.StatusNotFound)
	case http.MethodPatch:
		http.Error(writer, "Method is not supported.", http.StatusNotFound)
	case http.MethodDelete:
		handler.HandleAlertDelete(writer, request)
	case http.MethodGet:
		handler.HandleAlertGet(writer, request)
	default:
		http.Error(writer, "Method is not supported.", http.StatusNotFound)
	}

	return nil
}