Port to support postgresql.

This commit is contained in:
Martin Edenhofer 2016-01-24 19:27:36 +01:00
parent 70f5f21558
commit ab63cfec4d

View file

@ -7,13 +7,13 @@ class RecentView < ApplicationModel
after_update :notify_clients after_update :notify_clients
after_destroy :notify_clients after_destroy :notify_clients
def self.log( object, o_id, user ) def self.log(object, o_id, user)
# access check # access check
return if !access( object, o_id, user ) return if !access(object, o_id, user)
# lookups # lookups
object_lookup_id = ObjectLookup.by_name( object ) object_lookup_id = ObjectLookup.by_name(object)
# create entry # create entry
record = { record = {
@ -24,24 +24,24 @@ class RecentView < ApplicationModel
RecentView.create(record) RecentView.create(record)
end end
def self.log_destroy( requested_object, requested_object_id ) def self.log_destroy(requested_object, requested_object_id)
return if requested_object == 'RecentView' return if requested_object == 'RecentView'
RecentView.where( recent_view_object_id: ObjectLookup.by_name( requested_object ) ) RecentView.where(recent_view_object_id: ObjectLookup.by_name(requested_object))
.where( o_id: requested_object_id ) .where(o_id: requested_object_id)
.destroy_all .destroy_all
end end
def self.user_log_destroy( user ) def self.user_log_destroy(user)
RecentView.where( created_by_id: user.id ).destroy_all RecentView.where(created_by_id: user.id).destroy_all
end end
def self.list( user, limit = 10, type = nil ) def self.list(user, limit = 10, type = nil)
recent_views = if !type recent_views = if !type
RecentView.where( created_by_id: user.id ) RecentView.where(created_by_id: user.id)
.order('created_at DESC, id DESC') .order('created_at DESC, id DESC')
.limit(limit) .limit(limit)
else else
RecentView.select('DISTINCT(o_id), recent_view_object_id').where( created_by_id: user.id, recent_view_object_id: ObjectLookup.by_name(type) ) RecentView.select('DISTINCT(o_id), recent_view_object_id, created_at, id').where(created_by_id: user.id, recent_view_object_id: ObjectLookup.by_name(type))
.order('created_at DESC, id DESC') .order('created_at DESC, id DESC')
.limit(limit) .limit(limit)
end end
@ -49,11 +49,11 @@ class RecentView < ApplicationModel
list = [] list = []
recent_views.each { |item| recent_views.each { |item|
data = item.attributes data = item.attributes
data['object'] = ObjectLookup.by_id( data['recent_view_object_id'] ) data['object'] = ObjectLookup.by_id(data['recent_view_object_id'])
data.delete( 'recent_view_object_id' ) data.delete('recent_view_object_id')
# access check # access check
next if !access( data['object'], data['o_id'], user ) next if !access(data['object'], data['o_id'], user)
# add to result list # add to result list
list.push data list.push data
@ -61,8 +61,8 @@ class RecentView < ApplicationModel
list list
end end
def self.list_full( user, limit = 10 ) def self.list_full(user, limit = 10)
recent_viewed = list( user, limit ) recent_viewed = list(user, limit)
# get related object # get related object
assets = ApplicationModel.assets_of_object_list(recent_viewed) assets = ApplicationModel.assets_of_object_list(recent_viewed)
@ -87,8 +87,8 @@ class RecentView < ApplicationModel
# check if object exists # check if object exists
begin begin
return if !Kernel.const_get( object ) return if !Kernel.const_get(object)
record = Kernel.const_get( object ).lookup( id: o_id ) record = Kernel.const_get(object).lookup(id: o_id)
return if !record return if !record
rescue rescue
return return
@ -96,7 +96,7 @@ class RecentView < ApplicationModel
# check permission # check permission
return if !record.respond_to?(:permission) return if !record.respond_to?(:permission)
record.permission( current_user: user ) record.permission(current_user: user)
end end
=begin =begin