repo.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  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 form
  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 CreateRepo struct {
  20. UserID 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 *CreateRepo) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  30. return validate(errs, ctx.Data, f, ctx.Locale)
  31. }
  32. type MigrateRepo 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 *MigrateRepo) 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 password.
  47. // It also checks if given user has permission when remote address
  48. // is actually a local path.
  49. func (f MigrateRepo) 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 RepoSetting 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 *RepoSetting) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  91. return validate(errs, ctx.Data, f, ctx.Locale)
  92. }
  93. // __________ .__
  94. // \______ \____________ ____ ____ | |__
  95. // | | _/\_ __ \__ \ / \_/ ___\| | \
  96. // | | \ | | \// __ \| | \ \___| Y \
  97. // |______ / |__| (____ /___| /\___ >___| /
  98. // \/ \/ \/ \/ \/
  99. type ProtectBranch struct {
  100. Protected bool
  101. RequirePullRequest bool
  102. EnableWhitelist bool
  103. WhitelistUsers string
  104. WhitelistTeams string
  105. }
  106. func (f *ProtectBranch) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  107. return validate(errs, ctx.Data, f, ctx.Locale)
  108. }
  109. // __ __ ___. .__ .__ __
  110. // / \ / \ ____\_ |__ | |__ | |__ ____ | | __
  111. // \ \/\/ // __ \| __ \| | \| | \ / _ \| |/ /
  112. // \ /\ ___/| \_\ \ Y \ Y ( <_> ) <
  113. // \__/\ / \___ >___ /___| /___| /\____/|__|_ \
  114. // \/ \/ \/ \/ \/ \/
  115. type Webhook struct {
  116. Events string
  117. Create bool
  118. Delete bool
  119. Fork bool
  120. Push bool
  121. PullRequest bool
  122. Active bool
  123. }
  124. func (f Webhook) PushOnly() bool {
  125. return f.Events == "push_only"
  126. }
  127. func (f Webhook) SendEverything() bool {
  128. return f.Events == "send_everything"
  129. }
  130. func (f Webhook) ChooseEvents() bool {
  131. return f.Events == "choose_events"
  132. }
  133. type NewWebhook struct {
  134. PayloadURL string `binding:"Required;Url"`
  135. ContentType int `binding:"Required"`
  136. Secret string
  137. Webhook
  138. }
  139. func (f *NewWebhook) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  140. return validate(errs, ctx.Data, f, ctx.Locale)
  141. }
  142. type NewSlackHook struct {
  143. PayloadURL string `binding:"Required;Url"`
  144. Channel string `binding:"Required"`
  145. Username string
  146. IconURL string
  147. Color string
  148. Webhook
  149. }
  150. func (f *NewSlackHook) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  151. return validate(errs, ctx.Data, f, ctx.Locale)
  152. }
  153. type NewDiscordHook struct {
  154. PayloadURL string `binding:"Required;Url"`
  155. Username string
  156. IconURL string
  157. Color string
  158. Webhook
  159. }
  160. func (f *NewDiscordHook) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  161. return validate(errs, ctx.Data, f, ctx.Locale)
  162. }
  163. // .___
  164. // | | ______ ________ __ ____
  165. // | |/ ___// ___/ | \_/ __ \
  166. // | |\___ \ \___ \| | /\ ___/
  167. // |___/____ >____ >____/ \___ >
  168. // \/ \/ \/
  169. type CreateIssue struct {
  170. Title string `binding:"Required;MaxSize(255)"`
  171. LabelIDs string `form:"label_ids"`
  172. MilestoneID int64
  173. AssigneeID int64
  174. Content string
  175. Files []string
  176. }
  177. func (f *CreateIssue) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  178. return validate(errs, ctx.Data, f, ctx.Locale)
  179. }
  180. type CreateComment struct {
  181. Content string
  182. Status string `binding:"OmitEmpty;In(reopen,close)"`
  183. Files []string
  184. }
  185. func (f *CreateComment) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  186. return validate(errs, ctx.Data, f, ctx.Locale)
  187. }
  188. // _____ .__.__ __
  189. // / \ |__| | ____ _______/ |_ ____ ____ ____
  190. // / \ / \| | | _/ __ \ / ___/\ __\/ _ \ / \_/ __ \
  191. // / Y \ | |_\ ___/ \___ \ | | ( <_> ) | \ ___/
  192. // \____|__ /__|____/\___ >____ > |__| \____/|___| /\___ >
  193. // \/ \/ \/ \/ \/
  194. type CreateMilestone struct {
  195. Title string `binding:"Required;MaxSize(50)"`
  196. Content string
  197. Deadline string
  198. }
  199. func (f *CreateMilestone) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  200. return validate(errs, ctx.Data, f, ctx.Locale)
  201. }
  202. // .____ ___. .__
  203. // | | _____ \_ |__ ____ | |
  204. // | | \__ \ | __ \_/ __ \| |
  205. // | |___ / __ \| \_\ \ ___/| |__
  206. // |_______ (____ /___ /\___ >____/
  207. // \/ \/ \/ \/
  208. type CreateLabel struct {
  209. ID int64
  210. Title string `binding:"Required;MaxSize(50)" locale:"repo.issues.label_name"`
  211. Color string `binding:"Required;Size(7)" locale:"repo.issues.label_color"`
  212. }
  213. func (f *CreateLabel) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  214. return validate(errs, ctx.Data, f, ctx.Locale)
  215. }
  216. type InitializeLabels struct {
  217. TemplateName string `binding:"Required"`
  218. }
  219. func (f *InitializeLabels) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  220. return validate(errs, ctx.Data, f, ctx.Locale)
  221. }
  222. // __________ .__
  223. // \______ \ ____ | | ____ _____ ______ ____
  224. // | _// __ \| | _/ __ \\__ \ / ___// __ \
  225. // | | \ ___/| |_\ ___/ / __ \_\___ \\ ___/
  226. // |____|_ /\___ >____/\___ >____ /____ >\___ >
  227. // \/ \/ \/ \/ \/ \/
  228. type NewRelease struct {
  229. TagName string `binding:"Required"`
  230. Target string `form:"tag_target" binding:"Required"`
  231. Title string `binding:"Required"`
  232. Content string
  233. Draft string
  234. Prerelease bool
  235. }
  236. func (f *NewRelease) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  237. return validate(errs, ctx.Data, f, ctx.Locale)
  238. }
  239. type EditRelease struct {
  240. Title string `binding:"Required"`
  241. Content string
  242. Draft string
  243. Prerelease bool
  244. }
  245. func (f *EditRelease) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  246. return validate(errs, ctx.Data, f, ctx.Locale)
  247. }
  248. // __ __.__ __ .__
  249. // / \ / \__| | _|__|
  250. // \ \/\/ / | |/ / |
  251. // \ /| | <| |
  252. // \__/\ / |__|__|_ \__|
  253. // \/ \/
  254. type NewWiki struct {
  255. OldTitle string
  256. Title string `binding:"Required"`
  257. Content string `binding:"Required"`
  258. Message string
  259. }
  260. // FIXME: use code generation to generate this method.
  261. func (f *NewWiki) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  262. return validate(errs, ctx.Data, f, ctx.Locale)
  263. }
  264. // ___________ .___.__ __
  265. // \_ _____/ __| _/|__|/ |_
  266. // | __)_ / __ | | \ __\
  267. // | \/ /_/ | | || |
  268. // /_______ /\____ | |__||__|
  269. // \/ \/
  270. type EditRepoFile struct {
  271. TreePath string `binding:"Required;MaxSize(500)"`
  272. Content string `binding:"Required"`
  273. CommitSummary string `binding:"MaxSize(100)`
  274. CommitMessage string
  275. CommitChoice string `binding:"Required;MaxSize(50)"`
  276. NewBranchName string `binding:"AlphaDashDotSlash;MaxSize(100)"`
  277. LastCommit string
  278. }
  279. func (f *EditRepoFile) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  280. return validate(errs, ctx.Data, f, ctx.Locale)
  281. }
  282. func (f *EditRepoFile) IsNewBrnach() bool {
  283. return f.CommitChoice == "commit-to-new-branch"
  284. }
  285. type EditPreviewDiff struct {
  286. Content string
  287. }
  288. func (f *EditPreviewDiff) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  289. return validate(errs, ctx.Data, f, ctx.Locale)
  290. }
  291. // ____ ___ .__ .___
  292. // | | \______ | | _________ __| _/
  293. // | | /\____ \| | / _ \__ \ / __ |
  294. // | | / | |_> > |_( <_> ) __ \_/ /_/ |
  295. // |______/ | __/|____/\____(____ /\____ |
  296. // |__| \/ \/
  297. //
  298. type UploadRepoFile struct {
  299. TreePath string `binding:MaxSize(500)"`
  300. CommitSummary string `binding:"MaxSize(100)`
  301. CommitMessage string
  302. CommitChoice string `binding:"Required;MaxSize(50)"`
  303. NewBranchName string `binding:"AlphaDashDot;MaxSize(100)"`
  304. Files []string
  305. }
  306. func (f *UploadRepoFile) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  307. return validate(errs, ctx.Data, f, ctx.Locale)
  308. }
  309. func (f *UploadRepoFile) IsNewBrnach() bool {
  310. return f.CommitChoice == "commit-to-new-branch"
  311. }
  312. type RemoveUploadFile struct {
  313. File string `binding:"Required;MaxSize(50)"`
  314. }
  315. func (f *RemoveUploadFile) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  316. return validate(errs, ctx.Data, f, ctx.Locale)
  317. }
  318. // ________ .__ __
  319. // \______ \ ____ | | _____/ |_ ____
  320. // | | \_/ __ \| | _/ __ \ __\/ __ \
  321. // | ` \ ___/| |_\ ___/| | \ ___/
  322. // /_______ /\___ >____/\___ >__| \___ >
  323. // \/ \/ \/ \/
  324. type DeleteRepoFile struct {
  325. CommitSummary string `binding:"MaxSize(100)`
  326. CommitMessage string
  327. CommitChoice string `binding:"Required;MaxSize(50)"`
  328. NewBranchName string `binding:"AlphaDashDot;MaxSize(100)"`
  329. }
  330. func (f *DeleteRepoFile) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  331. return validate(errs, ctx.Data, f, ctx.Locale)
  332. }
  333. func (f *DeleteRepoFile) IsNewBrnach() bool {
  334. return f.CommitChoice == "commit-to-new-branch"
  335. }
PANIC: session(release): write data/sessions/2/a/2a3842f2df06e8dd: no space left on device

PANIC

session(release): write data/sessions/2/a/2a3842f2df06e8dd: no space left on device
github.com/go-macaron/session@v0.0.0-20190805070824-1a3cdc6f5659/session.go:199 (0x8b2934)
gopkg.in/macaron.v1@v1.3.9/context.go:79 (0x83d0a0)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:157 (0x80ab07)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:135 (0x80a8a8)
gopkg.in/macaron.v1@v1.3.9/context.go:121 (0x83d1f8)
gopkg.in/macaron.v1@v1.3.9/context.go:112 (0x84fdb5)
gopkg.in/macaron.v1@v1.3.9/recovery.go:161 (0x84fda8)
gopkg.in/macaron.v1@v1.3.9/logger.go:40 (0x840c73)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:157 (0x80ab07)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:135 (0x80a8a8)
gopkg.in/macaron.v1@v1.3.9/context.go:121 (0x83d1f8)
gopkg.in/macaron.v1@v1.3.9/router.go:187 (0x850fc6)
gopkg.in/macaron.v1@v1.3.9/router.go:303 (0x8493e5)
gopkg.in/macaron.v1@v1.3.9/macaron.go:220 (0x841fca)
net/http/server.go:2836 (0x7a79b2)
net/http/server.go:1924 (0x7a341b)
runtime/asm_amd64.s:1373 (0x46f9f0)