Class: Environments::DestroyService

Inherits:
BaseService show all
Defined in:
app/services/environments/destroy_service.rb

Instance Attribute Summary

Attributes inherited from BaseService

#current_user, #params, #project

Instance Method Summary collapse

Methods inherited from BaseService

#initialize

Methods included from BaseServiceUtility

#deny_visibility_level, #event_service, #log_error, #log_info, #notification_service, #system_hook_service, #todo_service, #visibility_level

Methods included from Gitlab::Allowable

#can?

Constructor Details

This class inherits a constructor from BaseService

Instance Method Details

#execute(environment) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'app/services/environments/destroy_service.rb', line 5

def execute(environment)
  unless can?(current_user, :destroy_environment, environment)
    return ServiceResponse.error(
      message: 'Unauthorized to delete the environment'
    )
  end

  environment.destroy

  unless environment.destroyed?
    return ServiceResponse.error(
      message: 'Attemped to destroy the environment but failed'
    )
  end

  ServiceResponse.success
end