Class: Caboose::User

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/caboose/user.rb

Constant Summary collapse

ADMIN_USER_ID =
1
LOGGED_OUT_USER_ID =
2

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.logged_out_userObject



27
28
29
30
# File 'app/models/caboose/user.rb', line 27

def self.logged_out_user
  #return self.where('username' => 'elo').first
  return self.where(:id => self::LOGGED_OUT_USER_ID).first
end

.logged_out_user_idObject



32
33
34
35
# File 'app/models/caboose/user.rb', line 32

def self.logged_out_user_id
  #return self.where('username' => 'elo').limit(1).pluck(:id)[0]
  return self::LOGGED_OUT_USER_ID
end

.user_for_reset_id(reset_id) ⇒ Object



77
78
79
80
81
82
83
84
# File 'app/models/caboose/user.rb', line 77

def self.user_for_reset_id(reset_id)          
  return nil if reset_id.nil?          
  d = DateTime.now - 3.days
  if self.where("password_reset_id = ? and password_reset_sent > ?", reset_id, d).exists?
    return self.where("password_reset_id = ? and password_reset_sent > ?", reset_id, d).first
  end
  return nil
end

.validate_token(token) ⇒ Object



48
49
50
51
# File 'app/models/caboose/user.rb', line 48

def self.validate_token(token)
  user = self.where('token' => token).first
  return user 
end

Instance Method Details

#add_to_role(role_id) ⇒ Object



59
60
61
62
63
64
65
66
67
68
# File 'app/models/caboose/user.rb', line 59

def add_to_role(role_id)
  r = Caboose::Role.find(role_id)
  return false if r.nil?
  
  if (!is_member?(r.id))
    roles.push r
    save
  end
  return true
end

#add_to_role_with_name(role_name) ⇒ Object



53
54
55
56
57
# File 'app/models/caboose/user.rb', line 53

def add_to_role_with_name(role_name)
  r = Caboose::Role.where(:name => role_name).first
  return false if r.nil?
  return add_to_role(r.id)
end

#is_allowed(resource, action) ⇒ Object



37
38
39
40
41
42
43
44
45
46
# File 'app/models/caboose/user.rb', line 37

def is_allowed(resource, action)
  elo = Caboose::Role.logged_out_role
  return true if elo.is_allowed(resource, action)
  eli = Caboose::Role.logged_in_role
  return true if self.id != elo.id && eli.is_allowed(resource, action)
  for role in roles      
    return true if role.is_allowed(resource, action)
  end
  return false;
end

#is_member?(role_id) ⇒ Boolean

Returns:

  • (Boolean)


70
71
72
73
74
75
# File 'app/models/caboose/user.rb', line 70

def is_member?(role_id)
  roles.each do |r|
    return true if (r.id == role_id)
  end
  return false
end