2014-05-01 17:44:22 +08:00
// Copyright 2014 The Gogs Authors. All rights reserved.
2018-08-15 09:29:37 +03:00
// Copyright 2018 The Gitea Authors. All rights reserved.
2014-05-01 17:44:22 +08:00
// 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 02:28:04 -04:00
import (
2019-02-23 05:56:05 +08:00
"errors"
2019-05-30 05:22:26 +03:00
"fmt"
"io/ioutil"
2021-04-05 17:30:52 +02:00
"net/http"
2021-06-14 19:20:43 +02:00
"strconv"
2014-07-26 02:28:04 -04:00
"strings"
"time"
2016-11-10 17:24:48 +01:00
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/base"
"code.gitea.io/gitea/modules/context"
2019-03-27 17:33:00 +08:00
"code.gitea.io/gitea/modules/git"
2021-04-09 00:25:57 +02:00
"code.gitea.io/gitea/modules/lfs"
2016-11-10 17:24:48 +01:00
"code.gitea.io/gitea/modules/log"
2021-03-15 21:52:11 +00:00
"code.gitea.io/gitea/modules/migrations"
2019-12-15 01:30:01 +08:00
"code.gitea.io/gitea/modules/repository"
2016-11-10 17:24:48 +01:00
"code.gitea.io/gitea/modules/setting"
2020-05-21 10:48:01 -03:00
"code.gitea.io/gitea/modules/structs"
2019-08-15 22:46:21 +08:00
"code.gitea.io/gitea/modules/timeutil"
2021-06-05 14:32:19 +02:00
"code.gitea.io/gitea/modules/typesniffer"
2021-06-14 19:20:43 +02:00
"code.gitea.io/gitea/modules/util"
2018-08-15 09:29:37 +03:00
"code.gitea.io/gitea/modules/validation"
2021-01-26 23:36:53 +08:00
"code.gitea.io/gitea/modules/web"
2017-12-07 14:00:09 +07:00
"code.gitea.io/gitea/routers/utils"
2021-04-06 20:44:05 +01:00
"code.gitea.io/gitea/services/forms"
2019-09-24 13:02:49 +08:00
"code.gitea.io/gitea/services/mailer"
2019-10-01 21:40:17 +08:00
mirror_service "code.gitea.io/gitea/services/mirror"
2019-10-26 14:54:11 +08:00
repo_service "code.gitea.io/gitea/services/repository"
2021-09-08 23:19:30 +08:00
wiki_service "code.gitea.io/gitea/services/wiki"
2014-07-26 02:28:04 -04:00
)
const (
2016-11-07 21:58:22 +01:00
tplSettingsOptions base . TplName = "repo/settings/options"
tplCollaboration base . TplName = "repo/settings/collaboration"
2017-02-21 17:02:10 +02:00
tplBranches base . TplName = "repo/settings/branches"
2021-06-25 16:28:55 +02:00
tplTags base . TplName = "repo/settings/tags"
2016-11-07 21:58:22 +01:00
tplGithooks base . TplName = "repo/settings/githooks"
tplGithookEdit base . TplName = "repo/settings/githook_edit"
tplDeployKeys base . TplName = "repo/settings/deploy_keys"
2017-09-14 16:16:22 +08:00
tplProtectedBranch base . TplName = "repo/settings/protected_branch"
2014-07-26 02:28:04 -04:00
)
2016-11-24 15:04:31 +08:00
// Settings show a repository's settings page
2016-03-11 11:56:52 -05:00
func Settings ( ctx * context . Context ) {
2014-08-02 13:47:33 -04:00
ctx . Data [ "Title" ] = ctx . Tr ( "repo.settings" )
ctx . Data [ "PageIsSettingsOptions" ] = true
2019-02-23 05:56:05 +08:00
ctx . Data [ "ForcePrivate" ] = setting . Repository . ForcePrivate
2021-09-07 17:49:36 +02:00
ctx . Data [ "MirrorsEnabled" ] = setting . Mirror . Enabled
ctx . Data [ "DisableNewPushMirrors" ] = setting . Mirror . DisableNewPush
2021-06-14 19:20:43 +02:00
ctx . Data [ "DefaultMirrorInterval" ] = setting . Mirror . DefaultInterval
2020-09-19 17:44:55 +01:00
signing , _ := models . SigningKey ( ctx . Repo . Repository . RepoPath ( ) )
ctx . Data [ "SigningKeyAvailable" ] = len ( signing ) > 0
ctx . Data [ "SigningSettings" ] = setting . Repository . Signing
2021-04-05 17:30:52 +02:00
ctx . HTML ( http . StatusOK , tplSettingsOptions )
2014-07-26 02:28:04 -04:00
}
2016-11-24 15:04:31 +08:00
// SettingsPost response for changes of a repository
2021-01-26 23:36:53 +08:00
func SettingsPost ( ctx * context . Context ) {
2021-04-06 20:44:05 +01:00
form := web . GetForm ( ctx ) . ( * forms . RepoSettingForm )
2014-08-02 13:47:33 -04:00
ctx . Data [ "Title" ] = ctx . Tr ( "repo.settings" )
ctx . Data [ "PageIsSettingsOptions" ] = true
2014-07-26 02:28:04 -04:00
2015-08-31 13:36:31 +08:00
repo := ctx . Repo . Repository
2021-08-11 02:31:13 +02:00
switch ctx . FormString ( "action" ) {
2014-07-26 02:28:04 -04:00
case "update" :
if ctx . HasError ( ) {
2021-04-05 17:30:52 +02:00
ctx . HTML ( http . StatusOK , tplSettingsOptions )
2014-07-26 02:28:04 -04:00
return
}
newRepoName := form . RepoName
// Check if repository name has been changed.
2015-08-31 13:36:31 +08:00
if repo . LowerName != strings . ToLower ( newRepoName ) {
2019-11-13 07:01:19 +00:00
// Close the GitRepo if open
if ctx . Repo . GitRepo != nil {
ctx . Repo . GitRepo . Close ( )
ctx . Repo . GitRepo = nil
}
2020-06-07 23:23:13 +08:00
if err := repo_service . ChangeRepositoryName ( ctx . User , repo , newRepoName ) ; err != nil {
2015-08-31 13:36:31 +08:00
ctx . Data [ "Err_RepoName" ] = true
2015-03-26 17:11:47 -04:00
switch {
2015-08-08 17:10:34 +08:00
case models . IsErrRepoAlreadyExist ( err ) :
2016-11-07 21:58:22 +01:00
ctx . RenderWithErr ( ctx . Tr ( "form.repo_name_been_taken" ) , tplSettingsOptions , & form )
2015-03-26 17:11:47 -04:00
case models . IsErrNameReserved ( err ) :
2016-11-07 21:58:22 +01:00
ctx . RenderWithErr ( ctx . Tr ( "repo.form.name_reserved" , err . ( models . ErrNameReserved ) . Name ) , tplSettingsOptions , & form )
2020-09-25 05:09:23 +01:00
case models . IsErrRepoFilesAlreadyExist ( err ) :
ctx . Data [ "Err_RepoName" ] = true
switch {
case ctx . IsUserSiteAdmin ( ) || ( setting . Repository . AllowAdoptionOfUnadoptedRepositories && setting . Repository . AllowDeleteOfUnadoptedRepositories ) :
ctx . RenderWithErr ( ctx . Tr ( "form.repository_files_already_exist.adopt_or_delete" ) , tplSettingsOptions , form )
case setting . Repository . AllowAdoptionOfUnadoptedRepositories :
ctx . RenderWithErr ( ctx . Tr ( "form.repository_files_already_exist.adopt" ) , tplSettingsOptions , form )
case setting . Repository . AllowDeleteOfUnadoptedRepositories :
ctx . RenderWithErr ( ctx . Tr ( "form.repository_files_already_exist.delete" ) , tplSettingsOptions , form )
default :
ctx . RenderWithErr ( ctx . Tr ( "form.repository_files_already_exist" ) , tplSettingsOptions , form )
}
2015-03-26 17:11:47 -04:00
case models . IsErrNamePatternNotAllowed ( err ) :
2016-11-07 21:58:22 +01:00
ctx . RenderWithErr ( ctx . Tr ( "repo.form.name_pattern_not_allowed" , err . ( models . ErrNamePatternNotAllowed ) . Pattern ) , tplSettingsOptions , & form )
2015-03-26 17:11:47 -04:00
default :
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "ChangeRepositoryName" , err )
2014-08-24 21:09:05 +08:00
}
2014-07-26 02:28:04 -04:00
return
}
2015-09-01 11:43:53 -04:00
2015-08-31 13:36:31 +08:00
log . Trace ( "Repository name changed: %s/%s -> %s" , ctx . Repo . Owner . Name , repo . Name , newRepoName )
2014-07-26 02:28:04 -04:00
}
2015-08-31 13:36:31 +08:00
// In case it's just a case change.
repo . Name = newRepoName
repo . LowerName = strings . ToLower ( newRepoName )
repo . Description = form . Description
repo . Website = form . Website
2019-11-11 09:15:29 -06:00
repo . IsTemplate = form . Template
2015-11-18 15:01:11 -05:00
// Visibility of forked repository is forced sync with base repository.
if repo . IsFork {
2020-06-07 02:45:12 +02:00
form . Private = repo . BaseRepo . IsPrivate || repo . BaseRepo . Owner . Visibility == structs . VisibleTypePrivate
2015-11-18 15:01:11 -05:00
}
2015-08-31 13:36:31 +08:00
visibilityChanged := repo . IsPrivate != form . Private
2019-04-11 10:32:42 +02:00
// 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 05:56:05 +08:00
ctx . ServerError ( "Force Private enabled" , errors . New ( "cannot change private repository to public" ) )
return
}
2015-08-31 13:36:31 +08:00
repo . IsPrivate = form . Private
if err := models . UpdateRepository ( repo , visibilityChanged ) ; err != nil {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "UpdateRepository" , err )
2015-09-01 09:29:52 -04:00
return
2014-07-26 02:28:04 -04:00
}
2015-12-04 21:30:33 -05:00
log . Trace ( "Repository basic settings updated: %s/%s" , ctx . Repo . Owner . Name , repo . Name )
2014-07-26 02:28:04 -04:00
2016-08-30 16:18:33 -07:00
ctx . Flash . Success ( ctx . Tr ( "repo.settings.update_settings_success" ) )
ctx . Redirect ( repo . Link ( ) + "/settings" )
2016-07-16 18:30:43 -07:00
2016-08-30 16:18:33 -07:00
case "mirror" :
2021-09-07 17:49:36 +02:00
if ! setting . Mirror . Enabled || ! repo . IsMirror {
2018-01-10 22:34:17 +01:00
ctx . NotFound ( "" , nil )
2016-08-30 16:18:33 -07:00
return
}
2019-03-25 17:51:55 -04:00
// 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 17:27:26 +02:00
interval , err := time . ParseDuration ( form . Interval )
2019-01-26 17:26:23 +09:00
if err != nil || ( interval != 0 && interval < setting . Mirror . MinInterval ) {
2019-03-25 17:51:55 -04:00
ctx . Data [ "Err_Interval" ] = true
2017-04-08 17:27:26 +02:00
ctx . RenderWithErr ( ctx . Tr ( "repo.mirror_interval_invalid" ) , tplSettingsOptions , & form )
} else {
2016-08-30 16:18:33 -07:00
ctx . Repo . Mirror . EnablePrune = form . EnablePrune
2017-04-08 17:27:26 +02:00
ctx . Repo . Mirror . Interval = interval
2018-11-09 00:58:02 +01:00
if interval != 0 {
2019-08-15 22:46:21 +08:00
ctx . Repo . Mirror . NextUpdateUnix = timeutil . TimeStampNow ( ) . AddDuration ( interval )
2018-11-09 00:58:02 +01:00
} else {
ctx . Repo . Mirror . NextUpdateUnix = 0
}
2016-08-30 16:18:33 -07:00
if err := models . UpdateMirror ( ctx . Repo . Mirror ) ; err != nil {
2019-03-25 17:51:55 -04:00
ctx . Data [ "Err_Interval" ] = true
2017-04-08 17:27:26 +02:00
ctx . RenderWithErr ( ctx . Tr ( "repo.mirror_interval_invalid" ) , tplSettingsOptions , & form )
2015-12-08 20:06:12 -05:00
return
}
2014-07-26 02:28:04 -04:00
}
2019-04-12 21:52:57 +01:00
2021-06-14 19:20:43 +02:00
u , _ := git . GetRemoteAddress ( ctx . Repo . Repository . RepoPath ( ) , ctx . Repo . Mirror . GetRemoteName ( ) )
if u . User != nil && form . MirrorPassword == "" && form . MirrorUsername == u . User . Username ( ) {
form . MirrorPassword , _ = u . User . Password ( )
2021-05-31 11:46:20 +01:00
}
2021-04-06 20:44:05 +01:00
address , err := forms . ParseRemoteAddr ( form . MirrorAddress , form . MirrorUsername , form . MirrorPassword )
2021-03-15 21:52:11 +00:00
if err == nil {
err = migrations . IsMigrateURLAllowed ( address , ctx . User )
2019-04-12 21:52:57 +01:00
}
2021-03-15 21:52:11 +00:00
if err != nil {
2019-04-12 21:52:57 +01:00
ctx . Data [ "Err_MirrorAddress" ] = true
2021-04-09 00:25:57 +02:00
handleSettingRemoteAddrError ( ctx , err , form )
2019-04-12 21:52:57 +01:00
return
}
2020-09-28 21:00:52 +02:00
if err := mirror_service . UpdateAddress ( ctx . Repo . Mirror , address ) ; err != nil {
ctx . ServerError ( "UpdateAddress" , err )
2016-08-30 16:18:33 -07:00
return
}
2014-07-26 02:28:04 -04:00
2021-04-09 00:25:57 +02:00
form . LFS = form . LFS && setting . LFS . StartServer
if len ( form . LFSEndpoint ) > 0 {
ep := lfs . DetermineEndpoint ( "" , form . LFSEndpoint )
if ep == nil {
ctx . Data [ "Err_LFSEndpoint" ] = true
ctx . RenderWithErr ( ctx . Tr ( "repo.migrate.invalid_lfs_endpoint" ) , tplSettingsOptions , & form )
return
}
err = migrations . IsMigrateURLAllowed ( ep . String ( ) , ctx . User )
if err != nil {
ctx . Data [ "Err_LFSEndpoint" ] = true
handleSettingRemoteAddrError ( ctx , err , form )
return
}
}
ctx . Repo . Mirror . LFS = form . LFS
ctx . Repo . Mirror . LFSEndpoint = form . LFSEndpoint
if err := models . UpdateMirror ( ctx . Repo . Mirror ) ; err != nil {
ctx . ServerError ( "UpdateMirror" , err )
return
}
2014-08-02 13:47:33 -04:00
ctx . Flash . Success ( ctx . Tr ( "repo.settings.update_settings_success" ) )
2016-07-15 21:53:43 +08:00
ctx . Redirect ( repo . Link ( ) + "/settings" )
2015-12-04 21:30:33 -05:00
2016-08-30 16:18:33 -07:00
case "mirror-sync" :
2021-09-07 17:49:36 +02:00
if ! setting . Mirror . Enabled || ! repo . IsMirror {
2018-01-10 22:34:17 +01:00
ctx . NotFound ( "" , nil )
2016-08-30 16:18:33 -07:00
return
}
2019-10-01 21:40:17 +08:00
mirror_service . StartToMirror ( repo . ID )
2016-08-30 16:18:33 -07:00
ctx . Flash . Info ( ctx . Tr ( "repo.settings.mirror_sync_in_progress" ) )
ctx . Redirect ( repo . Link ( ) + "/settings" )
2021-06-14 19:20:43 +02:00
case "push-mirror-sync" :
2021-09-07 17:49:36 +02:00
if ! setting . Mirror . Enabled {
ctx . NotFound ( "" , nil )
return
}
2021-06-14 19:20:43 +02:00
m , err := selectPushMirrorByForm ( form , repo )
if err != nil {
ctx . NotFound ( "" , nil )
return
}
mirror_service . AddPushMirrorToQueue ( m . ID )
ctx . Flash . Info ( ctx . Tr ( "repo.settings.mirror_sync_in_progress" ) )
ctx . Redirect ( repo . Link ( ) + "/settings" )
case "push-mirror-remove" :
2021-09-07 17:49:36 +02:00
if ! setting . Mirror . Enabled {
ctx . NotFound ( "" , nil )
return
}
2021-06-14 19:20:43 +02:00
// 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
m , err := selectPushMirrorByForm ( form , repo )
if err != nil {
ctx . NotFound ( "" , nil )
return
}
if err = mirror_service . RemovePushMirrorRemote ( m ) ; err != nil {
ctx . ServerError ( "RemovePushMirrorRemote" , err )
return
}
if err = models . DeletePushMirrorByID ( m . ID ) ; err != nil {
ctx . ServerError ( "DeletePushMirrorByID" , err )
return
}
ctx . Flash . Success ( ctx . Tr ( "repo.settings.update_settings_success" ) )
ctx . Redirect ( repo . Link ( ) + "/settings" )
case "push-mirror-add" :
2021-09-07 17:49:36 +02:00
if setting . Mirror . DisableNewPush {
ctx . NotFound ( "" , nil )
return
}
2021-06-14 19:20:43 +02:00
// 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
interval , err := time . ParseDuration ( form . PushMirrorInterval )
if err != nil || ( interval != 0 && interval < setting . Mirror . MinInterval ) {
ctx . Data [ "Err_PushMirrorInterval" ] = true
ctx . RenderWithErr ( ctx . Tr ( "repo.mirror_interval_invalid" ) , tplSettingsOptions , & form )
return
}
address , err := forms . ParseRemoteAddr ( form . PushMirrorAddress , form . PushMirrorUsername , form . PushMirrorPassword )
if err == nil {
err = migrations . IsMigrateURLAllowed ( address , ctx . User )
}
if err != nil {
ctx . Data [ "Err_PushMirrorAddress" ] = true
handleSettingRemoteAddrError ( ctx , err , form )
return
}
remoteSuffix , err := util . RandomString ( 10 )
if err != nil {
ctx . ServerError ( "RandomString" , err )
return
}
m := & models . PushMirror {
RepoID : repo . ID ,
Repo : repo ,
RemoteName : fmt . Sprintf ( "remote_mirror_%s" , remoteSuffix ) ,
Interval : interval ,
}
if err := models . InsertPushMirror ( m ) ; err != nil {
ctx . ServerError ( "InsertPushMirror" , err )
return
}
if err := mirror_service . AddPushMirrorRemote ( m , address ) ; err != nil {
if err := models . DeletePushMirrorByID ( m . ID ) ; err != nil {
log . Error ( "DeletePushMirrorByID %v" , err )
}
ctx . ServerError ( "AddPushMirrorRemote" , err )
return
}
ctx . Flash . Success ( ctx . Tr ( "repo.settings.update_settings_success" ) )
ctx . Redirect ( repo . Link ( ) + "/settings" )
2015-12-04 21:30:33 -05:00
case "advanced" :
2021-03-16 01:00:52 +00:00
var repoChanged bool
2017-02-04 23:53:46 +08:00
var units [ ] models . RepoUnit
2020-01-17 08:34:37 +01:00
var deleteUnitTypes [ ] models . UnitType
2017-02-04 23:53:46 +08:00
2019-03-25 17:51:55 -04:00
// 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
2021-03-16 01:00:52 +00:00
if repo . CloseIssuesViaCommitInAnyBranch != form . EnableCloseIssuesViaCommitInAnyBranch {
repo . CloseIssuesViaCommitInAnyBranch = form . EnableCloseIssuesViaCommitInAnyBranch
repoChanged = true
}
2020-01-17 08:34:37 +01:00
if form . EnableWiki && form . EnableExternalWiki && ! models . UnitTypeExternalWiki . UnitGlobalDisabled ( ) {
if ! validation . IsValidExternalURL ( form . ExternalWikiURL ) {
ctx . Flash . Error ( ctx . Tr ( "repo.settings.external_wiki_url_error" ) )
ctx . Redirect ( repo . Link ( ) + "/settings" )
return
}
units = append ( units , models . RepoUnit {
RepoID : repo . ID ,
Type : models . UnitTypeExternalWiki ,
Config : & models . ExternalWikiConfig {
ExternalWikiURL : form . ExternalWikiURL ,
} ,
} )
deleteUnitTypes = append ( deleteUnitTypes , models . UnitTypeWiki )
} else if form . EnableWiki && ! form . EnableExternalWiki && ! models . UnitTypeWiki . UnitGlobalDisabled ( ) {
2017-02-04 23:53:46 +08:00
units = append ( units , models . RepoUnit {
RepoID : repo . ID ,
2020-01-17 08:34:37 +01:00
Type : models . UnitTypeWiki ,
2017-02-04 23:53:46 +08:00
Config : new ( models . UnitConfig ) ,
} )
2020-01-17 08:34:37 +01:00
deleteUnitTypes = append ( deleteUnitTypes , models . UnitTypeExternalWiki )
} else {
if ! models . UnitTypeExternalWiki . UnitGlobalDisabled ( ) {
deleteUnitTypes = append ( deleteUnitTypes , models . UnitTypeExternalWiki )
}
if ! models . UnitTypeWiki . UnitGlobalDisabled ( ) {
deleteUnitTypes = append ( deleteUnitTypes , models . UnitTypeWiki )
2017-02-04 23:53:46 +08:00
}
}
2020-01-17 08:34:37 +01:00
if form . EnableIssues && form . EnableExternalTracker && ! models . UnitTypeExternalTracker . UnitGlobalDisabled ( ) {
if ! validation . IsValidExternalURL ( form . ExternalTrackerURL ) {
ctx . Flash . Error ( ctx . Tr ( "repo.settings.external_tracker_url_error" ) )
ctx . Redirect ( repo . Link ( ) + "/settings" )
return
}
if len ( form . TrackerURLFormat ) != 0 && ! validation . IsValidExternalTrackerURLFormat ( form . TrackerURLFormat ) {
ctx . Flash . Error ( ctx . Tr ( "repo.settings.tracker_url_format_error" ) )
ctx . Redirect ( repo . Link ( ) + "/settings" )
return
}
units = append ( units , models . RepoUnit {
RepoID : repo . ID ,
Type : models . UnitTypeExternalTracker ,
Config : & models . ExternalTrackerConfig {
ExternalTrackerURL : form . ExternalTrackerURL ,
ExternalTrackerFormat : form . TrackerURLFormat ,
ExternalTrackerStyle : form . TrackerIssueStyle ,
} ,
} )
deleteUnitTypes = append ( deleteUnitTypes , models . UnitTypeIssues )
} else if form . EnableIssues && ! form . EnableExternalTracker && ! models . UnitTypeIssues . UnitGlobalDisabled ( ) {
units = append ( units , models . RepoUnit {
RepoID : repo . ID ,
Type : models . UnitTypeIssues ,
Config : & models . IssuesConfig {
EnableTimetracker : form . EnableTimetracker ,
AllowOnlyContributorsToTrackTime : form . AllowOnlyContributorsToTrackTime ,
EnableDependencies : form . EnableIssueDependencies ,
} ,
} )
deleteUnitTypes = append ( deleteUnitTypes , models . UnitTypeExternalTracker )
} else {
if ! models . UnitTypeExternalTracker . UnitGlobalDisabled ( ) {
deleteUnitTypes = append ( deleteUnitTypes , models . UnitTypeExternalTracker )
}
if ! models . UnitTypeIssues . UnitGlobalDisabled ( ) {
deleteUnitTypes = append ( deleteUnitTypes , models . UnitTypeIssues )
2017-02-04 23:53:46 +08:00
}
}
2020-08-17 04:07:38 +01:00
if form . EnableProjects && ! models . UnitTypeProjects . UnitGlobalDisabled ( ) {
units = append ( units , models . RepoUnit {
RepoID : repo . ID ,
Type : models . UnitTypeProjects ,
} )
} else if ! models . UnitTypeProjects . UnitGlobalDisabled ( ) {
deleteUnitTypes = append ( deleteUnitTypes , models . UnitTypeProjects )
}
2020-01-17 08:34:37 +01:00
if form . EnablePulls && ! models . UnitTypePullRequests . UnitGlobalDisabled ( ) {
2017-02-04 23:53:46 +08:00
units = append ( units , models . RepoUnit {
RepoID : repo . ID ,
Type : models . UnitTypePullRequests ,
2018-01-05 20:56:50 +02:00
Config : & models . PullRequestsConfig {
2021-07-13 01:26:25 +02:00
IgnoreWhitespaceConflicts : form . PullsIgnoreWhitespace ,
AllowMerge : form . PullsAllowMerge ,
AllowRebase : form . PullsAllowRebase ,
AllowRebaseMerge : form . PullsAllowRebaseMerge ,
AllowSquash : form . PullsAllowSquash ,
AllowManualMerge : form . PullsAllowManualMerge ,
AutodetectManualMerge : form . EnableAutodetectManualMerge ,
DefaultDeleteBranchAfterMerge : form . DefaultDeleteBranchAfterMerge ,
DefaultMergeStyle : models . MergeStyle ( form . PullsDefaultMergeStyle ) ,
2018-01-05 20:56:50 +02:00
} ,
2017-02-04 23:53:46 +08:00
} )
2020-01-17 08:34:37 +01:00
} else if ! models . UnitTypePullRequests . UnitGlobalDisabled ( ) {
deleteUnitTypes = append ( deleteUnitTypes , models . UnitTypePullRequests )
2017-02-04 23:53:46 +08:00
}
2020-01-17 08:34:37 +01:00
if err := models . UpdateRepositoryUnits ( repo , units , deleteUnitTypes ) ; err != nil {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "UpdateRepositoryUnits" , err )
2015-12-04 21:30:33 -05:00
return
}
2021-03-16 01:00:52 +00:00
if repoChanged {
if err := models . UpdateRepository ( repo , false ) ; err != nil {
ctx . ServerError ( "UpdateRepository" , err )
return
}
}
2015-12-04 21:30:33 -05:00
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" )
2020-09-19 17:44:55 +01:00
case "signing" :
changed := false
trustModel := models . ToTrustModel ( form . TrustModel )
if trustModel != repo . TrustModel {
repo . TrustModel = trustModel
changed = true
}
if changed {
if err := models . UpdateRepository ( repo , false ) ; err != nil {
ctx . ServerError ( "UpdateRepository" , err )
return
}
}
log . Trace ( "Repository signing 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 10:13:20 -04:00
case "admin" :
if ! ctx . User . IsAdmin {
2021-04-05 17:30:52 +02:00
ctx . Error ( http . StatusForbidden )
2018-03-27 10:13:20 -04:00
return
}
if repo . IsFsckEnabled != form . EnableHealthCheck {
repo . IsFsckEnabled = form . EnableHealthCheck
}
2019-02-10 20:27:19 +01:00
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 10:13:20 -04:00
ctx . Flash . Success ( ctx . Tr ( "repo.settings.update_settings_success" ) )
ctx . Redirect ( ctx . Repo . RepoLink + "/settings" )
2016-02-14 21:12:00 +01:00
case "convert" :
2016-03-05 20:45:23 -05:00
if ! ctx . Repo . IsOwner ( ) {
2021-04-05 17:30:52 +02:00
ctx . Error ( http . StatusNotFound )
2016-03-05 20:45:23 -05:00
return
}
2016-02-14 21:12:00 +01:00
if repo . Name != form . RepoName {
2016-11-07 21:58:22 +01:00
ctx . RenderWithErr ( ctx . Tr ( "form.enterred_invalid_repo_name" ) , tplSettingsOptions , nil )
2016-02-14 21:12:00 +01:00
return
}
2016-02-14 21:22:36 +01:00
if ! repo . IsMirror {
2021-04-05 17:30:52 +02:00
ctx . Error ( http . StatusNotFound )
2016-02-14 21:22:36 +01:00
return
}
2016-02-14 21:12:00 +01:00
repo . IsMirror = false
2019-12-15 01:30:01 +08:00
if _ , err := repository . CleanUpMigrateInfo ( repo ) ; err != nil {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "CleanUpMigrateInfo" , err )
2016-02-14 21:12:00 +01:00
return
2016-02-15 14:57:15 -05:00
} else if err = models . DeleteMirrorByRepoID ( ctx . Repo . Repository . ID ) ; err != nil {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "DeleteMirrorByRepoID" , err )
2016-02-14 21:12:00 +01:00
return
}
2020-07-02 15:09:09 +01:00
log . Trace ( "Repository converted from mirror to regular: %s" , repo . FullName ( ) )
2016-02-14 21:12:00 +01:00
ctx . Flash . Success ( ctx . Tr ( "repo.settings.convert_succeed" ) )
2020-07-02 15:09:09 +01:00
ctx . Redirect ( repo . Link ( ) )
case "convert_fork" :
if ! ctx . Repo . IsOwner ( ) {
2021-04-05 17:30:52 +02:00
ctx . Error ( http . StatusNotFound )
2020-07-02 15:09:09 +01:00
return
}
if err := repo . GetOwner ( ) ; err != nil {
ctx . ServerError ( "Convert Fork" , err )
return
}
if repo . Name != form . RepoName {
ctx . RenderWithErr ( ctx . Tr ( "form.enterred_invalid_repo_name" ) , tplSettingsOptions , nil )
return
}
if ! repo . IsFork {
2021-04-05 17:30:52 +02:00
ctx . Error ( http . StatusNotFound )
2020-07-02 15:09:09 +01:00
return
}
if ! ctx . Repo . Owner . CanCreateRepo ( ) {
ctx . Flash . Error ( ctx . Tr ( "repo.form.reach_limit_of_creation" , ctx . User . MaxCreationLimit ( ) ) )
ctx . Redirect ( repo . Link ( ) + "/settings" )
return
}
2021-09-14 18:07:08 +01:00
if err := repository . ConvertForkToNormalRepository ( repo ) ; err != nil {
log . Error ( "Unable to convert repository %-v from fork. Error: %v" , repo , err )
2020-07-02 15:09:09 +01:00
ctx . ServerError ( "Convert Fork" , err )
return
}
log . Trace ( "Repository converted from fork to regular: %s" , repo . FullName ( ) )
ctx . Flash . Success ( ctx . Tr ( "repo.settings.convert_fork_succeed" ) )
ctx . Redirect ( repo . Link ( ) )
2016-02-14 21:12:00 +01:00
2014-07-26 02:28:04 -04:00
case "transfer" :
2016-03-05 20:45:23 -05:00
if ! ctx . Repo . IsOwner ( ) {
2021-04-05 17:30:52 +02:00
ctx . Error ( http . StatusNotFound )
2016-03-05 20:45:23 -05:00
return
}
2015-08-31 13:36:31 +08:00
if repo . Name != form . RepoName {
2016-11-07 21:58:22 +01:00
ctx . RenderWithErr ( ctx . Tr ( "form.enterred_invalid_repo_name" ) , tplSettingsOptions , nil )
2014-07-26 02:28:04 -04:00
return
}
2021-08-11 02:31:13 +02:00
newOwner , err := models . GetUserByName ( ctx . FormString ( "new_owner_name" ) )
2014-07-26 02:28:04 -04:00
if err != nil {
2020-01-31 16:49:04 +01:00
if models . IsErrUserNotExist ( err ) {
ctx . RenderWithErr ( ctx . Tr ( "form.enterred_invalid_owner_name" ) , tplSettingsOptions , nil )
return
}
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "IsUserExist" , err )
2014-07-26 02:28:04 -04:00
return
2015-03-05 19:20:27 -05:00
}
2020-05-21 10:48:01 -03:00
if newOwner . Type == models . UserTypeOrganization {
2020-08-16 21:27:08 +01:00
if ! ctx . User . IsAdmin && newOwner . Visibility == structs . VisibleTypePrivate && ! newOwner . HasMemberWithUserID ( ctx . User . ID ) {
2020-05-21 10:48:01 -03:00
// The user shouldn't know about this organization
ctx . RenderWithErr ( ctx . Tr ( "form.enterred_invalid_owner_name" ) , tplSettingsOptions , nil )
return
}
}
2019-11-13 07:01:19 +00:00
// Close the GitRepo if open
if ctx . Repo . GitRepo != nil {
ctx . Repo . GitRepo . Close ( )
ctx . Repo . GitRepo = nil
}
2021-03-01 01:47:30 +01:00
if err := repo_service . StartRepositoryTransfer ( ctx . User , newOwner , repo , nil ) ; err != nil {
2015-08-08 17:10:34 +08:00
if models . IsErrRepoAlreadyExist ( err ) {
2016-11-07 21:58:22 +01:00
ctx . RenderWithErr ( ctx . Tr ( "repo.settings.new_owner_has_same_repo" ) , tplSettingsOptions , nil )
2021-03-01 01:47:30 +01:00
} else if models . IsErrRepoTransferInProgress ( err ) {
ctx . RenderWithErr ( ctx . Tr ( "repo.settings.transfer_in_progress" ) , tplSettingsOptions , nil )
2014-09-12 18:29:58 -04:00
} else {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "TransferOwnership" , err )
2014-09-12 18:29:58 -04:00
}
2021-03-01 01:47:30 +01:00
return
}
log . Trace ( "Repository transfer process was started: %s/%s -> %s" , ctx . Repo . Owner . Name , repo . Name , newOwner )
ctx . Flash . Success ( ctx . Tr ( "repo.settings.transfer_started" , newOwner . DisplayName ( ) ) )
2021-04-30 19:25:13 +02:00
ctx . Redirect ( ctx . Repo . Owner . HomeLink ( ) + "/" + repo . Name + "/settings" )
2021-03-01 01:47:30 +01:00
case "cancel_transfer" :
if ! ctx . Repo . IsOwner ( ) {
2021-04-05 17:30:52 +02:00
ctx . Error ( http . StatusNotFound )
2021-03-01 01:47:30 +01:00
return
}
repoTransfer , err := models . GetPendingRepositoryTransfer ( ctx . Repo . Repository )
if err != nil {
if models . IsErrNoPendingTransfer ( err ) {
ctx . Flash . Error ( "repo.settings.transfer_abort_invalid" )
2021-04-30 19:25:13 +02:00
ctx . Redirect ( ctx . User . HomeLink ( ) + "/" + repo . Name + "/settings" )
2021-03-01 01:47:30 +01:00
} else {
ctx . ServerError ( "GetPendingRepositoryTransfer" , err )
}
return
}
if err := repoTransfer . LoadAttributes ( ) ; err != nil {
ctx . ServerError ( "LoadRecipient" , err )
return
}
if err := models . CancelRepositoryTransfer ( ctx . Repo . Repository ) ; err != nil {
ctx . ServerError ( "CancelRepositoryTransfer" , err )
2014-07-26 02:28:04 -04:00
return
}
2019-02-27 19:51:46 -08:00
2021-03-01 01:47:30 +01:00
log . Trace ( "Repository transfer process was cancelled: %s/%s " , ctx . Repo . Owner . Name , repo . Name )
ctx . Flash . Success ( ctx . Tr ( "repo.settings.transfer_abort_success" , repoTransfer . Recipient . Name ) )
2021-04-30 19:25:13 +02:00
ctx . Redirect ( ctx . Repo . Owner . HomeLink ( ) + "/" + repo . Name + "/settings" )
2016-03-05 20:45:23 -05:00
2014-07-26 02:28:04 -04:00
case "delete" :
2016-03-05 20:45:23 -05:00
if ! ctx . Repo . IsOwner ( ) {
2021-04-05 17:30:52 +02:00
ctx . Error ( http . StatusNotFound )
2016-03-05 20:45:23 -05:00
return
}
2015-08-31 13:36:31 +08:00
if repo . Name != form . RepoName {
2016-11-07 21:58:22 +01:00
ctx . RenderWithErr ( ctx . Tr ( "form.enterred_invalid_repo_name" ) , tplSettingsOptions , nil )
2014-07-26 02:28:04 -04:00
return
2014-08-27 16:39:36 +08:00
}
2021-05-14 21:19:38 +01:00
// Close the gitrepository before doing this.
if ctx . Repo . GitRepo != nil {
ctx . Repo . GitRepo . Close ( )
}
2019-10-26 14:54:11 +08:00
if err := repo_service . DeleteRepository ( ctx . User , ctx . Repo . Repository ) ; err != nil {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "DeleteRepository" , err )
2014-07-26 02:28:04 -04:00
return
}
2015-08-31 13:36:31 +08:00
log . Trace ( "Repository deleted: %s/%s" , ctx . Repo . Owner . Name , repo . Name )
2015-12-05 17:39:29 -05:00
ctx . Flash . Success ( ctx . Tr ( "repo.settings.deletion_success" ) )
2015-08-31 13:36:31 +08:00
ctx . Redirect ( ctx . Repo . Owner . DashboardLink ( ) )
2016-03-05 20:45:23 -05:00
2016-03-03 15:38:25 -05:00
case "delete-wiki" :
2016-03-05 20:45:23 -05:00
if ! ctx . Repo . IsOwner ( ) {
2021-04-05 17:30:52 +02:00
ctx . Error ( http . StatusNotFound )
2016-03-05 20:45:23 -05:00
return
}
2016-03-03 15:38:25 -05:00
if repo . Name != form . RepoName {
2016-11-07 21:58:22 +01:00
ctx . RenderWithErr ( ctx . Tr ( "form.enterred_invalid_repo_name" ) , tplSettingsOptions , nil )
2016-03-03 15:38:25 -05:00
return
}
2021-09-08 23:19:30 +08:00
err := wiki_service . DeleteWiki ( repo )
2019-06-12 21:41:28 +02:00
if err != nil {
log . Error ( "Delete Wiki: %v" , err . Error ( ) )
}
2016-03-03 15:38:25 -05:00
log . Trace ( "Repository wiki deleted: %s/%s" , ctx . Repo . Owner . Name , repo . Name )
2016-03-03 23:24:22 -05:00
ctx . Flash . Success ( ctx . Tr ( "repo.settings.wiki_deletion_success" ) )
2016-03-03 15:38:25 -05:00
ctx . Redirect ( ctx . Repo . RepoLink + "/settings" )
2016-08-30 16:18:33 -07:00
2019-01-23 19:58:38 +01:00
case "archive" :
if ! ctx . Repo . IsOwner ( ) {
2021-04-05 17:30:52 +02:00
ctx . Error ( http . StatusForbidden )
2019-01-23 19:58:38 +01:00
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 08:48:31 +01:00
log . Error ( "Tried to archive a repo: %s" , err )
2019-01-23 19:58:38 +01:00
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" )
2021-09-07 17:49:36 +02:00
2019-01-23 19:58:38 +01:00
case "unarchive" :
if ! ctx . Repo . IsOwner ( ) {
2021-04-05 17:30:52 +02:00
ctx . Error ( http . StatusForbidden )
2019-01-23 19:58:38 +01:00
return
}
if err := repo . SetArchiveRepoState ( false ) ; err != nil {
2019-04-02 08:48:31 +01:00
log . Error ( "Tried to unarchive a repo: %s" , err )
2019-01-23 19:58:38 +01:00
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-30 16:18:33 -07:00
default :
2018-01-10 22:34:17 +01:00
ctx . NotFound ( "" , nil )
2014-07-26 02:28:04 -04:00
}
}
2021-04-09 00:25:57 +02:00
func handleSettingRemoteAddrError ( ctx * context . Context , err error , form * forms . RepoSettingForm ) {
if models . IsErrInvalidCloneAddr ( err ) {
addrErr := err . ( * models . ErrInvalidCloneAddr )
switch {
case addrErr . IsProtocolInvalid :
ctx . RenderWithErr ( ctx . Tr ( "repo.mirror_address_protocol_invalid" ) , tplSettingsOptions , form )
case addrErr . IsURLError :
ctx . RenderWithErr ( ctx . Tr ( "form.url_error" ) , tplSettingsOptions , form )
case addrErr . IsPermissionDenied :
if addrErr . LocalPath {
ctx . RenderWithErr ( ctx . Tr ( "repo.migrate.permission_denied" ) , tplSettingsOptions , form )
} else if len ( addrErr . PrivateNet ) == 0 {
ctx . RenderWithErr ( ctx . Tr ( "repo.migrate.permission_denied_blocked" ) , tplSettingsOptions , form )
} else {
ctx . RenderWithErr ( ctx . Tr ( "repo.migrate.permission_denied_private_ip" ) , tplSettingsOptions , form )
}
case addrErr . IsInvalidPath :
ctx . RenderWithErr ( ctx . Tr ( "repo.migrate.invalid_local_path" ) , tplSettingsOptions , form )
default :
ctx . ServerError ( "Unknown error" , err )
}
2021-08-23 23:09:25 +01:00
return
2021-04-09 00:25:57 +02:00
}
ctx . RenderWithErr ( ctx . Tr ( "repo.mirror_address_url_invalid" ) , tplSettingsOptions , form )
}
2016-11-24 15:04:31 +08:00
// Collaboration render a repository's collaboration page
2016-03-11 11:56:52 -05:00
func Collaboration ( ctx * context . Context ) {
2014-08-07 06:40:05 -04:00
ctx . Data [ "Title" ] = ctx . Tr ( "repo.settings" )
ctx . Data [ "PageIsSettingsCollaboration" ] = true
2020-01-24 19:00:29 +00:00
users , err := ctx . Repo . Repository . GetCollaborators ( models . ListOptions { } )
2014-07-26 02:28:04 -04:00
if err != nil {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "GetCollaborators" , err )
2014-07-26 02:28:04 -04:00
return
}
2015-01-23 09:54:16 +02:00
ctx . Data [ "Collaborators" ] = users
2016-03-05 18:08:42 -05:00
2019-09-23 22:08:03 +02:00
teams , err := ctx . Repo . Repository . GetRepoTeams ( )
if err != nil {
ctx . ServerError ( "GetRepoTeams" , err )
return
}
ctx . Data [ "Teams" ] = teams
ctx . Data [ "Repo" ] = ctx . Repo . Repository
ctx . Data [ "OrgID" ] = ctx . Repo . Repository . OwnerID
ctx . Data [ "OrgName" ] = ctx . Repo . Repository . OwnerName
ctx . Data [ "Org" ] = ctx . Repo . Repository . Owner
ctx . Data [ "Units" ] = models . Units
2021-04-05 17:30:52 +02:00
ctx . HTML ( http . StatusOK , tplCollaboration )
2014-07-26 02:28:04 -04:00
}
2016-11-24 15:04:31 +08:00
// CollaborationPost response for actions for a collaboration of a repository
2016-03-11 11:56:52 -05:00
func CollaborationPost ( ctx * context . Context ) {
2021-08-11 02:31:13 +02:00
name := utils . RemoveUsernameParameterSuffix ( strings . ToLower ( ctx . FormString ( "collaborator" ) ) )
2016-02-20 15:10:34 -05:00
if len ( name ) == 0 || ctx . Repo . Owner . LowerName == name {
2016-11-27 18:14:25 +08:00
ctx . Redirect ( setting . AppSubURL + ctx . Req . URL . Path )
2016-02-20 15:10:34 -05:00
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 18:14:25 +08:00
ctx . Redirect ( setting . AppSubURL + ctx . Req . URL . Path )
2016-02-20 15:10:34 -05:00
} else {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "GetUserByName" , err )
2016-02-20 15:10:34 -05:00
}
return
}
2018-08-07 11:01:06 +01:00
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-20 15:10:34 -05:00
// 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 18:14:25 +08:00
ctx . Redirect ( setting . AppSubURL + ctx . Req . URL . Path )
2016-02-20 15:10:34 -05:00
return
}
2018-08-07 02:59:42 +01:00
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-20 15:10:34 -05:00
if err = ctx . Repo . Repository . AddCollaborator ( u ) ; err != nil {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "AddCollaborator" , err )
2016-02-20 15:10:34 -05:00
return
}
if setting . Service . EnableNotifyMail {
2019-09-24 13:02:49 +08:00
mailer . SendCollaboratorMail ( u , ctx . User , ctx . Repo . Repository )
2016-02-20 15:10:34 -05:00
}
ctx . Flash . Success ( ctx . Tr ( "repo.settings.add_collaborator_success" ) )
2016-11-27 18:14:25 +08:00
ctx . Redirect ( setting . AppSubURL + ctx . Req . URL . Path )
2016-02-20 15:10:34 -05:00
}
2016-11-24 15:04:31 +08:00
// ChangeCollaborationAccessMode response for changing access of a collaboration
2016-03-11 11:56:52 -05:00
func ChangeCollaborationAccessMode ( ctx * context . Context ) {
2016-03-05 18:08:42 -05:00
if err := ctx . Repo . Repository . ChangeCollaborationAccessMode (
2021-07-29 09:42:15 +08:00
ctx . FormInt64 ( "uid" ) ,
models . AccessMode ( ctx . FormInt ( "mode" ) ) ) ; err != nil {
2019-04-02 08:48:31 +01:00
log . Error ( "ChangeCollaborationAccessMode: %v" , err )
2016-03-05 18:08:42 -05:00
}
}
2016-11-24 15:04:31 +08:00
// DeleteCollaboration delete a collaboration for a repository
2016-03-11 11:56:52 -05:00
func DeleteCollaboration ( ctx * context . Context ) {
2021-07-29 09:42:15 +08:00
if err := ctx . Repo . Repository . DeleteCollaboration ( ctx . FormInt64 ( "id" ) ) ; err != nil {
2016-03-05 18:08:42 -05:00
ctx . Flash . Error ( "DeleteCollaboration: " + err . Error ( ) )
} else {
ctx . Flash . Success ( ctx . Tr ( "repo.settings.remove_collaborator_success" ) )
}
2021-04-05 17:30:52 +02:00
ctx . JSON ( http . StatusOK , map [ string ] interface { } {
2016-03-05 18:08:42 -05:00
"redirect" : ctx . Repo . RepoLink + "/settings/collaboration" ,
} )
}
2019-09-23 22:08:03 +02:00
// AddTeamPost response for adding a team to a repository
func AddTeamPost ( ctx * context . Context ) {
if ! ctx . Repo . Owner . RepoAdminChangeTeamAccess && ! ctx . Repo . IsOwner ( ) {
ctx . Flash . Error ( ctx . Tr ( "repo.settings.change_team_access_not_allowed" ) )
ctx . Redirect ( ctx . Repo . RepoLink + "/settings/collaboration" )
return
}
2021-08-11 02:31:13 +02:00
name := utils . RemoveUsernameParameterSuffix ( strings . ToLower ( ctx . FormString ( "team" ) ) )
2020-01-15 14:18:02 +01:00
if len ( name ) == 0 {
2019-09-23 22:08:03 +02:00
ctx . Redirect ( ctx . Repo . RepoLink + "/settings/collaboration" )
return
}
team , err := ctx . Repo . Owner . GetTeam ( name )
if err != nil {
if models . IsErrTeamNotExist ( err ) {
ctx . Flash . Error ( ctx . Tr ( "form.team_not_exist" ) )
ctx . Redirect ( ctx . Repo . RepoLink + "/settings/collaboration" )
} else {
ctx . ServerError ( "GetTeam" , err )
}
return
}
if team . OrgID != ctx . Repo . Repository . OwnerID {
ctx . Flash . Error ( ctx . Tr ( "repo.settings.team_not_in_organization" ) )
ctx . Redirect ( ctx . Repo . RepoLink + "/settings/collaboration" )
return
}
if models . HasTeamRepo ( ctx . Repo . Repository . OwnerID , team . ID , ctx . Repo . Repository . ID ) {
ctx . Flash . Error ( ctx . Tr ( "repo.settings.add_team_duplicate" ) )
ctx . Redirect ( ctx . Repo . RepoLink + "/settings/collaboration" )
return
}
if err = team . AddRepository ( ctx . Repo . Repository ) ; err != nil {
ctx . ServerError ( "team.AddRepository" , err )
return
}
ctx . Flash . Success ( ctx . Tr ( "repo.settings.add_team_success" ) )
ctx . Redirect ( ctx . Repo . RepoLink + "/settings/collaboration" )
}
// DeleteTeam response for deleting a team from a repository
func DeleteTeam ( ctx * context . Context ) {
if ! ctx . Repo . Owner . RepoAdminChangeTeamAccess && ! ctx . Repo . IsOwner ( ) {
ctx . Flash . Error ( ctx . Tr ( "repo.settings.change_team_access_not_allowed" ) )
ctx . Redirect ( ctx . Repo . RepoLink + "/settings/collaboration" )
return
}
2021-07-29 09:42:15 +08:00
team , err := models . GetTeamByID ( ctx . FormInt64 ( "id" ) )
2019-09-23 22:08:03 +02:00
if err != nil {
ctx . ServerError ( "GetTeamByID" , err )
return
}
if err = team . RemoveRepository ( ctx . Repo . Repository . ID ) ; err != nil {
ctx . ServerError ( "team.RemoveRepositorys" , err )
return
}
ctx . Flash . Success ( ctx . Tr ( "repo.settings.remove_team_success" ) )
2021-04-05 17:30:52 +02:00
ctx . JSON ( http . StatusOK , map [ string ] interface { } {
2019-09-23 22:08:03 +02:00
"redirect" : ctx . Repo . RepoLink + "/settings/collaboration" ,
} )
}
2017-02-21 17:02:10 +02:00
// parseOwnerAndRepo get repos by owner
2016-03-11 11:56:52 -05:00
func parseOwnerAndRepo ( ctx * context . Context ) ( * models . User , * models . Repository ) {
2015-10-24 03:36:47 -04:00
owner , err := models . GetUserByName ( ctx . Params ( ":username" ) )
2015-08-08 01:04:12 +08:00
if err != nil {
if models . IsErrUserNotExist ( err ) {
2018-01-10 22:34:17 +01:00
ctx . NotFound ( "GetUserByName" , err )
2015-08-08 01:04:12 +08:00
} else {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "GetUserByName" , err )
2015-08-08 01:04:12 +08:00
}
2015-10-24 03:36:47 -04:00
return nil , nil
2015-08-08 01:04:12 +08:00
}
2016-07-24 01:08:22 +08:00
repo , err := models . GetRepositoryByName ( owner . ID , ctx . Params ( ":reponame" ) )
2015-08-08 01:04:12 +08:00
if err != nil {
if models . IsErrRepoNotExist ( err ) {
2018-01-10 22:34:17 +01:00
ctx . NotFound ( "GetRepositoryByName" , err )
2015-08-08 01:04:12 +08:00
} else {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "GetRepositoryByName" , err )
2015-08-08 01:04:12 +08:00
}
2015-10-24 03:36:47 -04:00
return nil , nil
2015-08-08 01:04:12 +08:00
}
2015-10-24 03:36:47 -04:00
return owner , repo
2015-08-06 22:48:11 +08:00
}
2016-11-24 15:04:31 +08:00
// GitHooks hooks of a repository
2016-03-11 11:56:52 -05:00
func GitHooks ( ctx * context . Context ) {
2015-08-27 00:30:06 +08:00
ctx . Data [ "Title" ] = ctx . Tr ( "repo.settings.githooks" )
2014-10-06 17:50:00 -04:00
ctx . Data [ "PageIsSettingsGitHooks" ] = true
hooks , err := ctx . Repo . GitRepo . Hooks ( )
if err != nil {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "Hooks" , err )
2014-10-06 17:50:00 -04:00
return
}
ctx . Data [ "Hooks" ] = hooks
2021-04-05 17:30:52 +02:00
ctx . HTML ( http . StatusOK , tplGithooks )
2014-10-06 17:50:00 -04:00
}
2016-11-24 15:04:31 +08:00
// GitHooksEdit render for editing a hook of repository page
2016-03-11 11:56:52 -05:00
func GitHooksEdit ( ctx * context . Context ) {
2015-08-27 00:30:06 +08:00
ctx . Data [ "Title" ] = ctx . Tr ( "repo.settings.githooks" )
2014-10-06 17:50:00 -04:00
ctx . Data [ "PageIsSettingsGitHooks" ] = true
name := ctx . Params ( ":name" )
hook , err := ctx . Repo . GitRepo . GetHook ( name )
if err != nil {
if err == git . ErrNotValidHook {
2018-01-10 22:34:17 +01:00
ctx . NotFound ( "GetHook" , err )
2014-10-06 17:50:00 -04:00
} else {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "GetHook" , err )
2014-10-06 17:50:00 -04:00
}
return
}
ctx . Data [ "Hook" ] = hook
2021-04-05 17:30:52 +02:00
ctx . HTML ( http . StatusOK , tplGithookEdit )
2014-10-06 17:50:00 -04:00
}
2016-11-24 15:04:31 +08:00
// GitHooksEditPost response for editing a git hook of a repository
2016-03-11 11:56:52 -05:00
func GitHooksEditPost ( ctx * context . Context ) {
2014-10-06 17:50:00 -04:00
name := ctx . Params ( ":name" )
hook , err := ctx . Repo . GitRepo . GetHook ( name )
if err != nil {
if err == git . ErrNotValidHook {
2018-01-10 22:34:17 +01:00
ctx . NotFound ( "GetHook" , err )
2014-10-06 17:50:00 -04:00
} else {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "GetHook" , err )
2014-10-06 17:50:00 -04:00
}
return
}
2021-08-11 02:31:13 +02:00
hook . Content = ctx . FormString ( "content" )
2014-10-06 17:50:00 -04:00
if err = hook . Update ( ) ; err != nil {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "hook.Update" , err )
2014-10-06 17:50:00 -04:00
return
}
ctx . Redirect ( ctx . Repo . RepoLink + "/settings/hooks/git" )
}
2015-07-25 21:32:04 +08:00
2016-11-24 15:04:31 +08:00
// DeployKeys render the deploy keys list of a repository page
2016-03-11 11:56:52 -05:00
func DeployKeys ( ctx * context . Context ) {
2015-08-27 00:30:06 +08:00
ctx . Data [ "Title" ] = ctx . Tr ( "repo.settings.deploy_keys" )
2015-08-06 22:48:11 +08:00
ctx . Data [ "PageIsSettingsKeys" ] = true
2017-11-21 04:49:33 +01:00
ctx . Data [ "DisableSSH" ] = setting . SSH . Disabled
2015-08-06 22:48:11 +08:00
2021-08-12 14:43:08 +02:00
keys , err := models . ListDeployKeys ( & models . ListDeployKeysOptions { RepoID : ctx . Repo . Repository . ID } )
2015-08-06 22:48:11 +08:00
if err != nil {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "ListDeployKeys" , err )
2015-08-06 22:48:11 +08:00
return
}
ctx . Data [ "Deploykeys" ] = keys
2021-04-05 17:30:52 +02:00
ctx . HTML ( http . StatusOK , tplDeployKeys )
2015-08-06 22:48:11 +08:00
}
2016-11-24 15:04:31 +08:00
// DeployKeysPost response for adding a deploy key of a repository
2021-01-26 23:36:53 +08:00
func DeployKeysPost ( ctx * context . Context ) {
2021-04-06 20:44:05 +01:00
form := web . GetForm ( ctx ) . ( * forms . AddKeyForm )
2015-08-27 00:30:06 +08:00
ctx . Data [ "Title" ] = ctx . Tr ( "repo.settings.deploy_keys" )
2015-08-06 22:48:11 +08:00
ctx . Data [ "PageIsSettingsKeys" ] = true
2021-08-12 14:43:08 +02:00
keys , err := models . ListDeployKeys ( & models . ListDeployKeysOptions { RepoID : ctx . Repo . Repository . ID } )
2015-08-20 17:11:29 +08:00
if err != nil {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "ListDeployKeys" , err )
2015-08-20 17:11:29 +08:00
return
}
ctx . Data [ "Deploykeys" ] = keys
2015-08-06 22:48:11 +08:00
if ctx . HasError ( ) {
2021-04-05 17:30:52 +02:00
ctx . HTML ( http . StatusOK , tplDeployKeys )
2015-08-06 22:48:11 +08:00
return
}
content , err := models . CheckPublicKeyString ( form . Content )
if err != nil {
2017-11-21 04:49:33 +01:00
if models . IsErrSSHDisabled ( err ) {
ctx . Flash . Info ( ctx . Tr ( "settings.ssh_disabled" ) )
} else if models . IsErrKeyUnableVerify ( err ) {
2015-08-06 22:48:11 +08: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 ( ) ) )
}
2017-11-21 04:49:33 +01:00
ctx . Redirect ( ctx . Repo . RepoLink + "/settings/keys" )
return
2015-08-06 22:48:11 +08:00
}
2018-01-07 00:55:53 +02:00
key , err := models . AddDeployKey ( ctx . Repo . Repository . ID , form . Title , content , ! form . IsWritable )
2015-11-18 21:21:47 -05:00
if err != nil {
2015-08-06 22:48:11 +08:00
ctx . Data [ "HasError" ] = true
switch {
2018-09-16 16:27:43 +01:00
case models . IsErrDeployKeyAlreadyExist ( err ) :
2015-08-06 22:48:11 +08:00
ctx . Data [ "Err_Content" ] = true
2016-11-07 21:58:22 +01:00
ctx . RenderWithErr ( ctx . Tr ( "repo.settings.key_been_used" ) , tplDeployKeys , & form )
2019-02-03 23:56:53 +00:00
case models . IsErrKeyAlreadyExist ( err ) :
ctx . Data [ "Err_Content" ] = true
ctx . RenderWithErr ( ctx . Tr ( "settings.ssh_key_been_used" ) , tplDeployKeys , & form )
2015-08-06 22:48:11 +08:00
case models . IsErrKeyNameAlreadyUsed ( err ) :
ctx . Data [ "Err_Title" ] = true
2016-11-07 21:58:22 +01:00
ctx . RenderWithErr ( ctx . Tr ( "repo.settings.key_name_used" ) , tplDeployKeys , & form )
2020-10-12 21:44:56 +08:00
case models . IsErrDeployKeyNameAlreadyUsed ( err ) :
ctx . Data [ "Err_Title" ] = true
ctx . RenderWithErr ( ctx . Tr ( "repo.settings.key_name_used" ) , tplDeployKeys , & form )
2015-08-06 22:48:11 +08:00
default :
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "AddDeployKey" , err )
2015-08-06 22:48:11 +08:00
}
return
}
2015-08-08 22:43:14 +08:00
log . Trace ( "Deploy key added: %d" , ctx . Repo . Repository . ID )
2015-11-18 21:21:47 -05:00
ctx . Flash . Success ( ctx . Tr ( "repo.settings.add_key_success" , key . Name ) )
2015-08-06 22:48:11 +08:00
ctx . Redirect ( ctx . Repo . RepoLink + "/settings/keys" )
}
2016-11-24 15:04:31 +08:00
// DeleteDeployKey response for deleting a deploy key
2016-03-11 11:56:52 -05:00
func DeleteDeployKey ( ctx * context . Context ) {
2021-07-29 09:42:15 +08:00
if err := models . DeleteDeployKey ( ctx . User , ctx . FormInt64 ( "id" ) ) ; err != nil {
2015-08-06 22:48:11 +08:00
ctx . Flash . Error ( "DeleteDeployKey: " + err . Error ( ) )
} else {
ctx . Flash . Success ( ctx . Tr ( "repo.settings.deploy_key_deletion_success" ) )
}
2021-04-05 17:30:52 +02:00
ctx . JSON ( http . StatusOK , map [ string ] interface { } {
2015-08-06 22:48:11 +08:00
"redirect" : ctx . Repo . RepoLink + "/settings/keys" ,
} )
2015-07-25 21:32:04 +08:00
}
2019-04-12 21:52:57 +01:00
2019-05-30 05:22:26 +03:00
// UpdateAvatarSetting update repo's avatar
2021-04-06 20:44:05 +01:00
func UpdateAvatarSetting ( ctx * context . Context , form forms . AvatarForm ) error {
2019-05-30 05:22:26 +03:00
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.
2020-10-14 21:07:51 +08:00
if ctxRepo . CustomAvatarRelativePath ( ) == "" {
2019-05-30 05:22:26 +03:00
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 ( )
2020-10-14 21:07:51 +08:00
if form . Avatar . Size > setting . Avatar . MaxFileSize {
2019-05-30 05:22:26 +03:00
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 )
}
2021-06-05 14:32:19 +02:00
st := typesniffer . DetectContentType ( data )
if ! ( st . IsImage ( ) && ! st . IsSvgImage ( ) ) {
2019-05-30 05:22:26 +03:00
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
2021-01-26 23:36:53 +08:00
func SettingsAvatar ( ctx * context . Context ) {
2021-04-06 20:44:05 +01:00
form := web . GetForm ( ctx ) . ( * forms . AvatarForm )
form . Source = forms . AvatarLocal
2021-01-26 23:36:53 +08:00
if err := UpdateAvatarSetting ( ctx , * form ) ; err != nil {
2019-05-30 05:22:26 +03:00
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" )
}
2021-06-14 19:20:43 +02:00
func selectPushMirrorByForm ( form * forms . RepoSettingForm , repo * models . Repository ) ( * models . PushMirror , error ) {
id , err := strconv . ParseInt ( form . PushMirrorID , 10 , 64 )
if err != nil {
return nil , err
}
if err = repo . LoadPushMirrors ( ) ; err != nil {
return nil , err
}
for _ , m := range repo . PushMirrors {
if m . ID == id {
return m , nil
}
}
return nil , fmt . Errorf ( "PushMirror[%v] not associated to repository %v" , id , repo )
}