repo_form.go 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  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 := 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. // Advanced settings
  79. EnableWiki bool
  80. EnableIssues bool
  81. EnableExternalTracker bool
  82. TrackerURLFormat string
  83. EnablePulls bool
  84. }
  85. func (f *RepoSettingForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  86. return validate(errs, ctx.Data, f, ctx.Locale)
  87. }
  88. // __ __ ___. .__ .__ __
  89. // / \ / \ ____\_ |__ | |__ | |__ ____ | | __
  90. // \ \/\/ // __ \| __ \| | \| | \ / _ \| |/ /
  91. // \ /\ ___/| \_\ \ Y \ Y ( <_> ) <
  92. // \__/\ / \___ >___ /___| /___| /\____/|__|_ \
  93. // \/ \/ \/ \/ \/ \/
  94. type WebhookForm struct {
  95. Events string
  96. Create bool
  97. Push bool
  98. Active bool
  99. }
  100. func (f WebhookForm) PushOnly() bool {
  101. return f.Events == "push_only"
  102. }
  103. func (f WebhookForm) SendEverything() bool {
  104. return f.Events == "send_everything"
  105. }
  106. func (f WebhookForm) ChooseEvents() bool {
  107. return f.Events == "choose_events"
  108. }
  109. type NewWebhookForm struct {
  110. PayloadURL string `binding:"Required;Url"`
  111. ContentType int `binding:"Required"`
  112. Secret string
  113. WebhookForm
  114. }
  115. func (f *NewWebhookForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  116. return validate(errs, ctx.Data, f, ctx.Locale)
  117. }
  118. type NewSlackHookForm struct {
  119. PayloadURL string `binding:"Required;Url`
  120. Channel string `binding:"Required"`
  121. Username string
  122. IconURL string
  123. Color string
  124. WebhookForm
  125. }
  126. func (f *NewSlackHookForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  127. return validate(errs, ctx.Data, f, ctx.Locale)
  128. }
  129. // .___
  130. // | | ______ ________ __ ____
  131. // | |/ ___// ___/ | \_/ __ \
  132. // | |\___ \ \___ \| | /\ ___/
  133. // |___/____ >____ >____/ \___ >
  134. // \/ \/ \/
  135. type CreateIssueForm struct {
  136. Title string `binding:"Required;MaxSize(255)"`
  137. LabelIDs string `form:"label_ids"`
  138. MilestoneID int64
  139. AssigneeID int64
  140. Content string
  141. Attachments []string
  142. }
  143. func (f *CreateIssueForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  144. return validate(errs, ctx.Data, f, ctx.Locale)
  145. }
  146. type CreateCommentForm struct {
  147. Content string
  148. Status string `binding:"OmitEmpty;In(reopen,close)"`
  149. Attachments []string
  150. }
  151. func (f *CreateCommentForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  152. return validate(errs, ctx.Data, f, ctx.Locale)
  153. }
  154. // _____ .__.__ __
  155. // / \ |__| | ____ _______/ |_ ____ ____ ____
  156. // / \ / \| | | _/ __ \ / ___/\ __\/ _ \ / \_/ __ \
  157. // / Y \ | |_\ ___/ \___ \ | | ( <_> ) | \ ___/
  158. // \____|__ /__|____/\___ >____ > |__| \____/|___| /\___ >
  159. // \/ \/ \/ \/ \/
  160. type CreateMilestoneForm struct {
  161. Title string `binding:"Required;MaxSize(50)"`
  162. Content string
  163. Deadline string
  164. }
  165. func (f *CreateMilestoneForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  166. return validate(errs, ctx.Data, f, ctx.Locale)
  167. }
  168. // .____ ___. .__
  169. // | | _____ \_ |__ ____ | |
  170. // | | \__ \ | __ \_/ __ \| |
  171. // | |___ / __ \| \_\ \ ___/| |__
  172. // |_______ (____ /___ /\___ >____/
  173. // \/ \/ \/ \/
  174. type CreateLabelForm struct {
  175. ID int64
  176. Title string `binding:"Required;MaxSize(50)" locale:"repo.issues.label_name"`
  177. Color string `binding:"Required;Size(7)" locale:"repo.issues.label_color"`
  178. }
  179. func (f *CreateLabelForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  180. return validate(errs, ctx.Data, f, ctx.Locale)
  181. }
  182. // __________ .__
  183. // \______ \ ____ | | ____ _____ ______ ____
  184. // | _// __ \| | _/ __ \\__ \ / ___// __ \
  185. // | | \ ___/| |_\ ___/ / __ \_\___ \\ ___/
  186. // |____|_ /\___ >____/\___ >____ /____ >\___ >
  187. // \/ \/ \/ \/ \/ \/
  188. type NewReleaseForm struct {
  189. TagName string `binding:"Required"`
  190. Target string `form:"tag_target" binding:"Required"`
  191. Title string `binding:"Required"`
  192. Content string
  193. Draft string
  194. Prerelease bool
  195. }
  196. func (f *NewReleaseForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  197. return validate(errs, ctx.Data, f, ctx.Locale)
  198. }
  199. type EditReleaseForm struct {
  200. Title string `form:"title" binding:"Required"`
  201. Content string `form:"content" binding:"Required"`
  202. Draft string `form:"draft"`
  203. Prerelease bool `form:"prerelease"`
  204. }
  205. func (f *EditReleaseForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  206. return validate(errs, ctx.Data, f, ctx.Locale)
  207. }
  208. // __ __.__ __ .__
  209. // / \ / \__| | _|__|
  210. // \ \/\/ / | |/ / |
  211. // \ /| | <| |
  212. // \__/\ / |__|__|_ \__|
  213. // \/ \/
  214. type NewWikiForm struct {
  215. OldTitle string
  216. Title string `binding:"Required"`
  217. Content string `binding:"Required"`
  218. Message string
  219. }
  220. // FIXME: use code generation to generate this method.
  221. func (f *NewWikiForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  222. return validate(errs, ctx.Data, f, ctx.Locale)
  223. }