mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	* update github.com/PuerkitoBio/goquery * update github.com/alecthomas/chroma * update github.com/blevesearch/bleve/v2 * update github.com/caddyserver/certmagic * update github.com/go-enry/go-enry/v2 * update github.com/go-git/go-billy/v5 * update github.com/go-git/go-git/v5 * update github.com/go-redis/redis/v8 * update github.com/go-testfixtures/testfixtures/v3 * update github.com/jaytaylor/html2text * update github.com/json-iterator/go * update github.com/klauspost/compress * update github.com/markbates/goth * update github.com/mattn/go-isatty * update github.com/mholt/archiver/v3 * update github.com/microcosm-cc/bluemonday * update github.com/minio/minio-go/v7 * update github.com/prometheus/client_golang * update github.com/unrolled/render * update github.com/xanzy/go-gitlab * update github.com/yuin/goldmark * update github.com/yuin/goldmark-highlighting Co-authored-by: techknowlogick <techknowlogick@gitea.io>
		
			
				
	
	
		
			199 lines
		
	
	
	
		
			6 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			199 lines
		
	
	
	
		
			6 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
//
 | 
						|
// Copyright 2021, Sander van Harmelen
 | 
						|
//
 | 
						|
// Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
// you may not use this file except in compliance with the License.
 | 
						|
// You may obtain a copy of the License at
 | 
						|
//
 | 
						|
//     http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
//
 | 
						|
// Unless required by applicable law or agreed to in writing, software
 | 
						|
// distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
// See the License for the specific language governing permissions and
 | 
						|
// limitations under the License.
 | 
						|
//
 | 
						|
 | 
						|
package gitlab
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"net/http"
 | 
						|
)
 | 
						|
 | 
						|
// ReleaseLinksService handles communication with the release link methods
 | 
						|
// of the GitLab API.
 | 
						|
//
 | 
						|
// GitLab API docs: https://docs.gitlab.com/ee/api/releases/links.html
 | 
						|
type ReleaseLinksService struct {
 | 
						|
	client *Client
 | 
						|
}
 | 
						|
 | 
						|
// ReleaseLink represents a release link.
 | 
						|
//
 | 
						|
// GitLab API docs: https://docs.gitlab.com/ee/api/releases/links.html
 | 
						|
type ReleaseLink struct {
 | 
						|
	ID             int           `json:"id"`
 | 
						|
	Name           string        `json:"name"`
 | 
						|
	URL            string        `json:"url"`
 | 
						|
	DirectAssetURL string        `json:"direct_asset_url"`
 | 
						|
	External       bool          `json:"external"`
 | 
						|
	LinkType       LinkTypeValue `json:"link_type"`
 | 
						|
}
 | 
						|
 | 
						|
// ListReleaseLinksOptions represents ListReleaseLinks() options.
 | 
						|
//
 | 
						|
// GitLab API docs: https://docs.gitlab.com/ee/api/releases/links.html#get-links
 | 
						|
type ListReleaseLinksOptions ListOptions
 | 
						|
 | 
						|
// ListReleaseLinks gets assets as links from a Release.
 | 
						|
//
 | 
						|
// GitLab API docs: https://docs.gitlab.com/ee/api/releases/links.html#get-links
 | 
						|
func (s *ReleaseLinksService) ListReleaseLinks(pid interface{}, tagName string, opt *ListReleaseLinksOptions, options ...RequestOptionFunc) ([]*ReleaseLink, *Response, error) {
 | 
						|
	project, err := parseID(pid)
 | 
						|
	if err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
	u := fmt.Sprintf("projects/%s/releases/%s/assets/links", pathEscape(project), tagName)
 | 
						|
 | 
						|
	req, err := s.client.NewRequest(http.MethodGet, u, opt, options)
 | 
						|
	if err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
 | 
						|
	var rls []*ReleaseLink
 | 
						|
	resp, err := s.client.Do(req, &rls)
 | 
						|
	if err != nil {
 | 
						|
		return nil, resp, err
 | 
						|
	}
 | 
						|
 | 
						|
	return rls, resp, err
 | 
						|
}
 | 
						|
 | 
						|
// GetReleaseLink returns a link from release assets.
 | 
						|
//
 | 
						|
// GitLab API docs: https://docs.gitlab.com/ee/api/releases/links.html#get-a-link
 | 
						|
func (s *ReleaseLinksService) GetReleaseLink(pid interface{}, tagName string, link int, options ...RequestOptionFunc) (*ReleaseLink, *Response, error) {
 | 
						|
	project, err := parseID(pid)
 | 
						|
	if err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
	u := fmt.Sprintf("projects/%s/releases/%s/assets/links/%d",
 | 
						|
		pathEscape(project),
 | 
						|
		tagName,
 | 
						|
		link)
 | 
						|
 | 
						|
	req, err := s.client.NewRequest(http.MethodGet, u, nil, options)
 | 
						|
	if err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
 | 
						|
	rl := new(ReleaseLink)
 | 
						|
	resp, err := s.client.Do(req, rl)
 | 
						|
	if err != nil {
 | 
						|
		return nil, resp, err
 | 
						|
	}
 | 
						|
 | 
						|
	return rl, resp, err
 | 
						|
}
 | 
						|
 | 
						|
// CreateReleaseLinkOptions represents CreateReleaseLink() options.
 | 
						|
//
 | 
						|
// GitLab API docs: https://docs.gitlab.com/ee/api/releases/links.html#create-a-link
 | 
						|
type CreateReleaseLinkOptions struct {
 | 
						|
	Name     *string        `url:"name,omitempty" json:"name,omitempty"`
 | 
						|
	URL      *string        `url:"url,omitempty" json:"url,omitempty"`
 | 
						|
	FilePath *string        `url:"filepath,omitempty" json:"filepath,omitempty"`
 | 
						|
	LinkType *LinkTypeValue `url:"link_type,omitempty" json:"link_type,omitempty"`
 | 
						|
}
 | 
						|
 | 
						|
// CreateReleaseLink creates a link.
 | 
						|
//
 | 
						|
// GitLab API docs: https://docs.gitlab.com/ee/api/releases/links.html#create-a-link
 | 
						|
func (s *ReleaseLinksService) CreateReleaseLink(pid interface{}, tagName string, opt *CreateReleaseLinkOptions, options ...RequestOptionFunc) (*ReleaseLink, *Response, error) {
 | 
						|
	project, err := parseID(pid)
 | 
						|
	if err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
	u := fmt.Sprintf("projects/%s/releases/%s/assets/links", pathEscape(project), tagName)
 | 
						|
 | 
						|
	req, err := s.client.NewRequest(http.MethodPost, u, opt, options)
 | 
						|
	if err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
 | 
						|
	rl := new(ReleaseLink)
 | 
						|
	resp, err := s.client.Do(req, rl)
 | 
						|
	if err != nil {
 | 
						|
		return nil, resp, err
 | 
						|
	}
 | 
						|
 | 
						|
	return rl, resp, err
 | 
						|
}
 | 
						|
 | 
						|
// UpdateReleaseLinkOptions represents UpdateReleaseLink() options.
 | 
						|
//
 | 
						|
// You have to specify at least one of Name of URL.
 | 
						|
//
 | 
						|
// GitLab API docs: https://docs.gitlab.com/ee/api/releases/links.html#update-a-link
 | 
						|
type UpdateReleaseLinkOptions struct {
 | 
						|
	Name     *string        `url:"name,omitempty" json:"name,omitempty"`
 | 
						|
	URL      *string        `url:"url,omitempty" json:"url,omitempty"`
 | 
						|
	FilePath *string        `url:"filepath,omitempty" json:"filepath,omitempty"`
 | 
						|
	LinkType *LinkTypeValue `url:"link_type,omitempty" json:"link_type,omitempty"`
 | 
						|
}
 | 
						|
 | 
						|
// UpdateReleaseLink updates an asset link.
 | 
						|
//
 | 
						|
// GitLab API docs: https://docs.gitlab.com/ee/api/releases/links.html#update-a-link
 | 
						|
func (s *ReleaseLinksService) UpdateReleaseLink(pid interface{}, tagName string, link int, opt *UpdateReleaseLinkOptions, options ...RequestOptionFunc) (*ReleaseLink, *Response, error) {
 | 
						|
	project, err := parseID(pid)
 | 
						|
	if err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
	u := fmt.Sprintf("projects/%s/releases/%s/assets/links/%d",
 | 
						|
		pathEscape(project),
 | 
						|
		tagName,
 | 
						|
		link)
 | 
						|
 | 
						|
	req, err := s.client.NewRequest(http.MethodPut, u, opt, options)
 | 
						|
	if err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
 | 
						|
	rl := new(ReleaseLink)
 | 
						|
	resp, err := s.client.Do(req, rl)
 | 
						|
	if err != nil {
 | 
						|
		return nil, resp, err
 | 
						|
	}
 | 
						|
 | 
						|
	return rl, resp, err
 | 
						|
}
 | 
						|
 | 
						|
// DeleteReleaseLink deletes a link from release.
 | 
						|
//
 | 
						|
// GitLab API docs: https://docs.gitlab.com/ee/api/releases/links.html#delete-a-link
 | 
						|
func (s *ReleaseLinksService) DeleteReleaseLink(pid interface{}, tagName string, link int, options ...RequestOptionFunc) (*ReleaseLink, *Response, error) {
 | 
						|
	project, err := parseID(pid)
 | 
						|
	if err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
	u := fmt.Sprintf("projects/%s/releases/%s/assets/links/%d",
 | 
						|
		pathEscape(project),
 | 
						|
		tagName,
 | 
						|
		link,
 | 
						|
	)
 | 
						|
 | 
						|
	req, err := s.client.NewRequest(http.MethodDelete, u, nil, options)
 | 
						|
	if err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
 | 
						|
	rl := new(ReleaseLink)
 | 
						|
	resp, err := s.client.Do(req, rl)
 | 
						|
	if err != nil {
 | 
						|
		return nil, resp, err
 | 
						|
	}
 | 
						|
 | 
						|
	return rl, resp, err
 | 
						|
}
 |