~cytrogen/masto-fe

ref: 0139b1c8e1aa6cde4fcabd56ededaa0e5ab40a68 masto-fe/app/lib/cache_buster.rb -rw-r--r-- 617 bytes
0139b1c8 — Matt Jankowski Update uri to version 0.12.2 (CVE fix) (#25657) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# frozen_string_literal: true

class CacheBuster
  def initialize(options = {})
    @secret_header = options[:secret_header] || 'Secret-Header'
    @secret        = options[:secret] || 'True'
  end

  def bust(url)
    site = Addressable::URI.parse(url).normalized_site

    request_pool.with(site) do |http_client|
      build_request(url, http_client).perform
    end
  end

  private

  def request_pool
    RequestPool.current
  end

  def build_request(url, http_client)
    Request.new(:get, url, http_client: http_client).tap do |request|
      request.add_headers(@secret_header => @secret)
    end
  end
end