debian-mirror-gitlab/lib/gitlab/github_import/label_finder.rb

40 lines
1,011 B
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
# frozen_string_literal: true
module Gitlab
module GithubImport
class LabelFinder
attr_reader :project
# The base cache key to use for storing/retrieving label IDs.
2019-12-04 20:38:33 +05:30
CACHE_KEY = 'github-import/label-finder/%{project}/%{name}'
2018-03-17 18:26:18 +05:30
# project - An instance of `Project`.
def initialize(project)
@project = project
end
# Returns the label ID for the given name.
def id_for(name)
2020-04-08 14:13:33 +05:30
Gitlab::Cache::Import::Caching.read_integer(cache_key_for(name))
2018-03-17 18:26:18 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2018-03-17 18:26:18 +05:30
def build_cache
mapping = @project
.labels
.pluck(:id, :name)
.each_with_object({}) do |(id, name), hash|
hash[cache_key_for(name)] = id
end
2020-04-08 14:13:33 +05:30
Gitlab::Cache::Import::Caching.write_multiple(mapping)
2018-03-17 18:26:18 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2018-03-17 18:26:18 +05:30
def cache_key_for(name)
CACHE_KEY % { project: project.id, name: name }
end
end
end
end