Class: Environments::StopService

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

Instance Attribute Summary collapse

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 Attribute Details

#refObject (readonly)

Returns the value of attribute ref.



5
6
7
# File 'app/services/environments/stop_service.rb', line 5

def ref
  @ref
end

Instance Method Details

#execute(environment) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'app/services/environments/stop_service.rb', line 7

def execute(environment)
  unless can?(current_user, :stop_environment, environment)
    return ServiceResponse.error(
      message: 'Unauthorized to stop the environment',
      payload: { environment: environment }
    )
  end

  if params[:force]
    environment.stop_complete!
  else
    environment.stop_with_actions!(current_user)
  end

  unless environment.saved_change_to_attribute?(:state)
    return ServiceResponse.error(
      message: 'Attemped to stop the environment but failed to change the status',
      payload: { environment: environment }
    )
  end

  ServiceResponse.success(payload: { environment: environment })
end

#execute_for_branch(branch_name) ⇒ Object



31
32
33
34
35
36
37
# File 'app/services/environments/stop_service.rb', line 31

def execute_for_branch(branch_name)
  @ref = branch_name

  return unless @ref.present?

  environments.each { |environment| execute(environment) }
end

#execute_for_merge_request_pipeline(merge_request) ⇒ Object



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'app/services/environments/stop_service.rb', line 39

def execute_for_merge_request_pipeline(merge_request)
  return unless merge_request.actual_head_pipeline&.merge_request?

  created_environments = merge_request.created_environments

  if created_environments.any?
    # This log message can be removed with https://gitlab.com/gitlab-org/gitlab/-/issues/372965
    Gitlab::AppJsonLogger.info(message: 'Running new dynamic environment stop logic', project_id: project.id)
    created_environments.each { |env| execute(env) }
  else
    environments_in_head_pipeline = merge_request.environments_in_head_pipeline(deployment_status: :success)
    environments_in_head_pipeline.each { |env| execute(env) }

    if environments_in_head_pipeline.any?
      # If we don't see a message often, we'd be able to remove this path. (or likely in GitLab 16.0)
      # See https://gitlab.com/gitlab-org/gitlab/-/issues/372965
      Gitlab::AppJsonLogger.info(message: 'Running legacy dynamic environment stop logic', project_id: project.id)
    end
  end
end