Skip to content

Commit 122f60f

Browse files
committed
Assign unique identifier to each user
1 parent 2f7fe61 commit 122f60f

File tree

8 files changed

+63
-1
lines changed

8 files changed

+63
-1
lines changed

app/models/user.rb

+9
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ class User < ActiveRecord::Base
1919
has_many :record_changes
2020

2121
before_create :generate_login_token!, unless: :login_token?
22+
before_create :assign_random_identifier, unless: :identifier?
2223

2324
acts_as_commontator
2425
acts_as_commontable
@@ -125,4 +126,12 @@ def generate_login_token!
125126
end
126127
end
127128

129+
def assign_random_identifier
130+
charset = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'.split(//)
131+
loop do
132+
self.identifier = (0...12).map { charset.sample }.join
133+
break unless User.exists?(identifier: identifier)
134+
end
135+
end
136+
128137
end

app/views/devise/registrations/edit.html.haml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
%h2
44
Edit #{resource_name.to_s.humanize}
55
= devise_error_messages!
6+
= f.static_control :identifier
67
= f.text_field :name
78
= f.email_field :email
89
- if devise_mapping.confirmable? && resource.pending_reconfirmation?

app/views/users/show.html.haml

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
%h1= @user.name
2+
%p
3+
%strong Identifier:
4+
= @user.identifier
5+
26
- if @user.nickname.present?
37
%p
48
%strong GitHub account:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
class AddIdentifierToUser < ActiveRecord::Migration
2+
def up
3+
add_column :users, :identifier, :string
4+
execute("SELECT id FROM users WHERE identifier IS NULL").each do |row|
5+
id = row["id"]
6+
charset = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'.split(//)
7+
identifier = (0...12).map { charset.sample }.join
8+
execute "UPDATE users SET identifier='#{identifier}' WHERE id = #{id}"
9+
end
10+
change_column :users, :identifier, :string, null: false
11+
add_index :users, :identifier, unique: true
12+
end
13+
14+
def down
15+
remove_column :users, :identifier
16+
end
17+
end

db/schema.rb

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

14-
ActiveRecord::Schema.define(version: 20140706075813) do
14+
ActiveRecord::Schema.define(version: 20140714074128) do
1515

1616
create_table "cold_storage_transfers", force: true do |t|
1717
t.integer "project_id"
@@ -222,9 +222,11 @@
222222
t.string "email"
223223
t.string "nickname"
224224
t.boolean "disabled", default: false
225+
t.string "identifier", null: false
225226
end
226227

227228
add_index "users", ["disabled"], name: "index_users_on_disabled"
229+
add_index "users", ["identifier"], name: "index_users_on_identifier", unique: true
228230
add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
229231

230232
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Then(/^I should see the identifier of "(.*?)"$/) do |arg1|
2+
identifier = User.find_by(email: arg1).identifier
3+
identifier.should be_present
4+
page.should have_content identifier
5+
end

features/step_definitions/web.rb

+4
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,10 @@
131131
visit url
132132
end
133133

134+
When(/^I click on "(.*?)" in the email$/) do |arg1|
135+
step "I click on the \"#{arg1}\" link in the email"
136+
end
137+
134138
Then(/^the user with email "(.*?)" should have his email confirmed$/) do |arg1|
135139
User.find_by(email: arg1).confirmed?.should be_true
136140
end

features/user_identifier.feature

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Feature: Each user has an unique identifier
2+
Scenario: New email user gets an unique identifier
3+
When I visit the home page
4+
And I click on "Sign in"
5+
And I click on "Sign up"
6+
And I fill "Email" with "[email protected]"
7+
And I fill "Password" with "password"
8+
And I fill "Password confirmation" with "password"
9+
And I click on "Sign up"
10+
Then I should see "confirmation link"
11+
12+
And an email should have been sent to "[email protected]"
13+
When I click on "Confirm my account" in the email
14+
Then I should see "confirmed"
15+
16+
And I fill "Email" with "[email protected]"
17+
And I fill "Password" with "password"
18+
And I click on "Sign in" in the sign in form
19+
When I go to edit my profile
20+
Then I should see the identifier of "[email protected]"

0 commit comments

Comments
 (0)