Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/finders/ci/group_variables_finder.rb')
-rw-r--r--app/finders/ci/group_variables_finder.rb39
1 files changed, 39 insertions, 0 deletions
diff --git a/app/finders/ci/group_variables_finder.rb b/app/finders/ci/group_variables_finder.rb
new file mode 100644
index 00000000000..e4697b07e64
--- /dev/null
+++ b/app/finders/ci/group_variables_finder.rb
@@ -0,0 +1,39 @@
+# frozen_string_literal: true
+
+module Ci
+ class GroupVariablesFinder
+ def initialize(project, sort_key = nil)
+ @project = project
+ @params = sort_to_params_map(sort_key)
+ end
+
+ def execute
+ variables = ::Ci::GroupVariable.for_groups(project.group&.self_and_ancestor_ids)
+
+ return Ci::GroupVariable.none if variables.empty?
+
+ sort(variables)
+ end
+
+ private
+
+ SORT_TO_PARAMS_MAP = {
+ created_desc: { order_by: 'created_at', sort: 'desc' },
+ created_asc: { order_by: 'created_at', sort: 'asc' },
+ key_desc: { order_by: 'key', sort: 'desc' },
+ key_asc: { order_by: 'key', sort: 'asc' }
+ }.freeze
+
+ def sort_to_params_map(sort_key)
+ SORT_TO_PARAMS_MAP[sort_key] || {}
+ end
+
+ def sort(variables)
+ return variables unless params[:order_by]
+
+ variables.sort_by_attribute("#{params[:order_by]}_#{params[:sort]}")
+ end
+
+ attr_reader :project, :params
+ end
+end