This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
preferences.go
112 lines (94 loc) · 2.86 KB
/
preferences.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
// Copyright (c) 2015 Ableton AG, Berlin. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package travis
import (
"context"
"fmt"
"net/http"
)
// PreferencesService handles communication with the
// preferences related methods of the Travis CI API.
type PreferencesService struct {
client *Client
}
// Preference is a standard representation of an individual preference
//
// Travis CI API docs: https://developer.travis-ci.com/resource/preference#standard-representation
type Preference struct {
// The preference's name
Name *string `json:"name,omitempty"`
// The preference's value
Value interface{} `json:"value"`
*Metadata
}
// PreferenceBody is body for creating preference
type PreferenceBody struct {
// The preference's name
Name string `json:"name,omitempty"`
// The preference's value
Value interface{} `json:"value"`
}
type preferencesResponse struct {
Preferences []*Preference `json:"preferences,omitempty"`
}
// Find fetches the current user's preference based on
// the provided preference name
//
// Travis CI API docs: https://developer.travis-ci.com/resource/preference#find
func (ps *PreferencesService) Find(ctx context.Context, name string) (*Preference, *http.Response, error) {
u, err := urlWithOptions(fmt.Sprintf("preference/%s", name), nil)
if err != nil {
return nil, nil, err
}
req, err := ps.client.NewRequest(http.MethodGet, u, nil, nil)
if err != nil {
return nil, nil, err
}
var preference Preference
resp, err := ps.client.Do(ctx, req, &preference)
if err != nil {
return nil, resp, err
}
return &preference, resp, err
}
// List fetches the current user's preferences
//
// Travis CI API docs: https://developer.travis-ci.com/resource/preferences#for_user
func (ps *PreferencesService) List(ctx context.Context) ([]*Preference, *http.Response, error) {
u, err := urlWithOptions("preferences", nil)
if err != nil {
return nil, nil, err
}
req, err := ps.client.NewRequest(http.MethodGet, u, nil, nil)
if err != nil {
return nil, nil, err
}
var pr preferencesResponse
resp, err := ps.client.Do(ctx, req, &pr)
if err != nil {
return nil, resp, err
}
return pr.Preferences, resp, err
}
// Update updates the current user's preference based on
// the provided preference property
//
// Travis CI API docs: https://developer.travis-ci.com/resource/preference#update
func (ps *PreferencesService) Update(ctx context.Context, preference *PreferenceBody) (*Preference, *http.Response, error) {
u, err := urlWithOptions(fmt.Sprintf("preference/%s", preference.Name), nil)
if err != nil {
return nil, nil, err
}
req, err := ps.client.NewRequest(http.MethodPatch, u, preference, nil)
if err != nil {
return nil, nil, err
}
var p Preference
resp, err := ps.client.Do(ctx, req, &p)
if err != nil {
return nil, resp, err
}
return &p, resp, err
}