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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

73 lines
2.4 KiB
Ruby
Raw Normal View History

2022-11-25 23:54:43 +05:30
# frozen_string_literal: true
module Gitlab
module GithubImport
class Settings
OPTIONAL_STAGES = {
single_endpoint_issue_events_import: {
label: 'Import issue and pull request events',
details: <<-TEXT.split("\n").map(&:strip).join(' ')
For example, opened or closed, renamed, and labeled or unlabeled.
Time required to import these events depends on how many issues or pull requests your project has.
TEXT
},
single_endpoint_notes_import: {
label: 'Use alternative comments import method',
details: <<-TEXT.split("\n").map(&:strip).join(' ')
The default method can skip some comments in large projects because of limitations of the GitHub API.
TEXT
},
attachments_import: {
2023-05-27 22:25:52 +05:30
label: 'Import Markdown attachments (links)',
2022-11-25 23:54:43 +05:30
details: <<-TEXT.split("\n").map(&:strip).join(' ')
2023-05-27 22:25:52 +05:30
Import Markdown attachments (links) from repository comments, release posts, issue descriptions,
2022-11-25 23:54:43 +05:30
and pull request descriptions. These can include images, text, or binary attachments.
If not imported, links in Markdown to attachments break after you remove the attachments from GitHub.
TEXT
}
}.freeze
def self.stages_array
OPTIONAL_STAGES.map do |stage_name, data|
{
name: stage_name.to_s,
label: s_(format("GitHubImport|%{text}", text: data[:label])),
details: s_(format("GitHubImport|%{text}", text: data[:details]))
}
end
end
def initialize(project)
@project = project
end
def write(user_settings)
user_settings = user_settings.to_h.with_indifferent_access
optional_stages = fetch_stages_from_params(user_settings)
import_data = project.create_or_update_import_data(data: { optional_stages: optional_stages })
import_data.save!
end
def enabled?(stage_name)
project.import_data&.data&.dig('optional_stages', stage_name.to_s) || false
end
def disabled?(stage_name)
!enabled?(stage_name)
end
private
attr_reader :project
def fetch_stages_from_params(user_settings)
OPTIONAL_STAGES.keys.to_h do |stage_name|
enabled = Gitlab::Utils.to_boolean(user_settings[stage_name], default: false)
[stage_name, enabled]
end
end
end
end
end