mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 10:44:12 +01:00 
			
		
		
		
	* Added API endpoint ListAllCommits (/repos/{owner}/{repo}/git/commits)
Signed-off-by: Mike Schwörer <mailport@mikescher.de>
* Fixed failing drone build
Signed-off-by: Mike Schwörer <mailport@mikescher.de>
* Implemented requested changes (PR reviews)
Signed-off-by: Mike Schwörer <mailport@mikescher.de>
* gofmt
Signed-off-by: Mike Schwörer <mailport@mikescher.de>
* Changed api route from "/repos/{owner}/{repo}/git/commits" to "/repos/{owner}/{repo}/commits"
* Removed unnecessary line
* better error message when git repo is empty
* make generate-swagger
* fixed removed return
* Update routers/api/v1/repo/commits.go
Co-Authored-By: Lauris BH <lauris@nix.lv>
* Update routers/api/v1/repo/commits.go
Co-Authored-By: Lauris BH <lauris@nix.lv>
* go fmt
* Refactored common code into ToCommit()
* made toCommit not exported
* added check for userCache == nil
		
	
			
		
			
				
	
	
		
			249 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			249 lines
		
	
	
		
			4.7 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 swagger
 | 
						|
 | 
						|
import (
 | 
						|
	api "code.gitea.io/gitea/modules/structs"
 | 
						|
)
 | 
						|
 | 
						|
// Repository
 | 
						|
// swagger:response Repository
 | 
						|
type swaggerResponseRepository struct {
 | 
						|
	// in:body
 | 
						|
	Body api.Repository `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// RepositoryList
 | 
						|
// swagger:response RepositoryList
 | 
						|
type swaggerResponseRepositoryList struct {
 | 
						|
	// in:body
 | 
						|
	Body []api.Repository `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// Branch
 | 
						|
// swagger:response Branch
 | 
						|
type swaggerResponseBranch struct {
 | 
						|
	// in:body
 | 
						|
	Body api.Branch `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// BranchList
 | 
						|
// swagger:response BranchList
 | 
						|
type swaggerResponseBranchList struct {
 | 
						|
	// in:body
 | 
						|
	Body []api.Branch `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// TagList
 | 
						|
// swagger:response TagList
 | 
						|
type swaggerResponseTagList struct {
 | 
						|
	// in:body
 | 
						|
	Body []api.Tag `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// Tag
 | 
						|
// swagger:response Tag
 | 
						|
type swaggerResponseTag struct {
 | 
						|
	// in:body
 | 
						|
	Body api.Tag `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// AnnotatedTag
 | 
						|
// swagger:response AnnotatedTag
 | 
						|
type swaggerResponseAnnotatedTag struct {
 | 
						|
	// in:body
 | 
						|
	Body api.AnnotatedTag `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// Reference
 | 
						|
// swagger:response Reference
 | 
						|
type swaggerResponseReference struct {
 | 
						|
	// in:body
 | 
						|
	Body api.Reference `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// ReferenceList
 | 
						|
// swagger:response ReferenceList
 | 
						|
type swaggerResponseReferenceList struct {
 | 
						|
	// in:body
 | 
						|
	Body []api.Reference `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// Hook
 | 
						|
// swagger:response Hook
 | 
						|
type swaggerResponseHook struct {
 | 
						|
	// in:body
 | 
						|
	Body api.Hook `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// HookList
 | 
						|
// swagger:response HookList
 | 
						|
type swaggerResponseHookList struct {
 | 
						|
	// in:body
 | 
						|
	Body []api.Hook `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// GitHook
 | 
						|
// swagger:response GitHook
 | 
						|
type swaggerResponseGitHook struct {
 | 
						|
	// in:body
 | 
						|
	Body api.GitHook `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// GitHookList
 | 
						|
// swagger:response GitHookList
 | 
						|
type swaggerResponseGitHookList struct {
 | 
						|
	// in:body
 | 
						|
	Body []api.GitHook `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// Release
 | 
						|
// swagger:response Release
 | 
						|
type swaggerResponseRelease struct {
 | 
						|
	// in:body
 | 
						|
	Body api.Release `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// ReleaseList
 | 
						|
// swagger:response ReleaseList
 | 
						|
type swaggerResponseReleaseList struct {
 | 
						|
	// in:body
 | 
						|
	Body []api.Release `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// PullRequest
 | 
						|
// swagger:response PullRequest
 | 
						|
type swaggerResponsePullRequest struct {
 | 
						|
	// in:body
 | 
						|
	Body api.PullRequest `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// PullRequestList
 | 
						|
// swagger:response PullRequestList
 | 
						|
type swaggerResponsePullRequestList struct {
 | 
						|
	// in:body
 | 
						|
	Body []api.PullRequest `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// Status
 | 
						|
// swagger:response Status
 | 
						|
type swaggerResponseStatus struct {
 | 
						|
	// in:body
 | 
						|
	Body api.Status `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// StatusList
 | 
						|
// swagger:response StatusList
 | 
						|
type swaggerResponseStatusList struct {
 | 
						|
	// in:body
 | 
						|
	Body []api.Status `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// WatchInfo
 | 
						|
// swagger:response WatchInfo
 | 
						|
type swaggerResponseWatchInfo struct {
 | 
						|
	// in:body
 | 
						|
	Body api.WatchInfo `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// SearchResults
 | 
						|
// swagger:response SearchResults
 | 
						|
type swaggerResponseSearchResults struct {
 | 
						|
	// in:body
 | 
						|
	Body api.SearchResults `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// AttachmentList
 | 
						|
// swagger:response AttachmentList
 | 
						|
type swaggerResponseAttachmentList struct {
 | 
						|
	//in: body
 | 
						|
	Body []api.Attachment `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// Attachment
 | 
						|
// swagger:response Attachment
 | 
						|
type swaggerResponseAttachment struct {
 | 
						|
	//in: body
 | 
						|
	Body api.Attachment `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// GitTreeResponse
 | 
						|
// swagger:response GitTreeResponse
 | 
						|
type swaggerGitTreeResponse struct {
 | 
						|
	//in: body
 | 
						|
	Body api.GitTreeResponse `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// GitBlobResponse
 | 
						|
// swagger:response GitBlobResponse
 | 
						|
type swaggerGitBlobResponse struct {
 | 
						|
	//in: body
 | 
						|
	Body api.GitBlobResponse `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// Commit
 | 
						|
// swagger:response Commit
 | 
						|
type swaggerCommit struct {
 | 
						|
	//in: body
 | 
						|
	Body api.Commit `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// CommitList
 | 
						|
// swagger:response CommitList
 | 
						|
type swaggerCommitList struct {
 | 
						|
	// The current page
 | 
						|
	Page int `json:"X-Page"`
 | 
						|
 | 
						|
	// Commits per page
 | 
						|
	PerPage int `json:"X-PerPage"`
 | 
						|
 | 
						|
	// Total commit count
 | 
						|
	Total int `json:"X-Total"`
 | 
						|
 | 
						|
	// Total number of pages
 | 
						|
	PageCount int `json:"X-PageCount"`
 | 
						|
 | 
						|
	// True if there is another page
 | 
						|
	HasMore bool `json:"X-HasMore"`
 | 
						|
 | 
						|
	//in: body
 | 
						|
	Body []api.Commit `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// EmptyRepository
 | 
						|
// swagger:response EmptyRepository
 | 
						|
type swaggerEmptyRepository struct {
 | 
						|
	//in: body
 | 
						|
	Body api.APIError `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// FileResponse
 | 
						|
// swagger:response FileResponse
 | 
						|
type swaggerFileResponse struct {
 | 
						|
	//in: body
 | 
						|
	Body api.FileResponse `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// ContentsResponse
 | 
						|
// swagger:response ContentsResponse
 | 
						|
type swaggerContentsResponse struct {
 | 
						|
	//in: body
 | 
						|
	Body api.ContentsResponse `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// ContentsListResponse
 | 
						|
// swagger:response ContentsListResponse
 | 
						|
type swaggerContentsListResponse struct {
 | 
						|
	// in:body
 | 
						|
	Body []api.ContentsResponse `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// FileDeleteResponse
 | 
						|
// swagger:response FileDeleteResponse
 | 
						|
type swaggerFileDeleteResponse struct {
 | 
						|
	//in: body
 | 
						|
	Body api.FileDeleteResponse `json:"body"`
 | 
						|
}
 |