@@ -2,26 +2,23 @@ class User < ActiveRecord::Base
2
2
extend Enumerize
3
3
4
4
# Being pesimistic here and making the default waiting for approval for security reasons
5
- enumerize :status , in : [ :active , :suspended , :waiting_approval ] , :default => :waiting_approval
5
+ enumerize :registration_status , in : [ :active , :suspended , :waiting_approval ] , :default => :waiting_approval
6
6
7
7
has_many :activities
8
8
before_save :ensure_authentication_token
9
9
before_save :ensure_gravatar_hash
10
- before_create :mark_status_depending_on_app_settings
10
+ before_create :mark_registration_status_depending_on_app_settings
11
11
12
12
after_create :ensure_at_least_one_admin
13
13
after_destroy :ensure_at_least_one_admin
14
14
15
15
validates :username , :presence => true , :uniqueness => true
16
- validates :first_name , :presence => true
17
- validates :last_name , :presence => true
18
16
19
-
20
17
# Kandan.devise_modules is defined in config/initializers/kandan.rb
21
18
devise devise *Kandan . devise_modules
22
19
23
20
# Setup accessible (or protected) attributes for your model
24
- attr_accessible :id , :username , :email , :password , :password_confirmation , :remember_me , :first_name , :last_name , :locale , :gravatar_hash , :status
21
+ attr_accessible :id , :username , :email , :password , :password_confirmation , :remember_me , :first_name , :last_name , :locale , :gravatar_hash , :registration_status
25
22
26
23
def full_name
27
24
"#{ self . first_name . to_s } #{ self . last_name . to_s } " . titlecase
@@ -38,10 +35,10 @@ def cloudfuji_extra_attributes(extra_attributes)
38
35
self . locale = extra_attributes [ "locale" ]
39
36
end
40
37
41
- # Callback to mark the user status depending on the settings of the app
42
- def mark_status_depending_on_app_settings
38
+ # Callback to mark the user registration status depending on the settings of the app
39
+ def mark_registration_status_depending_on_app_settings
43
40
# If the site is public we will make the user active. Otherwise we will make the user as waiting_approval
44
- self . status = Setting . my_settings . public_site? ? :active : :waiting_approval
41
+ self . registration_status = Setting . my_settings . public_site? ? :active : :waiting_approval
45
42
end
46
43
47
44
def ensure_gravatar_hash
@@ -68,4 +65,20 @@ def self.deleted_user
68
65
return dummy_user
69
66
end
70
67
68
+ def activate
69
+ self . registration_status = "active"
70
+ end
71
+
72
+ def activate!
73
+ self . activate && self . save!
74
+ end
75
+
76
+ def suspend
77
+ self . registration_status = "suspended"
78
+ end
79
+
80
+ def suspend!
81
+ self . suspend && self . save!
82
+ end
83
+
71
84
end
0 commit comments