project_variables.go 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. //
  2. // Copyright 2018, Patrick Webster
  3. //
  4. // Licensed under the Apache License, Version 2.0 (the "License");
  5. // you may not use this file except in compliance with the License.
  6. // You may obtain a copy of the License at
  7. //
  8. // http://www.apache.org/licenses/LICENSE-2.0
  9. //
  10. // Unless required by applicable law or agreed to in writing, software
  11. // distributed under the License is distributed on an "AS IS" BASIS,
  12. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. // See the License for the specific language governing permissions and
  14. // limitations under the License.
  15. //
  16. package gitlab
  17. import (
  18. "fmt"
  19. "net/url"
  20. )
  21. // ProjectVariablesService handles communication with the
  22. // project variables related methods of the GitLab API.
  23. //
  24. // GitLab API docs:
  25. // https://docs.gitlab.com/ee/api/project_level_variables.html
  26. type ProjectVariablesService struct {
  27. client *Client
  28. }
  29. // ProjectVariable represents a GitLab Project Variable.
  30. //
  31. // GitLab API docs:
  32. // https://docs.gitlab.com/ee/api/project_level_variables.html
  33. type ProjectVariable struct {
  34. Key string `json:"key"`
  35. Value string `json:"value"`
  36. Protected bool `json:"protected"`
  37. EnvironmentScope string `json:"environment_scope"`
  38. }
  39. func (v ProjectVariable) String() string {
  40. return Stringify(v)
  41. }
  42. // ListVariables gets a list of all variables in a project.
  43. //
  44. // GitLab API docs:
  45. // https://docs.gitlab.com/ee/api/project_level_variables.html#list-project-variables
  46. func (s *ProjectVariablesService) ListVariables(pid interface{}, options ...OptionFunc) ([]*ProjectVariable, *Response, error) {
  47. project, err := parseID(pid)
  48. if err != nil {
  49. return nil, nil, err
  50. }
  51. u := fmt.Sprintf("projects/%s/variables", url.QueryEscape(project))
  52. req, err := s.client.NewRequest("GET", u, nil, options)
  53. if err != nil {
  54. return nil, nil, err
  55. }
  56. var vs []*ProjectVariable
  57. resp, err := s.client.Do(req, &vs)
  58. if err != nil {
  59. return nil, resp, err
  60. }
  61. return vs, resp, err
  62. }
  63. // GetVariable gets a variable.
  64. //
  65. // GitLab API docs:
  66. // https://docs.gitlab.com/ee/api/project_level_variables.html#show-variable-details
  67. func (s *ProjectVariablesService) GetVariable(pid interface{}, key string, options ...OptionFunc) (*ProjectVariable, *Response, error) {
  68. project, err := parseID(pid)
  69. if err != nil {
  70. return nil, nil, err
  71. }
  72. u := fmt.Sprintf("projects/%s/variables/%s", url.QueryEscape(project), url.QueryEscape(key))
  73. req, err := s.client.NewRequest("GET", u, nil, options)
  74. if err != nil {
  75. return nil, nil, err
  76. }
  77. v := new(ProjectVariable)
  78. resp, err := s.client.Do(req, v)
  79. if err != nil {
  80. return nil, resp, err
  81. }
  82. return v, resp, err
  83. }
  84. // CreateVariableOptions represents the available
  85. // CreateVariable() options.
  86. //
  87. // GitLab API docs:
  88. // https://docs.gitlab.com/ee/api/project_level_variables.html#create-variable
  89. type CreateVariableOptions struct {
  90. Key *string `url:"key,omitempty" json:"key,omitempty"`
  91. Value *string `url:"value,omitempty" json:"value,omitempty"`
  92. Protected *bool `url:"protected,omitempty" json:"protected,omitempty"`
  93. EnvironmentScope *string `url:"environment_scope,omitempty" json:"environment_scope,omitempty"`
  94. }
  95. // CreateVariable creates a new project variable.
  96. //
  97. // GitLab API docs:
  98. // https://docs.gitlab.com/ee/api/project_level_variables.html#create-variable
  99. func (s *ProjectVariablesService) CreateVariable(pid interface{}, opt *CreateVariableOptions, options ...OptionFunc) (*ProjectVariable, *Response, error) {
  100. project, err := parseID(pid)
  101. if err != nil {
  102. return nil, nil, err
  103. }
  104. u := fmt.Sprintf("projects/%s/variables", url.QueryEscape(project))
  105. req, err := s.client.NewRequest("POST", u, opt, options)
  106. if err != nil {
  107. return nil, nil, err
  108. }
  109. v := new(ProjectVariable)
  110. resp, err := s.client.Do(req, v)
  111. if err != nil {
  112. return nil, resp, err
  113. }
  114. return v, resp, err
  115. }
  116. // UpdateVariableOptions represents the available
  117. // UpdateVariable() options.
  118. //
  119. // GitLab API docs:
  120. // https://docs.gitlab.com/ee/api/project_level_variables.html#update-variable
  121. type UpdateVariableOptions struct {
  122. Value *string `url:"value,omitempty" json:"value,omitempty"`
  123. Protected *bool `url:"protected,omitempty" json:"protected,omitempty"`
  124. EnvironmentScope *string `url:"environment_scope,omitempty" json:"environment_scope,omitempty"`
  125. }
  126. // UpdateVariable updates a project's variable
  127. //
  128. // GitLab API docs:
  129. // https://docs.gitlab.com/ee/api/project_level_variables.html#update-variable
  130. func (s *ProjectVariablesService) UpdateVariable(pid interface{}, key string, opt *UpdateVariableOptions, options ...OptionFunc) (*ProjectVariable, *Response, error) {
  131. project, err := parseID(pid)
  132. if err != nil {
  133. return nil, nil, err
  134. }
  135. u := fmt.Sprintf("projects/%s/variables/%s",
  136. url.QueryEscape(project),
  137. url.QueryEscape(key),
  138. )
  139. req, err := s.client.NewRequest("PUT", u, opt, options)
  140. if err != nil {
  141. return nil, nil, err
  142. }
  143. v := new(ProjectVariable)
  144. resp, err := s.client.Do(req, v)
  145. if err != nil {
  146. return nil, resp, err
  147. }
  148. return v, resp, err
  149. }
  150. // RemoveVariable removes a project's variable.
  151. //
  152. // GitLab API docs:
  153. // https://docs.gitlab.com/ee/api/project_level_variables.html#remove-variable
  154. func (s *ProjectVariablesService) RemoveVariable(pid interface{}, key string, options ...OptionFunc) (*Response, error) {
  155. project, err := parseID(pid)
  156. if err != nil {
  157. return nil, err
  158. }
  159. u := fmt.Sprintf("projects/%s/variables/%s",
  160. url.QueryEscape(project),
  161. url.QueryEscape(key),
  162. )
  163. req, err := s.client.NewRequest("DELETE", u, nil, options)
  164. if err != nil {
  165. return nil, err
  166. }
  167. return s.client.Do(req, nil)
  168. }