license_templates.go 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. package gitlab
  2. import (
  3. "fmt"
  4. )
  5. // LicenseTemplate represents a license template.
  6. //
  7. // GitLab API docs:
  8. // https://docs.gitlab.com/ce/api/templates/licenses.html
  9. type LicenseTemplate struct {
  10. Key string `json:"key"`
  11. Name string `json:"name"`
  12. Nickname string `json:"nickname"`
  13. Featured bool `json:"featured"`
  14. HTMLURL string `json:"html_url"`
  15. SourceURL string `json:"source_url"`
  16. Description string `json:"description"`
  17. Conditions []string `json:"conditions"`
  18. Permissions []string `json:"permissions"`
  19. Limitations []string `json:"limitations"`
  20. Content string `json:"content"`
  21. }
  22. // LicenseTemplatesService handles communication with the license templates
  23. // related methods of the GitLab API.
  24. //
  25. // GitLab API docs: https://docs.gitlab.com/ce/api/templates/licenses.html
  26. type LicenseTemplatesService struct {
  27. client *Client
  28. }
  29. // ListLicenseTemplatesOptions represents the available
  30. // ListLicenseTemplates() options.
  31. //
  32. // GitLab API docs:
  33. // https://docs.gitlab.com/ce/api/templates/licenses.html#list-license-templates
  34. type ListLicenseTemplatesOptions struct {
  35. ListOptions
  36. Popular *bool `url:"popular,omitempty" json:"popular,omitempty"`
  37. }
  38. // ListLicenseTemplates get all license templates.
  39. //
  40. // GitLab API docs:
  41. // https://docs.gitlab.com/ce/api/templates/licenses.html#list-license-templates
  42. func (s *LicenseTemplatesService) ListLicenseTemplates(opt *ListLicenseTemplatesOptions, options ...OptionFunc) ([]*LicenseTemplate, *Response, error) {
  43. req, err := s.client.NewRequest("GET", "templates/licenses", opt, options)
  44. if err != nil {
  45. return nil, nil, err
  46. }
  47. var lts []*LicenseTemplate
  48. resp, err := s.client.Do(req, &lts)
  49. if err != nil {
  50. return nil, resp, err
  51. }
  52. return lts, resp, err
  53. }
  54. // GetLicenseTemplateOptions represents the available
  55. // GetLicenseTemplate() options.
  56. //
  57. // GitLab API docs:
  58. // https://docs.gitlab.com/ce/api/templates/licenses.html#single-license-template
  59. type GetLicenseTemplateOptions struct {
  60. Project *string `url:"project,omitempty" json:"project,omitempty"`
  61. Fullname *string `url:"fullname,omitempty" json:"fullname,omitempty"`
  62. }
  63. // GetLicenseTemplate get a single license template. You can pass parameters
  64. // to replace the license placeholder.
  65. //
  66. // GitLab API docs:
  67. // https://docs.gitlab.com/ce/api/templates/licenses.html#single-license-template
  68. func (s *LicenseTemplatesService) GetLicenseTemplate(template string, opt *GetLicenseTemplateOptions, options ...OptionFunc) (*LicenseTemplate, *Response, error) {
  69. u := fmt.Sprintf("templates/licenses/%s", template)
  70. req, err := s.client.NewRequest("GET", u, opt, options)
  71. if err != nil {
  72. return nil, nil, err
  73. }
  74. lt := new(LicenseTemplate)
  75. resp, err := s.client.Do(req, lt)
  76. if err != nil {
  77. return nil, resp, err
  78. }
  79. return lt, resp, err
  80. }