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