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