Add reCAPTCHA support to registration.
Because I *hate* spam bots.
This commit is contained in:
parent
464b148321
commit
a7fce677fc
6 changed files with 52 additions and 9 deletions
3
Gemfile
3
Gemfile
|
|
@ -44,6 +44,9 @@ gem 'omniauth-openid'
|
||||||
gem 'omniauth-google-oauth2'
|
gem 'omniauth-google-oauth2'
|
||||||
gem 'omniauth-github'
|
gem 'omniauth-github'
|
||||||
|
|
||||||
|
# Bot-filtering
|
||||||
|
gem 'recaptcha', require: 'recaptcha/rails'
|
||||||
|
|
||||||
# as authorization framework
|
# as authorization framework
|
||||||
gem 'cancancan'
|
gem 'cancancan'
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -420,6 +420,8 @@ GEM
|
||||||
loggability (~> 0.12)
|
loggability (~> 0.12)
|
||||||
rdoc (~> 5.0)
|
rdoc (~> 5.0)
|
||||||
yajl-ruby (~> 1.3)
|
yajl-ruby (~> 1.3)
|
||||||
|
recaptcha (4.6.2)
|
||||||
|
json
|
||||||
redcarpet (3.2.3)
|
redcarpet (3.2.3)
|
||||||
referer-parser (0.2.1)
|
referer-parser (0.2.1)
|
||||||
request_store (1.1.0)
|
request_store (1.1.0)
|
||||||
|
|
@ -636,6 +638,7 @@ DEPENDENCIES
|
||||||
rails-i18n (~> 4.0.0)
|
rails-i18n (~> 4.0.0)
|
||||||
rails_12factor
|
rails_12factor
|
||||||
rdoc-generator-fivefish
|
rdoc-generator-fivefish
|
||||||
|
recaptcha
|
||||||
redcarpet
|
redcarpet
|
||||||
responders (~> 2.0)
|
responders (~> 2.0)
|
||||||
rolify
|
rolify
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
@import "bootstrap/mixins";
|
||||||
|
|
||||||
html {
|
html {
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100%;
|
min-height: 100%;
|
||||||
|
|
@ -104,3 +106,12 @@ p.comment-body {
|
||||||
.qr-image{
|
.qr-image{
|
||||||
margin-left: 120px;
|
margin-left: 120px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.g-recaptcha {
|
||||||
|
@include clearfix;
|
||||||
|
padding-bottom: 12px;
|
||||||
|
|
||||||
|
div {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
class RegistrationsController < Devise::RegistrationsController
|
class RegistrationsController < Devise::RegistrationsController
|
||||||
before_action :configure_permitted_parameters, if: :devise_controller?
|
prepend_before_action :check_captcha, only: [:create]
|
||||||
|
|
||||||
def edit
|
def edit
|
||||||
@openids = Openid.where(user_id: current_user.id).order(:provider)
|
@openids = Openid.where(user_id: current_user.id).order(:provider)
|
||||||
|
|
@ -21,14 +21,35 @@ class RegistrationsController < Devise::RegistrationsController
|
||||||
edit_user_registration_path(resource)
|
edit_user_registration_path(resource)
|
||||||
end
|
end
|
||||||
|
|
||||||
def configure_permitted_parameters
|
private
|
||||||
devise_parameter_sanitizer.permit(:account_update) do |u|
|
|
||||||
u
|
def sign_up_params
|
||||||
.permit(:email, :password, :password_confirmation, :current_password, :username, :email_public)
|
params.require(:user).permit(
|
||||||
end
|
:email,
|
||||||
devise_parameter_sanitizer.permit(:sign_up) do |u|
|
:password,
|
||||||
u
|
:password_confirmation,
|
||||||
.permit(:email, :password, :password_confirmation, :name, :username)
|
:name,
|
||||||
|
:username
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
def account_update_params
|
||||||
|
params.require(:user).permit(
|
||||||
|
:email,
|
||||||
|
:password,
|
||||||
|
:password_confirmation,
|
||||||
|
:current_password,
|
||||||
|
:username,
|
||||||
|
:email_public
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
def check_captcha
|
||||||
|
unless verify_recaptcha
|
||||||
|
self.resource = resource_class.new sign_up_params
|
||||||
|
resource.validate # Look for any other validation errors besides Recaptcha
|
||||||
|
respond_with_navigational(resource) { render :new }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@
|
||||||
= f.input :name, input_html: { required: true }, hint: 'This is your real name'
|
= f.input :name, input_html: { required: true }, hint: 'This is your real name'
|
||||||
= f.input :password, input_html: { required: true }
|
= f.input :password, input_html: { required: true }
|
||||||
= f.input :password_confirmation, input_html: { required: true }
|
= f.input :password_confirmation, input_html: { required: true }
|
||||||
|
= recaptcha_tags
|
||||||
%p.text-right
|
%p.text-right
|
||||||
= f.action :submit, as: :button, label: 'Sign Up', button_html: { class: 'btn btn-success' }
|
= f.action :submit, as: :button, label: 'Sign Up', button_html: { class: 'btn btn-success' }
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -63,3 +63,7 @@ OSEM_SMTP_OPENSSL_VERIFY_MODE=""
|
||||||
|
|
||||||
# Enable the usage of the devise ichain plugin
|
# Enable the usage of the devise ichain plugin
|
||||||
OSEM_ICHAIN_ENABLED=false
|
OSEM_ICHAIN_ENABLED=false
|
||||||
|
|
||||||
|
# ReCAPTCHA keys
|
||||||
|
RECAPTCHA_SITE_KEY=""
|
||||||
|
RECAPTCHA_SECRET_KEY=""
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue