Skip to content

Commit 0da443c

Browse files
committedFeb 26, 2013
Merge pull request #116 from gabceb/kandan_113
Added default status for users. Migration from 1.0 works.
2 parents e03e9d9 + b367ccf commit 0da443c

File tree

10 files changed

+108
-31
lines changed

10 files changed

+108
-31
lines changed
 

‎app/assets/javascripts/admin/admin.js.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ act_on_user = (obj)->
4343

4444
btn_text = _.str.titleize(new_css_class)
4545

46-
$row.find("td.status").text(_.str.titleize(data.status))
46+
$row.find("td.registration_status").text(_.str.titleize(data.registration_status))
4747

4848
# Change the look of the buttons by removing and adding classes
4949
$el.text(btn_text).removeClass("#{old_btn_class} #{old_css_class}").addClass("#{new_btn_class} #{new_css_class}")

‎app/controllers/admin/admin_controller.rb

+3-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def index
99
@approved_users = []
1010

1111
# Iterate over the array to get approved and non-approved users
12-
@all_users.each{|user| user.status.waiting_approval? ? @waiting_for_approval_users.push(user) : @approved_users.push(user) }
12+
@all_users.each{|user| user.registration_status.waiting_approval? ? @waiting_for_approval_users.push(user) : @approved_users.push(user) }
1313
end
1414

1515
def update
@@ -30,13 +30,11 @@ def update_user
3030

3131
case action
3232
when "activate", "approve"
33-
user.status = "active"
33+
user.activate!
3434
when "suspend"
35-
user.status = "suspended"
35+
user.suspend!
3636
end
3737

38-
user.save! if user.changed?
39-
4038
render :json => user, :status => 200
4139
end
4240

‎app/controllers/application_controller.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ class ApplicationController < ActionController::Base
66

77
def force_approved_account
88
# We will redirect to the approval page if a user is signed in, is not an admin and is marked as waiting for approval
9-
redirect = user_signed_in? && !current_user.is_admin? && current_user.status.waiting_approval?
9+
redirect = user_signed_in? && !current_user.is_admin? && current_user.registration_status.waiting_approval?
1010

1111
redirect_to approval_path if redirect
1212
end
1313

1414
def redirect_suspended_account
1515
# We will redirect to suspended if a user is singed in and its marked as suspended
16-
redirect = user_signed_in? && current_user.status.suspended?
16+
redirect = user_signed_in? && current_user.registration_status.suspended?
1717

1818
redirect_to suspended_path if redirect
1919
end

‎app/controllers/pages_controller.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ class PagesController < ApplicationController
66
skip_filter :redirect_suspended_account, :only => :suspended
77

88
def approval
9-
redirect_to(root_path) && return unless current_user.status.waiting_approval?
9+
redirect_to(root_path) && return unless current_user.registration_status.waiting_approval?
1010
end
1111

1212
def suspended
13-
redirect_to(root_path) && return unless current_user.status.suspended?
13+
redirect_to(root_path) && return unless current_user.registration_status.suspended?
1414
end
1515

1616
def about

‎app/helpers/admin/admin_helper.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module Admin::AdminHelper
2-
def user_status user
3-
"<div class='#{user.status}'>#{user.status.titlecase}</div>".html_safe
2+
def user_registration_status user
3+
"<div class='#{user.registration_status}'>#{user.registration_status.titlecase}</div>".html_safe
44
end
55

66
def user_action user
7-
action, css = if user.status.waiting_approval?
7+
action, css = if user.registration_status.waiting_approval?
88
["Approve", "btn-success"]
9-
elsif user.status.suspended?
9+
elsif user.registration_status.suspended?
1010
["Activate", "btn-success"]
1111
else
1212
["Suspend", "btn-danger"]

‎app/models/user.rb

+22-9
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,23 @@ class User < ActiveRecord::Base
22
extend Enumerize
33

44
# 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
66

77
has_many :activities
88
before_save :ensure_authentication_token
99
before_save :ensure_gravatar_hash
10-
before_create :mark_status_depending_on_app_settings
10+
before_create :mark_registration_status_depending_on_app_settings
1111

1212
after_create :ensure_at_least_one_admin
1313
after_destroy :ensure_at_least_one_admin
1414

1515
validates :username, :presence => true, :uniqueness => true
16-
validates :first_name, :presence => true
17-
validates :last_name, :presence => true
1816

19-
2017
# Kandan.devise_modules is defined in config/initializers/kandan.rb
2118
devise devise *Kandan.devise_modules
2219

2320
# 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
2522

2623
def full_name
2724
"#{self.first_name.to_s} #{self.last_name.to_s}".titlecase
@@ -38,10 +35,10 @@ def cloudfuji_extra_attributes(extra_attributes)
3835
self.locale = extra_attributes["locale"]
3936
end
4037

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
4340
# 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
4542
end
4643

4744
def ensure_gravatar_hash
@@ -68,4 +65,20 @@ def self.deleted_user
6865
return dummy_user
6966
end
7067

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+
7184
end

‎app/views/admin/admin/_user_table.html.erb

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</thead>
1414
<tbody>
1515
<% users.each do |user| %>
16-
<tr class="<%= cycle('odd', 'even')%>" data-user-id="<%= user.id%>" data-full-name="<%= user.full_name %>">
16+
<tr class="<%= cycle('odd', 'even')%>" data-user-id="<%= user.id%>" data-full-name="<%= user.full_name_or_username %>">
1717
<td class="username">
1818
<%= user.username %>
1919
</td>
@@ -27,7 +27,7 @@
2727
<%= user.email %>
2828
</td>
2929
<td class="status">
30-
<%= user_status(user) %>
30+
<%= user_registration_status(user) %>
3131
</td>
3232
<td class="action">
3333
<%= user_action(user) %>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
class AddStatusAsDefaultForUsers < ActiveRecord::Migration
2+
def up
3+
rename_column :users, :status, :registration_status
4+
change_column :users, :registration_status, :string, :default => "active"
5+
end
6+
7+
def down
8+
change_column :users, :registration_status, :string, :default => nil
9+
rename_column :users, :registration_status, :status
10+
end
11+
end

‎db/schema.rb

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#
1212
# It's strongly recommended to check this file into your version control system.
1313

14-
ActiveRecord::Schema.define(:version => 20130221173650) do
14+
ActiveRecord::Schema.define(:version => 20130224150724) do
1515

1616
create_table "activities", :force => true do |t|
1717
t.text "content"
@@ -57,8 +57,8 @@
5757
end
5858

5959
create_table "users", :force => true do |t|
60-
t.string "email", :default => "", :null => false
61-
t.string "encrypted_password", :limit => 128, :default => "", :null => false
60+
t.string "email", :default => "", :null => false
61+
t.string "encrypted_password", :limit => 128, :default => "", :null => false
6262
t.string "reset_password_token"
6363
t.datetime "reset_password_sent_at"
6464
t.datetime "remember_created_at"
@@ -72,13 +72,13 @@
7272
t.text "last_name"
7373
t.text "ido_id"
7474
t.string "locale"
75-
t.datetime "created_at", :null => false
76-
t.datetime "updated_at", :null => false
75+
t.datetime "created_at", :null => false
76+
t.datetime "updated_at", :null => false
7777
t.text "gravatar_hash"
7878
t.boolean "active", :default => true
7979
t.string "username"
8080
t.boolean "is_admin"
81-
t.string "status"
81+
t.string "registration_status", :default => "active"
8282
end
8383

8484
add_index "users", ["authentication_token"], :name => "index_users_on_authentication_token", :unique => true

‎lib/tasks/kandan.rake

+55
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,27 @@ namespace :kandan do
1818
user.password_confirmation = "kandanappadmin"
1919
user.is_admin = true
2020
user.save!
21+
else
22+
# Doing some cleanup if this is an upgrade instead of a new DB
23+
24+
# Users that were already in the database with no registration status will be added as active
25+
User.where("registration_status IS NULL").each do |user|
26+
user.activate!
27+
end
28+
29+
# If there is no admin we will try to find a user with username admin and make it an admin. Otherwise we will
30+
# alert the user
31+
if User.where(:is_admin => true).count == 0
32+
admin = User.where(:username => "admin").first
33+
34+
if admin
35+
admin.is_admin = true
36+
admin.save!
37+
else
38+
puts "\e[31mIt looks like there are no admins in your database. Run rake kandan:add_admin_user\e[0m"
39+
end
40+
end
41+
2142
end
2243

2344
channel = Channel.first
@@ -77,4 +98,38 @@ namespace :kandan do
7798
puts "There's not hubot account. Run rake kandan:boot_hubot to create a bot account."
7899
end
79100
end
101+
102+
desc "Adds an admin based on a username if there are no admins in kandan"
103+
task :add_admin_user => :environment do
104+
if User.count == 0
105+
puts "\e[31mThere are no users on your kandan DB. Try running rake kandan:bootstrap first\e[0m"
106+
elsif User.where(:is_admin => true).count != 0
107+
puts "\e[32mLooks like you already have an admin. Nothing to do here.\e[0m"
108+
else
109+
username = ""
110+
exit_word = "EXIT"
111+
done = false
112+
113+
while not done
114+
puts "Enter the email address of your admin user or type '#{exit_word}' to cancel this script"
115+
answer = (STDIN.gets).delete("\n")
116+
117+
if answer == exit_word
118+
puts "Ok. We forgive you. Carry on....."
119+
done = true
120+
elsif user = User.where(:username => answer).first
121+
user.is_admin = true
122+
user.save!
123+
124+
puts "Done. #{user.full_name_or_username} is now admin!"
125+
126+
done = true
127+
else
128+
puts "User not found. Let's try that again."
129+
end
130+
131+
end
132+
133+
end
134+
end
80135
end

0 commit comments

Comments
 (0)
Please sign in to comment.