2016-06-02 11:05:42 +05:30
module Groups
class UpdateService < Groups :: BaseService
2018-03-17 18:26:18 +05:30
include UpdateVisibilityLevel
2016-06-02 11:05:42 +05:30
def execute
2017-08-17 22:00:37 +05:30
reject_parent_id!
2018-03-17 18:26:18 +05:30
return false unless valid_visibility_level_change? ( group , params [ :visibility_level ] )
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
return false unless valid_share_with_group_lock_change?
2016-06-02 11:05:42 +05:30
group . assign_attributes ( params )
2017-08-17 22:00:37 +05:30
begin
group . save
rescue Gitlab :: UpdatePathError = > e
group . errors . add ( :base , e . message )
false
end
end
private
def reject_parent_id!
params . except! ( :parent_id )
2016-06-02 11:05:42 +05:30
end
2018-03-17 18:26:18 +05:30
def valid_share_with_group_lock_change?
return true unless changing_share_with_group_lock?
return true if can? ( current_user , :change_share_with_group_lock , group )
group . errors . add ( :share_with_group_lock , s_ ( 'GroupSettings|cannot be disabled when the parent group "Share with group lock" is enabled, except by the owner of the parent group' ) )
false
end
def changing_share_with_group_lock?
return false if params [ :share_with_group_lock ] . nil?
params [ :share_with_group_lock ] != group . share_with_group_lock
end
2016-06-02 11:05:42 +05:30
end
end