2014-02-19 21:45:43 -05: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 repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gogits/gogs/models"
|
2014-03-07 16:05:18 -05:00
|
|
|
"github.com/gogits/gogs/modules/auth"
|
2014-03-15 09:17:16 -04:00
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2014-02-19 21:45:43 -05:00
|
|
|
)
|
|
|
|
|
2014-03-15 09:58:32 -04:00
|
|
|
func Create(ctx *middleware.Context, form auth.CreateRepoForm) {
|
|
|
|
ctx.Data["Title"] = "Create repository"
|
2014-03-07 16:05:18 -05:00
|
|
|
|
2014-03-15 09:58:32 -04:00
|
|
|
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-19 21:45:43 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-15 10:52:14 -04:00
|
|
|
if ctx.HasError() {
|
2014-03-15 09:58:32 -04:00
|
|
|
ctx.Render.HTML(200, "repo/create", ctx.Data)
|
2014-03-08 21:25:38 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-02-25 02:11:54 -05:00
|
|
|
// TODO: access check
|
|
|
|
|
2014-03-08 21:25:38 -05:00
|
|
|
user, err := models.GetUserById(form.UserId)
|
|
|
|
if err != nil {
|
|
|
|
if err.Error() == models.ErrUserNotExist.Error() {
|
2014-03-15 10:52:14 -04:00
|
|
|
ctx.RenderWithErr("User does not exist", "repo/create", &form)
|
2014-03-08 21:25:38 -05:00
|
|
|
return
|
2014-02-25 02:11:54 -05:00
|
|
|
}
|
2014-03-08 21:25:38 -05:00
|
|
|
}
|
2014-03-11 00:53:53 -04:00
|
|
|
|
2014-03-08 21:25:38 -05:00
|
|
|
if err == nil {
|
2014-03-11 00:18:44 -04:00
|
|
|
if _, err = models.CreateRepository(user,
|
2014-03-11 01:32:36 -04:00
|
|
|
form.RepoName, form.Description, form.Language, form.License,
|
2014-03-13 03:39:18 -04:00
|
|
|
form.Visibility == "private", form.InitReadme == "on"); err == nil {
|
2014-03-15 09:58:32 -04:00
|
|
|
ctx.Render.Redirect("/"+user.Name+"/"+form.RepoName, 302)
|
2014-03-15 00:55:30 -04:00
|
|
|
return
|
2014-02-25 02:11:54 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-09 20:06:29 -04:00
|
|
|
if err.Error() == models.ErrRepoAlreadyExist.Error() {
|
2014-03-15 10:52:14 -04:00
|
|
|
ctx.RenderWithErr("Repository name has already been used", "repo/create", &form)
|
2014-03-09 20:06:29 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-15 09:17:16 -04:00
|
|
|
ctx.Handle(200, "repo.Create", err)
|
2014-02-19 21:45:43 -05:00
|
|
|
}
|
|
|
|
|
2014-03-15 09:58:32 -04:00
|
|
|
func Delete(ctx *middleware.Context, form auth.DeleteRepoForm) {
|
|
|
|
ctx.Data["Title"] = "Delete repository"
|
2014-03-07 17:08:21 -05:00
|
|
|
|
2014-03-15 09:58:32 -04:00
|
|
|
if ctx.Req.Method == "GET" {
|
|
|
|
ctx.Render.HTML(200, "repo/delete", ctx.Data)
|
2014-02-19 21:45:43 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-13 02:39:09 -04:00
|
|
|
if err := models.DeleteRepository(form.UserId, form.RepoId, form.UserName); err != nil {
|
2014-03-15 09:17:16 -04:00
|
|
|
ctx.Handle(200, "repo.Delete", err)
|
2014-03-13 02:39:09 -04:00
|
|
|
return
|
2014-03-02 20:52:12 -05:00
|
|
|
}
|
2014-03-13 02:39:09 -04:00
|
|
|
|
2014-03-15 09:58:32 -04:00
|
|
|
ctx.Render.Redirect("/", 302)
|
2014-02-19 21:45:43 -05:00
|
|
|
}
|