trabajo-afectivo/lib/session_helper.rb

52 lines
1.4 KiB
Ruby
Raw Normal View History

module SessionHelper
def self.default_collections(user, assets = {})
# auto population collections, store all here
default_collection = {}
# load collections to deliver from external files
2018-04-12 14:57:37 +00:00
dir = File.expand_path('..', __dir__)
2016-05-12 09:26:11 +00:00
files = Dir.glob( "#{dir}/app/controllers/sessions/collection_*.rb")
files.each do |file|
load file
2016-05-12 09:26:11 +00:00
(default_collection, assets) = ExtraCollection.session(default_collection, assets, user)
end
[default_collection, assets]
end
2013-12-08 16:01:54 +00:00
2014-09-09 23:42:20 +00:00
def self.models(user = nil)
models = {}
objects = ObjectManager.list_objects
objects.each do |object|
2014-09-09 23:42:20 +00:00
attributes = ObjectManager::Attribute.by_object(object, user)
models[object] = attributes
end
2014-09-09 23:42:20 +00:00
models
end
2013-12-08 16:01:54 +00:00
def self.cleanup_expired
2015-06-23 12:17:04 +00:00
# delete temp. sessions
2016-05-12 09:26:11 +00:00
ActiveRecord::SessionStore::Session.where('persistent IS NULL AND updated_at < ?', Time.zone.now - 2.hours).delete_all
2015-06-23 12:17:04 +00:00
# web sessions not updated the last x days
2016-05-12 09:26:11 +00:00
ActiveRecord::SessionStore::Session.where('updated_at < ?', Time.zone.now - 60.days).delete_all
2013-12-08 16:01:54 +00:00
end
def self.get(id)
2016-05-12 09:26:11 +00:00
ActiveRecord::SessionStore::Session.find_by(id: id)
2013-12-08 16:01:54 +00:00
end
def self.list(limit = 10_000)
2013-12-08 16:01:54 +00:00
ActiveRecord::SessionStore::Session.order('updated_at DESC').limit(limit)
end
def self.destroy(id)
2016-05-12 09:26:11 +00:00
session = ActiveRecord::SessionStore::Session.find_by(id: id)
2013-12-08 16:01:54 +00:00
return if !session
session.destroy
end
end