2018-09-06 05:48:57 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-06-10 04:05:16 -04:00
|
|
|
class BlobPresenter < Gitlab::View::Presenter::Delegated
|
2018-09-06 05:48:57 -04:00
|
|
|
presents :blob
|
|
|
|
|
2019-08-08 20:13:09 -04:00
|
|
|
def highlight(plain: nil)
|
2019-07-22 01:25:24 -04:00
|
|
|
load_all_blob_data
|
2018-10-04 00:04:13 -04:00
|
|
|
|
2018-09-06 05:48:57 -04:00
|
|
|
Gitlab::Highlight.highlight(
|
|
|
|
blob.path,
|
2019-08-08 20:13:09 -04:00
|
|
|
blob.data,
|
2018-09-06 05:48:57 -04:00
|
|
|
language: blob.language_from_gitattributes,
|
2018-09-11 00:37:44 -04:00
|
|
|
plain: plain
|
2018-09-06 05:48:57 -04:00
|
|
|
)
|
|
|
|
end
|
2019-06-04 09:38:18 -04:00
|
|
|
|
|
|
|
def web_url
|
|
|
|
Gitlab::Routing.url_helpers.project_blob_url(blob.repository.project, File.join(blob.commit_id, blob.path))
|
|
|
|
end
|
2019-07-22 01:25:24 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def load_all_blob_data
|
|
|
|
blob.load_all_data! if blob.respond_to?(:load_all_data!)
|
|
|
|
end
|
2018-09-06 05:48:57 -04:00
|
|
|
end
|