You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

repo.go 9.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package structs
  5. import (
  6. "time"
  7. )
  8. // Permission represents a set of permissions
  9. type Permission struct {
  10. Admin bool `json:"admin"`
  11. Push bool `json:"push"`
  12. Pull bool `json:"pull"`
  13. }
  14. // InternalTracker represents settings for internal tracker
  15. // swagger:model
  16. type InternalTracker struct {
  17. // Enable time tracking (Built-in issue tracker)
  18. EnableTimeTracker bool `json:"enable_time_tracker"`
  19. // Let only contributors track time (Built-in issue tracker)
  20. AllowOnlyContributorsToTrackTime bool `json:"allow_only_contributors_to_track_time"`
  21. // Enable dependencies for issues and pull requests (Built-in issue tracker)
  22. EnableIssueDependencies bool `json:"enable_issue_dependencies"`
  23. }
  24. // ExternalTracker represents settings for external tracker
  25. // swagger:model
  26. type ExternalTracker struct {
  27. // URL of external issue tracker.
  28. ExternalTrackerURL string `json:"external_tracker_url"`
  29. // External Issue Tracker URL Format. Use the placeholders {user}, {repo} and {index} for the username, repository name and issue index.
  30. ExternalTrackerFormat string `json:"external_tracker_format"`
  31. // External Issue Tracker Number Format, either `numeric` or `alphanumeric`
  32. ExternalTrackerStyle string `json:"external_tracker_style"`
  33. }
  34. // ExternalWiki represents setting for external wiki
  35. // swagger:model
  36. type ExternalWiki struct {
  37. // URL of external wiki.
  38. ExternalWikiURL string `json:"external_wiki_url"`
  39. }
  40. // Repository represents a repository
  41. type Repository struct {
  42. ID int64 `json:"id"`
  43. Owner *User `json:"owner"`
  44. Name string `json:"name"`
  45. FullName string `json:"full_name"`
  46. Description string `json:"description"`
  47. Empty bool `json:"empty"`
  48. Private bool `json:"private"`
  49. Fork bool `json:"fork"`
  50. Template bool `json:"template"`
  51. Parent *Repository `json:"parent"`
  52. Mirror bool `json:"mirror"`
  53. Size int `json:"size"`
  54. HTMLURL string `json:"html_url"`
  55. SSHURL string `json:"ssh_url"`
  56. CloneURL string `json:"clone_url"`
  57. OriginalURL string `json:"original_url"`
  58. Website string `json:"website"`
  59. Stars int `json:"stars_count"`
  60. Forks int `json:"forks_count"`
  61. Watchers int `json:"watchers_count"`
  62. OpenIssues int `json:"open_issues_count"`
  63. DefaultBranch string `json:"default_branch"`
  64. Archived bool `json:"archived"`
  65. // swagger:strfmt date-time
  66. Created time.Time `json:"created_at"`
  67. // swagger:strfmt date-time
  68. Updated time.Time `json:"updated_at"`
  69. Permissions *Permission `json:"permissions,omitempty"`
  70. HasIssues bool `json:"has_issues"`
  71. InternalTracker *InternalTracker `json:"internal_tracker,omitempty"`
  72. ExternalTracker *ExternalTracker `json:"external_tracker,omitempty"`
  73. HasWiki bool `json:"has_wiki"`
  74. ExternalWiki *ExternalWiki `json:"external_wiki,omitempty"`
  75. HasPullRequests bool `json:"has_pull_requests"`
  76. IgnoreWhitespaceConflicts bool `json:"ignore_whitespace_conflicts"`
  77. AllowMerge bool `json:"allow_merge_commits"`
  78. AllowRebase bool `json:"allow_rebase"`
  79. AllowRebaseMerge bool `json:"allow_rebase_explicit"`
  80. AllowSquash bool `json:"allow_squash_merge"`
  81. AvatarURL string `json:"avatar_url"`
  82. }
  83. // CreateRepoOption options when creating repository
  84. // swagger:model
  85. type CreateRepoOption struct {
  86. // Name of the repository to create
  87. //
  88. // required: true
  89. // unique: true
  90. Name string `json:"name" binding:"Required;AlphaDashDot;MaxSize(100)"`
  91. // Description of the repository to create
  92. Description string `json:"description" binding:"MaxSize(255)"`
  93. // Whether the repository is private
  94. Private bool `json:"private"`
  95. // Issue Label set to use
  96. IssueLabels string `json:"issue_labels"`
  97. // Whether the repository should be auto-intialized?
  98. AutoInit bool `json:"auto_init"`
  99. // Gitignores to use
  100. Gitignores string `json:"gitignores"`
  101. // License to use
  102. License string `json:"license"`
  103. // Readme of the repository to create
  104. Readme string `json:"readme"`
  105. }
  106. // EditRepoOption options when editing a repository's properties
  107. // swagger:model
  108. type EditRepoOption struct {
  109. // name of the repository
  110. // unique: true
  111. Name *string `json:"name,omitempty" binding:"OmitEmpty;AlphaDashDot;MaxSize(100);"`
  112. // a short description of the repository.
  113. Description *string `json:"description,omitempty" binding:"MaxSize(255)"`
  114. // a URL with more information about the repository.
  115. Website *string `json:"website,omitempty" binding:"MaxSize(255)"`
  116. // either `true` to make the repository private or `false` to make it public.
  117. // Note: you will get a 422 error if the organization restricts changing repository visibility to organization
  118. // owners and a non-owner tries to change the value of private.
  119. Private *bool `json:"private,omitempty"`
  120. // either `true` to make this repository a template or `false` to make it a normal repository
  121. Template *bool `json:"template,omitempty"`
  122. // either `true` to enable issues for this repository or `false` to disable them.
  123. HasIssues *bool `json:"has_issues,omitempty"`
  124. // set this structure to configure internal issue tracker (requires has_issues)
  125. InternalTracker *InternalTracker `json:"internal_tracker,omitempty"`
  126. // set this structure to use external issue tracker (requires has_issues)
  127. ExternalTracker *ExternalTracker `json:"external_tracker,omitempty"`
  128. // either `true` to enable the wiki for this repository or `false` to disable it.
  129. HasWiki *bool `json:"has_wiki,omitempty"`
  130. // set this structure to use external wiki instead of internal (requires has_wiki)
  131. ExternalWiki *ExternalWiki `json:"external_wiki,omitempty"`
  132. // sets the default branch for this repository.
  133. DefaultBranch *string `json:"default_branch,omitempty"`
  134. // either `true` to allow pull requests, or `false` to prevent pull request.
  135. HasPullRequests *bool `json:"has_pull_requests,omitempty"`
  136. // either `true` to ignore whitespace for conflicts, or `false` to not ignore whitespace. `has_pull_requests` must be `true`.
  137. IgnoreWhitespaceConflicts *bool `json:"ignore_whitespace_conflicts,omitempty"`
  138. // either `true` to allow merging pull requests with a merge commit, or `false` to prevent merging pull requests with merge commits. `has_pull_requests` must be `true`.
  139. AllowMerge *bool `json:"allow_merge_commits,omitempty"`
  140. // either `true` to allow rebase-merging pull requests, or `false` to prevent rebase-merging. `has_pull_requests` must be `true`.
  141. AllowRebase *bool `json:"allow_rebase,omitempty"`
  142. // either `true` to allow rebase with explicit merge commits (--no-ff), or `false` to prevent rebase with explicit merge commits. `has_pull_requests` must be `true`.
  143. AllowRebaseMerge *bool `json:"allow_rebase_explicit,omitempty"`
  144. // either `true` to allow squash-merging pull requests, or `false` to prevent squash-merging. `has_pull_requests` must be `true`.
  145. AllowSquash *bool `json:"allow_squash_merge,omitempty"`
  146. // set to `true` to archive this repository.
  147. Archived *bool `json:"archived,omitempty"`
  148. }
  149. // GitServiceType represents a git service
  150. type GitServiceType int
  151. // enumerate all GitServiceType
  152. const (
  153. NotMigrated GitServiceType = iota // 0 not migrated from external sites
  154. PlainGitService // 1 plain git service
  155. GithubService // 2 github.com
  156. GiteaService // 3 gitea service
  157. GitlabService // 4 gitlab service
  158. GogsService // 5 gogs service
  159. )
  160. // Name represents the service type's name
  161. // WARNNING: the name have to be equal to that on goth's library
  162. func (gt GitServiceType) Name() string {
  163. switch gt {
  164. case GithubService:
  165. return "github"
  166. case GiteaService:
  167. return "gitea"
  168. case GitlabService:
  169. return "gitlab"
  170. case GogsService:
  171. return "gogs"
  172. }
  173. return ""
  174. }
  175. var (
  176. // SupportedFullGitService represents all git services supported to migrate issues/labels/prs and etc.
  177. // TODO: add to this list after new git service added
  178. SupportedFullGitService = []GitServiceType{
  179. GithubService,
  180. }
  181. )
  182. // MigrateRepoOption options for migrating a repository from an external service
  183. type MigrateRepoOption struct {
  184. // required: true
  185. CloneAddr string `json:"clone_addr" binding:"Required"`
  186. AuthUsername string `json:"auth_username"`
  187. AuthPassword string `json:"auth_password"`
  188. // required: true
  189. UID int `json:"uid" binding:"Required"`
  190. // required: true
  191. RepoName string `json:"repo_name" binding:"Required"`
  192. Mirror bool `json:"mirror"`
  193. Private bool `json:"private"`
  194. Description string `json:"description"`
  195. OriginalURL string
  196. GitServiceType GitServiceType
  197. Wiki bool
  198. Issues bool
  199. Milestones bool
  200. Labels bool
  201. Releases bool
  202. Comments bool
  203. PullRequests bool
  204. MigrateToRepoID int64
  205. }