1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
|
# SimpleCaptcha2
[](https://travis-ci.org/pludoni/simple-captcha)
[](https://badge.fury.io/rb/simple_captcha2)
SimpleCaptcha(2) is the simplest and a robust captcha plugin. Its implementation requires adding up a single line in views and in controllers/models.
SimpleCaptcha2 is available to be used with Rails 3 + 4.
This is a fork of the popular Rubygem ``simple_captcha`` which got abandoned.
## Features
* Zero FileSystem usage (secret code moved to db-store and image storage removed).
* Provides various image styles.
* Provides three level of complexity of images.
* Works absolutely fine in distributed environment(session and db based implementation works fine in distributed environment).
* Implementation is as easy as just writing a single line in your view. ```<%= show_simple_captcha %>``` within the 'form' tags.
* Flexible DOM and CSS handling(There is a separate view partial for rendering SimpleCaptcha DOM elements).
* Automated removal of 1 hour old unmatched simple_captcha data.
## Requirements
* Ruby >= 1.9.3
* Rails >= 3.2
* ImageMagick should be installed on your machine to use this plugin.
visit http://www.imagemagick.org/script/index.php for more details.
## Installation
You might need to install Ghostscript on a Mac-System or a Debian-System:
```
brew install ghostscript
```
```
apt-get install ghostscript
```
The default font, that imagemagick uses is Arial. Make sure that font is available (``apt install ttf-mscorefonts-installer``) or change the font in the SimpleCaptcha config.
Put this into your Gemfile
```ruby
gem 'simple_captcha2', require: 'simple_captcha'
```
and run ``bundle install``.
## Setup
After installation, follow these simple steps to setup the plugin. The setup will depend on the version of rails your application is using.
```bash
rails generate simple_captcha [template_format] # Available options erb, haml. Default: erb
rake db:migrate # Mongoid: skip this step and remove the migration
```
## Usage
There are two usage scenarios:
### Controller Based
Add the following line in the file "app/controllers/application.rb"
```ruby
ApplicationController < ActionController::Base
include SimpleCaptcha::ControllerHelpers
end
```
In the view file within the form tags add this code
```erb
<%= show_simple_captcha %>
```
and in the controller's action authenticate it as
```ruby
if simple_captcha_valid?
do this
else
do that
end
```
### Model Based
This is suggested, if you want to integrate the error message into the normal form validation flow.
In the view file within the form tags write this code
```erb
<%= show_simple_captcha(:object=>"user") %>
```
and in the model class add this code
```ruby
class User < ActiveRecord::Base
apply_simple_captcha
end
```
Mongoid:
```ruby
class User
include SimpleCaptcha::ModelHelpers
apply_simple_captcha
end
```
#### Strong parameters (Rails 4.x)
Must add them:
```ruby
:captcha, :captcha_key
```
#### Form-Builder helper
```erb
<%= form_for @user do |form| -%>
...
<%= form.simple_captcha :label => "Enter numbers.." %>
...
<% end -%>
```
#### Validating with captcha
NOTE: @user.valid? will still work as it should, it will not validate the captcha code.
```ruby
@user.valid_with_captcha?
```
#### Saving with captcha
NOTE: @user.save will still work as it should, it will not validate the captcha code.
```ruby
@user.save_with_captcha
```
### Formtastic integration
SimpleCaptcha detects if you are using Formtastic:
```erb
<%= form.input :captcha, :as => :simple_captcha %>
```
### Tests
You can make the Captcha always pass with a initializer file: config/initializers/simple_captcha.rb
```ruby
SimpleCaptcha.always_pass = Rails.env.test?
```
You can also ask for the value, e.g. Acceptance Tests/Features:
```ruby
visit '/pages/form_tag'
assert_equal 1, SimpleCaptcha::SimpleCaptchaData.count
fill_in 'captcha', with: SimpleCaptcha::SimpleCaptchaData.first.value
```
## ORM support
simple-captcha2 supports 3 type of ORM: ActiveRecord, Sequel and Mongoid.
Selection of ORM is base on loaded classes. If `ActiveRecord` is loaded then it will be used for the simple captcha data model.
If `ActiveRecord` is undefined, `Sequel` presence is tested. If `Sequel` is defined it will used for the simple captcha data model.
If not, `Mongoid` is used.
For instance if your application is using Sequel as an ORM just make sure you require `sequel-rails` gem before `simple-captcha2`
in your Gemfile and respective model will be selected automatically.
## Options & Examples
### View Options
* ``:label`` - provides the custom text b/w the image and the text field, the default is "type the code from the image"
* ``:object`` - the name of the object of the model class, to implement the model based captcha.
* ``:code_type`` - return numeric only if set to 'numeric'
* ``:multiple`` - allow to use the same captcha in multiple forms in one page. True for the first appaerance and false for the rest.
### Global options
* ``:image_style`` - provides the specific image style for the captcha image.
There are eight different styles available with the plugin as...
1. simply_blue
2. simply_red
3. simply_green
4. charcoal_grey
5. embosed_silver
6. all_black
7. distorted_black
8. almost_invisible
Default style is 'simply_blue'.
You can also specify 'random' to select the random image style.
* ``:distortion`` - handles the complexity of the image. The :distortion can be set to 'low', 'medium' or 'high'. Default is 'low'.
* ``:implode`` - handles the complexity of the image. The :implode can be set to 'none', 'low', 'medium' or 'high'. Default is 'medium'.
Create "./config/initializers/simple_captcha.rb"
```ruby
SimpleCaptcha.setup do |sc|
# default: 100x28
sc.image_size = '120x40'
# default: 5
sc.length = 6
# default: simply_blue
# possible values:
# 'embosed_silver',
# 'simply_red',
# 'simply_green',
# 'simply_blue',
# 'distorted_black',
# 'all_black',
# 'charcoal_grey',
# 'almost_invisible'
# 'random'
sc.image_style = 'simply_green'
# default: low
# possible values: 'low', 'medium', 'high', 'random'
sc.distortion = 'medium'
# default: medium
# possible values: 'none', 'low', 'medium', 'high'
sc.implode = 'low'
end
```
You can add your own style:
```ruby
SimpleCaptcha.setup do |sc|
sc.image_style = 'mycaptha'
sc.add_image_style('mycaptha', [
"-background '#F4F7F8'",
"-fill '#86818B'",
"-border 1",
"-bordercolor '#E0E2E3'"])
end
```
You can provide the path where image_magick is installed as well:
```ruby
SimpleCaptcha.setup do |sc|
sc.image_magick_path = '/usr/bin' # you can check this from console by running: which convert
end
```
You can setup in which format the reload of the captcha is executed:
```ruby
SimpleCaptcha.setup do |sc|
sc.refresh_format = :prototype # or :jquery, or :plain_javascript default is :jquery
end
```
If needed, you can explicitly state the font used for generating the captcha:
```ruby
SimpleCaptcha.setup do |sc|
sc.font = "DejaVu-Sans"
end
```
### How to change the CSS for SimpleCaptcha DOM elements?
You can change the CSS of the SimpleCaptcha DOM elements as per your need in this file.
``app/views/simple_captcha/_simple_captcha.erb``
### View's Examples
#### Controller Based Example
```erb
<%= show_simple_captcha %>
<%= show_simple_captcha(:label => "human authentication") %>
```
#### Model Based Example
```erb
<%= show_simple_captcha(:object => 'user', :label => "human authentication") %>
```
#### Model Options
* ``:message`` - provides the custom message on failure of captcha authentication the default is "Secret Code did not match with the Image"
* ``:add_to_base`` - if set to true, appends the error message to the base.
##### Model's Example
```ruby
class User < ActiveRecord::Base
apply_simple_captcha
end
class User < ActiveRecord::Base
apply_simple_captcha :message => "The secret Image and code were different", :add_to_base => true
end
```
## I18n
```yaml
en:
simple_captcha:
placeholder: "Enter the image value"
label: "Enter the code in the box:"
refresh_button_text: "Refresh"
message:
default: "Secret Code did not match with the Image"
user: "The secret Image and code were different"
```
## Contributing
For testing, generate a temporary Rails dummy app inside test:
```bash
bundle
bundle exec rake dummy:setup
bundle exec rake app:db:migrate
bundle exec rake app:db:migrate RAILS_ENV=test
bundle exec rake test
```
Please add test cases when adding new functionality. I started with some basic example integration tests for a very basic coverage.
The tests will be run on [Travis-CI](https://travis-ci.org/pludoni/simple-captcha).
## Who's who?
Enjoy the simplest captcha implementation.
Original Author of the Version for Rails 2:
Author: Sur, Blog: http://expressica.com, Contact: sur.max@gmail.com
Plugin Homepage: http://expressica.com/simple_captcha
Plugin update for rails 3: http://github.com/galetahub
update for Rails 4, tests and forked by Stefan Wienert (pludoni GmbH)
|