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