2014-05-01 15:14:22 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2018-08-15 11:59:37 +05:30
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2014-05-01 15:14:22 +05:30
|
|
|
// 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 11:58:04 +05:30
|
|
|
import (
|
2019-02-23 03:26:05 +05:30
|
|
|
"errors"
|
2019-05-30 07:52:26 +05:30
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
2019-04-13 02:22:57 +05:30
|
|
|
"net/url"
|
|
|
|
"regexp"
|
2014-07-26 11:58:04 +05:30
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2019-05-30 07:52:26 +05:30
|
|
|
"github.com/Unknwon/com"
|
2019-04-13 02:22:57 +05:30
|
|
|
"mvdan.cc/xurls/v2"
|
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/auth"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-03-27 15:03:00 +05:30
|
|
|
"code.gitea.io/gitea/modules/git"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2017-12-11 10:07:04 +05:30
|
|
|
"code.gitea.io/gitea/modules/util"
|
2018-08-15 11:59:37 +05:30
|
|
|
"code.gitea.io/gitea/modules/validation"
|
2017-12-07 12:30:09 +05:30
|
|
|
"code.gitea.io/gitea/routers/utils"
|
2014-07-26 11:58:04 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2016-11-08 02:28:22 +05:30
|
|
|
tplSettingsOptions base.TplName = "repo/settings/options"
|
|
|
|
tplCollaboration base.TplName = "repo/settings/collaboration"
|
2017-02-21 20:32:10 +05:30
|
|
|
tplBranches base.TplName = "repo/settings/branches"
|
2016-11-08 02:28:22 +05:30
|
|
|
tplGithooks base.TplName = "repo/settings/githooks"
|
|
|
|
tplGithookEdit base.TplName = "repo/settings/githook_edit"
|
|
|
|
tplDeployKeys base.TplName = "repo/settings/deploy_keys"
|
2017-09-14 13:46:22 +05:30
|
|
|
tplProtectedBranch base.TplName = "repo/settings/protected_branch"
|
2014-07-26 11:58:04 +05:30
|
|
|
)
|
|
|
|
|
2019-04-13 02:22:57 +05:30
|
|
|
var validFormAddress *regexp.Regexp
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// Settings show a repository's settings page
|
2016-03-11 22:26:52 +05:30
|
|
|
func Settings(ctx *context.Context) {
|
2014-08-02 23:17:33 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.settings")
|
|
|
|
ctx.Data["PageIsSettingsOptions"] = true
|
2019-02-23 03:26:05 +05:30
|
|
|
ctx.Data["ForcePrivate"] = setting.Repository.ForcePrivate
|
2016-11-08 02:28:22 +05:30
|
|
|
ctx.HTML(200, tplSettingsOptions)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// SettingsPost response for changes of a repository
|
2016-03-11 22:26:52 +05:30
|
|
|
func SettingsPost(ctx *context.Context, form auth.RepoSettingForm) {
|
2014-08-02 23:17:33 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.settings")
|
|
|
|
ctx.Data["PageIsSettingsOptions"] = true
|
2014-07-26 11:58:04 +05:30
|
|
|
|
2015-08-31 11:06:31 +05:30
|
|
|
repo := ctx.Repo.Repository
|
|
|
|
|
2014-07-26 11:58:04 +05:30
|
|
|
switch ctx.Query("action") {
|
|
|
|
case "update":
|
|
|
|
if ctx.HasError() {
|
2016-11-08 02:28:22 +05:30
|
|
|
ctx.HTML(200, tplSettingsOptions)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-09-01 21:13:53 +05:30
|
|
|
isNameChanged := false
|
2015-09-01 18:59:52 +05:30
|
|
|
oldRepoName := repo.Name
|
2014-07-26 11:58:04 +05:30
|
|
|
newRepoName := form.RepoName
|
|
|
|
// Check if repository name has been changed.
|
2015-08-31 11:06:31 +05:30
|
|
|
if repo.LowerName != strings.ToLower(newRepoName) {
|
2015-09-01 21:13:53 +05:30
|
|
|
isNameChanged = true
|
2015-08-31 11:06:31 +05:30
|
|
|
if err := models.ChangeRepositoryName(ctx.Repo.Owner, repo.Name, newRepoName); err != nil {
|
|
|
|
ctx.Data["Err_RepoName"] = true
|
2015-03-27 02:41:47 +05:30
|
|
|
switch {
|
2015-08-08 14:40:34 +05:30
|
|
|
case models.IsErrRepoAlreadyExist(err):
|
2016-11-08 02:28:22 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("form.repo_name_been_taken"), tplSettingsOptions, &form)
|
2015-03-27 02:41:47 +05:30
|
|
|
case models.IsErrNameReserved(err):
|
2016-11-08 02:28:22 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.form.name_reserved", err.(models.ErrNameReserved).Name), tplSettingsOptions, &form)
|
2015-03-27 02:41:47 +05:30
|
|
|
case models.IsErrNamePatternNotAllowed(err):
|
2016-11-08 02:28:22 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.form.name_pattern_not_allowed", err.(models.ErrNamePatternNotAllowed).Pattern), tplSettingsOptions, &form)
|
2015-03-27 02:41:47 +05:30
|
|
|
default:
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("ChangeRepositoryName", err)
|
2014-08-24 18:39:05 +05:30
|
|
|
}
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
2015-09-01 21:13:53 +05:30
|
|
|
|
2017-02-05 20:05:03 +05:30
|
|
|
err := models.NewRepoRedirect(ctx.Repo.Owner.ID, repo.ID, repo.Name, newRepoName)
|
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("NewRepoRedirect", err)
|
2017-03-13 07:11:40 +05:30
|
|
|
return
|
2017-02-05 20:05:03 +05:30
|
|
|
}
|
|
|
|
|
2015-08-31 11:06:31 +05:30
|
|
|
log.Trace("Repository name changed: %s/%s -> %s", ctx.Repo.Owner.Name, repo.Name, newRepoName)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
2015-08-31 11:06:31 +05:30
|
|
|
// In case it's just a case change.
|
|
|
|
repo.Name = newRepoName
|
|
|
|
repo.LowerName = strings.ToLower(newRepoName)
|
|
|
|
repo.Description = form.Description
|
|
|
|
repo.Website = form.Website
|
2015-11-19 01:31:11 +05:30
|
|
|
|
|
|
|
// Visibility of forked repository is forced sync with base repository.
|
|
|
|
if repo.IsFork {
|
|
|
|
form.Private = repo.BaseRepo.IsPrivate
|
|
|
|
}
|
|
|
|
|
2015-08-31 11:06:31 +05:30
|
|
|
visibilityChanged := repo.IsPrivate != form.Private
|
2019-04-11 14:02:42 +05:30
|
|
|
// when ForcePrivate enabled, you could change public repo to private, but only admin users can change private to public
|
|
|
|
if visibilityChanged && setting.Repository.ForcePrivate && !form.Private && !ctx.User.IsAdmin {
|
2019-02-23 03:26:05 +05:30
|
|
|
ctx.ServerError("Force Private enabled", errors.New("cannot change private repository to public"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-08-31 11:06:31 +05:30
|
|
|
repo.IsPrivate = form.Private
|
|
|
|
if err := models.UpdateRepository(repo, visibilityChanged); err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("UpdateRepository", err)
|
2015-09-01 18:59:52 +05:30
|
|
|
return
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
2015-12-05 08:00:33 +05:30
|
|
|
log.Trace("Repository basic settings updated: %s/%s", ctx.Repo.Owner.Name, repo.Name)
|
2014-07-26 11:58:04 +05:30
|
|
|
|
2015-09-01 21:13:53 +05:30
|
|
|
if isNameChanged {
|
|
|
|
if err := models.RenameRepoAction(ctx.User, oldRepoName, repo); err != nil {
|
2019-04-02 13:18:31 +05:30
|
|
|
log.Error("RenameRepoAction: %v", err)
|
2015-09-01 21:13:53 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-31 04:48:33 +05:30
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.update_settings_success"))
|
|
|
|
ctx.Redirect(repo.Link() + "/settings")
|
2016-07-17 07:00:43 +05:30
|
|
|
|
2016-08-31 04:48:33 +05:30
|
|
|
case "mirror":
|
|
|
|
if !repo.IsMirror {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("", nil)
|
2016-08-31 04:48:33 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-03-26 03:21:55 +05:30
|
|
|
// This section doesn't require repo_name/RepoName to be set in the form, don't show it
|
|
|
|
// as an error on the UI for this action
|
|
|
|
ctx.Data["Err_RepoName"] = nil
|
|
|
|
|
2017-04-08 20:57:26 +05:30
|
|
|
interval, err := time.ParseDuration(form.Interval)
|
2019-01-26 13:56:23 +05:30
|
|
|
if err != nil || (interval != 0 && interval < setting.Mirror.MinInterval) {
|
2019-03-26 03:21:55 +05:30
|
|
|
ctx.Data["Err_Interval"] = true
|
2017-04-08 20:57:26 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.mirror_interval_invalid"), tplSettingsOptions, &form)
|
|
|
|
} else {
|
2016-08-31 04:48:33 +05:30
|
|
|
ctx.Repo.Mirror.EnablePrune = form.EnablePrune
|
2017-04-08 20:57:26 +05:30
|
|
|
ctx.Repo.Mirror.Interval = interval
|
2018-11-09 05:28:02 +05:30
|
|
|
if interval != 0 {
|
|
|
|
ctx.Repo.Mirror.NextUpdateUnix = util.TimeStampNow().AddDuration(interval)
|
|
|
|
} else {
|
|
|
|
ctx.Repo.Mirror.NextUpdateUnix = 0
|
|
|
|
}
|
2016-08-31 04:48:33 +05:30
|
|
|
if err := models.UpdateMirror(ctx.Repo.Mirror); err != nil {
|
2019-03-26 03:21:55 +05:30
|
|
|
ctx.Data["Err_Interval"] = true
|
2017-04-08 20:57:26 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.mirror_interval_invalid"), tplSettingsOptions, &form)
|
2015-12-09 06:36:12 +05:30
|
|
|
return
|
|
|
|
}
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
2019-04-13 02:22:57 +05:30
|
|
|
|
|
|
|
// Validate the form.MirrorAddress
|
|
|
|
u, err := url.Parse(form.MirrorAddress)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Data["Err_MirrorAddress"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.mirror_address_url_invalid"), tplSettingsOptions, &form)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if u.Opaque != "" || !(u.Scheme == "http" || u.Scheme == "https" || u.Scheme == "git") {
|
|
|
|
ctx.Data["Err_MirrorAddress"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.mirror_address_protocol_invalid"), tplSettingsOptions, &form)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now use xurls
|
|
|
|
address := validFormAddress.FindString(form.MirrorAddress)
|
|
|
|
if address != form.MirrorAddress && form.MirrorAddress != "" {
|
|
|
|
ctx.Data["Err_MirrorAddress"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.mirror_address_url_invalid"), tplSettingsOptions, &form)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if u.EscapedPath() == "" || u.Host == "" || !u.IsAbs() {
|
|
|
|
ctx.Data["Err_MirrorAddress"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.mirror_address_url_invalid"), tplSettingsOptions, &form)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
address = u.String()
|
|
|
|
|
|
|
|
if err := ctx.Repo.Mirror.SaveAddress(address); err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("SaveAddress", err)
|
2016-08-31 04:48:33 +05:30
|
|
|
return
|
|
|
|
}
|
2014-07-26 11:58:04 +05:30
|
|
|
|
2014-08-02 23:17:33 +05:30
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.update_settings_success"))
|
2016-07-15 19:23:43 +05:30
|
|
|
ctx.Redirect(repo.Link() + "/settings")
|
2015-12-05 08:00:33 +05:30
|
|
|
|
2016-08-31 04:48:33 +05:30
|
|
|
case "mirror-sync":
|
|
|
|
if !repo.IsMirror {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("", nil)
|
2016-08-31 04:48:33 +05:30
|
|
|
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 08:00:33 +05:30
|
|
|
case "advanced":
|
2017-02-04 21:23:46 +05:30
|
|
|
var units []models.RepoUnit
|
|
|
|
|
2019-03-26 03:21:55 +05:30
|
|
|
// This section doesn't require repo_name/RepoName to be set in the form, don't show it
|
|
|
|
// as an error on the UI for this action
|
|
|
|
ctx.Data["Err_RepoName"] = nil
|
|
|
|
|
2017-02-04 21:23:46 +05:30
|
|
|
for _, tp := range models.MustRepoUnits {
|
|
|
|
units = append(units, models.RepoUnit{
|
|
|
|
RepoID: repo.ID,
|
|
|
|
Type: tp,
|
|
|
|
Config: new(models.UnitConfig),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
if form.EnableWiki {
|
|
|
|
if form.EnableExternalWiki {
|
2018-08-15 11:59:37 +05:30
|
|
|
if !validation.IsValidExternalURL(form.ExternalWikiURL) {
|
2017-03-13 07:11:40 +05:30
|
|
|
ctx.Flash.Error(ctx.Tr("repo.settings.external_wiki_url_error"))
|
|
|
|
ctx.Redirect(repo.Link() + "/settings")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-02-04 21:23:46 +05:30
|
|
|
units = append(units, models.RepoUnit{
|
|
|
|
RepoID: repo.ID,
|
|
|
|
Type: models.UnitTypeExternalWiki,
|
|
|
|
Config: &models.ExternalWikiConfig{
|
|
|
|
ExternalWikiURL: form.ExternalWikiURL,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
units = append(units, models.RepoUnit{
|
|
|
|
RepoID: repo.ID,
|
|
|
|
Type: models.UnitTypeWiki,
|
|
|
|
Config: new(models.UnitConfig),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if form.EnableIssues {
|
|
|
|
if form.EnableExternalTracker {
|
2018-08-15 11:59:37 +05:30
|
|
|
if !validation.IsValidExternalURL(form.ExternalTrackerURL) {
|
2017-03-13 07:11:40 +05:30
|
|
|
ctx.Flash.Error(ctx.Tr("repo.settings.external_tracker_url_error"))
|
|
|
|
ctx.Redirect(repo.Link() + "/settings")
|
|
|
|
return
|
|
|
|
}
|
2019-05-31 14:51:15 +05:30
|
|
|
if len(form.TrackerURLFormat) != 0 && !validation.IsValidExternalTrackerURLFormat(form.TrackerURLFormat) {
|
2018-08-15 11:59:37 +05:30
|
|
|
ctx.Flash.Error(ctx.Tr("repo.settings.tracker_url_format_error"))
|
|
|
|
ctx.Redirect(repo.Link() + "/settings")
|
|
|
|
return
|
|
|
|
}
|
2017-02-04 21:23:46 +05:30
|
|
|
units = append(units, models.RepoUnit{
|
|
|
|
RepoID: repo.ID,
|
2017-03-13 07:11:40 +05:30
|
|
|
Type: models.UnitTypeExternalTracker,
|
2017-02-04 21:23:46 +05:30
|
|
|
Config: &models.ExternalTrackerConfig{
|
|
|
|
ExternalTrackerURL: form.ExternalTrackerURL,
|
|
|
|
ExternalTrackerFormat: form.TrackerURLFormat,
|
|
|
|
ExternalTrackerStyle: form.TrackerIssueStyle,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
units = append(units, models.RepoUnit{
|
|
|
|
RepoID: repo.ID,
|
|
|
|
Type: models.UnitTypeIssues,
|
2017-09-12 12:18:13 +05:30
|
|
|
Config: &models.IssuesConfig{
|
|
|
|
EnableTimetracker: form.EnableTimetracker,
|
|
|
|
AllowOnlyContributorsToTrackTime: form.AllowOnlyContributorsToTrackTime,
|
2018-07-18 02:53:58 +05:30
|
|
|
EnableDependencies: form.EnableIssueDependencies,
|
2017-09-12 12:18:13 +05:30
|
|
|
},
|
2017-02-04 21:23:46 +05:30
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if form.EnablePulls {
|
|
|
|
units = append(units, models.RepoUnit{
|
|
|
|
RepoID: repo.ID,
|
|
|
|
Type: models.UnitTypePullRequests,
|
2018-01-06 00:26:50 +05:30
|
|
|
Config: &models.PullRequestsConfig{
|
|
|
|
IgnoreWhitespaceConflicts: form.PullsIgnoreWhitespace,
|
|
|
|
AllowMerge: form.PullsAllowMerge,
|
|
|
|
AllowRebase: form.PullsAllowRebase,
|
2018-12-27 15:57:08 +05:30
|
|
|
AllowRebaseMerge: form.PullsAllowRebaseMerge,
|
2018-01-06 00:26:50 +05:30
|
|
|
AllowSquash: form.PullsAllowSquash,
|
|
|
|
},
|
2017-02-04 21:23:46 +05:30
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := models.UpdateRepositoryUnits(repo, units); err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("UpdateRepositoryUnits", err)
|
2015-12-05 08:00:33 +05:30
|
|
|
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")
|
|
|
|
|
2018-03-27 19:43:20 +05:30
|
|
|
case "admin":
|
|
|
|
if !ctx.User.IsAdmin {
|
|
|
|
ctx.Error(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if repo.IsFsckEnabled != form.EnableHealthCheck {
|
|
|
|
repo.IsFsckEnabled = form.EnableHealthCheck
|
|
|
|
}
|
|
|
|
|
2019-02-11 00:57:19 +05:30
|
|
|
if repo.CloseIssuesViaCommitInAnyBranch != form.EnableCloseIssuesViaCommitInAnyBranch {
|
|
|
|
repo.CloseIssuesViaCommitInAnyBranch = form.EnableCloseIssuesViaCommitInAnyBranch
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := models.UpdateRepository(repo, false); err != nil {
|
|
|
|
ctx.ServerError("UpdateRepository", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Trace("Repository admin settings updated: %s/%s", ctx.Repo.Owner.Name, repo.Name)
|
|
|
|
|
2018-03-27 19:43:20 +05:30
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.update_settings_success"))
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings")
|
|
|
|
|
2016-02-15 01:42:00 +05:30
|
|
|
case "convert":
|
2016-03-06 07:15:23 +05:30
|
|
|
if !ctx.Repo.IsOwner() {
|
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
2016-02-15 01:42:00 +05:30
|
|
|
if repo.Name != form.RepoName {
|
2016-11-08 02:28:22 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("form.enterred_invalid_repo_name"), tplSettingsOptions, nil)
|
2016-02-15 01:42:00 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-02-15 01:52:36 +05:30
|
|
|
if !repo.IsMirror {
|
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
2016-02-15 01:42:00 +05:30
|
|
|
repo.IsMirror = false
|
|
|
|
|
2016-08-11 22:48:51 +05:30
|
|
|
if _, err := models.CleanUpMigrateInfo(repo); err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("CleanUpMigrateInfo", err)
|
2016-02-15 01:42:00 +05:30
|
|
|
return
|
2016-02-16 01:27:15 +05:30
|
|
|
} else if err = models.DeleteMirrorByRepoID(ctx.Repo.Repository.ID); err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("DeleteMirrorByRepoID", err)
|
2016-02-15 01:42:00 +05:30
|
|
|
return
|
|
|
|
}
|
2016-02-15 03:10:39 +05:30
|
|
|
log.Trace("Repository converted from mirror to regular: %s/%s", ctx.Repo.Owner.Name, repo.Name)
|
2016-02-15 01:42:00 +05:30
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.convert_succeed"))
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.Redirect(setting.AppSubURL + "/" + ctx.Repo.Owner.Name + "/" + repo.Name)
|
2016-02-15 01:42:00 +05:30
|
|
|
|
2014-07-26 11:58:04 +05:30
|
|
|
case "transfer":
|
2016-03-06 07:15:23 +05:30
|
|
|
if !ctx.Repo.IsOwner() {
|
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
2015-08-31 11:06:31 +05:30
|
|
|
if repo.Name != form.RepoName {
|
2016-11-08 02:28:22 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("form.enterred_invalid_repo_name"), tplSettingsOptions, nil)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-08-02 23:17:33 +05:30
|
|
|
newOwner := ctx.Query("new_owner_name")
|
2015-02-23 04:54:49 +05:30
|
|
|
isExist, err := models.IsUserExist(0, newOwner)
|
2014-07-26 11:58:04 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("IsUserExist", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
} else if !isExist {
|
2016-11-08 02:28:22 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("form.enterred_invalid_owner_name"), tplSettingsOptions, nil)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
2015-03-06 05:50:27 +05:30
|
|
|
}
|
|
|
|
|
2019-02-28 09:21:46 +05:30
|
|
|
oldOwnerID := ctx.Repo.Owner.ID
|
2015-08-31 11:06:31 +05:30
|
|
|
if err = models.TransferOwnership(ctx.User, newOwner, repo); err != nil {
|
2015-08-08 14:40:34 +05:30
|
|
|
if models.IsErrRepoAlreadyExist(err) {
|
2016-11-08 02:28:22 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.settings.new_owner_has_same_repo"), tplSettingsOptions, nil)
|
2014-09-13 03:59:58 +05:30
|
|
|
} else {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("TransferOwnership", err)
|
2014-09-13 03:59:58 +05:30
|
|
|
}
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
2019-02-28 09:21:46 +05:30
|
|
|
|
|
|
|
err = models.NewRepoRedirect(oldOwnerID, repo.ID, repo.Name, repo.Name)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("NewRepoRedirect", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-11-27 17:29:12 +05:30
|
|
|
log.Trace("Repository transferred: %s/%s -> %s", ctx.Repo.Owner.Name, repo.Name, newOwner)
|
2014-09-18 00:22:46 +05:30
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.transfer_succeed"))
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.Redirect(setting.AppSubURL + "/" + newOwner + "/" + repo.Name)
|
2016-03-06 07:15:23 +05:30
|
|
|
|
2014-07-26 11:58:04 +05:30
|
|
|
case "delete":
|
2016-03-06 07:15:23 +05:30
|
|
|
if !ctx.Repo.IsOwner() {
|
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
2015-08-31 11:06:31 +05:30
|
|
|
if repo.Name != form.RepoName {
|
2016-11-08 02:28:22 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("form.enterred_invalid_repo_name"), tplSettingsOptions, nil)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
2014-08-27 14:09:36 +05:30
|
|
|
}
|
|
|
|
|
2017-09-03 13:50:24 +05:30
|
|
|
if err := models.DeleteRepository(ctx.User, ctx.Repo.Owner.ID, repo.ID); err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("DeleteRepository", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
2015-08-31 11:06:31 +05:30
|
|
|
log.Trace("Repository deleted: %s/%s", ctx.Repo.Owner.Name, repo.Name)
|
2015-12-06 04:09:29 +05:30
|
|
|
|
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.deletion_success"))
|
2015-08-31 11:06:31 +05:30
|
|
|
ctx.Redirect(ctx.Repo.Owner.DashboardLink())
|
2016-03-06 07:15:23 +05:30
|
|
|
|
2016-03-04 02:08:25 +05:30
|
|
|
case "delete-wiki":
|
2016-03-06 07:15:23 +05:30
|
|
|
if !ctx.Repo.IsOwner() {
|
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
2016-03-04 02:08:25 +05:30
|
|
|
if repo.Name != form.RepoName {
|
2016-11-08 02:28:22 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("form.enterred_invalid_repo_name"), tplSettingsOptions, nil)
|
2016-03-04 02:08:25 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-03-04 09:54:22 +05:30
|
|
|
repo.DeleteWiki()
|
2016-03-04 02:08:25 +05:30
|
|
|
log.Trace("Repository wiki deleted: %s/%s", ctx.Repo.Owner.Name, repo.Name)
|
|
|
|
|
2016-03-04 09:54:22 +05:30
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.wiki_deletion_success"))
|
2016-03-04 02:08:25 +05:30
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings")
|
2016-08-31 04:48:33 +05:30
|
|
|
|
2019-01-24 00:28:38 +05:30
|
|
|
case "archive":
|
|
|
|
if !ctx.Repo.IsOwner() {
|
|
|
|
ctx.Error(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if repo.IsMirror {
|
|
|
|
ctx.Flash.Error(ctx.Tr("repo.settings.archive.error_ismirror"))
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := repo.SetArchiveRepoState(true); err != nil {
|
2019-04-02 13:18:31 +05:30
|
|
|
log.Error("Tried to archive a repo: %s", err)
|
2019-01-24 00:28:38 +05:30
|
|
|
ctx.Flash.Error(ctx.Tr("repo.settings.archive.error"))
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.archive.success"))
|
|
|
|
|
|
|
|
log.Trace("Repository was archived: %s/%s", ctx.Repo.Owner.Name, repo.Name)
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings")
|
|
|
|
case "unarchive":
|
|
|
|
if !ctx.Repo.IsOwner() {
|
|
|
|
ctx.Error(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := repo.SetArchiveRepoState(false); err != nil {
|
2019-04-02 13:18:31 +05:30
|
|
|
log.Error("Tried to unarchive a repo: %s", err)
|
2019-01-24 00:28:38 +05:30
|
|
|
ctx.Flash.Error(ctx.Tr("repo.settings.unarchive.error"))
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.unarchive.success"))
|
|
|
|
|
|
|
|
log.Trace("Repository was un-archived: %s/%s", ctx.Repo.Owner.Name, repo.Name)
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings")
|
|
|
|
|
2016-08-31 04:48:33 +05:30
|
|
|
default:
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("", nil)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// Collaboration render a repository's collaboration page
|
2016-03-11 22:26:52 +05:30
|
|
|
func Collaboration(ctx *context.Context) {
|
2014-08-07 16:10:05 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.settings")
|
|
|
|
ctx.Data["PageIsSettingsCollaboration"] = true
|
|
|
|
|
2015-01-23 13:24:16 +05:30
|
|
|
users, err := ctx.Repo.Repository.GetCollaborators()
|
2014-07-26 11:58:04 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetCollaborators", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
2015-01-23 13:24:16 +05:30
|
|
|
ctx.Data["Collaborators"] = users
|
2016-03-06 04:38:42 +05:30
|
|
|
|
2016-11-08 02:28:22 +05:30
|
|
|
ctx.HTML(200, tplCollaboration)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// CollaborationPost response for actions for a collaboration of a repository
|
2016-03-11 22:26:52 +05:30
|
|
|
func CollaborationPost(ctx *context.Context) {
|
2017-12-07 12:30:09 +05:30
|
|
|
name := utils.RemoveUsernameParameterSuffix(strings.ToLower(ctx.Query("collaborator")))
|
2016-02-21 01:40:34 +05:30
|
|
|
if len(name) == 0 || ctx.Repo.Owner.LowerName == name {
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.Redirect(setting.AppSubURL + ctx.Req.URL.Path)
|
2016-02-21 01:40:34 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
u, err := models.GetUserByName(name)
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrUserNotExist(err) {
|
|
|
|
ctx.Flash.Error(ctx.Tr("form.user_not_exist"))
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.Redirect(setting.AppSubURL + ctx.Req.URL.Path)
|
2016-02-21 01:40:34 +05:30
|
|
|
} else {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetUserByName", err)
|
2016-02-21 01:40:34 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-08-07 15:31:06 +05:30
|
|
|
if !u.IsActive {
|
|
|
|
ctx.Flash.Error(ctx.Tr("repo.settings.add_collaborator_inactive_user"))
|
|
|
|
ctx.Redirect(setting.AppSubURL + ctx.Req.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-02-21 01:40:34 +05:30
|
|
|
// 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"))
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.Redirect(setting.AppSubURL + ctx.Req.URL.Path)
|
2016-02-21 01:40:34 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-08-07 07:29:42 +05:30
|
|
|
if got, err := ctx.Repo.Repository.IsCollaborator(u.ID); err == nil && got {
|
|
|
|
ctx.Flash.Error(ctx.Tr("repo.settings.add_collaborator_duplicate"))
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings/collaboration")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-02-21 01:40:34 +05:30
|
|
|
if err = ctx.Repo.Repository.AddCollaborator(u); err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("AddCollaborator", err)
|
2016-02-21 01:40:34 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if setting.Service.EnableNotifyMail {
|
2016-07-15 22:06:39 +05:30
|
|
|
models.SendCollaboratorMail(u, ctx.User, ctx.Repo.Repository)
|
2016-02-21 01:40:34 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.add_collaborator_success"))
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.Redirect(setting.AppSubURL + ctx.Req.URL.Path)
|
2016-02-21 01:40:34 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// ChangeCollaborationAccessMode response for changing access of a collaboration
|
2016-03-11 22:26:52 +05:30
|
|
|
func ChangeCollaborationAccessMode(ctx *context.Context) {
|
2016-03-06 04:38:42 +05:30
|
|
|
if err := ctx.Repo.Repository.ChangeCollaborationAccessMode(
|
|
|
|
ctx.QueryInt64("uid"),
|
|
|
|
models.AccessMode(ctx.QueryInt("mode"))); err != nil {
|
2019-04-02 13:18:31 +05:30
|
|
|
log.Error("ChangeCollaborationAccessMode: %v", err)
|
2016-03-06 04:38:42 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// DeleteCollaboration delete a collaboration for a repository
|
2016-03-11 22:26:52 +05:30
|
|
|
func DeleteCollaboration(ctx *context.Context) {
|
2016-03-06 04:38:42 +05:30
|
|
|
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",
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-02-21 20:32:10 +05:30
|
|
|
// parseOwnerAndRepo get repos by owner
|
2016-03-11 22:26:52 +05:30
|
|
|
func parseOwnerAndRepo(ctx *context.Context) (*models.User, *models.Repository) {
|
2015-10-24 13:06:47 +05:30
|
|
|
owner, err := models.GetUserByName(ctx.Params(":username"))
|
2015-08-07 22:34:12 +05:30
|
|
|
if err != nil {
|
|
|
|
if models.IsErrUserNotExist(err) {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("GetUserByName", err)
|
2015-08-07 22:34:12 +05:30
|
|
|
} else {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetUserByName", err)
|
2015-08-07 22:34:12 +05:30
|
|
|
}
|
2015-10-24 13:06:47 +05:30
|
|
|
return nil, nil
|
2015-08-07 22:34:12 +05:30
|
|
|
}
|
|
|
|
|
2016-07-23 22:38:22 +05:30
|
|
|
repo, err := models.GetRepositoryByName(owner.ID, ctx.Params(":reponame"))
|
2015-08-07 22:34:12 +05:30
|
|
|
if err != nil {
|
|
|
|
if models.IsErrRepoNotExist(err) {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("GetRepositoryByName", err)
|
2015-08-07 22:34:12 +05:30
|
|
|
} else {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetRepositoryByName", err)
|
2015-08-07 22:34:12 +05:30
|
|
|
}
|
2015-10-24 13:06:47 +05:30
|
|
|
return nil, nil
|
2015-08-07 22:34:12 +05:30
|
|
|
}
|
2015-10-24 13:06:47 +05:30
|
|
|
|
|
|
|
return owner, repo
|
2015-08-06 20:18:11 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// GitHooks hooks of a repository
|
2016-03-11 22:26:52 +05:30
|
|
|
func GitHooks(ctx *context.Context) {
|
2015-08-26 22:00:06 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.settings.githooks")
|
2014-10-07 03:20:00 +05:30
|
|
|
ctx.Data["PageIsSettingsGitHooks"] = true
|
|
|
|
|
|
|
|
hooks, err := ctx.Repo.GitRepo.Hooks()
|
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("Hooks", err)
|
2014-10-07 03:20:00 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Hooks"] = hooks
|
|
|
|
|
2016-11-08 02:28:22 +05:30
|
|
|
ctx.HTML(200, tplGithooks)
|
2014-10-07 03:20:00 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// GitHooksEdit render for editing a hook of repository page
|
2016-03-11 22:26:52 +05:30
|
|
|
func GitHooksEdit(ctx *context.Context) {
|
2015-08-26 22:00:06 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.settings.githooks")
|
2014-10-07 03:20:00 +05:30
|
|
|
ctx.Data["PageIsSettingsGitHooks"] = true
|
|
|
|
|
|
|
|
name := ctx.Params(":name")
|
|
|
|
hook, err := ctx.Repo.GitRepo.GetHook(name)
|
|
|
|
if err != nil {
|
|
|
|
if err == git.ErrNotValidHook {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("GetHook", err)
|
2014-10-07 03:20:00 +05:30
|
|
|
} else {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetHook", err)
|
2014-10-07 03:20:00 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Hook"] = hook
|
2016-11-08 02:28:22 +05:30
|
|
|
ctx.HTML(200, tplGithookEdit)
|
2014-10-07 03:20:00 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// GitHooksEditPost response for editing a git hook of a repository
|
2016-03-11 22:26:52 +05:30
|
|
|
func GitHooksEditPost(ctx *context.Context) {
|
2014-10-07 03:20:00 +05:30
|
|
|
name := ctx.Params(":name")
|
|
|
|
hook, err := ctx.Repo.GitRepo.GetHook(name)
|
|
|
|
if err != nil {
|
|
|
|
if err == git.ErrNotValidHook {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("GetHook", err)
|
2014-10-07 03:20:00 +05:30
|
|
|
} else {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetHook", err)
|
2014-10-07 03:20:00 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
hook.Content = ctx.Query("content")
|
|
|
|
if err = hook.Update(); err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("hook.Update", err)
|
2014-10-07 03:20:00 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings/hooks/git")
|
|
|
|
}
|
2015-07-25 19:02:04 +05:30
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// DeployKeys render the deploy keys list of a repository page
|
2016-03-11 22:26:52 +05:30
|
|
|
func DeployKeys(ctx *context.Context) {
|
2015-08-26 22:00:06 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.settings.deploy_keys")
|
2015-08-06 20:18:11 +05:30
|
|
|
ctx.Data["PageIsSettingsKeys"] = true
|
2017-11-21 09:19:33 +05:30
|
|
|
ctx.Data["DisableSSH"] = setting.SSH.Disabled
|
2015-08-06 20:18:11 +05:30
|
|
|
|
2015-08-08 20:13:14 +05:30
|
|
|
keys, err := models.ListDeployKeys(ctx.Repo.Repository.ID)
|
2015-08-06 20:18:11 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("ListDeployKeys", err)
|
2015-08-06 20:18:11 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Deploykeys"] = keys
|
|
|
|
|
2016-11-08 02:28:22 +05:30
|
|
|
ctx.HTML(200, tplDeployKeys)
|
2015-08-06 20:18:11 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// DeployKeysPost response for adding a deploy key of a repository
|
2017-04-26 18:40:43 +05:30
|
|
|
func DeployKeysPost(ctx *context.Context, form auth.AddKeyForm) {
|
2015-08-26 22:00:06 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.settings.deploy_keys")
|
2015-08-06 20:18:11 +05:30
|
|
|
ctx.Data["PageIsSettingsKeys"] = true
|
|
|
|
|
2015-08-20 14:41:29 +05:30
|
|
|
keys, err := models.ListDeployKeys(ctx.Repo.Repository.ID)
|
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("ListDeployKeys", err)
|
2015-08-20 14:41:29 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Deploykeys"] = keys
|
|
|
|
|
2015-08-06 20:18:11 +05:30
|
|
|
if ctx.HasError() {
|
2016-11-08 02:28:22 +05:30
|
|
|
ctx.HTML(200, tplDeployKeys)
|
2015-08-06 20:18:11 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
content, err := models.CheckPublicKeyString(form.Content)
|
|
|
|
if err != nil {
|
2017-11-21 09:19:33 +05:30
|
|
|
if models.IsErrSSHDisabled(err) {
|
|
|
|
ctx.Flash.Info(ctx.Tr("settings.ssh_disabled"))
|
|
|
|
} else if models.IsErrKeyUnableVerify(err) {
|
2015-08-06 20:18:11 +05:30
|
|
|
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()))
|
|
|
|
}
|
2017-11-21 09:19:33 +05:30
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings/keys")
|
|
|
|
return
|
2015-08-06 20:18:11 +05:30
|
|
|
}
|
|
|
|
|
2018-01-07 04:25:53 +05:30
|
|
|
key, err := models.AddDeployKey(ctx.Repo.Repository.ID, form.Title, content, !form.IsWritable)
|
2015-11-19 07:51:47 +05:30
|
|
|
if err != nil {
|
2015-08-06 20:18:11 +05:30
|
|
|
ctx.Data["HasError"] = true
|
|
|
|
switch {
|
2018-09-16 20:57:43 +05:30
|
|
|
case models.IsErrDeployKeyAlreadyExist(err):
|
2015-08-06 20:18:11 +05:30
|
|
|
ctx.Data["Err_Content"] = true
|
2016-11-08 02:28:22 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.settings.key_been_used"), tplDeployKeys, &form)
|
2019-02-04 05:26:53 +05:30
|
|
|
case models.IsErrKeyAlreadyExist(err):
|
|
|
|
ctx.Data["Err_Content"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("settings.ssh_key_been_used"), tplDeployKeys, &form)
|
2015-08-06 20:18:11 +05:30
|
|
|
case models.IsErrKeyNameAlreadyUsed(err):
|
|
|
|
ctx.Data["Err_Title"] = true
|
2016-11-08 02:28:22 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.settings.key_name_used"), tplDeployKeys, &form)
|
2015-08-06 20:18:11 +05:30
|
|
|
default:
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("AddDeployKey", err)
|
2015-08-06 20:18:11 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-08-08 20:13:14 +05:30
|
|
|
log.Trace("Deploy key added: %d", ctx.Repo.Repository.ID)
|
2015-11-19 07:51:47 +05:30
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.add_key_success", key.Name))
|
2015-08-06 20:18:11 +05:30
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings/keys")
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// DeleteDeployKey response for deleting a deploy key
|
2016-03-11 22:26:52 +05:30
|
|
|
func DeleteDeployKey(ctx *context.Context) {
|
2015-12-03 10:54:37 +05:30
|
|
|
if err := models.DeleteDeployKey(ctx.User, ctx.QueryInt64("id")); err != nil {
|
2015-08-06 20:18:11 +05:30
|
|
|
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 19:02:04 +05:30
|
|
|
}
|
2019-04-13 02:22:57 +05:30
|
|
|
|
|
|
|
func init() {
|
|
|
|
var err error
|
|
|
|
validFormAddress, err = xurls.StrictMatchingScheme(`(https?)|(git)://`)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
2019-05-30 07:52:26 +05:30
|
|
|
|
|
|
|
// UpdateAvatarSetting update repo's avatar
|
|
|
|
func UpdateAvatarSetting(ctx *context.Context, form auth.AvatarForm) error {
|
|
|
|
ctxRepo := ctx.Repo.Repository
|
|
|
|
|
|
|
|
if form.Avatar == nil {
|
|
|
|
// No avatar is uploaded and we not removing it here.
|
|
|
|
// No random avatar generated here.
|
|
|
|
// Just exit, no action.
|
|
|
|
if !com.IsFile(ctxRepo.CustomAvatarPath()) {
|
|
|
|
log.Trace("No avatar was uploaded for repo: %d. Default icon will appear instead.", ctxRepo.ID)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
r, err := form.Avatar.Open()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Avatar.Open: %v", err)
|
|
|
|
}
|
|
|
|
defer r.Close()
|
|
|
|
|
|
|
|
if form.Avatar.Size > setting.AvatarMaxFileSize {
|
|
|
|
return errors.New(ctx.Tr("settings.uploaded_avatar_is_too_big"))
|
|
|
|
}
|
|
|
|
|
|
|
|
data, err := ioutil.ReadAll(r)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("ioutil.ReadAll: %v", err)
|
|
|
|
}
|
|
|
|
if !base.IsImageFile(data) {
|
|
|
|
return errors.New(ctx.Tr("settings.uploaded_avatar_not_a_image"))
|
|
|
|
}
|
|
|
|
if err = ctxRepo.UploadAvatar(data); err != nil {
|
|
|
|
return fmt.Errorf("UploadAvatar: %v", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SettingsAvatar save new POSTed repository avatar
|
|
|
|
func SettingsAvatar(ctx *context.Context, form auth.AvatarForm) {
|
|
|
|
form.Source = auth.AvatarLocal
|
|
|
|
if err := UpdateAvatarSetting(ctx, form); err != nil {
|
|
|
|
ctx.Flash.Error(err.Error())
|
|
|
|
} else {
|
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.update_avatar_success"))
|
|
|
|
}
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings")
|
|
|
|
}
|
|
|
|
|
|
|
|
// SettingsDeleteAvatar delete repository avatar
|
|
|
|
func SettingsDeleteAvatar(ctx *context.Context) {
|
|
|
|
if err := ctx.Repo.Repository.DeleteAvatar(); err != nil {
|
|
|
|
ctx.Flash.Error(fmt.Sprintf("DeleteAvatar: %v", err))
|
|
|
|
}
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/settings")
|
|
|
|
}
|