Class: Caboose::User

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

Constant Summary collapse

LOGGED_OUT_USER_ID =
2

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.validate_token(token) ⇒ Object



19
20
21
22
# File 'app/models/caboose/user.rb', line 19

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

Instance Method Details

#add_to_role(role_id) ⇒ Object



30
31
32
33
34
35
36
37
38
39
# File 'app/models/caboose/user.rb', line 30

def add_to_role(role_id)
  r = 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



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

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

#is_allowed(resource, action) ⇒ Object



10
11
12
13
14
15
16
17
# File 'app/models/caboose/user.rb', line 10

def is_allowed(resource, action)
  for role in roles
    if role.is_allowed(resource, action)
      return true
    end
  end
  return false;
end

#is_member?(role_id) ⇒ Boolean

Returns:

  • (Boolean)


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

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