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_form.go 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  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 auth
  5. import (
  6. "net/url"
  7. "strings"
  8. "github.com/Unknwon/com"
  9. "code.gitea.io/gitea/models"
  10. "github.com/go-macaron/binding"
  11. macaron "gopkg.in/macaron.v1"
  12. )
  13. // _______________________________________ _________.______________________ _______________.___.
  14. // \______ \_ _____/\______ \_____ \ / _____/| \__ ___/\_____ \\______ \__ | |
  15. // | _/| __)_ | ___// | \ \_____ \ | | | | / | \| _// | |
  16. // | | \| \ | | / | \/ \| | | | / | \ | \\____ |
  17. // |____|_ /_______ / |____| \_______ /_______ /|___| |____| \_______ /____|_ // ______|
  18. // \/ \/ \/ \/ \/ \/ \/
  19. type CreateRepoForm struct {
  20. Uid int64 `binding:"Required"`
  21. RepoName string `binding:"Required;AlphaDashDot;MaxSize(100)"`
  22. Private bool
  23. Description string `binding:"MaxSize(255)"`
  24. AutoInit bool
  25. Gitignores string
  26. License string
  27. Readme string
  28. }
  29. func (f *CreateRepoForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  30. return validate(errs, ctx.Data, f, ctx.Locale)
  31. }
  32. type MigrateRepoForm struct {
  33. CloneAddr string `json:"clone_addr" binding:"Required"`
  34. AuthUsername string `json:"auth_username"`
  35. AuthPassword string `json:"auth_password"`
  36. Uid int64 `json:"uid" binding:"Required"`
  37. RepoName string `json:"repo_name" binding:"Required;AlphaDashDot;MaxSize(100)"`
  38. Mirror bool `json:"mirror"`
  39. Private bool `json:"private"`
  40. Description string `json:"description" binding:"MaxSize(255)"`
  41. }
  42. func (f *MigrateRepoForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  43. return validate(errs, ctx.Data, f, ctx.Locale)
  44. }
  45. // ParseRemoteAddr checks if given remote address is valid,
  46. // and returns composed URL with needed username and passowrd.
  47. // It also checks if given user has permission when remote address
  48. // is actually a local path.
  49. func (f MigrateRepoForm) ParseRemoteAddr(user *models.User) (string, error) {
  50. remoteAddr := strings.TrimSpace(f.CloneAddr)
  51. // Remote address can be HTTP/HTTPS/Git URL or local path.
  52. if strings.HasPrefix(remoteAddr, "http://") ||
  53. strings.HasPrefix(remoteAddr, "https://") ||
  54. strings.HasPrefix(remoteAddr, "git://") {
  55. u, err := url.Parse(remoteAddr)
  56. if err != nil {
  57. return "", models.ErrInvalidCloneAddr{IsURLError: true}
  58. }
  59. if len(f.AuthUsername)+len(f.AuthPassword) > 0 {
  60. u.User = url.UserPassword(f.AuthUsername, f.AuthPassword)
  61. }
  62. remoteAddr = u.String()
  63. } else if !user.CanImportLocal() {
  64. return "", models.ErrInvalidCloneAddr{IsPermissionDenied: true}
  65. } else if !com.IsDir(remoteAddr) {
  66. return "", models.ErrInvalidCloneAddr{IsInvalidPath: true}
  67. }
  68. return remoteAddr, nil
  69. }
  70. type RepoSettingForm struct {
  71. RepoName string `binding:"Required;AlphaDashDot;MaxSize(100)"`
  72. Description string `binding:"MaxSize(255)"`
  73. Website string `binding:"Url;MaxSize(100)"`
  74. Branch string
  75. Interval int
  76. MirrorAddress string
  77. Private bool
  78. EnablePrune bool
  79. // Advanced settings
  80. EnableWiki bool
  81. EnableExternalWiki bool
  82. ExternalWikiURL string
  83. EnableIssues bool
  84. EnableExternalTracker bool
  85. ExternalTrackerURL string
  86. TrackerURLFormat string
  87. TrackerIssueStyle string
  88. EnablePulls bool
  89. }
  90. func (f *RepoSettingForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  91. return validate(errs, ctx.Data, f, ctx.Locale)
  92. }
  93. // __ __ ___. .__ .__ __
  94. // / \ / \ ____\_ |__ | |__ | |__ ____ | | __
  95. // \ \/\/ // __ \| __ \| | \| | \ / _ \| |/ /
  96. // \ /\ ___/| \_\ \ Y \ Y ( <_> ) <
  97. // \__/\ / \___ >___ /___| /___| /\____/|__|_ \
  98. // \/ \/ \/ \/ \/ \/
  99. type WebhookForm struct {
  100. Events string
  101. Create bool
  102. Push bool
  103. PullRequest bool
  104. Active bool
  105. }
  106. func (f WebhookForm) PushOnly() bool {
  107. return f.Events == "push_only"
  108. }
  109. func (f WebhookForm) SendEverything() bool {
  110. return f.Events == "send_everything"
  111. }
  112. func (f WebhookForm) ChooseEvents() bool {
  113. return f.Events == "choose_events"
  114. }
  115. type NewWebhookForm struct {
  116. PayloadURL string `binding:"Required;Url"`
  117. ContentType int `binding:"Required"`
  118. Secret string
  119. WebhookForm
  120. }
  121. func (f *NewWebhookForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  122. return validate(errs, ctx.Data, f, ctx.Locale)
  123. }
  124. type NewSlackHookForm struct {
  125. PayloadURL string `binding:"Required;Url"`
  126. Channel string `binding:"Required"`
  127. Username string
  128. IconURL string
  129. Color string
  130. WebhookForm
  131. }
  132. func (f *NewSlackHookForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  133. return validate(errs, ctx.Data, f, ctx.Locale)
  134. }
  135. // .___
  136. // | | ______ ________ __ ____
  137. // | |/ ___// ___/ | \_/ __ \
  138. // | |\___ \ \___ \| | /\ ___/
  139. // |___/____ >____ >____/ \___ >
  140. // \/ \/ \/
  141. type CreateIssueForm struct {
  142. Title string `binding:"Required;MaxSize(255)"`
  143. LabelIDs string `form:"label_ids"`
  144. MilestoneID int64
  145. AssigneeID int64
  146. Content string
  147. Files []string
  148. }
  149. func (f *CreateIssueForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  150. return validate(errs, ctx.Data, f, ctx.Locale)
  151. }
  152. type CreateCommentForm struct {
  153. Content string
  154. Status string `binding:"OmitEmpty;In(reopen,close)"`
  155. Files []string
  156. }
  157. func (f *CreateCommentForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  158. return validate(errs, ctx.Data, f, ctx.Locale)
  159. }
  160. // _____ .__.__ __
  161. // / \ |__| | ____ _______/ |_ ____ ____ ____
  162. // / \ / \| | | _/ __ \ / ___/\ __\/ _ \ / \_/ __ \
  163. // / Y \ | |_\ ___/ \___ \ | | ( <_> ) | \ ___/
  164. // \____|__ /__|____/\___ >____ > |__| \____/|___| /\___ >
  165. // \/ \/ \/ \/ \/
  166. type CreateMilestoneForm struct {
  167. Title string `binding:"Required;MaxSize(50)"`
  168. Content string
  169. Deadline string
  170. }
  171. func (f *CreateMilestoneForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  172. return validate(errs, ctx.Data, f, ctx.Locale)
  173. }
  174. // .____ ___. .__
  175. // | | _____ \_ |__ ____ | |
  176. // | | \__ \ | __ \_/ __ \| |
  177. // | |___ / __ \| \_\ \ ___/| |__
  178. // |_______ (____ /___ /\___ >____/
  179. // \/ \/ \/ \/
  180. type CreateLabelForm struct {
  181. ID int64
  182. Title string `binding:"Required;MaxSize(50)" locale:"repo.issues.label_name"`
  183. Color string `binding:"Required;Size(7)" locale:"repo.issues.label_color"`
  184. }
  185. func (f *CreateLabelForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  186. return validate(errs, ctx.Data, f, ctx.Locale)
  187. }
  188. type InitializeLabelsForm struct {
  189. TemplateName string `binding:"Required"`
  190. }
  191. func (f *InitializeLabelsForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  192. return validate(errs, ctx.Data, f, ctx.Locale)
  193. }
  194. // __________ .__
  195. // \______ \ ____ | | ____ _____ ______ ____
  196. // | _// __ \| | _/ __ \\__ \ / ___// __ \
  197. // | | \ ___/| |_\ ___/ / __ \_\___ \\ ___/
  198. // |____|_ /\___ >____/\___ >____ /____ >\___ >
  199. // \/ \/ \/ \/ \/ \/
  200. type NewReleaseForm struct {
  201. TagName string `binding:"Required"`
  202. Target string `form:"tag_target" binding:"Required"`
  203. Title string `binding:"Required"`
  204. Content string
  205. Draft string
  206. Prerelease bool
  207. }
  208. func (f *NewReleaseForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  209. return validate(errs, ctx.Data, f, ctx.Locale)
  210. }
  211. type EditReleaseForm struct {
  212. Title string `form:"title" binding:"Required"`
  213. Content string `form:"content"`
  214. Draft string `form:"draft"`
  215. Prerelease bool `form:"prerelease"`
  216. }
  217. func (f *EditReleaseForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  218. return validate(errs, ctx.Data, f, ctx.Locale)
  219. }
  220. // __ __.__ __ .__
  221. // / \ / \__| | _|__|
  222. // \ \/\/ / | |/ / |
  223. // \ /| | <| |
  224. // \__/\ / |__|__|_ \__|
  225. // \/ \/
  226. type NewWikiForm struct {
  227. OldTitle string
  228. Title string `binding:"Required"`
  229. Content string `binding:"Required"`
  230. Message string
  231. }
  232. // FIXME: use code generation to generate this method.
  233. func (f *NewWikiForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  234. return validate(errs, ctx.Data, f, ctx.Locale)
  235. }
  236. // ___________ .___.__ __
  237. // \_ _____/ __| _/|__|/ |_
  238. // | __)_ / __ | | \ __\
  239. // | \/ /_/ | | || |
  240. // /_______ /\____ | |__||__|
  241. // \/ \/
  242. type EditRepoFileForm struct {
  243. TreePath string `binding:"Required;MaxSize(500)"`
  244. Content string `binding:"Required"`
  245. CommitSummary string `binding:"MaxSize(100)"`
  246. CommitMessage string
  247. CommitChoice string `binding:"Required;MaxSize(50)"`
  248. NewBranchName string `binding:"AlphaDashDot;MaxSize(100)"`
  249. LastCommit string
  250. }
  251. func (f *EditRepoFileForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  252. return validate(errs, ctx.Data, f, ctx.Locale)
  253. }
  254. type EditPreviewDiffForm struct {
  255. Content string
  256. }
  257. func (f *EditPreviewDiffForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  258. return validate(errs, ctx.Data, f, ctx.Locale)
  259. }
  260. // ____ ___ .__ .___
  261. // | | \______ | | _________ __| _/
  262. // | | /\____ \| | / _ \__ \ / __ |
  263. // | | / | |_> > |_( <_> ) __ \_/ /_/ |
  264. // |______/ | __/|____/\____(____ /\____ |
  265. // |__| \/ \/
  266. //
  267. type UploadRepoFileForm struct {
  268. TreePath string `binding:"MaxSize(500)"`
  269. CommitSummary string `binding:"MaxSize(100)"`
  270. CommitMessage string
  271. CommitChoice string `binding:"Required;MaxSize(50)"`
  272. NewBranchName string `binding:"AlphaDashDot;MaxSize(100)"`
  273. Files []string
  274. }
  275. func (f *UploadRepoFileForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  276. return validate(errs, ctx.Data, f, ctx.Locale)
  277. }
  278. type RemoveUploadFileForm struct {
  279. File string `binding:"Required;MaxSize(50)"`
  280. }
  281. func (f *RemoveUploadFileForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  282. return validate(errs, ctx.Data, f, ctx.Locale)
  283. }
  284. // ________ .__ __
  285. // \______ \ ____ | | _____/ |_ ____
  286. // | | \_/ __ \| | _/ __ \ __\/ __ \
  287. // | ` \ ___/| |_\ ___/| | \ ___/
  288. // /_______ /\___ >____/\___ >__| \___ >
  289. // \/ \/ \/ \/
  290. type DeleteRepoFileForm struct {
  291. CommitSummary string `binding:"MaxSize(100)"`
  292. CommitMessage string
  293. CommitChoice string `binding:"Required;MaxSize(50)"`
  294. NewBranchName string `binding:"AlphaDashDot;MaxSize(100)"`
  295. }
  296. func (f *DeleteRepoFileForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  297. return validate(errs, ctx.Data, f, ctx.Locale)
  298. }