Class: Gitlab::GithubImport::Importer::NoteAttachmentsImporter
- Inherits:
-
Object
- Object
- Gitlab::GithubImport::Importer::NoteAttachmentsImporter
- Defined in:
- lib/gitlab/github_import/importer/note_attachments_importer.rb
Constant Summary collapse
- SUPPORTED_RECORD_TYPES =
[::Release.name, ::Issue.name, ::MergeRequest.name, ::Note.name].freeze
Instance Attribute Summary collapse
-
#client ⇒ Object
readonly
Returns the value of attribute client.
-
#note_text ⇒ Object
readonly
Returns the value of attribute note_text.
-
#project ⇒ Object
readonly
Returns the value of attribute project.
-
#web_endpoint ⇒ Object
readonly
Returns the value of attribute web_endpoint.
Instance Method Summary collapse
- #execute ⇒ Object
-
#initialize(note_text, project, client) ⇒ NoteAttachmentsImporter
constructor
note_text - An instance of ‘Gitlab::GithubImport::Representation::NoteText`.
Constructor Details
#initialize(note_text, project, client) ⇒ NoteAttachmentsImporter
note_text - An instance of ‘Gitlab::GithubImport::Representation::NoteText`. project - An instance of `Project`. client - An instance of `Gitlab::GithubImport::Client`.
14 15 16 17 18 19 |
# File 'lib/gitlab/github_import/importer/note_attachments_importer.rb', line 14 def initialize(note_text, project, client) @note_text = note_text @project = project @client = client @web_endpoint = client.web_endpoint end |
Instance Attribute Details
#client ⇒ Object (readonly)
Returns the value of attribute client.
7 8 9 |
# File 'lib/gitlab/github_import/importer/note_attachments_importer.rb', line 7 def client @client end |
#note_text ⇒ Object (readonly)
Returns the value of attribute note_text.
7 8 9 |
# File 'lib/gitlab/github_import/importer/note_attachments_importer.rb', line 7 def note_text @note_text end |
#project ⇒ Object (readonly)
Returns the value of attribute project.
7 8 9 |
# File 'lib/gitlab/github_import/importer/note_attachments_importer.rb', line 7 def project @project end |
#web_endpoint ⇒ Object (readonly)
Returns the value of attribute web_endpoint.
7 8 9 |
# File 'lib/gitlab/github_import/importer/note_attachments_importer.rb', line 7 def web_endpoint @web_endpoint end |
Instance Method Details
#execute ⇒ Object
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/gitlab/github_import/importer/note_attachments_importer.rb', line 21 def execute = Gitlab::GithubImport::MarkdownText.(note_text.text, web_endpoint) return if .blank? new_text = .reduce(note_text.text) do |text, | new_url = () # we need to update video media file links with the correct markdown format if new_url.end_with?(*supported_video_media_types) text.gsub(.url, "") else text.gsub(.url, new_url) end end update_note_record(new_text) end |