2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-04 08:47:37 +08:00
discourse/lib/secure_session.rb
2017-07-28 10:20:09 +09:00

18 lines
365 B
Ruby

# session that is not stored in cookie, expires after 1.hour unconditionally
class SecureSession
def initialize(prefix)
@prefix = prefix
end
def [](key)
$redis.get("#{@prefix}#{key}")
end
def []=(key, val)
if val == nil
$redis.del("#{@prefix}#{key}")
else
$redis.setex("#{@prefix}#{key}", 1.hour, val.to_s)
end
end
end