Commit e3061486 authored by Douwe Maan's avatar Douwe Maan

Merge branch 'sh-fix-ssh-mirrors' into 'master'

Don't put the password in the SSH remote if using public-key authentication

Closes #3352

See merge request !2837
parents 488489f3 c6e6decc
---
title: Don't put the password in the SSH remote if using public-key authentication
merge_request: 2837
author:
...@@ -156,7 +156,15 @@ module EE ...@@ -156,7 +156,15 @@ module EE
def fetch_mirror def fetch_mirror
return unless mirror? return unless mirror?
repository.fetch_upstream(self.import_url) # Only send the password if it's needed
url =
if import_data&.password_auth?
import_url
else
username_only_import_url
end
repository.fetch_upstream(url)
end end
def can_override_approvers? def can_override_approvers?
......
...@@ -32,6 +32,10 @@ module EE ...@@ -32,6 +32,10 @@ module EE
ssh_import? && auth_method == 'ssh_public_key' ssh_import? && auth_method == 'ssh_public_key'
end end
def password_auth?
auth_method == 'password'
end
def ssh_import? def ssh_import?
project&.import_url&.start_with?('ssh://') project&.import_url&.start_with?('ssh://')
end end
......
...@@ -198,6 +198,24 @@ describe Project do ...@@ -198,6 +198,24 @@ describe Project do
end end
end end
describe '#fetch_mirror' do
where(:import_url, :auth_method, :expected) do
'http://foo:bar@example.com' | 'password' | 'http://foo:bar@example.com'
'ssh://foo:bar@example.com' | 'password' | 'ssh://foo:bar@example.com'
'ssh://foo:bar@example.com' | 'ssh_public_key' | 'ssh://foo@example.com'
end
with_them do
let(:project) { build(:project, :mirror, import_url: import_url, import_data_attributes: { auth_method: auth_method } ) }
it do
expect(project.repository).to receive(:fetch_upstream).with(expected)
project.fetch_mirror
end
end
end
describe '#mirror_waiting_duration' do describe '#mirror_waiting_duration' do
it 'returns in seconds the time spent in the queue' do it 'returns in seconds the time spent in the queue' do
project = create(:project, :mirror, :import_scheduled) project = create(:project, :mirror, :import_scheduled)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment