forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueryrunnerapi.go
115 lines (99 loc) · 3.39 KB
/
queryrunnerapi.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
// Package queryrunnerapi implements a client for the query-runner service.
package queryrunnerapi
import (
"bytes"
"context"
"encoding/json"
"fmt"
"net/http"
"net/url"
"time"
"github.com/pkg/errors"
"github.com/inconshreveable/log15"
"github.com/sourcegraph/sourcegraph/internal/api"
"github.com/sourcegraph/sourcegraph/internal/env"
)
var (
queryRunnerURL = env.Get("QUERY_RUNNER_URL", "http://query-runner", "URL at which the query-runner service can be reached")
Client = &client{
client: &http.Client{
Timeout: 5 * time.Second,
},
}
)
type SubjectAndConfig struct {
Subject api.SettingsSubject
Config api.PartialConfigSavedQueries
}
type ErrorResponse struct {
Message string
}
const (
PathSavedQueryWasCreatedOrUpdated = "/saved-query-was-created-or-updated"
PathSavedQueryWasDeleted = "/saved-query-was-deleted"
PathTestNotification = "/test-notification"
)
type client struct {
client *http.Client
}
type SavedQueryWasCreatedOrUpdatedArgs struct {
SubjectAndConfig *SubjectAndConfig
DisableSubscriptionNotifications bool
}
// SavedQueryWasCreated should be called whenever a saved query was created
// or updated after the server has started.
func (c *client) SavedQueryWasCreatedOrUpdated(ctx context.Context, subject api.SettingsSubject, config api.PartialConfigSavedQueries, disableSubscriptionNotifications bool) error {
return c.post(PathSavedQueryWasCreatedOrUpdated, &SavedQueryWasCreatedOrUpdatedArgs{
SubjectAndConfig: &SubjectAndConfig{
Subject: subject,
Config: config,
},
DisableSubscriptionNotifications: disableSubscriptionNotifications,
})
}
type SavedQueryWasDeletedArgs struct {
Spec api.SavedQueryIDSpec
DisableSubscriptionNotifications bool
}
// SavedQueryWasDeleted should be called whenever a saved query was deleted
// after the server has started.
func (c *client) SavedQueryWasDeleted(ctx context.Context, spec api.SavedQueryIDSpec, disableSubscriptionNotifications bool) error {
return c.post(PathSavedQueryWasDeleted, &SavedQueryWasDeletedArgs{
Spec: spec,
DisableSubscriptionNotifications: disableSubscriptionNotifications,
})
}
type TestNotificationArgs struct {
SavedSearch api.SavedQuerySpecAndConfig
}
// TestNotification is called to send a test notification for a saved search. Users may perform this
// action to test that the configured notifications are working.
func (c *client) TestNotification(ctx context.Context, savedSearch api.SavedQuerySpecAndConfig) {
err := c.post(PathTestNotification, &TestNotificationArgs{SavedSearch: savedSearch})
if err != nil {
log15.Error("Unable to send test notification, POST failed.", err)
}
}
func (c *client) post(path string, data interface{}) error {
var buf bytes.Buffer
if err := json.NewEncoder(&buf).Encode(data); err != nil {
return errors.Wrap(err, "Encoding request")
}
u, err := url.Parse(queryRunnerURL)
if err != nil {
return errors.Wrap(err, "Parse QUERY_RUNNER_URL")
}
u.Path = path
resp, err := c.client.Post(u.String(), "application/json", &buf)
if err != nil {
return errors.Wrap(err, "Post "+u.String())
}
if resp.StatusCode == http.StatusOK {
return nil
}
var errResp *ErrorResponse
if err := json.NewDecoder(resp.Body).Decode(&errResp); err != nil {
return errors.Wrap(err, "Decoding response")
}
return fmt.Errorf("Error from %s: %s", u.String(), errResp.Message)
}