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-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-08 02:35:18 +05:30
|
|
|
|
2014-03-15 19:28:32 +05:30
|
|
|
if ctx.Req.Method == "GET" {
|
|
|
|
ctx.Data["LanguageIgns"] = models.LanguageIgns
|
|
|
|
ctx.Data["Licenses"] = models.Licenses
|
|
|
|
ctx.Render.HTML(200, "repo/create", ctx.Data)
|
2014-02-20 08:15:43 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-15 20:22:14 +05:30
|
|
|
if ctx.HasError() {
|
2014-03-15 19:28:32 +05:30
|
|
|
ctx.Render.HTML(200, "repo/create", ctx.Data)
|
2014-03-09 07:55:38 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-02-25 12:41:54 +05:30
|
|
|
// TODO: access check
|
|
|
|
|
2014-03-09 07:55:38 +05:30
|
|
|
user, err := models.GetUserById(form.UserId)
|
|
|
|
if err != nil {
|
|
|
|
if err.Error() == models.ErrUserNotExist.Error() {
|
2014-03-15 20:22:14 +05:30
|
|
|
ctx.RenderWithErr("User does not exist", "repo/create", &form)
|
2014-03-09 07:55:38 +05:30
|
|
|
return
|
2014-02-25 12:41:54 +05:30
|
|
|
}
|
2014-03-09 07:55:38 +05:30
|
|
|
}
|
2014-03-11 10:23:53 +05:30
|
|
|
|
2014-03-09 07:55:38 +05:30
|
|
|
if err == nil {
|
2014-03-11 09:48:44 +05:30
|
|
|
if _, err = models.CreateRepository(user,
|
2014-03-11 11:02:36 +05:30
|
|
|
form.RepoName, form.Description, form.Language, form.License,
|
2014-03-13 13:09:18 +05:30
|
|
|
form.Visibility == "private", form.InitReadme == "on"); err == nil {
|
2014-03-15 19:28:32 +05:30
|
|
|
ctx.Render.Redirect("/"+user.Name+"/"+form.RepoName, 302)
|
2014-03-15 10:25:30 +05:30
|
|
|
return
|
2014-02-25 12:41:54 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-10 05:36:29 +05:30
|
|
|
if err.Error() == models.ErrRepoAlreadyExist.Error() {
|
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-15 18:47:16 +05:30
|
|
|
ctx.Handle(200, "repo.Create", err)
|
2014-02-20 08:15:43 +05:30
|
|
|
}
|
|
|
|
|
2014-03-15 19:28:32 +05:30
|
|
|
func Delete(ctx *middleware.Context, form auth.DeleteRepoForm) {
|
|
|
|
ctx.Data["Title"] = "Delete repository"
|
2014-03-08 03:38:21 +05:30
|
|
|
|
2014-03-15 19:28:32 +05:30
|
|
|
if ctx.Req.Method == "GET" {
|
|
|
|
ctx.Render.HTML(200, "repo/delete", ctx.Data)
|
2014-02-20 08:15:43 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-13 12:09:09 +05:30
|
|
|
if err := models.DeleteRepository(form.UserId, form.RepoId, form.UserName); err != nil {
|
2014-03-15 18:47:16 +05:30
|
|
|
ctx.Handle(200, "repo.Delete", err)
|
2014-03-13 12:09:09 +05:30
|
|
|
return
|
2014-03-03 07:22:12 +05:30
|
|
|
}
|
2014-03-13 12:09:09 +05:30
|
|
|
|
2014-03-15 19:28:32 +05:30
|
|
|
ctx.Render.Redirect("/", 302)
|
2014-02-20 08:15:43 +05:30
|
|
|
}
|