2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2018-11-13 02:27:31 -05:00
|
|
|
class AddVisibilityLevelToGroups < ActiveRecord::Migration[4.2]
|
2016-03-21 19:09:20 -04:00
|
|
|
def up
|
|
|
|
add_column :namespaces, :visibility_level, :integer, null: false, default: Gitlab::VisibilityLevel::PUBLIC
|
|
|
|
add_index :namespaces, :visibility_level
|
|
|
|
|
|
|
|
# Unfortunately, this is needed on top of the `default`, since we don't want the configuration specific
|
|
|
|
# `allowed_visibility_level` to end up in schema.rb
|
|
|
|
if allowed_visibility_level < Gitlab::VisibilityLevel::PUBLIC
|
|
|
|
execute("UPDATE namespaces SET visibility_level = #{allowed_visibility_level}")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
remove_column :namespaces, :visibility_level
|
2016-03-21 18:11:24 -04:00
|
|
|
end
|
|
|
|
|
2016-03-21 19:09:20 -04:00
|
|
|
private
|
|
|
|
|
2016-03-21 18:11:24 -04:00
|
|
|
def allowed_visibility_level
|
2016-03-21 19:09:20 -04:00
|
|
|
application_settings = select_one("SELECT restricted_visibility_levels FROM application_settings ORDER BY id DESC LIMIT 1")
|
|
|
|
if application_settings
|
|
|
|
restricted_visibility_levels = YAML.safe_load(application_settings["restricted_visibility_levels"]) rescue nil
|
|
|
|
end
|
|
|
|
restricted_visibility_levels ||= []
|
|
|
|
|
|
|
|
allowed_levels = Gitlab::VisibilityLevel.values - restricted_visibility_levels
|
2016-03-21 18:11:24 -04:00
|
|
|
allowed_levels.max
|
2016-03-01 10:22:29 -05:00
|
|
|
end
|
|
|
|
end
|