2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-22 18:10:30 +01:00
|
|
|
module RoutingHelper
|
|
|
|
extend ActiveSupport::Concern
|
2022-03-26 02:53:34 +01:00
|
|
|
|
2016-09-04 14:04:26 +02:00
|
|
|
include ActionView::Helpers::AssetTagHelper
|
2018-01-04 15:36:55 +01:00
|
|
|
include Webpacker::Helper
|
2016-02-22 18:10:30 +01:00
|
|
|
|
|
|
|
included do
|
2023-09-28 16:52:11 +02:00
|
|
|
include Rails.application.routes.url_helpers
|
|
|
|
|
2016-02-22 18:10:30 +01:00
|
|
|
def default_url_options
|
|
|
|
ActionMailer::Base.default_url_options
|
|
|
|
end
|
|
|
|
end
|
2016-09-04 14:04:26 +02:00
|
|
|
|
2017-12-06 11:41:57 +01:00
|
|
|
def full_asset_url(source, **options)
|
2020-01-11 21:38:02 +01:00
|
|
|
source = ActionController::Base.helpers.asset_url(source, **options) unless use_storage?
|
2017-08-21 12:42:16 +02:00
|
|
|
|
2022-06-23 23:09:32 +02:00
|
|
|
URI.join(asset_host, source).to_s
|
|
|
|
end
|
|
|
|
|
|
|
|
def asset_host
|
|
|
|
Rails.configuration.action_controller.asset_host || root_url
|
2016-09-04 14:04:26 +02:00
|
|
|
end
|
2017-09-05 23:17:06 +02:00
|
|
|
|
2024-01-17 13:19:51 +01:00
|
|
|
def frontend_asset_path(source, **options)
|
|
|
|
asset_pack_path("media/#{source}", **options)
|
|
|
|
end
|
|
|
|
|
|
|
|
def frontend_asset_url(source, **options)
|
|
|
|
full_asset_url(frontend_asset_path(source, **options))
|
2018-01-04 15:36:55 +01:00
|
|
|
end
|
|
|
|
|
2017-09-05 23:17:06 +02:00
|
|
|
def use_storage?
|
|
|
|
Rails.configuration.x.use_s3 || Rails.configuration.x.use_swift
|
|
|
|
end
|
2016-02-22 18:10:30 +01:00
|
|
|
end
|