Sha256: eb8b252bd372be1c194bdb1f8ce742e4f28d6710cc8cad3291d9e9557f541856

Contents?: true

Size: 1.12 KB

Versions: 8

Compression:

Stored size: 1.12 KB

Contents

# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2020-2023, by Samuel Williams.

require_relative 'split'

module Protocol
	module HTTP
		module Header
			class CacheControl < Split
				PRIVATE = 'private'
				PUBLIC = 'public'
				NO_CACHE = 'no-cache'
				NO_STORE = 'no-store'
				MAX_AGE = 'max-age'
				
				STATIC = 'static'
				DYNAMIC = 'dynamic'
				STREAMING = 'streaming'
				
				def initialize(value = nil)
					super(value&.downcase)
				end
				
				def << value
					super(value.downcase)
				end
				
				def static?
					self.include?(STATIC)
				end
				
				def dynamic?
					self.include?(DYNAMIC)
				end
				
				def streaming?
					self.include?(STREAMING)
				end
				
				def private?
					self.include?(PRIVATE)
				end
				
				def public?
					self.include?(PUBLIC)
				end
				
				def no_cache?
					self.include?(NO_CACHE)
				end
				
				def no_store?
					self.include?(NO_STORE)
				end
				
				def max_age
					if value = self.find{|value| value.start_with?(MAX_AGE)}
						_, age = value.split('=', 2)
						
						return Integer(age)
					end
				end
			end
		end
	end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
protocol-http-0.24.7 lib/protocol/http/header/cache_control.rb
protocol-http-0.24.6 lib/protocol/http/header/cache_control.rb
protocol-http-0.24.5 lib/protocol/http/header/cache_control.rb
protocol-http-0.24.4 lib/protocol/http/header/cache_control.rb
protocol-http-0.24.3 lib/protocol/http/header/cache_control.rb
protocol-http-0.24.2 lib/protocol/http/header/cache_control.rb
protocol-http-0.24.1 lib/protocol/http/header/cache_control.rb
protocol-http-0.24.0 lib/protocol/http/header/cache_control.rb