* Add Attachment API * repos/:owner/:repo/releases (add attachments) * repos/:owner/:repo/releases/:id (add attachments) * repos/:owner/:repo/releases/:id/attachments * repos/:owner/:repo/releases/:id/attachments/:attachment_id Signed-off-by: Jonas Franz <info@jonasfranz.de> * Add unit tests for new attachment functions Fix comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * fix lint * Update vendor.json Signed-off-by: Jonas Franz <info@jonasfranz.software> * remove version of sdk Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix unit tests Add missing license header Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add CreateReleaseAttachment Add EditReleaseAttachment Add DeleteReleaseAttachment Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add filename query parameter for choosing another name for an attachment Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix order of imports Signed-off-by: Jonas Franz <info@jonasfranz.software> * Restricting updatable attachment columns Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update go-sdk Replace Attachments with Assets Signed-off-by: Jonas Franz <info@jonasfranz.de> * Update go-sdk Signed-off-by: Jonas Franz <info@jonasfranz.de> * Updating go-sdk and regenerating swagger Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add missing file of go-sdk Signed-off-by: Jonas Franz <info@jonasfranz.software> * Change origin of code.gitea.io/sdk to code.gitea.io/sdk Update code.gitea.io/sdk Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update swagger Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update updateAttachment
		
			
				
	
	
		
			69 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2017 The Gitea Authors. All rights reserved.
 | |
| // Use of this source code is governed by a MIT-style
 | |
| // license that can be found in the LICENSE file.
 | |
| 
 | |
| package gitea
 | |
| 
 | |
| import (
 | |
| 	"bytes"
 | |
| 	"encoding/json"
 | |
| 	"fmt"
 | |
| 	"time"
 | |
| )
 | |
| 
 | |
| // TrackedTime worked time for an issue / pr
 | |
| type TrackedTime struct {
 | |
| 	ID int64 `json:"id"`
 | |
| 	// swagger:strfmt date-time
 | |
| 	Created time.Time `json:"created"`
 | |
| 	// Time in seconds
 | |
| 	Time    int64 `json:"time"`
 | |
| 	UserID  int64 `json:"user_id"`
 | |
| 	IssueID int64 `json:"issue_id"`
 | |
| }
 | |
| 
 | |
| // TrackedTimes represent a list of tracked times
 | |
| type TrackedTimes []*TrackedTime
 | |
| 
 | |
| // GetUserTrackedTimes list tracked times of a user
 | |
| func (c *Client) GetUserTrackedTimes(owner, repo, user string) (TrackedTimes, error) {
 | |
| 	times := make(TrackedTimes, 0, 10)
 | |
| 	return times, c.getParsedResponse("GET", fmt.Sprintf("/repos/%s/%s/times/%s", owner, repo, user), nil, nil, ×)
 | |
| }
 | |
| 
 | |
| // GetRepoTrackedTimes list tracked times of a repository
 | |
| func (c *Client) GetRepoTrackedTimes(owner, repo string) (TrackedTimes, error) {
 | |
| 	times := make(TrackedTimes, 0, 10)
 | |
| 	return times, c.getParsedResponse("GET", fmt.Sprintf("/repos/%s/%s/times", owner, repo), nil, nil, ×)
 | |
| }
 | |
| 
 | |
| // GetMyTrackedTimes list tracked times of the current user
 | |
| func (c *Client) GetMyTrackedTimes() (TrackedTimes, error) {
 | |
| 	times := make(TrackedTimes, 0, 10)
 | |
| 	return times, c.getParsedResponse("GET", "/user/times", nil, nil, ×)
 | |
| }
 | |
| 
 | |
| // AddTimeOption options for adding time to an issue
 | |
| type AddTimeOption struct {
 | |
| 	// time in seconds
 | |
| 	// required: true
 | |
| 	Time int64 `json:"time" binding:"Required"`
 | |
| }
 | |
| 
 | |
| // AddTime adds time to issue with the given index
 | |
| func (c *Client) AddTime(owner, repo string, index int64, opt AddTimeOption) (*TrackedTime, error) {
 | |
| 	body, err := json.Marshal(&opt)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	t := new(TrackedTime)
 | |
| 	return t, c.getParsedResponse("POST", fmt.Sprintf("/repos/%s/%s/issues/%d/times", owner, repo, index),
 | |
| 		jsonHeader, bytes.NewReader(body), t)
 | |
| }
 | |
| 
 | |
| // ListTrackedTimes get tracked times of one issue via issue id
 | |
| func (c *Client) ListTrackedTimes(owner, repo string, index int64) (TrackedTimes, error) {
 | |
| 	times := make(TrackedTimes, 0, 5)
 | |
| 	return times, c.getParsedResponse("GET", fmt.Sprintf("/repos/%s/%s/issues/%d/times", owner, repo, index), nil, nil, ×)
 | |
| }
 |