authpro 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (116) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +28 -0
  4. data/lib/authpro.rb +2 -0
  5. data/lib/authpro/version.rb +3 -0
  6. data/lib/generators/authpro/USAGE +8 -0
  7. data/lib/generators/authpro/authpro_generator.rb +59 -0
  8. data/lib/generators/authpro/templates/application.html.erb +26 -0
  9. data/lib/generators/authpro/templates/home_controller.rb +4 -0
  10. data/lib/generators/authpro/templates/index.html.erb +1 -0
  11. data/lib/generators/authpro/templates/new_password_resets.html.erb +9 -0
  12. data/lib/generators/authpro/templates/new_sessions.html.erb +16 -0
  13. data/lib/generators/authpro/templates/new_user.html.erb +27 -0
  14. data/lib/generators/authpro/templates/password_reset.text.erb +5 -0
  15. data/lib/generators/authpro/templates/password_resets_controller.rb +37 -0
  16. data/lib/generators/authpro/templates/password_resets_edit.html.erb +23 -0
  17. data/lib/generators/authpro/templates/sessions_controller.rb +26 -0
  18. data/lib/generators/authpro/templates/user.rb +25 -0
  19. data/lib/generators/authpro/templates/user_mailer.rb +8 -0
  20. data/lib/generators/authpro/templates/users_controller.rb +21 -0
  21. data/lib/tasks/authpro_tasks.rake +4 -0
  22. data/test/authpro_generator_test.rb +35 -0
  23. data/test/authpro_integration_test.rb +144 -0
  24. data/test/dummy/Gemfile +17 -0
  25. data/test/dummy/Gemfile.lock +120 -0
  26. data/test/dummy/README.rdoc +28 -0
  27. data/test/dummy/Rakefile +6 -0
  28. data/test/dummy/app/assets/javascripts/application.js +13 -0
  29. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  30. data/test/dummy/app/controllers/application_controller.rb +5 -0
  31. data/test/dummy/app/helpers/application_helper.rb +2 -0
  32. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  33. data/test/dummy/bin/bundle +3 -0
  34. data/test/dummy/bin/rails +4 -0
  35. data/test/dummy/bin/rake +4 -0
  36. data/test/dummy/config.ru +4 -0
  37. data/test/dummy/config/application.rb +23 -0
  38. data/test/dummy/config/boot.rb +9 -0
  39. data/test/dummy/config/database.yml +25 -0
  40. data/test/dummy/config/environment.rb +5 -0
  41. data/test/dummy/config/environments/development.rb +27 -0
  42. data/test/dummy/config/environments/production.rb +80 -0
  43. data/test/dummy/config/environments/test.rb +38 -0
  44. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  45. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  46. data/test/dummy/config/initializers/inflections.rb +16 -0
  47. data/test/dummy/config/initializers/mime_types.rb +5 -0
  48. data/test/dummy/config/initializers/secret_token.rb +12 -0
  49. data/test/dummy/config/initializers/session_store.rb +3 -0
  50. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  51. data/test/dummy/config/locales/en.yml +23 -0
  52. data/test/dummy/config/routes.rb +49 -0
  53. data/test/dummy/db/test.sqlite3 +0 -0
  54. data/test/dummy/log/test.log +72 -0
  55. data/test/dummy/public/404.html +27 -0
  56. data/test/dummy/public/422.html +26 -0
  57. data/test/dummy/public/500.html +26 -0
  58. data/test/dummy/public/favicon.ico +0 -0
  59. data/test/rails/dummy/Gemfile +17 -0
  60. data/test/rails/dummy/Gemfile.lock +120 -0
  61. data/test/rails/dummy/README.rdoc +28 -0
  62. data/test/rails/dummy/Rakefile +6 -0
  63. data/test/rails/dummy/app/assets/javascripts/application.js +13 -0
  64. data/test/rails/dummy/app/assets/stylesheets/application.css +13 -0
  65. data/test/rails/dummy/app/controllers/application_controller.rb +13 -0
  66. data/test/rails/dummy/app/controllers/home_controller.rb +4 -0
  67. data/test/rails/dummy/app/controllers/password_resets_controller.rb +37 -0
  68. data/test/rails/dummy/app/controllers/sessions_controller.rb +26 -0
  69. data/test/rails/dummy/app/controllers/users_controller.rb +21 -0
  70. data/test/rails/dummy/app/helpers/application_helper.rb +2 -0
  71. data/test/rails/dummy/app/mailers/user_mailer.rb +8 -0
  72. data/test/rails/dummy/app/models/user.rb +25 -0
  73. data/test/rails/dummy/app/views/home/index.html.erb +1 -0
  74. data/test/rails/dummy/app/views/layouts/application.html.erb +26 -0
  75. data/test/rails/dummy/app/views/password_resets/edit.html.erb +23 -0
  76. data/test/rails/dummy/app/views/password_resets/new.html.erb +9 -0
  77. data/test/rails/dummy/app/views/sessions/new.html.erb +16 -0
  78. data/test/rails/dummy/app/views/user_mailer/password_reset.text.erb +5 -0
  79. data/test/rails/dummy/app/views/users/new.html.erb +27 -0
  80. data/test/rails/dummy/bin/bundle +3 -0
  81. data/test/rails/dummy/bin/rails +4 -0
  82. data/test/rails/dummy/bin/rake +4 -0
  83. data/test/rails/dummy/config.ru +4 -0
  84. data/test/rails/dummy/config/application.rb +23 -0
  85. data/test/rails/dummy/config/boot.rb +9 -0
  86. data/test/rails/dummy/config/database.yml +25 -0
  87. data/test/rails/dummy/config/environment.rb +5 -0
  88. data/test/rails/dummy/config/environments/development.rb +28 -0
  89. data/test/rails/dummy/config/environments/production.rb +80 -0
  90. data/test/rails/dummy/config/environments/test.rb +38 -0
  91. data/test/rails/dummy/config/initializers/backtrace_silencers.rb +7 -0
  92. data/test/rails/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  93. data/test/rails/dummy/config/initializers/inflections.rb +16 -0
  94. data/test/rails/dummy/config/initializers/mime_types.rb +5 -0
  95. data/test/rails/dummy/config/initializers/secret_token.rb +12 -0
  96. data/test/rails/dummy/config/initializers/session_store.rb +3 -0
  97. data/test/rails/dummy/config/initializers/wrap_parameters.rb +14 -0
  98. data/test/rails/dummy/config/locales/en.yml +23 -0
  99. data/test/rails/dummy/config/routes.rb +56 -0
  100. data/test/rails/dummy/db/migrate/20130310185934_create_users.rb +13 -0
  101. data/test/rails/dummy/db/test.sqlite3 +0 -0
  102. data/test/rails/dummy/log/test.log +454 -0
  103. data/test/rails/dummy/public/404.html +27 -0
  104. data/test/rails/dummy/public/422.html +26 -0
  105. data/test/rails/dummy/public/500.html +26 -0
  106. data/test/rails/dummy/public/favicon.ico +0 -0
  107. data/test/rails/dummy/test/fixtures/users.yml +15 -0
  108. data/test/rails/dummy/test/models/user_test.rb +7 -0
  109. data/test/rails/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  110. data/test/rails/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  111. data/test/rails/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  112. data/test/rails/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  113. data/test/rails/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  114. data/test/rails/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  115. data/test/test_helper.rb +31 -0
  116. metadata +335 -0
@@ -0,0 +1,28 @@
1
+ == README
2
+
3
+ This README would normally document whatever steps are necessary to get the
4
+ application up and running.
5
+
6
+ Things you may want to cover:
7
+
8
+ * Ruby version
9
+
10
+ * System dependencies
11
+
12
+ * Configuration
13
+
14
+ * Database creation
15
+
16
+ * Database initialization
17
+
18
+ * How to run the test suite
19
+
20
+ * Services (job queues, cache servers, search engines, etc.)
21
+
22
+ * Deployment instructions
23
+
24
+ * ...
25
+
26
+
27
+ Please feel free to use a different markup language if you do not plan to run
28
+ <tt>rake doc:app</tt>.
@@ -0,0 +1,6 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require File.expand_path('../config/application', __FILE__)
5
+
6
+ Dummy::Application.load_tasks
@@ -0,0 +1,13 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file.
9
+ //
10
+ // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
11
+ // GO AFTER THE REQUIRES BELOW.
12
+ //
13
+ //= require_tree .
@@ -0,0 +1,13 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the top of the
9
+ * compiled file, but it's generally better to create a new file per style scope.
10
+ *
11
+ *= require_self
12
+ *= require_tree .
13
+ */
@@ -0,0 +1,13 @@
1
+ class ApplicationController < ActionController::Base
2
+ # Prevent CSRF attacks by raising an exception.
3
+ # For APIs, you may want to use :null_session instead.
4
+ protect_from_forgery with: :exception
5
+
6
+ private
7
+
8
+ def current_user
9
+ @current_user ||= User.find_by_auth_token( cookies[:auth_token]) if cookies[:auth_token]
10
+ end
11
+
12
+ helper_method :current_user
13
+ end
@@ -0,0 +1,4 @@
1
+ class HomeController < ApplicationController
2
+ def index
3
+ end
4
+ end
@@ -0,0 +1,37 @@
1
+ class PasswordResetsController < ApplicationController
2
+ def new
3
+ end
4
+
5
+ def create
6
+ user = User.find_by email: params[:email]
7
+
8
+ if user
9
+ user.send_password_reset
10
+ redirect_to root_url, notice: "Email sent with password reset instructions."
11
+ else
12
+ flash.now.alert = "We could not find anyone with that email address."
13
+ render "new"
14
+ end
15
+ end
16
+
17
+ def edit
18
+ @user = User.find_by! password_reset_token: params[:id]
19
+ end
20
+
21
+ def update
22
+ @user = User.find_by! password_reset_token: params[:id]
23
+ if @user.password_reset_sent_at < 20.hours.ago
24
+ redirect_to new_password_reset_path, alert: "Password reset has expired."
25
+ elsif @user.update_attributes(user_params)
26
+ redirect_to root_url, notice: "Password has been reset."
27
+ else
28
+ render :edit
29
+ end
30
+ end
31
+
32
+ private
33
+ # Never trust parameters from the scary internet, only allow the white list through.
34
+ def user_params
35
+ params.require(:user).permit(:password, :password_confirmation)
36
+ end
37
+ end
@@ -0,0 +1,26 @@
1
+ class SessionsController < ApplicationController
2
+
3
+ def new
4
+ end
5
+
6
+ def create
7
+ @user = User.authenticate(params[:email], params[:password])
8
+ if @user
9
+ if params[:remember_me]
10
+ cookies.permanent[:auth_token] = @user.auth_token
11
+ else
12
+ cookies[:auth_token] = @user.auth_token
13
+ end
14
+
15
+ redirect_to root_url, notice: "Logged in!"
16
+ else
17
+ flash.now.alert = "Invalid email or password"
18
+ render "new"
19
+ end
20
+ end
21
+
22
+ def destroy
23
+ cookies.delete(:auth_token)
24
+ redirect_to root_url, notice: "Logged out!"
25
+ end
26
+ end
@@ -0,0 +1,21 @@
1
+ class UsersController < ApplicationController
2
+
3
+ def new
4
+ @user = User.new
5
+ end
6
+
7
+ def create
8
+ @user = User.new(user_params)
9
+ if @user.save
10
+ redirect_to root_url, notice: "Signed up!"
11
+ else
12
+ render "new"
13
+ end
14
+ end
15
+
16
+ private
17
+ # Never trust parameters from the scary internet, only allow the white list through.
18
+ def user_params
19
+ params.require(:user).permit(:email, :password, :password_confirmation)
20
+ end
21
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,8 @@
1
+ class UserMailer < ActionMailer::Base
2
+ default from: "from@example.com"
3
+
4
+ def password_reset(user)
5
+ @user = user
6
+ mail to: user.email, subject: "Password Reset"
7
+ end
8
+ end
@@ -0,0 +1,25 @@
1
+ class User < ActiveRecord::Base
2
+ has_secure_password
3
+
4
+ validates_presence_of :password, on: :create
5
+
6
+ before_create { generate_token(:auth_token) }
7
+
8
+ def self.authenticate(email, password)
9
+ user = find_by email: email
10
+ user if user && user.authenticate(password)
11
+ end
12
+
13
+ def generate_token(column)
14
+ begin
15
+ self[column] = SecureRandom.urlsafe_base64
16
+ end while User.exists?(column => self[column])
17
+ end
18
+
19
+ def send_password_reset
20
+ generate_token(:password_reset_token)
21
+ self.password_reset_sent_at = Time.zone.now
22
+ save!
23
+ UserMailer.password_reset(self).deliver
24
+ end
25
+ end
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Home</title>
5
+ <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
6
+ <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+ <div id="user_nav">
11
+ <% if current_user %>
12
+ Logged in as <%= current_user.email %>.
13
+ <%= link_to "Log out", logout_path %>
14
+ <% else %>
15
+ <%= link_to "Sign up", signup_path %> or
16
+ <%= link_to "Log in", login_path %>
17
+ <% end %>
18
+ </div>
19
+
20
+ <% flash.each do |name, msg| %>
21
+ <%= content_tag :div, msg, :id => "flash_#{name}" %>
22
+ <% end %>
23
+
24
+ <%= yield %>
25
+ </body>
26
+ </html>
@@ -0,0 +1,23 @@
1
+ <h1>Reset password</h1>
2
+
3
+ <%= form_for @user, url: password_reset_path(params[:id]) do |f| %>
4
+ <% if @user.errors.any? %>
5
+ <div class="error_messages">
6
+ <h2>Form is invalid</h2>
7
+ <ul>
8
+ <% for message in @user.errors.full_messages %>
9
+ <li><%= message %></li>
10
+ <% end %>
11
+ </ul>
12
+ </div>
13
+ <% end %>
14
+ <div class="field">
15
+ <%= f.label :password %><br />
16
+ <%= f.password_field :password %>
17
+ </div>
18
+ <div class="field">
19
+ <%= f.label :password_confirmation %><br />
20
+ <%= f.password_field :password_confirmation %>
21
+ </div>
22
+ <div class="actions"><%= f.submit "Change password" %></div>
23
+ <% end %>
@@ -0,0 +1,9 @@
1
+ <h1>Reset password</h1>
2
+
3
+ <%= form_tag password_resets_path, method: :post do %>
4
+ <div class="field">
5
+ <%= label_tag :email %> <br />
6
+ <%= text_field_tag :email, params[:email] %>
7
+ </div>
8
+ <div class="actions"><%= submit_tag "Reset password" %></div>
9
+ <% end %>
@@ -0,0 +1,16 @@
1
+ <h1>Log in</h1>
2
+
3
+ <%= form_tag sessions_path do %>
4
+ <p>
5
+ <%= label_tag :email %><br />
6
+ <%= text_field_tag :email, params[:email] %>
7
+ </p>
8
+ <p>
9
+ <%= label_tag :password %><br />
10
+ <%= password_field_tag :password %>
11
+ </p>
12
+ <p>
13
+ <%= link_to "Forgot your password?", new_password_reset_path %>
14
+ </p>
15
+ <p class="button"><%= submit_tag "Log in" %></p>
16
+ <% end %>
@@ -0,0 +1,5 @@
1
+ To reset your password, click the URL below.
2
+
3
+ <%= edit_password_reset_url(@user.password_reset_token) %>
4
+
5
+ If you did not request your password to be reset, just ignore this email and your password will continue to stay the same.
@@ -0,0 +1,27 @@
1
+ <h1>Sign up</h1>
2
+
3
+ <%= form_for @user do |f| %>
4
+ <% if @user.errors.any? %>
5
+ <div class="error_messages">
6
+ <h2>Form is invalid</h2>
7
+ <ul>
8
+ <% for message in @user.errors.full_messages %>
9
+ <li><%= message %></li>
10
+ <% end %>
11
+ </ul>
12
+ </div>
13
+ <% end %>
14
+ <div class="field">
15
+ <%= f.label :email %><br />
16
+ <%= f.text_field :email %>
17
+ </div>
18
+ <div class="field">
19
+ <%= f.label :password %><br />
20
+ <%= f.password_field :password %>
21
+ </div>
22
+ <div class="field">
23
+ <%= f.label :password_confirmation %><br />
24
+ <%= f.password_field :password_confirmation %>
25
+ </div>
26
+ <div class="actions"><%= f.submit "Sign up" %></div>
27
+ <% end %>
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
3
+ load Gem.bin_path('bundler', 'bundle')
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
3
+ require_relative '../config/boot'
4
+ require 'rails/commands'
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require_relative '../config/boot'
3
+ require 'rake'
4
+ Rake.application.run
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,23 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require 'rails/all'
4
+
5
+ Bundler.require(*Rails.groups)
6
+ require "authpro"
7
+
8
+ module Dummy
9
+ class Application < Rails::Application
10
+ # Settings in config/environments/* take precedence over those specified here.
11
+ # Application configuration should go into files in config/initializers
12
+ # -- all .rb files in that directory are automatically loaded.
13
+
14
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
15
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
16
+ # config.time_zone = 'Central Time (US & Canada)'
17
+
18
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
19
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
20
+ # config.i18n.default_locale = :de
21
+ end
22
+ end
23
+
@@ -0,0 +1,9 @@
1
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
2
+
3
+ if File.exist?(gemfile)
4
+ ENV['BUNDLE_GEMFILE'] = gemfile
5
+ require 'bundler'
6
+ Bundler.setup
7
+ end
8
+
9
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ development:
7
+ adapter: sqlite3
8
+ database: db/development.sqlite3
9
+ pool: 5
10
+ timeout: 5000
11
+
12
+ # Warning: The database defined as "test" will be erased and
13
+ # re-generated from your development database when you run "rake".
14
+ # Do not set this db to the same as development or production.
15
+ test:
16
+ adapter: sqlite3
17
+ database: db/test.sqlite3
18
+ pool: 5
19
+ timeout: 5000
20
+
21
+ production:
22
+ adapter: sqlite3
23
+ database: db/production.sqlite3
24
+ pool: 5
25
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the rails application.
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application.
5
+ Dummy::Application.initialize!
@@ -0,0 +1,28 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Do not eager load code on boot.
10
+ config.eager_load = false
11
+
12
+ # Show full error reports and disable caching.
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send.
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger.
20
+ config.active_support.deprecation = :log
21
+
22
+ # Raise an error on page load if there are pending migrations
23
+ config.active_record.migration_error = :page_load
24
+
25
+ # Debug mode disables concatenation and preprocessing of assets.
26
+ config.assets.debug = true
27
+ config.action_mailer.default_url_options = { host: "localhost:3000" }
28
+ end