gitea/modules/auth/repo.go

90 lines
2.3 KiB
Go
Raw Normal View History

2014-03-08 19:25:38 -07:00
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package auth
import (
"net/http"
"reflect"
2014-03-30 10:11:28 -06:00
"github.com/go-martini/martini"
2014-03-08 19:25:38 -07:00
"github.com/gogits/gogs/modules/base"
"github.com/gogits/gogs/modules/log"
)
type CreateRepoForm struct {
2014-03-10 22:53:53 -06:00
RepoName string `form:"repo" binding:"Required;AlphaDash"`
2014-04-12 18:35:35 -06:00
Private bool `form:"private"`
2014-03-08 19:25:38 -07:00
Description string `form:"desc" binding:"MaxSize(100)"`
Language string `form:"language"`
2014-03-10 23:32:36 -06:00
License string `form:"license"`
2014-04-12 18:35:35 -06:00
InitReadme bool `form:"initReadme"`
2014-03-08 19:25:38 -07:00
}
func (f *CreateRepoForm) Name(field string) string {
names := map[string]string{
"RepoName": "Repository name",
"Description": "Description",
}
return names[field]
}
2014-04-12 23:57:42 -06:00
func (f *CreateRepoForm) Validate(errors *base.BindingErrors, req *http.Request, context martini.Context) {
2014-03-08 19:25:38 -07:00
if req.Method == "GET" || errors.Count() == 0 {
return
}
data := context.Get(reflect.TypeOf(base.TmplData{})).Interface().(base.TmplData)
data["HasError"] = true
AssignForm(f, data)
if len(errors.Overall) > 0 {
for _, err := range errors.Overall {
log.Error("CreateRepoForm.Validate: %v", err)
}
return
}
validate(errors, data, f)
}
2014-04-12 18:35:35 -06:00
type MigrateRepoForm struct {
Url string `form:"url" binding:"Url"`
AuthUserName string `form:"auth_username"`
AuthPasswd string `form:"auth_password"`
RepoName string `form:"repo" binding:"Required;AlphaDash"`
Mirror bool `form:"mirror"`
Private bool `form:"private"`
Description string `form:"desc" binding:"MaxSize(100)"`
}
func (f *MigrateRepoForm) Name(field string) string {
names := map[string]string{
"Url": "Migration URL",
"RepoName": "Repository name",
"Description": "Description",
}
return names[field]
}
2014-04-12 23:57:42 -06:00
func (f *MigrateRepoForm) Validate(errors *base.BindingErrors, req *http.Request, context martini.Context) {
2014-04-12 18:35:35 -06:00
if req.Method == "GET" || errors.Count() == 0 {
return
}
data := context.Get(reflect.TypeOf(base.TmplData{})).Interface().(base.TmplData)
data["HasError"] = true
AssignForm(f, data)
if len(errors.Overall) > 0 {
for _, err := range errors.Overall {
log.Error("MigrateRepoForm.Validate: %v", err)
}
return
}
validate(errors, data, f)
}