Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
4b3d8f38
Commit
4b3d8f38
authored
Jun 28, 2017
by
Michael Kozono
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tweaks to address feedback
parent
00236339
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
19 deletions
+20
-19
db/migrate/20170626202753_update_authorized_keys_file.rb
db/migrate/20170626202753_update_authorized_keys_file.rb
+17
-16
lib/gitlab/shell.rb
lib/gitlab/shell.rb
+3
-3
No files found.
db/migrate/20170626202753_update_authorized_keys_file.rb
View file @
4b3d8f38
...
...
@@ -4,15 +4,19 @@
class
UpdateAuthorizedKeysFile
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
class
ApplicationSetting
<
ActiveRecord
::
Base
;
end
class
Key
<
ActiveRecord
::
Base
;
end
class
ApplicationSetting
<
ActiveRecord
::
Base
self
.
table_name
=
'application_settings'
end
class
Key
<
ActiveRecord
::
Base
self
.
table_name
=
'keys'
end
# Set this constant to true if this migration requires downtime.
DOWNTIME
=
false
# We started deploying 9.3.0 to GitLab.com at 2017-06-22
T17:24:00+00:00.
#
TODO look at the time we pushed to the package server
DATETIME_9_3_0_RELEASED
=
DateTime
.
parse
(
'2017-06-22T
17:24
:00+00:00'
)
# We started deploying 9.3.0 to GitLab.com at 2017-06-22
17:24 UTC, and the
#
package was pushed some time before that. Some buffer room is included here.
DATETIME_9_3_0_RELEASED
=
DateTime
.
parse
(
'2017-06-22T
00:00
:00+00:00'
)
def
up
if
authorized_keys_file_in_use_and_stale?
...
...
@@ -33,14 +37,14 @@ class UpdateAuthorizedKeysFile < ActiveRecord::Migration
def
authorized_keys_file_in_use_and_stale?
return
false
unless
ran_broken_migration?
uncached
_setting
=
ApplicationSetting
.
last
@uncached_application
_setting
=
ApplicationSetting
.
last
# If there is no ApplicationSetting record in the DB, then the instance was
# never in a state where `authorized_keys_enabled` field was `nil`. So the
# file is not stale.
return
false
unless
uncached
_setting
return
false
unless
@uncached_application
_setting
if
uncached
_setting
.
authorized_keys_enabled
==
false
# not falsey!
if
@uncached_application
_setting
.
authorized_keys_enabled
==
false
# not falsey!
# If authorized_keys_enabled is explicitly false, then the file is not in
# use, so it doesn't need to be fixed. I.e. GitLab.com.
#
...
...
@@ -59,11 +63,9 @@ class UpdateAuthorizedKeysFile < ActiveRecord::Migration
def
ran_broken_migration?
# If the column is already fixed, then the migration wasn't run before now.
if
Gitlab
::
Database
.
postgresql?
!
column_exists?
(
:application_settings
,
:authorized_keys_enabled
,
:boolean
,
default:
'true'
,
null:
false
)
else
!
column_exists?
(
:application_settings
,
:authorized_keys_enabled
,
:boolean
,
default:
'1'
,
null:
false
)
end
default_value
=
Gitlab
::
Database
.
postgresql?
?
'true'
:
'1'
!
column_exists?
(
:application_settings
,
:authorized_keys_enabled
,
:boolean
,
default:
default_value
,
null:
false
)
end
def
false_negative_warning
...
...
@@ -91,8 +93,7 @@ class UpdateAuthorizedKeysFile < ActiveRecord::Migration
end
def
update_nil_setting_to_true
setting
=
ApplicationSetting
.
last
# guaranteed to be found since authorized_keys_file_in_use_and_stale? is true
setting
.
update!
(
authorized_keys_enabled:
true
)
if
setting
.
authorized_keys_enabled
.
nil?
@uncached_application_setting
.
update_attribute
(
:authorized_keys_enabled
,
true
)
end
def
update_authorized_keys_file_since
(
cutoff_datetime
)
...
...
@@ -102,7 +103,7 @@ class UpdateAuthorizedKeysFile < ActiveRecord::Migration
end
def
add_keys_since
(
cutoff_datetime
)
start_key
=
Key
.
where
(
"created_at >= ?"
,
cutoff_datetime
).
first
start_key
=
Key
.
select
(
:id
).
where
(
"created_at >= ?"
,
cutoff_datetime
).
take
if
start_key
GitlabShellWorker
.
perform_async
(
:batch_add_keys_in_db_starting_from
,
start_key
.
id
)
end
...
...
lib/gitlab/shell.rb
View file @
4b3d8f38
...
...
@@ -282,9 +282,7 @@ module Gitlab
def
list_key_ids
(
&
block
)
return
unless
self
.
authorized_keys_enabled?
IO
.
popen
(
%W(
#{
gitlab_shell_path
}
/bin/gitlab-keys list-key-ids)
)
do
|
key_id_stream
|
yield
(
key_id_stream
)
end
IO
.
popen
(
%W(
#{
gitlab_shell_path
}
/bin/gitlab-keys list-key-ids)
,
&
block
)
end
# Add empty directory for storing repositories
...
...
@@ -415,6 +413,8 @@ module Gitlab
end
def
authorized_keys_enabled?
# Return true if nil to ensure the authorized_keys methods work while
# fixing the authorized_keys file during migration.
return
true
if
current_application_settings
.
authorized_keys_enabled
.
nil?
current_application_settings
.
authorized_keys_enabled
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment