2016-03-16 18:44:33 -04:00
|
|
|
module Groups
|
|
|
|
class CreateService < Groups::BaseService
|
2016-03-17 18:42:46 -04:00
|
|
|
def initialize(user, params = {})
|
|
|
|
@current_user, @params = user, params.dup
|
2017-02-20 07:41:50 -05:00
|
|
|
@chat_team = @params.delete(:create_chat_team)
|
2016-03-16 18:44:33 -04:00
|
|
|
end
|
|
|
|
|
2016-03-17 18:42:46 -04:00
|
|
|
def execute
|
2016-03-18 08:28:16 -04:00
|
|
|
@group = Group.new(params)
|
|
|
|
|
2016-03-20 16:03:53 -04:00
|
|
|
unless Gitlab::VisibilityLevel.allowed_for?(current_user, params[:visibility_level])
|
|
|
|
deny_visibility_level(@group)
|
|
|
|
return @group
|
|
|
|
end
|
2016-03-18 08:28:16 -04:00
|
|
|
|
2016-12-29 12:18:05 -05:00
|
|
|
if @group.parent && !can?(current_user, :admin_group, @group.parent)
|
|
|
|
@group.parent = nil
|
|
|
|
@group.errors.add(:parent_id, 'manage access required to create subgroup')
|
2016-12-26 04:56:19 -05:00
|
|
|
|
2016-12-29 12:18:05 -05:00
|
|
|
return @group
|
2016-12-26 04:56:19 -05:00
|
|
|
end
|
|
|
|
|
2016-03-21 19:09:20 -04:00
|
|
|
@group.name ||= @group.path.dup
|
2017-02-02 09:04:02 -05:00
|
|
|
|
2017-02-20 07:41:50 -05:00
|
|
|
if create_chat_team?
|
2017-03-06 08:06:33 -05:00
|
|
|
response = Mattermost::CreateTeamService.new(@group, current_user).execute
|
2017-02-20 07:41:50 -05:00
|
|
|
return @group if @group.errors.any?
|
2017-03-06 08:06:33 -05:00
|
|
|
|
|
|
|
@group.build_chat_team(name: response['name'], team_id: response['id'])
|
2017-02-02 09:04:02 -05:00
|
|
|
end
|
|
|
|
|
2017-02-20 07:41:50 -05:00
|
|
|
@group.save
|
|
|
|
@group.add_owner(current_user)
|
2016-03-17 18:42:46 -04:00
|
|
|
@group
|
2016-03-16 18:44:33 -04:00
|
|
|
end
|
2017-03-01 14:34:29 -05:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def create_chat_team?
|
|
|
|
Gitlab.config.mattermost.enabled && @chat_team && group.chat_team.nil?
|
|
|
|
end
|
2016-03-16 18:44:33 -04:00
|
|
|
end
|
|
|
|
end
|