First half of a password reset function
This commit is contained in:
parent
e62fe92282
commit
f864203056
10 changed files with 60 additions and 24 deletions
|
@ -1,11 +1,12 @@
|
||||||
class UserController < ApplicationController
|
class UserController < ApplicationController
|
||||||
|
layout 'site'
|
||||||
|
|
||||||
def save
|
def save
|
||||||
@user = User.new(params[:user])
|
@user = User.new(params[:user])
|
||||||
@user.set_defaults
|
@user.set_defaults
|
||||||
|
|
||||||
if @user.save
|
if @user.save
|
||||||
flash[:notice] = 'Users was successfully created.'
|
flash[:notice] = 'User was successfully created. Check your email for a confirmation note, and you\'ll be mapping in no time :-)'
|
||||||
Notifier::deliver_signup_confirm(@user)
|
Notifier::deliver_signup_confirm(@user)
|
||||||
redirect_to :action => 'login'
|
redirect_to :action => 'login'
|
||||||
else
|
else
|
||||||
|
@ -13,8 +14,21 @@ class UserController < ApplicationController
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def lost_password
|
||||||
|
if params['user']['email']
|
||||||
|
user = User.find_by_email(params['user']['email'])
|
||||||
|
if user
|
||||||
|
user.token = User.make_token
|
||||||
|
user.save
|
||||||
|
Notifier::deliver_lost_password(user)
|
||||||
|
flash[:notice] = "Sorry you lost it :-( but an email is on it's way so you can reset it soon."
|
||||||
|
else
|
||||||
|
flash[:notice] = "Couldn't find that email address, sorry."
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def new
|
def new
|
||||||
render :layout => 'site'
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def login
|
def login
|
||||||
|
@ -29,10 +43,10 @@ class UserController < ApplicationController
|
||||||
session[:token] = u.token
|
session[:token] = u.token
|
||||||
redirect_to :controller => 'site', :action => 'index'
|
redirect_to :controller => 'site', :action => 'index'
|
||||||
return
|
return
|
||||||
|
else
|
||||||
|
flash[:notice] = "Couldn't log in with those details"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
render :layout => 'site'
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def logout
|
def logout
|
||||||
|
@ -53,7 +67,7 @@ class UserController < ApplicationController
|
||||||
if @user && @user.active == 0
|
if @user && @user.active == 0
|
||||||
@user.active = true
|
@user.active = true
|
||||||
@user.save
|
@user.save
|
||||||
flash[:notice] = 'Confirmed your account'
|
flash[:notice] = 'Confirmed your account, thanks for signing up!'
|
||||||
|
|
||||||
#FIXME: login the person magically
|
#FIXME: login the person magically
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,17 @@
|
||||||
class Notifier < ActionMailer::Base
|
class Notifier < ActionMailer::Base
|
||||||
|
|
||||||
def signup_confirm( user )
|
def signup_confirm( user )
|
||||||
# Email header info MUST be added here
|
|
||||||
@recipients = user.email
|
@recipients = user.email
|
||||||
@from = 'abuse@openstreetmap.org'
|
@from = 'abuse@openstreetmap.org'
|
||||||
@subject = '[OpenStreetMap] Confirm your email address'
|
@subject = '[OpenStreetMap] Confirm your email address'
|
||||||
|
|
||||||
@body['url'] = 'http://www.openstreetmap.org/user/confirm?confirm_string=' + user.token
|
@body['url'] = 'http://www.openstreetmap.org/user/confirm?confirm_string=' + user.token
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def lost_password( user )
|
||||||
|
@recipients = user.email
|
||||||
|
@from = 'abuse@openstreetmap.org'
|
||||||
|
@subject = '[OpenStreetMap] Passwors reset request'
|
||||||
|
@body['url'] = "http://www.openstreetmap.org/user/reset_password?email=#{user.email}&token=#{user.token}"
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -32,11 +32,11 @@ class User < ActiveRecord::Base
|
||||||
find_first([ "token = ? ", token])
|
find_first([ "token = ? ", token])
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.make_token
|
def self.make_token(length=30)
|
||||||
chars = 'abcdefghijklmnopqrtuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'
|
chars = 'abcdefghijklmnopqrtuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'
|
||||||
confirmstring = ''
|
confirmstring = ''
|
||||||
|
|
||||||
30.times do
|
length.times do
|
||||||
confirmstring += chars[(rand * chars.length).to_i].chr
|
confirmstring += chars[(rand * chars.length).to_i].chr
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -21,11 +21,11 @@
|
||||||
|
|
||||||
<span id="greeting">
|
<span id="greeting">
|
||||||
<% if @user %>
|
<% if @user %>
|
||||||
Welcome, <%= @user.email %> |
|
Welcome, <%= @user.display_name %> |
|
||||||
<%= link_to 'Logout', {:controller => 'user', :action => 'logout'}, {:id => 'loginanchor'}%>
|
<%= link_to 'logout', {:controller => 'user', :action => 'logout'}, {:id => 'loginanchor'}%>
|
||||||
<% else %>
|
<% else %>
|
||||||
<%= link_to 'Login', {:controller => 'user', :action => 'login'}, {:id => 'loginanchor'}%> |
|
<%= link_to 'log in', {:controller => 'user', :action => 'login'}, {:id => 'loginanchor'}%> |
|
||||||
<%= link_to 'Sign up', {:controller => 'user', :action => 'new'}, {:id => 'registeranchor'} %>
|
<%= link_to 'sign up', {:controller => 'user', :action => 'new'}, {:id => 'registeranchor'} %>
|
||||||
<% end %>
|
<% end %>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
|
8
app/views/notifier/lost_password.rhtml
Normal file
8
app/views/notifier/lost_password.rhtml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
Hi,
|
||||||
|
|
||||||
|
Someone (possibly you) has asked for the password to be reset on this
|
||||||
|
email addresses openstreetmap.org account.
|
||||||
|
|
||||||
|
If this is you, please click the link below to reset your password.
|
||||||
|
|
||||||
|
<%= @url %>
|
|
@ -3,11 +3,11 @@ Please login or <%= link_to 'create an account', :controller => 'user', :action
|
||||||
|
|
||||||
<%= start_form_tag :action => 'login' %>
|
<%= start_form_tag :action => 'login' %>
|
||||||
<table>
|
<table>
|
||||||
<tr><td>Login name</td><td><%= text_field('user', 'email',{:size => 50, :maxlength => 255}) %></td></tr>
|
<tr><td>email address:</td><td><%= text_field('user', 'email',{:size => 50, :maxlength => 255}) %></td></tr>
|
||||||
<tr><td>password:</td><td><%= password_field('user', 'password',{:size => 50, :maxlength => 255}) %></td></tr>
|
<tr><td>password:</td><td><%= password_field('user', 'password',{:size => 50, :maxlength => 255}) %></td></tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
<input type="submit" value="Login">
|
<input type="submit" value="Login">
|
||||||
|
|
||||||
<%= end_form_tag %> (<%= link_to 'Forgotten your password?', :controller => 'user', :action => 'lost_password' %>)
|
<%= end_form_tag %> (<%= link_to 'Lost your password?', :controller => 'user', :action => 'lost_password' %>)
|
||||||
|
|
8
app/views/user/lost_password.rhtml
Normal file
8
app/views/user/lost_password.rhtml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<h1>Forgotten Password?</h1><br>
|
||||||
|
|
||||||
|
<%= start_form_tag :action => 'lost_password' %>
|
||||||
|
<table>
|
||||||
|
<tr><td>email address:</td><td><%= text_field('user', 'email', {:size => 50, :maxlength => 255} ) %></td></tr>
|
||||||
|
</table>
|
||||||
|
<br>
|
||||||
|
<input type="submit" value="Send me a new password">
|
|
@ -1,14 +1,14 @@
|
||||||
<h1>Create a user account</h1><br>
|
<h1>Create a user account</h1><br>
|
||||||
Fill in the form and we'll send you a quick email to activate your account.<br><br>
|
Fill in the form and we'll send you a quick email to activate your account.<br><br>
|
||||||
|
|
||||||
By creating an account, you agree that all work uploaded to openstreetmap.org and all data created by use of any tools on openstreetmap.org is to be licensed under <a href="http://creativecommons.org/licenses/by-sa/2.0/">this</a> Creative Commons license.<br><br>
|
By creating an account, you agree that all work uploaded to openstreetmap.org and all data created by use of any tools which connect to openstreetmap.org is to be licensed under this <a href="http://creativecommons.org/licenses/by-sa/2.0/">this Creative Commons license (by-sa)</a>.<br><br>
|
||||||
|
|
||||||
<%= error_messages_for 'user' %>
|
<%= error_messages_for 'user' %>
|
||||||
|
|
||||||
<%= start_form_tag :action => 'save' %>
|
<%= start_form_tag :action => 'save' %>
|
||||||
<table>
|
<table>
|
||||||
<tr><td>email address:</td><td><%= text_field('user', 'email',{:size => 50, :maxlength => 255}) %></td></tr>
|
<tr><td>email:</td><td><%= text_field('user', 'email',{:size => 50, :maxlength => 255}) %></td></tr>
|
||||||
<tr><td>Login name</td><td><%= text_field('user', 'display_name',{:size => 50, :maxlength => 255}) %></td></tr>
|
<tr><td>login name</td><td><%= text_field('user', 'display_name',{:size => 50, :maxlength => 255}) %></td></tr>
|
||||||
<tr><td>password:</td><td><%= password_field('user', 'pass_crypt',{:size => 50, :maxlength => 255}) %></td></tr>
|
<tr><td>password:</td><td><%= password_field('user', 'pass_crypt',{:size => 50, :maxlength => 255}) %></td></tr>
|
||||||
<tr><td>retype password:</td><td><%= password_field('user', 'pass_crypt_confirmation',{:size => 50, :maxlength => 255}) %></td></tr>
|
<tr><td>retype password:</td><td><%= password_field('user', 'pass_crypt_confirmation',{:size => 50, :maxlength => 255}) %></td></tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -20,6 +20,7 @@ ActionController::Routing::Routes.draw do |map|
|
||||||
map.connect '/login.html', :controller => 'user', :action => 'login'
|
map.connect '/login.html', :controller => 'user', :action => 'login'
|
||||||
map.connect '/logout.html', :controller => 'user', :action => 'logout'
|
map.connect '/logout.html', :controller => 'user', :action => 'logout'
|
||||||
map.connect '/create-account.html', :controller => 'user', :action => 'new'
|
map.connect '/create-account.html', :controller => 'user', :action => 'new'
|
||||||
|
map.connect '/forgot-password.html', :controller => 'user', :action => 'lost_password'
|
||||||
|
|
||||||
map.connect ':controller/:action/:id'
|
map.connect ':controller/:action/:id'
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: #0000ff;
|
color: #0000ff;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
@ -373,10 +372,8 @@ hides rule from IE5-Mac \*/
|
||||||
|
|
||||||
#notice {
|
#notice {
|
||||||
width: 400px;
|
width: 400px;
|
||||||
border: 2px solid green;
|
border: 1px solid black;
|
||||||
padding: 7px;
|
padding: 7px;
|
||||||
padding-bottom: 12px;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
background-color: #f0f0f0;
|
background-color: #f0f0f0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -410,3 +407,6 @@ hides rule from IE5-Mac \*/
|
||||||
list-style: square;
|
list-style: square;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
border: 1px solid black;
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue