2016-03-08 19:01:33 -05:00
module Groups
class UpdateService < Groups :: BaseService
2017-09-02 02:59:24 -04:00
include UpdateVisibilityLevel
2016-03-08 19:01:33 -05:00
def execute
2017-03-28 07:09:44 -04:00
reject_parent_id!
2017-09-05 20:10:30 -04:00
return false unless valid_visibility_level_change? ( group , params [ :visibility_level ] )
2016-03-08 19:01:33 -05:00
2017-09-01 21:00:46 -04:00
return false unless valid_share_with_group_lock_change?
2016-03-20 16:03:53 -04:00
group . assign_attributes ( params )
2016-03-08 19:01:33 -05:00
2016-12-20 11:52:27 -05:00
begin
group . save
rescue Gitlab :: UpdatePathError = > e
group . errors . add ( :base , e . message )
false
end
2016-03-08 19:01:33 -05:00
end
2017-03-28 07:09:44 -04:00
private
def reject_parent_id!
params . except! ( :parent_id )
end
2017-09-01 21:00:46 -04:00
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 )
2017-09-06 14:31:45 -04:00
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' ) )
2017-09-01 21:00:46 -04:00
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-03-08 19:01:33 -05:00
end
end