Class: Ci::ListConfigVariablesService
- Inherits:
-
BaseService
- Object
- BaseService
- Ci::ListConfigVariablesService
- Includes:
- ReactiveCaching
- Defined in:
- app/services/ci/list_config_variables_service.rb
Constant Summary
Constants included from ReactiveCaching
ReactiveCaching::ExceededReactiveCacheLimit, ReactiveCaching::InvalidateReactiveCache, ReactiveCaching::WORK_TYPE
Instance Attribute Summary
Attributes inherited from BaseService
#current_user, #params, #project
Class Method Summary collapse
Instance Method Summary collapse
- #calculate_reactive_cache(sha) ⇒ Object
- #execute(sha) ⇒ Object
-
#id ⇒ Object
Required for ReactiveCaching, it is also used in `reactive_cache_worker_finder`.
Methods inherited from BaseService
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
Constructor Details
This class inherits a constructor from BaseService
Class Method Details
Instance Method Details
#calculate_reactive_cache(sha) ⇒ Object
24 25 26 27 28 29 30 31 32 33 |
# File 'app/services/ci/list_config_variables_service.rb', line 24 def calculate_reactive_cache(sha) config = project.ci_config_for(sha) return {} unless config result = Gitlab::Ci::YamlProcessor.new(config, project: project, user: current_user, sha: sha).execute result.valid? ? result.variables_with_data : {} end |
#execute(sha) ⇒ Object
20 21 22 |
# File 'app/services/ci/list_config_variables_service.rb', line 20 def execute(sha) with_reactive_cache(sha) { |result| result } end |
#id ⇒ Object
Required for ReactiveCaching, it is also used in `reactive_cache_worker_finder`
36 37 38 |
# File 'app/services/ci/list_config_variables_service.rb', line 36 def id "#{project.id}-#{current_user.id}" end |