2021-01-03 14:25:43 +05:30
# frozen_string_literal: true
module SshKeysHelper
def ssh_key_delete_modal_data ( key , path )
2023-03-04 22:38:38 +05:30
title = _ ( 'Delete Key' )
2021-01-03 14:25:43 +05:30
{
path : path ,
method : 'delete' ,
qa_selector : 'delete_ssh_key_button' ,
2023-03-04 22:38:38 +05:30
title : title ,
aria_label : title ,
2021-01-03 14:25:43 +05:30
modal_attributes : {
'data-qa-selector' : 'ssh_key_delete_modal' ,
title : _ ( 'Are you sure you want to delete this SSH key?' ) ,
message : _ ( 'This action cannot be undone, and will permanently delete the %{key} SSH key' ) % { key : key . title } ,
okVariant : 'danger' ,
okTitle : _ ( 'Delete' )
2021-06-08 01:23:25 +05:30
} ,
toggle : 'tooltip' ,
placement : 'top' ,
container : 'body'
2021-01-03 14:25:43 +05:30
}
end
2022-03-02 08:16:31 +05:30
2023-04-23 21:23:45 +05:30
def ssh_key_revoke_modal_data ( key , path )
title = _ ( 'Revoke Key' )
{
path : path ,
method : 'delete' ,
qa_selector : 'revoke_ssh_key_button' ,
title : title ,
aria_label : title ,
modal_attributes : {
'data-qa-selector' : 'ssh_key_revoke_modal' ,
title : _ ( 'Are you sure you want to revoke this SSH key?' ) ,
message : _ ( 'This action cannot be undone, and will permanently delete the %{key} SSH key. All commits signed using this SSH key will be marked as unverified.' ) % { key : key . title } ,
okVariant : 'danger' ,
okTitle : _ ( 'Revoke' )
} ,
toggle : 'tooltip' ,
placement : 'top' ,
container : 'body'
}
end
2022-03-02 08:16:31 +05:30
def ssh_key_allowed_algorithms
allowed_algorithms = Gitlab :: CurrentSettings . allowed_key_types . flat_map do | ssh_key_type_name |
Gitlab :: SSHPublicKey . supported_algorithms_for_name ( ssh_key_type_name )
end
quoted_allowed_algorithms = allowed_algorithms . map { | name | " ' #{ name } ' " }
Gitlab :: Utils . to_exclusive_sentence ( quoted_allowed_algorithms )
end
2021-01-03 14:25:43 +05:30
end