mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 16:46:12 +08:00
91daafc674
Previously we were always hard-coding expiry, this allows the secure session to correctly handle custom expiry times Also adds a ttl method for looking up time to live
46 lines
790 B
Ruby
46 lines
790 B
Ruby
# frozen_string_literal: true
|
|
|
|
# session that is not stored in cookie, expires after 1.hour unconditionally
|
|
class SecureSession
|
|
def initialize(prefix)
|
|
@prefix = prefix
|
|
end
|
|
|
|
def self.expiry
|
|
@expiry ||= 1.hour.to_i
|
|
end
|
|
|
|
def self.expiry=(val)
|
|
@expiry = val
|
|
end
|
|
|
|
def set(key, val, expires: nil)
|
|
expires ||= SecureSession.expiry
|
|
$redis.setex(prefixed_key(key), expires.to_i, val.to_s)
|
|
true
|
|
end
|
|
|
|
def ttl(key)
|
|
$redis.ttl(prefixed_key(key))
|
|
end
|
|
|
|
def [](key)
|
|
$redis.get(prefixed_key(key))
|
|
end
|
|
|
|
def []=(key, val)
|
|
if val == nil
|
|
$redis.del(prefixed_key(key))
|
|
else
|
|
$redis.setex(prefixed_key(key), SecureSession.expiry.to_i, val.to_s)
|
|
end
|
|
val
|
|
end
|
|
|
|
private
|
|
|
|
def prefixed_key(key)
|
|
"#{@prefix}#{key}"
|
|
end
|
|
end
|