This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-22 09:10:30 -08:00
|
|
|
module RoutingHelper
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
include Rails.application.routes.url_helpers
|
2016-09-04 05:04:26 -07:00
|
|
|
include ActionView::Helpers::AssetTagHelper
|
2016-02-22 09:10:30 -08:00
|
|
|
|
|
|
|
included do
|
|
|
|
def default_url_options
|
|
|
|
ActionMailer::Base.default_url_options
|
|
|
|
end
|
|
|
|
end
|
2016-09-04 05:04:26 -07:00
|
|
|
|
2017-12-06 02:41:57 -08:00
|
|
|
def full_asset_url(source, **options)
|
2017-09-05 14:17:06 -07:00
|
|
|
source = ActionController::Base.helpers.asset_url(source, options) unless use_storage?
|
2017-08-21 03:42:16 -07:00
|
|
|
|
|
|
|
URI.join(root_url, source).to_s
|
2016-09-04 05:04:26 -07:00
|
|
|
end
|
2017-09-05 14:17:06 -07:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def use_storage?
|
|
|
|
Rails.configuration.x.use_s3 || Rails.configuration.x.use_swift
|
|
|
|
end
|
2016-02-22 09:10:30 -08:00
|
|
|
end
|