2014-02-20 08:15:43 +05:30
|
|
|
// 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 repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gogits/gogs/models"
|
2014-03-08 02:35:18 +05:30
|
|
|
"github.com/gogits/gogs/modules/auth"
|
2014-03-19 14:18:45 +05:30
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-03-15 18:47:16 +05:30
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2014-02-20 08:15:43 +05:30
|
|
|
)
|
|
|
|
|
2014-03-15 19:28:32 +05:30
|
|
|
func Create(ctx *middleware.Context, form auth.CreateRepoForm) {
|
|
|
|
ctx.Data["Title"] = "Create repository"
|
2014-03-19 22:44:56 +05:30
|
|
|
ctx.Data["PageIsNewRepo"] = true // For navbar arrow.
|
|
|
|
ctx.Data["LanguageIgns"] = models.LanguageIgns
|
|
|
|
ctx.Data["Licenses"] = models.Licenses
|
2014-03-08 02:35:18 +05:30
|
|
|
|
2014-03-15 19:28:32 +05:30
|
|
|
if ctx.Req.Method == "GET" {
|
2014-03-20 17:20:26 +05:30
|
|
|
ctx.HTML(200, "repo/create")
|
2014-02-20 08:15:43 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-17 21:26:50 +05:30
|
|
|
_, err := models.CreateRepository(ctx.User, form.RepoName, form.Description,
|
|
|
|
form.Language, form.License, form.Visibility == "private", form.InitReadme == "on")
|
|
|
|
if err == nil {
|
2014-03-19 14:18:45 +05:30
|
|
|
log.Trace("%s Repository created: %s/%s", ctx.Req.RequestURI, ctx.User.LowerName, form.RepoName)
|
2014-03-19 19:51:03 +05:30
|
|
|
ctx.Redirect("/"+ctx.User.Name+"/"+form.RepoName, 302)
|
2014-03-09 07:55:38 +05:30
|
|
|
return
|
2014-03-17 12:06:28 +05:30
|
|
|
} else if err == models.ErrRepoAlreadyExist {
|
2014-03-15 20:22:14 +05:30
|
|
|
ctx.RenderWithErr("Repository name has already been used", "repo/create", &form)
|
2014-03-10 05:36:29 +05:30
|
|
|
return
|
2014-03-20 21:11:24 +05:30
|
|
|
} else if err == models.ErrRepoNameIllegal {
|
|
|
|
ctx.RenderWithErr(models.ErrRepoNameIllegal.Error(), "repo/create", &form)
|
|
|
|
return
|
2014-03-10 05:36:29 +05:30
|
|
|
}
|
2014-03-17 21:26:50 +05:30
|
|
|
ctx.Handle(200, "repo.Create", err)
|
2014-02-20 08:15:43 +05:30
|
|
|
}
|
|
|
|
|
2014-03-17 12:06:28 +05:30
|
|
|
func SettingPost(ctx *middleware.Context) {
|
|
|
|
if !ctx.Repo.IsOwner {
|
2014-03-19 19:51:03 +05:30
|
|
|
ctx.Error(404)
|
2014-02-20 08:15:43 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-17 12:06:28 +05:30
|
|
|
switch ctx.Query("action") {
|
|
|
|
case "delete":
|
|
|
|
if len(ctx.Repo.Repository.Name) == 0 || ctx.Repo.Repository.Name != ctx.Query("repository") {
|
|
|
|
ctx.Data["ErrorMsg"] = "Please make sure you entered repository name is correct."
|
2014-03-20 17:20:26 +05:30
|
|
|
ctx.HTML(200, "repo/setting")
|
2014-03-17 12:06:28 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := models.DeleteRepository(ctx.User.Id, ctx.Repo.Repository.Id, ctx.User.LowerName); err != nil {
|
|
|
|
ctx.Handle(200, "repo.Delete", err)
|
|
|
|
return
|
|
|
|
}
|
2014-03-03 07:22:12 +05:30
|
|
|
}
|
2014-03-13 12:09:09 +05:30
|
|
|
|
2014-03-19 17:57:27 +05:30
|
|
|
log.Trace("%s Repository deleted: %s/%s", ctx.Req.RequestURI, ctx.User.LowerName, ctx.Repo.Repository.LowerName)
|
2014-03-19 19:51:03 +05:30
|
|
|
ctx.Redirect("/", 302)
|
2014-02-20 08:15:43 +05:30
|
|
|
}
|