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
|
|
|
|
|
2014-07-26 06:28:04 +00:00
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2015-12-15 22:25:45 +00:00
|
|
|
"github.com/gogits/git-module"
|
2015-12-10 01:46:05 +00:00
|
|
|
|
2016-11-03 12:29:56 +00:00
|
|
|
"github.com/go-gitea/gitea/models"
|
|
|
|
"github.com/go-gitea/gitea/modules/auth"
|
|
|
|
"github.com/go-gitea/gitea/modules/base"
|
|
|
|
"github.com/go-gitea/gitea/modules/context"
|
|
|
|
"github.com/go-gitea/gitea/modules/log"
|
|
|
|
"github.com/go-gitea/gitea/modules/setting"
|
2014-07-26 06:28:04 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2014-08-02 17:47:33 +00:00
|
|
|
SETTINGS_OPTIONS base.TplName = "repo/settings/options"
|
2014-08-07 10:40:05 +00:00
|
|
|
COLLABORATION base.TplName = "repo/settings/collaboration"
|
2015-08-06 14:48:11 +00:00
|
|
|
GITHOOKS base.TplName = "repo/settings/githooks"
|
|
|
|
GITHOOK_EDIT base.TplName = "repo/settings/githook_edit"
|
|
|
|
DEPLOY_KEYS base.TplName = "repo/settings/deploy_keys"
|
2014-07-26 06:28:04 +00:00
|
|
|
)
|
|
|
|
|
2016-03-11 16:56:52 +00:00
|
|
|
func Settings(ctx *context.Context) {
|
2014-08-02 17:47:33 +00:00
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.settings")
|
|
|
|
ctx.Data["PageIsSettingsOptions"] = true
|
|
|
|
ctx.HTML(200, SETTINGS_OPTIONS)
|
2014-07-26 06:28:04 +00:00
|
|
|
}
|
|
|
|
|
2016-03-11 16:56:52 +00:00
|
|
|
func SettingsPost(ctx *context.Context, form auth.RepoSettingForm) {
|
2014-08-02 17:47:33 +00:00
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.settings")
|
|
|
|
ctx.Data["PageIsSettingsOptions"] = true
|
2014-07-26 06:28:04 +00:00
|
|
|
|
2015-08-31 05:36:31 +00:00
|
|
|
repo := ctx.Repo.Repository
|
|
|
|
|
2014-07-26 06:28:04 +00:00
|
|
|
switch ctx.Query("action") {
|
|
|
|
case "update":
|
|
|
|
if ctx.HasError() {
|
2014-08-02 17:47:33 +00:00
|
|
|
ctx.HTML(200, SETTINGS_OPTIONS)
|
2014-07-26 06:28:04 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-09-01 15:43:53 +00:00
|
|
|
isNameChanged := false
|
2015-09-01 13:29:52 +00:00
|
|
|
oldRepoName := repo.Name
|
2014-07-26 06:28:04 +00:00
|
|
|
newRepoName := form.RepoName
|
|
|
|
// Check if repository name has been changed.
|
2015-08-31 05:36:31 +00:00
|
|
|
if repo.LowerName != strings.ToLower(newRepoName) {
|
2015-09-01 15:43:53 +00:00
|
|
|
isNameChanged = true
|
2015-08-31 05:36:31 +00:00
|
|
|
if err := models.ChangeRepositoryName(ctx.Repo.Owner, repo.Name, newRepoName); err != nil {
|
|
|
|
ctx.Data["Err_RepoName"] = true
|
2015-03-26 21:11:47 +00:00
|
|
|
switch {
|
2015-08-08 09:10:34 +00:00
|
|
|
case models.IsErrRepoAlreadyExist(err):
|
2015-03-26 21:11:47 +00:00
|
|
|
ctx.RenderWithErr(ctx.Tr("form.repo_name_been_taken"), SETTINGS_OPTIONS, &form)
|
|
|
|
case models.IsErrNameReserved(err):
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.form.name_reserved", err.(models.ErrNameReserved).Name), SETTINGS_OPTIONS, &form)
|
|
|
|
case models.IsErrNamePatternNotAllowed(err):
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.form.name_pattern_not_allowed", err.(models.ErrNamePatternNotAllowed).Pattern), SETTINGS_OPTIONS, &form)
|
|
|
|
default:
|
2014-08-24 13:09:05 +00:00
|
|
|
ctx.Handle(500, "ChangeRepositoryName", err)
|
|
|
|
}
|
2014-07-26 06:28:04 +00:00
|
|
|
return
|
|
|
|
}
|
2015-09-01 15:43:53 +00:00
|
|
|
|
2015-08-31 05:36:31 +00:00
|
|
|
log.Trace("Repository name changed: %s/%s -> %s", ctx.Repo.Owner.Name, repo.Name, newRepoName)
|
2014-07-26 06:28:04 +00:00
|
|
|
}
|
2015-08-31 05:36:31 +00:00
|
|
|
// In case it's just a case change.
|
|
|
|
repo.Name = newRepoName
|
|
|
|
repo.LowerName = strings.ToLower(newRepoName)
|
2014-07-26 06:28:04 +00:00
|
|
|
|
2015-11-19 00:32:23 +00:00
|
|
|
if ctx.Repo.GitRepo.IsBranchExist(form.Branch) &&
|
|
|
|
repo.DefaultBranch != form.Branch {
|
2015-08-31 05:36:31 +00:00
|
|
|
repo.DefaultBranch = form.Branch
|
2015-11-19 00:32:23 +00:00
|
|
|
if err := ctx.Repo.GitRepo.SetDefaultBranch(form.Branch); err != nil {
|
|
|
|
if !git.IsErrUnsupportedVersion(err) {
|
|
|
|
ctx.Handle(500, "SetDefaultBranch", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2014-07-26 06:28:04 +00:00
|
|
|
}
|
2015-08-31 05:36:31 +00:00
|
|
|
repo.Description = form.Description
|
|
|
|
repo.Website = form.Website
|
2015-11-18 20:01:11 +00:00
|
|
|
|
|
|
|
// Visibility of forked repository is forced sync with base repository.
|
|
|
|
if repo.IsFork {
|
|
|
|
form.Private = repo.BaseRepo.IsPrivate
|
|
|
|
}
|
|
|
|
|
2015-08-31 05:36:31 +00:00
|
|
|
visibilityChanged := repo.IsPrivate != form.Private
|
|
|
|
repo.IsPrivate = form.Private
|
|
|
|
if err := models.UpdateRepository(repo, visibilityChanged); err != nil {
|
2015-09-01 13:29:52 +00:00
|
|
|
ctx.Handle(500, "UpdateRepository", err)
|
|
|
|
return
|
2014-07-26 06:28:04 +00:00
|
|
|
}
|
2015-12-05 02:30:33 +00:00
|
|
|
log.Trace("Repository basic settings updated: %s/%s", ctx.Repo.Owner.Name, repo.Name)
|
2014-07-26 06:28:04 +00:00
|
|
|
|
2015-09-01 15:43:53 +00:00
|
|
|
if isNameChanged {
|
|
|
|
if err := models.RenameRepoAction(ctx.User, oldRepoName, repo); err != nil {
|
|
|
|
log.Error(4, "RenameRepoAction: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-30 23:18:33 +00:00
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.update_settings_success"))
|
|
|
|
ctx.Redirect(repo.Link() + "/settings")
|
2016-07-17 01:30:43 +00:00
|
|
|
|
2016-08-30 23:18:33 +00:00
|
|
|
case "mirror":
|
|
|
|
if !repo.IsMirror {
|
|
|
|
ctx.Handle(404, "", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if form.Interval > 0 {
|
|
|
|
ctx.Repo.Mirror.EnablePrune = form.EnablePrune
|
|
|
|
ctx.Repo.Mirror.Interval = form.Interval
|
|
|
|
ctx.Repo.Mirror.NextUpdate = time.Now().Add(time.Duration(form.Interval) * time.Hour)
|
|
|
|
if err := models.UpdateMirror(ctx.Repo.Mirror); err != nil {
|
|
|
|
ctx.Handle(500, "UpdateMirror", err)
|
2015-12-09 01:06:12 +00:00
|
|
|
return
|
|
|
|
}
|
2014-07-26 06:28:04 +00:00
|
|
|
}
|
2016-08-30 23:18:33 +00:00
|
|
|
if err := ctx.Repo.Mirror.SaveAddress(form.MirrorAddress); err != nil {
|
|
|
|
ctx.Handle(500, "SaveAddress", err)
|
|
|
|
return
|
|
|
|
}
|
2014-07-26 06:28:04 +00:00
|
|
|
|
2014-08-02 17:47:33 +00:00
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.update_settings_success"))
|
2016-07-15 13:53:43 +00:00
|
|
|
ctx.Redirect(repo.Link() + "/settings")
|
2015-12-05 02:30:33 +00:00
|
|
|
|
2016-08-30 23:18:33 +00:00
|
|
|
case "mirror-sync":
|
|
|
|
if !repo.IsMirror {
|
|
|
|
ctx.Handle(404, "", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
go models.MirrorQueue.Add(repo.ID)
|
|
|
|
ctx.Flash.Info(ctx.Tr("repo.settings.mirror_sync_in_progress"))
|
|
|
|
ctx.Redirect(repo.Link() + "/settings")
|
|
|
|
|
2015-12-05 02:30:33 +00:00
|
|
|
case "advanced":
|
|
|
|
repo.EnableWiki = form.EnableWiki
|
2015-12-11 09:55:08 +00:00
|
|
|
repo.EnableExternalWiki = form.EnableExternalWiki
|
|
|
|
repo.ExternalWikiURL = form.ExternalWikiURL
|
2015-12-05 02:30:33 +00:00
|
|
|
repo.EnableIssues = form.EnableIssues
|
|
|
|
repo.EnableExternalTracker = form.EnableExternalTracker
|
|
|
|
repo.ExternalTrackerFormat = form.TrackerURLFormat
|
2016-04-22 22:28:08 +00:00
|
|
|
repo.ExternalTrackerStyle = form.TrackerIssueStyle
|
2015-12-05 02:30:33 +00:00
|
|
|
repo.EnablePulls = form.EnablePulls
|
|
|
|
|
|
|
|
if err := models.UpdateRepository(repo, false); err != nil {
|
|
|
|
ctx.Handle(500, "UpdateRepository", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Trace("Repository advanced settings updated: %s/%s", ctx.Repo.Owner.Name, repo.Name)
|
|
|
|
|
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.update_settings_success"))
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings")
|
|
|
|
|
2016-02-14 20:12:00 +00:00
|
|
|
case "convert":
|
2016-03-06 01:45:23 +00:00
|
|
|
if !ctx.Repo.IsOwner() {
|
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
2016-02-14 20:12:00 +00:00
|
|
|
if repo.Name != form.RepoName {
|
|
|
|
ctx.RenderWithErr(ctx.Tr("form.enterred_invalid_repo_name"), SETTINGS_OPTIONS, nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if ctx.Repo.Owner.IsOrganization() {
|
2016-07-23 17:08:22 +00:00
|
|
|
if !ctx.Repo.Owner.IsOwnedBy(ctx.User.ID) {
|
2016-02-14 20:12:00 +00:00
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-14 20:22:36 +00:00
|
|
|
if !repo.IsMirror {
|
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
2016-02-14 20:12:00 +00:00
|
|
|
repo.IsMirror = false
|
|
|
|
|
2016-08-11 17:18:51 +00:00
|
|
|
if _, err := models.CleanUpMigrateInfo(repo); err != nil {
|
2016-02-15 19:57:15 +00:00
|
|
|
ctx.Handle(500, "CleanUpMigrateInfo", err)
|
2016-02-14 20:12:00 +00:00
|
|
|
return
|
2016-02-15 19:57:15 +00:00
|
|
|
} else if err = models.DeleteMirrorByRepoID(ctx.Repo.Repository.ID); err != nil {
|
|
|
|
ctx.Handle(500, "DeleteMirrorByRepoID", err)
|
2016-02-14 20:12:00 +00:00
|
|
|
return
|
|
|
|
}
|
2016-02-14 21:40:39 +00:00
|
|
|
log.Trace("Repository converted from mirror to regular: %s/%s", ctx.Repo.Owner.Name, repo.Name)
|
2016-02-14 20:12:00 +00:00
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.convert_succeed"))
|
|
|
|
ctx.Redirect(setting.AppSubUrl + "/" + ctx.Repo.Owner.Name + "/" + repo.Name)
|
|
|
|
|
2014-07-26 06:28:04 +00:00
|
|
|
case "transfer":
|
2016-03-06 01:45:23 +00:00
|
|
|
if !ctx.Repo.IsOwner() {
|
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
2015-08-31 05:36:31 +00:00
|
|
|
if repo.Name != form.RepoName {
|
2014-08-02 17:47:33 +00:00
|
|
|
ctx.RenderWithErr(ctx.Tr("form.enterred_invalid_repo_name"), SETTINGS_OPTIONS, nil)
|
2014-07-26 06:28:04 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-08-31 05:36:31 +00:00
|
|
|
if ctx.Repo.Owner.IsOrganization() {
|
2016-07-23 17:08:22 +00:00
|
|
|
if !ctx.Repo.Owner.IsOwnedBy(ctx.User.ID) {
|
2015-08-31 05:36:31 +00:00
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-02 17:47:33 +00:00
|
|
|
newOwner := ctx.Query("new_owner_name")
|
2015-02-22 23:24:49 +00:00
|
|
|
isExist, err := models.IsUserExist(0, newOwner)
|
2014-07-26 06:28:04 +00:00
|
|
|
if err != nil {
|
2014-08-02 17:47:33 +00:00
|
|
|
ctx.Handle(500, "IsUserExist", err)
|
2014-07-26 06:28:04 +00:00
|
|
|
return
|
|
|
|
} else if !isExist {
|
2014-08-02 17:47:33 +00:00
|
|
|
ctx.RenderWithErr(ctx.Tr("form.enterred_invalid_owner_name"), SETTINGS_OPTIONS, nil)
|
2014-07-26 06:28:04 +00:00
|
|
|
return
|
2015-03-06 00:20:27 +00:00
|
|
|
}
|
|
|
|
|
2015-08-31 05:36:31 +00:00
|
|
|
if err = models.TransferOwnership(ctx.User, newOwner, repo); err != nil {
|
2015-08-08 09:10:34 +00:00
|
|
|
if models.IsErrRepoAlreadyExist(err) {
|
2014-09-12 22:29:58 +00:00
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.settings.new_owner_has_same_repo"), SETTINGS_OPTIONS, nil)
|
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "TransferOwnership", err)
|
|
|
|
}
|
2014-07-26 06:28:04 +00:00
|
|
|
return
|
|
|
|
}
|
2015-08-31 05:36:31 +00:00
|
|
|
log.Trace("Repository transfered: %s/%s -> %s", ctx.Repo.Owner.Name, repo.Name, newOwner)
|
2014-09-17 18:52:46 +00:00
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.transfer_succeed"))
|
2015-08-31 05:36:31 +00:00
|
|
|
ctx.Redirect(setting.AppSubUrl + "/" + newOwner + "/" + repo.Name)
|
2016-03-06 01:45:23 +00:00
|
|
|
|
2014-07-26 06:28:04 +00:00
|
|
|
case "delete":
|
2016-03-06 01:45:23 +00:00
|
|
|
if !ctx.Repo.IsOwner() {
|
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
2015-08-31 05:36:31 +00:00
|
|
|
if repo.Name != form.RepoName {
|
2014-08-02 17:47:33 +00:00
|
|
|
ctx.RenderWithErr(ctx.Tr("form.enterred_invalid_repo_name"), SETTINGS_OPTIONS, nil)
|
2014-07-26 06:28:04 +00:00
|
|
|
return
|
2014-08-27 08:39:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ctx.Repo.Owner.IsOrganization() {
|
2016-07-23 17:08:22 +00:00
|
|
|
if !ctx.Repo.Owner.IsOwnedBy(ctx.User.ID) {
|
2014-08-27 08:39:36 +00:00
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
2015-03-06 00:20:27 +00:00
|
|
|
}
|
|
|
|
|
2016-07-23 17:08:22 +00:00
|
|
|
if err := models.DeleteRepository(ctx.Repo.Owner.ID, repo.ID); err != nil {
|
2014-08-02 17:47:33 +00:00
|
|
|
ctx.Handle(500, "DeleteRepository", err)
|
2014-07-26 06:28:04 +00:00
|
|
|
return
|
|
|
|
}
|
2015-08-31 05:36:31 +00:00
|
|
|
log.Trace("Repository deleted: %s/%s", ctx.Repo.Owner.Name, repo.Name)
|
2015-12-05 22:39:29 +00:00
|
|
|
|
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.deletion_success"))
|
2015-08-31 05:36:31 +00:00
|
|
|
ctx.Redirect(ctx.Repo.Owner.DashboardLink())
|
2016-03-06 01:45:23 +00:00
|
|
|
|
2016-03-03 20:38:25 +00:00
|
|
|
case "delete-wiki":
|
2016-03-06 01:45:23 +00:00
|
|
|
if !ctx.Repo.IsOwner() {
|
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
2016-03-03 20:38:25 +00:00
|
|
|
if repo.Name != form.RepoName {
|
|
|
|
ctx.RenderWithErr(ctx.Tr("form.enterred_invalid_repo_name"), SETTINGS_OPTIONS, nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if ctx.Repo.Owner.IsOrganization() {
|
2016-07-23 17:08:22 +00:00
|
|
|
if !ctx.Repo.Owner.IsOwnedBy(ctx.User.ID) {
|
2016-03-03 20:38:25 +00:00
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-04 04:24:22 +00:00
|
|
|
repo.DeleteWiki()
|
2016-03-03 20:38:25 +00:00
|
|
|
log.Trace("Repository wiki deleted: %s/%s", ctx.Repo.Owner.Name, repo.Name)
|
|
|
|
|
|
|
|
repo.EnableWiki = false
|
|
|
|
if err := models.UpdateRepository(repo, false); err != nil {
|
|
|
|
ctx.Handle(500, "UpdateRepository", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-03-04 04:24:22 +00:00
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.wiki_deletion_success"))
|
2016-03-03 20:38:25 +00:00
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings")
|
2016-08-30 23:18:33 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
ctx.Handle(404, "", nil)
|
2014-07-26 06:28:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-11 16:56:52 +00:00
|
|
|
func Collaboration(ctx *context.Context) {
|
2014-08-07 10:40:05 +00:00
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.settings")
|
|
|
|
ctx.Data["PageIsSettingsCollaboration"] = true
|
|
|
|
|
2015-01-23 07:54:16 +00:00
|
|
|
users, err := ctx.Repo.Repository.GetCollaborators()
|
2014-07-26 06:28:04 +00:00
|
|
|
if err != nil {
|
2014-08-07 10:40:05 +00:00
|
|
|
ctx.Handle(500, "GetCollaborators", err)
|
2014-07-26 06:28:04 +00:00
|
|
|
return
|
|
|
|
}
|
2015-01-23 07:54:16 +00:00
|
|
|
ctx.Data["Collaborators"] = users
|
2016-03-05 23:08:42 +00:00
|
|
|
|
2014-07-26 06:28:04 +00:00
|
|
|
ctx.HTML(200, COLLABORATION)
|
|
|
|
}
|
|
|
|
|
2016-03-11 16:56:52 +00:00
|
|
|
func CollaborationPost(ctx *context.Context) {
|
2016-02-20 20:10:34 +00:00
|
|
|
name := strings.ToLower(ctx.Query("collaborator"))
|
|
|
|
if len(name) == 0 || ctx.Repo.Owner.LowerName == name {
|
|
|
|
ctx.Redirect(setting.AppSubUrl + ctx.Req.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
u, err := models.GetUserByName(name)
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrUserNotExist(err) {
|
|
|
|
ctx.Flash.Error(ctx.Tr("form.user_not_exist"))
|
|
|
|
ctx.Redirect(setting.AppSubUrl + ctx.Req.URL.Path)
|
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "GetUserByName", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Organization is not allowed to be added as a collaborator.
|
|
|
|
if u.IsOrganization() {
|
|
|
|
ctx.Flash.Error(ctx.Tr("repo.settings.org_not_allowed_to_be_collaborator"))
|
|
|
|
ctx.Redirect(setting.AppSubUrl + ctx.Req.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if user is organization member.
|
2016-07-23 17:08:22 +00:00
|
|
|
if ctx.Repo.Owner.IsOrganization() && ctx.Repo.Owner.IsOrgMember(u.ID) {
|
2016-02-20 20:10:34 +00:00
|
|
|
ctx.Flash.Info(ctx.Tr("repo.settings.user_is_org_member"))
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings/collaboration")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = ctx.Repo.Repository.AddCollaborator(u); err != nil {
|
|
|
|
ctx.Handle(500, "AddCollaborator", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if setting.Service.EnableNotifyMail {
|
2016-07-15 16:36:39 +00:00
|
|
|
models.SendCollaboratorMail(u, ctx.User, ctx.Repo.Repository)
|
2016-02-20 20:10:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.add_collaborator_success"))
|
|
|
|
ctx.Redirect(setting.AppSubUrl + ctx.Req.URL.Path)
|
|
|
|
}
|
|
|
|
|
2016-03-11 16:56:52 +00:00
|
|
|
func ChangeCollaborationAccessMode(ctx *context.Context) {
|
2016-03-05 23:08:42 +00:00
|
|
|
if err := ctx.Repo.Repository.ChangeCollaborationAccessMode(
|
|
|
|
ctx.QueryInt64("uid"),
|
|
|
|
models.AccessMode(ctx.QueryInt("mode"))); err != nil {
|
|
|
|
log.Error(4, "ChangeCollaborationAccessMode: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-11 16:56:52 +00:00
|
|
|
func DeleteCollaboration(ctx *context.Context) {
|
2016-03-05 23:08:42 +00:00
|
|
|
if err := ctx.Repo.Repository.DeleteCollaboration(ctx.QueryInt64("id")); err != nil {
|
|
|
|
ctx.Flash.Error("DeleteCollaboration: " + err.Error())
|
|
|
|
} else {
|
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.remove_collaborator_success"))
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.JSON(200, map[string]interface{}{
|
|
|
|
"redirect": ctx.Repo.RepoLink + "/settings/collaboration",
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-03-11 16:56:52 +00:00
|
|
|
func parseOwnerAndRepo(ctx *context.Context) (*models.User, *models.Repository) {
|
2015-10-24 07:36:47 +00:00
|
|
|
owner, err := models.GetUserByName(ctx.Params(":username"))
|
2015-08-07 17:04:12 +00:00
|
|
|
if err != nil {
|
|
|
|
if models.IsErrUserNotExist(err) {
|
|
|
|
ctx.Handle(404, "GetUserByName", err)
|
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "GetUserByName", err)
|
|
|
|
}
|
2015-10-24 07:36:47 +00:00
|
|
|
return nil, nil
|
2015-08-07 17:04:12 +00:00
|
|
|
}
|
|
|
|
|
2016-07-23 17:08:22 +00:00
|
|
|
repo, err := models.GetRepositoryByName(owner.ID, ctx.Params(":reponame"))
|
2015-08-07 17:04:12 +00:00
|
|
|
if err != nil {
|
|
|
|
if models.IsErrRepoNotExist(err) {
|
|
|
|
ctx.Handle(404, "GetRepositoryByName", err)
|
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "GetRepositoryByName", err)
|
|
|
|
}
|
2015-10-24 07:36:47 +00:00
|
|
|
return nil, nil
|
2015-08-07 17:04:12 +00:00
|
|
|
}
|
2015-10-24 07:36:47 +00:00
|
|
|
|
|
|
|
return owner, repo
|
2015-08-06 14:48:11 +00:00
|
|
|
}
|
|
|
|
|
2016-03-11 16:56:52 +00:00
|
|
|
func GitHooks(ctx *context.Context) {
|
2015-08-26 16:30:06 +00:00
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.settings.githooks")
|
2014-10-06 21:50:00 +00:00
|
|
|
ctx.Data["PageIsSettingsGitHooks"] = true
|
|
|
|
|
|
|
|
hooks, err := ctx.Repo.GitRepo.Hooks()
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "Hooks", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Hooks"] = hooks
|
|
|
|
|
|
|
|
ctx.HTML(200, GITHOOKS)
|
|
|
|
}
|
|
|
|
|
2016-03-11 16:56:52 +00:00
|
|
|
func GitHooksEdit(ctx *context.Context) {
|
2015-08-26 16:30:06 +00:00
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.settings.githooks")
|
2014-10-06 21:50:00 +00:00
|
|
|
ctx.Data["PageIsSettingsGitHooks"] = true
|
|
|
|
|
|
|
|
name := ctx.Params(":name")
|
|
|
|
hook, err := ctx.Repo.GitRepo.GetHook(name)
|
|
|
|
if err != nil {
|
|
|
|
if err == git.ErrNotValidHook {
|
|
|
|
ctx.Handle(404, "GetHook", err)
|
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "GetHook", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Hook"] = hook
|
|
|
|
ctx.HTML(200, GITHOOK_EDIT)
|
|
|
|
}
|
|
|
|
|
2016-03-11 16:56:52 +00:00
|
|
|
func GitHooksEditPost(ctx *context.Context) {
|
2014-10-06 21:50:00 +00:00
|
|
|
name := ctx.Params(":name")
|
|
|
|
hook, err := ctx.Repo.GitRepo.GetHook(name)
|
|
|
|
if err != nil {
|
|
|
|
if err == git.ErrNotValidHook {
|
|
|
|
ctx.Handle(404, "GetHook", err)
|
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "GetHook", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
hook.Content = ctx.Query("content")
|
|
|
|
if err = hook.Update(); err != nil {
|
|
|
|
ctx.Handle(500, "hook.Update", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings/hooks/git")
|
|
|
|
}
|
2015-07-25 13:32:04 +00:00
|
|
|
|
2016-03-11 16:56:52 +00:00
|
|
|
func DeployKeys(ctx *context.Context) {
|
2015-08-26 16:30:06 +00:00
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.settings.deploy_keys")
|
2015-08-06 14:48:11 +00:00
|
|
|
ctx.Data["PageIsSettingsKeys"] = true
|
|
|
|
|
2015-08-08 14:43:14 +00:00
|
|
|
keys, err := models.ListDeployKeys(ctx.Repo.Repository.ID)
|
2015-08-06 14:48:11 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "ListDeployKeys", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Deploykeys"] = keys
|
|
|
|
|
|
|
|
ctx.HTML(200, DEPLOY_KEYS)
|
|
|
|
}
|
|
|
|
|
2016-03-11 16:56:52 +00:00
|
|
|
func DeployKeysPost(ctx *context.Context, form auth.AddSSHKeyForm) {
|
2015-08-26 16:30:06 +00:00
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.settings.deploy_keys")
|
2015-08-06 14:48:11 +00:00
|
|
|
ctx.Data["PageIsSettingsKeys"] = true
|
|
|
|
|
2015-08-20 09:11:29 +00:00
|
|
|
keys, err := models.ListDeployKeys(ctx.Repo.Repository.ID)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "ListDeployKeys", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Deploykeys"] = keys
|
|
|
|
|
2015-08-06 14:48:11 +00:00
|
|
|
if ctx.HasError() {
|
|
|
|
ctx.HTML(200, DEPLOY_KEYS)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
content, err := models.CheckPublicKeyString(form.Content)
|
|
|
|
if err != nil {
|
2015-11-19 02:21:47 +00:00
|
|
|
if models.IsErrKeyUnableVerify(err) {
|
2015-08-06 14:48:11 +00:00
|
|
|
ctx.Flash.Info(ctx.Tr("form.unable_verify_ssh_key"))
|
|
|
|
} else {
|
|
|
|
ctx.Data["HasError"] = true
|
|
|
|
ctx.Data["Err_Content"] = true
|
|
|
|
ctx.Flash.Error(ctx.Tr("form.invalid_ssh_key", err.Error()))
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings/keys")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-19 02:21:47 +00:00
|
|
|
key, err := models.AddDeployKey(ctx.Repo.Repository.ID, form.Title, content)
|
|
|
|
if err != nil {
|
2015-08-06 14:48:11 +00:00
|
|
|
ctx.Data["HasError"] = true
|
|
|
|
switch {
|
|
|
|
case models.IsErrKeyAlreadyExist(err):
|
|
|
|
ctx.Data["Err_Content"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.settings.key_been_used"), DEPLOY_KEYS, &form)
|
|
|
|
case models.IsErrKeyNameAlreadyUsed(err):
|
|
|
|
ctx.Data["Err_Title"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.settings.key_name_used"), DEPLOY_KEYS, &form)
|
|
|
|
default:
|
|
|
|
ctx.Handle(500, "AddDeployKey", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-08-08 14:43:14 +00:00
|
|
|
log.Trace("Deploy key added: %d", ctx.Repo.Repository.ID)
|
2015-11-19 02:21:47 +00:00
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.add_key_success", key.Name))
|
2015-08-06 14:48:11 +00:00
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings/keys")
|
|
|
|
}
|
|
|
|
|
2016-03-11 16:56:52 +00:00
|
|
|
func DeleteDeployKey(ctx *context.Context) {
|
2015-12-03 05:24:37 +00:00
|
|
|
if err := models.DeleteDeployKey(ctx.User, ctx.QueryInt64("id")); err != nil {
|
2015-08-06 14:48:11 +00:00
|
|
|
ctx.Flash.Error("DeleteDeployKey: " + err.Error())
|
|
|
|
} else {
|
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.deploy_key_deletion_success"))
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.JSON(200, map[string]interface{}{
|
|
|
|
"redirect": ctx.Repo.RepoLink + "/settings/keys",
|
|
|
|
})
|
2015-07-25 13:32:04 +00:00
|
|
|
}
|