-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathhelpers.go
42 lines (38 loc) · 915 Bytes
/
helpers.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
package gojira
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"net/http"
"strings"
)
func handleJiraError(body []byte) error {
errorAnswer := ApiError{}
err := json.Unmarshal(body, &errorAnswer)
if err != nil {
return err
}
return errors.New(errorAnswer.String())
}
func updateLabelsHelper(labels []string, issueKey string) error {
updateParams := []byte(fmt.Sprintf(`{ "update": { "labels": [ %s ] } }`,
strings.Join(labels, ", ")))
url := fmt.Sprintf("%s/issue/%s", BaseURL, issueKey)
code, body := execRequest("PUT", url, bytes.NewBuffer(updateParams))
if code == http.StatusNoContent {
return nil
}
return handleJiraError(body)
}
func getUserHelper(code int, body []byte) (*User, error) {
if code == http.StatusOK {
var jiraUser User
err := json.Unmarshal(body, &jiraUser)
if err != nil {
return nil, err
}
return &jiraUser, nil
}
return nil, handleJiraError(body)
}