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



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

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



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

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



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

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



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

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

Instance Method Details

#add_to_role(role_id) ⇒ Object



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

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



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

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



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

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)


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

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