repo_form.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  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. "github.com/go-macaron/binding"
  10. "gopkg.in/macaron.v1"
  11. "github.com/gogits/gogs/models"
  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. TrackerURLFormat string
  86. TrackerIssueStyle string
  87. EnablePulls bool
  88. }
  89. func (f *RepoSettingForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  90. return validate(errs, ctx.Data, f, ctx.Locale)
  91. }
  92. // __ __ ___. .__ .__ __
  93. // / \ / \ ____\_ |__ | |__ | |__ ____ | | __
  94. // \ \/\/ // __ \| __ \| | \| | \ / _ \| |/ /
  95. // \ /\ ___/| \_\ \ Y \ Y ( <_> ) <
  96. // \__/\ / \___ >___ /___| /___| /\____/|__|_ \
  97. // \/ \/ \/ \/ \/ \/
  98. type WebhookForm struct {
  99. Events string
  100. Create bool
  101. Push bool
  102. PullRequest bool
  103. Active bool
  104. }
  105. func (f WebhookForm) PushOnly() bool {
  106. return f.Events == "push_only"
  107. }
  108. func (f WebhookForm) SendEverything() bool {
  109. return f.Events == "send_everything"
  110. }
  111. func (f WebhookForm) ChooseEvents() bool {
  112. return f.Events == "choose_events"
  113. }
  114. type NewWebhookForm struct {
  115. PayloadURL string `binding:"Required;Url"`
  116. ContentType int `binding:"Required"`
  117. Secret string
  118. WebhookForm
  119. }
  120. func (f *NewWebhookForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  121. return validate(errs, ctx.Data, f, ctx.Locale)
  122. }
  123. type NewSlackHookForm struct {
  124. PayloadURL string `binding:"Required;Url"`
  125. Channel string `binding:"Required"`
  126. Username string
  127. IconURL string
  128. Color string
  129. WebhookForm
  130. }
  131. func (f *NewSlackHookForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  132. return validate(errs, ctx.Data, f, ctx.Locale)
  133. }
  134. // .___
  135. // | | ______ ________ __ ____
  136. // | |/ ___// ___/ | \_/ __ \
  137. // | |\___ \ \___ \| | /\ ___/
  138. // |___/____ >____ >____/ \___ >
  139. // \/ \/ \/
  140. type CreateIssueForm struct {
  141. Title string `binding:"Required;MaxSize(255)"`
  142. LabelIDs string `form:"label_ids"`
  143. MilestoneID int64
  144. AssigneeID int64
  145. Content string
  146. Files []string
  147. }
  148. func (f *CreateIssueForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  149. return validate(errs, ctx.Data, f, ctx.Locale)
  150. }
  151. type CreateCommentForm struct {
  152. Content string
  153. Status string `binding:"OmitEmpty;In(reopen,close)"`
  154. Files []string
  155. }
  156. func (f *CreateCommentForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  157. return validate(errs, ctx.Data, f, ctx.Locale)
  158. }
  159. // _____ .__.__ __
  160. // / \ |__| | ____ _______/ |_ ____ ____ ____
  161. // / \ / \| | | _/ __ \ / ___/\ __\/ _ \ / \_/ __ \
  162. // / Y \ | |_\ ___/ \___ \ | | ( <_> ) | \ ___/
  163. // \____|__ /__|____/\___ >____ > |__| \____/|___| /\___ >
  164. // \/ \/ \/ \/ \/
  165. type CreateMilestoneForm struct {
  166. Title string `binding:"Required;MaxSize(50)"`
  167. Content string
  168. Deadline string
  169. }
  170. func (f *CreateMilestoneForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  171. return validate(errs, ctx.Data, f, ctx.Locale)
  172. }
  173. // .____ ___. .__
  174. // | | _____ \_ |__ ____ | |
  175. // | | \__ \ | __ \_/ __ \| |
  176. // | |___ / __ \| \_\ \ ___/| |__
  177. // |_______ (____ /___ /\___ >____/
  178. // \/ \/ \/ \/
  179. type CreateLabelForm struct {
  180. ID int64
  181. Title string `binding:"Required;MaxSize(50)" locale:"repo.issues.label_name"`
  182. Color string `binding:"Required;Size(7)" locale:"repo.issues.label_color"`
  183. }
  184. func (f *CreateLabelForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  185. return validate(errs, ctx.Data, f, ctx.Locale)
  186. }
  187. // Label templates
  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. TreeName 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. }