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