mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 21:16:26 +01:00 
			
		
		
		
	* use different structs for MigrateRepoOptions on UI and API * Fix TokenAuth and rename UID to an understandable Name * fix swagger doc * simplify & mk redable * R E F A C T O R: migration has now internal 3 structs to store its options: * the Options for WebUI: modules/auth/repo_form.go * the Options for API: modules/structs/repo.go * the option struct with after validation for internal prossessing: modules/migrations/base/options.go * Copyright Header * Deprecate UID - add RepoOwner * adopt repo.go -> migrate.go * add comment about each struct purpose * lint
		
			
				
	
	
		
			40 lines
		
	
	
		
			983 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			983 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2020 The Gitea Authors. All rights reserved.
 | 
						|
// Copyright 2016 The Gogs 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 convert
 | 
						|
 | 
						|
import (
 | 
						|
	"strings"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/modules/setting"
 | 
						|
	"code.gitea.io/gitea/modules/structs"
 | 
						|
)
 | 
						|
 | 
						|
// ToCorrectPageSize makes sure page size is in allowed range.
 | 
						|
func ToCorrectPageSize(size int) int {
 | 
						|
	if size <= 0 {
 | 
						|
		size = setting.API.DefaultPagingNum
 | 
						|
	} else if size > setting.API.MaxResponseItems {
 | 
						|
		size = setting.API.MaxResponseItems
 | 
						|
	}
 | 
						|
	return size
 | 
						|
}
 | 
						|
 | 
						|
// ToGitServiceType return GitServiceType based on string
 | 
						|
func ToGitServiceType(value string) structs.GitServiceType {
 | 
						|
	switch strings.ToLower(value) {
 | 
						|
	case "github":
 | 
						|
		return structs.GithubService
 | 
						|
	case "gitea":
 | 
						|
		return structs.GiteaService
 | 
						|
	case "gitlab":
 | 
						|
		return structs.GitlabService
 | 
						|
	case "gogs":
 | 
						|
		return structs.GogsService
 | 
						|
	default:
 | 
						|
		return structs.PlainGitService
 | 
						|
	}
 | 
						|
}
 |