Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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