Class: Fae::Change

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/fae/change.rb

Class Method Summary collapse

Class Method Details

.current_userObject



15
16
17
# File 'app/models/fae/change.rb', line 15

def current_user
  Thread.current[:current_user]
end

.current_user=(user) ⇒ Object



11
12
13
# File 'app/models/fae/change.rb', line 11

def current_user=(user)
  Thread.current[:current_user] = user
end

.filter(params) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'app/models/fae/change.rb', line 23

def filter(params)
  # build conditions if specific params are present
  conditions = {}
  conditions[:user_id] = params['user'] if params['user'].present?
  conditions[:changeable_type] = params['model'] if params['model'].present?
  conditions[:change_type] = params['type'] if params['type'].present?

  date_scope = case params['date']
    when 'Last Hour' then   ['fae_changes.updated_at >= ?', 60.minutes.ago]
    when 'Last Day' then    ['fae_changes.updated_at >= ?', 1.day.ago]
    when 'Last Week' then   ['fae_changes.updated_at >= ?', 1.week.ago]
    when 'Last Month' then  ['fae_changes.updated_at >= ?', 1.month.ago]
  end

  # use good 'ol MySQL to seach if search param is present
  search = []
  if params['search'].present?
    search = ["fae_users.first_name LIKE ? OR fae_users.last_name LIKE ? OR fae_changes.updated_attributes LIKE ? OR fae_changes.changeable_type LIKE ? OR fae_changes.change_type LIKE ?", "%#{params['search']}%", "%#{params['search']}%", "%#{params['search']}%", "%#{params['search']}%", "%#{params['search']}%"]
  end

  # apply conditions and search from above to our scope
  order(id: :desc)
    .includes(:user).references(:user)
    .where(date_scope).where(conditions).where(search)
end

.unique_changeable_typesObject



19
20
21
# File 'app/models/fae/change.rb', line 19

def unique_changeable_types
  pluck(:changeable_type).uniq.sort
end