2014-05-01 09:44:22 +00: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 (
|
|
|
|
"fmt"
|
2014-05-01 15:32:12 +00:00
|
|
|
"strings"
|
|
|
|
|
2014-05-06 01:36:08 +00:00
|
|
|
"github.com/go-martini/martini"
|
|
|
|
|
2014-05-01 09:44:22 +00:00
|
|
|
"github.com/gogits/git"
|
2014-05-01 15:32:12 +00:00
|
|
|
|
2014-05-01 09:44:22 +00:00
|
|
|
"github.com/gogits/gogs/models"
|
2014-05-05 23:58:13 +00:00
|
|
|
"github.com/gogits/gogs/modules/auth"
|
2014-05-01 09:44:22 +00:00
|
|
|
"github.com/gogits/gogs/modules/base"
|
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-05-05 08:27:28 +00:00
|
|
|
"github.com/gogits/gogs/modules/mailer"
|
2014-05-01 09:44:22 +00:00
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Setting(ctx *middleware.Context) {
|
|
|
|
ctx.Data["IsRepoToolbarSetting"] = true
|
2014-05-01 15:32:12 +00:00
|
|
|
ctx.Data["Title"] = strings.TrimPrefix(ctx.Repo.RepoLink, "/") + " - settings"
|
2014-05-01 09:44:22 +00:00
|
|
|
ctx.HTML(200, "repo/setting")
|
|
|
|
}
|
|
|
|
|
2014-05-05 23:58:13 +00:00
|
|
|
func SettingPost(ctx *middleware.Context, form auth.RepoSettingForm) {
|
2014-05-01 09:44:22 +00:00
|
|
|
ctx.Data["IsRepoToolbarSetting"] = true
|
|
|
|
|
|
|
|
switch ctx.Query("action") {
|
|
|
|
case "update":
|
2014-05-05 23:58:13 +00:00
|
|
|
if ctx.HasError() {
|
|
|
|
ctx.HTML(200, "repo/setting")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
newRepoName := form.RepoName
|
2014-05-01 09:44:22 +00:00
|
|
|
// Check if repository name has been changed.
|
|
|
|
if ctx.Repo.Repository.Name != newRepoName {
|
|
|
|
isExist, err := models.IsRepositoryExist(ctx.Repo.Owner, newRepoName)
|
|
|
|
if err != nil {
|
2014-05-06 01:36:08 +00:00
|
|
|
ctx.Handle(500, "setting.SettingPost(update: check existence)", err)
|
2014-05-01 09:44:22 +00:00
|
|
|
return
|
|
|
|
} else if isExist {
|
|
|
|
ctx.RenderWithErr("Repository name has been taken in your repositories.", "repo/setting", nil)
|
|
|
|
return
|
|
|
|
} else if err = models.ChangeRepositoryName(ctx.Repo.Owner.Name, ctx.Repo.Repository.Name, newRepoName); err != nil {
|
2014-05-06 01:36:08 +00:00
|
|
|
ctx.Handle(500, "setting.SettingPost(change repository name)", err)
|
2014-05-01 09:44:22 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Trace("%s Repository name changed: %s/%s -> %s", ctx.Req.RequestURI, ctx.User.Name, ctx.Repo.Repository.Name, newRepoName)
|
|
|
|
|
|
|
|
ctx.Repo.Repository.Name = newRepoName
|
|
|
|
}
|
|
|
|
|
2014-05-05 23:58:13 +00:00
|
|
|
br := form.Branch
|
2014-05-01 09:44:22 +00:00
|
|
|
|
|
|
|
if git.IsBranchExist(models.RepoPath(ctx.User.Name, ctx.Repo.Repository.Name), br) {
|
|
|
|
ctx.Repo.Repository.DefaultBranch = br
|
|
|
|
}
|
2014-05-05 23:58:13 +00:00
|
|
|
ctx.Repo.Repository.Description = form.Description
|
|
|
|
ctx.Repo.Repository.Website = form.Website
|
|
|
|
ctx.Repo.Repository.IsPrivate = form.Private
|
|
|
|
ctx.Repo.Repository.IsGoget = form.GoGet
|
2014-05-01 09:44:22 +00:00
|
|
|
if err := models.UpdateRepository(ctx.Repo.Repository); err != nil {
|
2014-05-06 01:36:08 +00:00
|
|
|
ctx.Handle(404, "setting.SettingPost(update)", err)
|
2014-05-01 09:44:22 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Trace("%s Repository updated: %s/%s", ctx.Req.RequestURI, ctx.Repo.Owner.Name, ctx.Repo.Repository.Name)
|
|
|
|
|
|
|
|
if ctx.Repo.Repository.IsMirror {
|
2014-05-05 23:58:13 +00:00
|
|
|
if form.Interval > 0 {
|
|
|
|
ctx.Repo.Mirror.Interval = form.Interval
|
|
|
|
if err := models.UpdateMirror(ctx.Repo.Mirror); err != nil {
|
2014-05-06 01:36:08 +00:00
|
|
|
log.Error("setting.SettingPost(UpdateMirror): %v", err)
|
2014-05-01 09:44:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Flash.Success("Repository options has been successfully updated.")
|
|
|
|
ctx.Redirect(fmt.Sprintf("/%s/%s/settings", ctx.Repo.Owner.Name, ctx.Repo.Repository.Name))
|
|
|
|
case "transfer":
|
|
|
|
if len(ctx.Repo.Repository.Name) == 0 || ctx.Repo.Repository.Name != ctx.Query("repository") {
|
|
|
|
ctx.RenderWithErr("Please make sure you entered repository name is correct.", "repo/setting", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
newOwner := ctx.Query("owner")
|
|
|
|
// Check if new owner exists.
|
|
|
|
isExist, err := models.IsUserExist(newOwner)
|
|
|
|
if err != nil {
|
2014-05-06 01:36:08 +00:00
|
|
|
ctx.Handle(500, "setting.SettingPost(transfer: check existence)", err)
|
2014-05-01 09:44:22 +00:00
|
|
|
return
|
|
|
|
} else if !isExist {
|
|
|
|
ctx.RenderWithErr("Please make sure you entered owner name is correct.", "repo/setting", nil)
|
|
|
|
return
|
|
|
|
} else if err = models.TransferOwnership(ctx.User, newOwner, ctx.Repo.Repository); err != nil {
|
2014-05-06 01:36:08 +00:00
|
|
|
ctx.Handle(500, "setting.SettingPost(transfer repository)", err)
|
2014-05-01 09:44:22 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Trace("%s Repository transfered: %s/%s -> %s", ctx.Req.RequestURI, ctx.User.Name, ctx.Repo.Repository.Name, newOwner)
|
|
|
|
|
|
|
|
ctx.Redirect("/")
|
|
|
|
case "delete":
|
|
|
|
if len(ctx.Repo.Repository.Name) == 0 || ctx.Repo.Repository.Name != ctx.Query("repository") {
|
|
|
|
ctx.RenderWithErr("Please make sure you entered repository name is correct.", "repo/setting", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := models.DeleteRepository(ctx.User.Id, ctx.Repo.Repository.Id, ctx.User.LowerName); err != nil {
|
2014-05-06 01:36:08 +00:00
|
|
|
ctx.Handle(500, "setting.Delete", err)
|
2014-05-01 09:44:22 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Trace("%s Repository deleted: %s/%s", ctx.Req.RequestURI, ctx.User.LowerName, ctx.Repo.Repository.LowerName)
|
|
|
|
|
|
|
|
ctx.Redirect("/")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func Collaboration(ctx *middleware.Context) {
|
2014-05-01 15:32:12 +00:00
|
|
|
repoLink := strings.TrimPrefix(ctx.Repo.RepoLink, "/")
|
|
|
|
ctx.Data["IsRepoToolbarCollaboration"] = true
|
|
|
|
ctx.Data["Title"] = repoLink + " - collaboration"
|
|
|
|
|
|
|
|
// Delete collaborator.
|
|
|
|
remove := strings.ToLower(ctx.Query("remove"))
|
|
|
|
if len(remove) > 0 && remove != ctx.Repo.Owner.LowerName {
|
|
|
|
if err := models.DeleteAccess(&models.Access{UserName: remove, RepoName: repoLink}); err != nil {
|
2014-05-06 01:36:08 +00:00
|
|
|
ctx.Handle(500, "setting.Collaboration(DeleteAccess)", err)
|
2014-05-01 15:32:12 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Flash.Success("Collaborator has been removed.")
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings/collaboration")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-08 16:24:11 +00:00
|
|
|
names, err := models.GetCollaboratorNames(repoLink)
|
2014-05-01 15:32:12 +00:00
|
|
|
if err != nil {
|
2014-05-06 01:36:08 +00:00
|
|
|
ctx.Handle(500, "setting.Collaboration(GetCollaborators)", err)
|
2014-05-01 15:32:12 +00:00
|
|
|
return
|
|
|
|
}
|
2014-05-01 09:44:22 +00:00
|
|
|
|
2014-05-01 15:32:12 +00:00
|
|
|
us := make([]*models.User, len(names))
|
|
|
|
for i, name := range names {
|
|
|
|
us[i], err = models.GetUserByName(name)
|
|
|
|
if err != nil {
|
2014-05-06 01:36:08 +00:00
|
|
|
ctx.Handle(500, "setting.Collaboration(GetUserByName)", err)
|
2014-05-01 15:32:12 +00:00
|
|
|
return
|
|
|
|
}
|
2014-05-01 09:44:22 +00:00
|
|
|
}
|
|
|
|
|
2014-05-01 15:32:12 +00:00
|
|
|
ctx.Data["Collaborators"] = us
|
2014-05-01 09:44:22 +00:00
|
|
|
ctx.HTML(200, "repo/collaboration")
|
|
|
|
}
|
2014-05-01 15:32:12 +00:00
|
|
|
|
|
|
|
func CollaborationPost(ctx *middleware.Context) {
|
|
|
|
repoLink := strings.TrimPrefix(ctx.Repo.RepoLink, "/")
|
|
|
|
name := strings.ToLower(ctx.Query("collaborator"))
|
|
|
|
if len(name) == 0 || ctx.Repo.Owner.LowerName == name {
|
|
|
|
ctx.Redirect(ctx.Req.RequestURI)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
has, err := models.HasAccess(name, repoLink, models.AU_WRITABLE)
|
|
|
|
if err != nil {
|
2014-05-06 01:36:08 +00:00
|
|
|
ctx.Handle(500, "setting.CollaborationPost(HasAccess)", err)
|
2014-05-01 15:32:12 +00:00
|
|
|
return
|
|
|
|
} else if has {
|
|
|
|
ctx.Redirect(ctx.Req.RequestURI)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-05 08:27:28 +00:00
|
|
|
u, err := models.GetUserByName(name)
|
2014-05-01 15:32:12 +00:00
|
|
|
if err != nil {
|
2014-05-05 08:27:28 +00:00
|
|
|
if err == models.ErrUserNotExist {
|
|
|
|
ctx.Flash.Error("Given user does not exist.")
|
|
|
|
ctx.Redirect(ctx.Req.RequestURI)
|
|
|
|
} else {
|
2014-05-06 01:36:08 +00:00
|
|
|
ctx.Handle(500, "setting.CollaborationPost(GetUserByName)", err)
|
2014-05-05 08:27:28 +00:00
|
|
|
}
|
2014-05-01 15:32:12 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-05 08:27:28 +00:00
|
|
|
if err = models.AddAccess(&models.Access{UserName: name, RepoName: repoLink,
|
2014-05-01 15:32:12 +00:00
|
|
|
Mode: models.AU_WRITABLE}); err != nil {
|
2014-05-06 01:36:08 +00:00
|
|
|
ctx.Handle(500, "setting.CollaborationPost(AddAccess)", err)
|
2014-05-01 15:32:12 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-05 08:27:28 +00:00
|
|
|
if base.Service.NotifyMail {
|
|
|
|
if err = mailer.SendCollaboratorMail(ctx.Render, u, ctx.User, ctx.Repo.Repository); err != nil {
|
2014-05-06 01:36:08 +00:00
|
|
|
ctx.Handle(500, "setting.CollaborationPost(SendCollaboratorMail)", err)
|
2014-05-05 08:27:28 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-01 15:32:12 +00:00
|
|
|
ctx.Flash.Success("New collaborator has been added.")
|
|
|
|
ctx.Redirect(ctx.Req.RequestURI)
|
|
|
|
}
|
2014-05-02 14:07:34 +00:00
|
|
|
|
|
|
|
func WebHooks(ctx *middleware.Context) {
|
|
|
|
ctx.Data["IsRepoToolbarWebHooks"] = true
|
2014-05-06 00:52:25 +00:00
|
|
|
ctx.Data["Title"] = strings.TrimPrefix(ctx.Repo.RepoLink, "/") + " - Webhooks"
|
|
|
|
|
2014-05-06 01:36:08 +00:00
|
|
|
// Delete webhook.
|
|
|
|
remove, _ := base.StrTo(ctx.Query("remove")).Int64()
|
|
|
|
if remove > 0 {
|
|
|
|
if err := models.DeleteWebhook(remove); err != nil {
|
|
|
|
ctx.Handle(500, "setting.WebHooks(DeleteWebhook)", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Flash.Success("Webhook has been removed.")
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings/hooks")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-06 00:52:25 +00:00
|
|
|
ws, err := models.GetWebhooksByRepoId(ctx.Repo.Repository.Id)
|
|
|
|
if err != nil {
|
2014-05-06 01:36:08 +00:00
|
|
|
ctx.Handle(500, "setting.WebHooks(GetWebhooksByRepoId)", err)
|
2014-05-06 00:52:25 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Webhooks"] = ws
|
2014-05-02 14:07:34 +00:00
|
|
|
ctx.HTML(200, "repo/hooks")
|
|
|
|
}
|
|
|
|
|
|
|
|
func WebHooksAdd(ctx *middleware.Context) {
|
|
|
|
ctx.Data["IsRepoToolbarWebHooks"] = true
|
2014-05-06 00:52:25 +00:00
|
|
|
ctx.Data["Title"] = strings.TrimPrefix(ctx.Repo.RepoLink, "/") + " - Add Webhook"
|
2014-05-02 14:07:34 +00:00
|
|
|
ctx.HTML(200, "repo/hooks_add")
|
|
|
|
}
|
2014-05-05 12:16:24 +00:00
|
|
|
|
2014-05-06 00:52:25 +00:00
|
|
|
func WebHooksAddPost(ctx *middleware.Context, form auth.NewWebhookForm) {
|
|
|
|
ctx.Data["IsRepoToolbarWebHooks"] = true
|
|
|
|
ctx.Data["Title"] = strings.TrimPrefix(ctx.Repo.RepoLink, "/") + " - Add Webhook"
|
|
|
|
|
|
|
|
if ctx.HasError() {
|
|
|
|
ctx.HTML(200, "repo/hooks_add")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ct := models.CT_JSON
|
2014-05-06 01:36:08 +00:00
|
|
|
if form.ContentType == "2" {
|
2014-05-06 00:52:25 +00:00
|
|
|
ct = models.CT_FORM
|
|
|
|
}
|
|
|
|
|
|
|
|
w := &models.Webhook{
|
|
|
|
RepoId: ctx.Repo.Repository.Id,
|
2014-05-06 15:50:31 +00:00
|
|
|
Url: form.Url,
|
2014-05-06 00:52:25 +00:00
|
|
|
ContentType: ct,
|
|
|
|
Secret: form.Secret,
|
2014-05-06 01:36:08 +00:00
|
|
|
HookEvent: &models.HookEvent{
|
|
|
|
PushOnly: form.PushOnly,
|
|
|
|
},
|
|
|
|
IsActive: form.Active,
|
2014-05-06 00:52:25 +00:00
|
|
|
}
|
2014-05-06 01:36:08 +00:00
|
|
|
if err := w.SaveEvent(); err != nil {
|
|
|
|
ctx.Handle(500, "setting.WebHooksAddPost(SaveEvent)", err)
|
2014-05-06 00:52:25 +00:00
|
|
|
return
|
|
|
|
} else if err := models.CreateWebhook(w); err != nil {
|
2014-05-06 01:36:08 +00:00
|
|
|
ctx.Handle(500, "setting.WebHooksAddPost(CreateWebhook)", err)
|
2014-05-06 00:52:25 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Flash.Success("New webhook has been added.")
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings/hooks")
|
|
|
|
}
|
|
|
|
|
2014-05-06 01:36:08 +00:00
|
|
|
func WebHooksEdit(ctx *middleware.Context, params martini.Params) {
|
2014-05-05 12:16:24 +00:00
|
|
|
ctx.Data["IsRepoToolbarWebHooks"] = true
|
2014-05-06 00:52:25 +00:00
|
|
|
ctx.Data["Title"] = strings.TrimPrefix(ctx.Repo.RepoLink, "/") + " - Webhook"
|
2014-05-06 01:36:08 +00:00
|
|
|
|
|
|
|
hookId, _ := base.StrTo(params["id"]).Int64()
|
|
|
|
if hookId == 0 {
|
|
|
|
ctx.Handle(404, "setting.WebHooksEdit", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
w, err := models.GetWebhookById(hookId)
|
|
|
|
if err != nil {
|
|
|
|
if err == models.ErrWebhookNotExist {
|
|
|
|
ctx.Handle(404, "setting.WebHooksEdit(GetWebhookById)", nil)
|
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "setting.WebHooksEdit(GetWebhookById)", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
w.GetEvent()
|
|
|
|
ctx.Data["Webhook"] = w
|
2014-05-05 12:16:24 +00:00
|
|
|
ctx.HTML(200, "repo/hooks_edit")
|
|
|
|
}
|
2014-05-06 01:36:08 +00:00
|
|
|
|
|
|
|
func WebHooksEditPost(ctx *middleware.Context, params martini.Params, form auth.NewWebhookForm) {
|
|
|
|
ctx.Data["IsRepoToolbarWebHooks"] = true
|
|
|
|
ctx.Data["Title"] = strings.TrimPrefix(ctx.Repo.RepoLink, "/") + " - Webhook"
|
|
|
|
|
|
|
|
if ctx.HasError() {
|
|
|
|
ctx.HTML(200, "repo/hooks_add")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
hookId, _ := base.StrTo(params["id"]).Int64()
|
|
|
|
if hookId == 0 {
|
|
|
|
ctx.Handle(404, "setting.WebHooksEditPost", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ct := models.CT_JSON
|
|
|
|
if form.ContentType == "2" {
|
|
|
|
ct = models.CT_FORM
|
|
|
|
}
|
|
|
|
|
|
|
|
w := &models.Webhook{
|
|
|
|
Id: hookId,
|
|
|
|
RepoId: ctx.Repo.Repository.Id,
|
2014-05-06 15:50:31 +00:00
|
|
|
Url: form.Url,
|
2014-05-06 01:36:08 +00:00
|
|
|
ContentType: ct,
|
|
|
|
Secret: form.Secret,
|
|
|
|
HookEvent: &models.HookEvent{
|
|
|
|
PushOnly: form.PushOnly,
|
|
|
|
},
|
|
|
|
IsActive: form.Active,
|
|
|
|
}
|
|
|
|
if err := w.SaveEvent(); err != nil {
|
|
|
|
ctx.Handle(500, "setting.WebHooksEditPost(SaveEvent)", err)
|
|
|
|
return
|
|
|
|
} else if err := models.UpdateWebhook(w); err != nil {
|
|
|
|
ctx.Handle(500, "setting.WebHooksEditPost(WebHooksEditPost)", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Flash.Success("Webhook has been updated.")
|
|
|
|
ctx.Redirect(fmt.Sprintf("%s/settings/hooks/%d", ctx.Repo.RepoLink, hookId))
|
|
|
|
}
|