├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app ├── assets │ ├── javascripts │ │ ├── application.js │ │ └── ledger-1.0.0.js │ └── stylesheets │ │ └── application.css.scss ├── controllers │ ├── application_controller.rb │ ├── callback_controller.rb │ └── home_controller.rb ├── helpers │ └── application_helper.rb ├── mailers │ └── .gitkeep ├── models │ ├── .gitkeep │ ├── nonce.rb │ └── user.rb └── views │ ├── home │ ├── index.html.erb │ ├── login.html.erb │ └── user.html.erb │ └── layouts │ └── application.html.erb ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── devise.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── secret_token.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ └── en.yml └── routes.rb ├── db ├── migrate │ ├── 20140402115522_create_users.rb │ ├── 20140402131702_create_nonces.rb │ ├── 20140403161329_add_devise_to_users.rb │ ├── 20140403215242_remove_unique_email_index_from_users.rb │ ├── 20140415161831_add_secret_to_nonce.rb │ ├── 20140415163848_add_user_id_to_nonce.rb │ └── 20140416123614_add_session_id_to_nonce.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .gitkeep └── tasks │ └── .gitkeep ├── log └── .gitkeep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── robots.txt ├── script └── rails ├── test ├── fixtures │ └── .gitkeep ├── functional │ └── .gitkeep ├── integration │ └── .gitkeep ├── performance │ └── browsing_test.rb ├── test_helper.rb └── unit │ ├── .gitkeep │ ├── nonce_test.rb │ └── user_test.rb └── vendor ├── assets ├── javascripts │ └── .gitkeep └── stylesheets │ └── .gitkeep └── plugins └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- 1 | # See http://help.github.com/ignore-files/ for more about ignoring files. 2 | # 3 | # If you find yourself ignoring temporary files generated by your text editor 4 | # or operating system, you probably want to add a global ignore instead: 5 | # git config --global core.excludesfile ~/.gitignore_global 6 | 7 | # Ignore bundler config 8 | /.bundle 9 | 10 | # Ignore the default SQLite database. 11 | /db/*.sqlite3 12 | 13 | # Ignore all logfiles and tempfiles. 14 | /log/*.log 15 | /tmp 16 | 17 | # Ignore installation-specific data 18 | config/unicorn.rb 19 | public/assets/ 20 | vendor/bundle/ 21 | 22 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'rails', '3.2.13' 4 | gem 'sass-rails', '~> 3.2.3' 5 | gem 'bootstrap-sass', '~> 3.1.1' 6 | gem 'devise' 7 | gem 'bitid', '~> 0.0.4' 8 | 9 | group :development do 10 | gem 'sqlite3' 11 | end 12 | 13 | group :production do 14 | gem 'pg' 15 | gem 'unicorn' 16 | end 17 | 18 | group :assets do 19 | gem 'coffee-rails', '~> 3.2.1' 20 | gem 'uglifier', '>= 1.0.3' 21 | gem 'therubyracer', :platforms => :ruby 22 | end 23 | 24 | gem 'jquery-rails' 25 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | actionmailer (3.2.13) 5 | actionpack (= 3.2.13) 6 | mail (~> 2.5.3) 7 | actionpack (3.2.13) 8 | activemodel (= 3.2.13) 9 | activesupport (= 3.2.13) 10 | builder (~> 3.0.0) 11 | erubis (~> 2.7.0) 12 | journey (~> 1.0.4) 13 | rack (~> 1.4.5) 14 | rack-cache (~> 1.2) 15 | rack-test (~> 0.6.1) 16 | sprockets (~> 2.2.1) 17 | activemodel (3.2.13) 18 | activesupport (= 3.2.13) 19 | builder (~> 3.0.0) 20 | activerecord (3.2.13) 21 | activemodel (= 3.2.13) 22 | activesupport (= 3.2.13) 23 | arel (~> 3.0.2) 24 | tzinfo (~> 0.3.29) 25 | activeresource (3.2.13) 26 | activemodel (= 3.2.13) 27 | activesupport (= 3.2.13) 28 | activesupport (3.2.13) 29 | i18n (= 0.6.1) 30 | multi_json (~> 1.0) 31 | arel (3.0.3) 32 | bcrypt (3.1.7) 33 | bitcoin-cigs (0.0.6) 34 | bitid (0.0.4) 35 | bitcoin-cigs 36 | bootstrap-sass (3.1.1.1) 37 | sass (~> 3.2) 38 | builder (3.0.4) 39 | coffee-rails (3.2.2) 40 | coffee-script (>= 2.2.0) 41 | railties (~> 3.2.0) 42 | coffee-script (2.2.0) 43 | coffee-script-source 44 | execjs 45 | coffee-script-source (1.7.0) 46 | devise (3.2.4) 47 | bcrypt (~> 3.0) 48 | orm_adapter (~> 0.1) 49 | railties (>= 3.2.6, < 5) 50 | thread_safe (~> 0.1) 51 | warden (~> 1.2.3) 52 | erubis (2.7.0) 53 | execjs (2.0.2) 54 | hike (1.2.3) 55 | i18n (0.6.1) 56 | journey (1.0.4) 57 | jquery-rails (3.1.0) 58 | railties (>= 3.0, < 5.0) 59 | thor (>= 0.14, < 2.0) 60 | json (1.8.1) 61 | kgio (2.9.2) 62 | libv8 (3.16.14.3) 63 | mail (2.5.4) 64 | mime-types (~> 1.16) 65 | treetop (~> 1.4.8) 66 | mime-types (1.25.1) 67 | multi_json (1.9.2) 68 | orm_adapter (0.5.0) 69 | pg (0.17.1) 70 | polyglot (0.3.4) 71 | rack (1.4.5) 72 | rack-cache (1.2) 73 | rack (>= 0.4) 74 | rack-ssl (1.3.4) 75 | rack 76 | rack-test (0.6.2) 77 | rack (>= 1.0) 78 | rails (3.2.13) 79 | actionmailer (= 3.2.13) 80 | actionpack (= 3.2.13) 81 | activerecord (= 3.2.13) 82 | activeresource (= 3.2.13) 83 | activesupport (= 3.2.13) 84 | bundler (~> 1.0) 85 | railties (= 3.2.13) 86 | railties (3.2.13) 87 | actionpack (= 3.2.13) 88 | activesupport (= 3.2.13) 89 | rack-ssl (~> 1.3.2) 90 | rake (>= 0.8.7) 91 | rdoc (~> 3.4) 92 | thor (>= 0.14.6, < 2.0) 93 | raindrops (0.13.0) 94 | rake (10.3.1) 95 | rdoc (3.12.2) 96 | json (~> 1.4) 97 | ref (1.0.5) 98 | sass (3.3.5) 99 | sass-rails (3.2.6) 100 | railties (~> 3.2.0) 101 | sass (>= 3.1.10) 102 | tilt (~> 1.3) 103 | sprockets (2.2.2) 104 | hike (~> 1.2) 105 | multi_json (~> 1.0) 106 | rack (~> 1.0) 107 | tilt (~> 1.1, != 1.3.0) 108 | sqlite3 (1.3.9) 109 | therubyracer (0.12.1) 110 | libv8 (~> 3.16.14.0) 111 | ref 112 | thor (0.19.1) 113 | thread_safe (0.3.3) 114 | tilt (1.4.1) 115 | treetop (1.4.15) 116 | polyglot 117 | polyglot (>= 0.3.1) 118 | tzinfo (0.3.39) 119 | uglifier (2.5.0) 120 | execjs (>= 0.3.0) 121 | json (>= 1.8.0) 122 | unicorn (4.8.2) 123 | kgio (~> 2.6) 124 | rack 125 | raindrops (~> 0.7) 126 | warden (1.2.3) 127 | rack (>= 1.0) 128 | 129 | PLATFORMS 130 | ruby 131 | 132 | DEPENDENCIES 133 | bitid (~> 0.0.4) 134 | bootstrap-sass (~> 3.1.1) 135 | coffee-rails (~> 3.2.1) 136 | devise 137 | jquery-rails 138 | pg 139 | rails (= 3.2.13) 140 | sass-rails (~> 3.2.3) 141 | sqlite3 142 | therubyracer 143 | uglifier (>= 1.0.3) 144 | unicorn 145 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BitID demonstration 2 | 3 | Source code for a Ruby on Rails implementation of the server side BitID protocol. 4 | 5 | http://bitid.bitcoin.blue 6 | -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env rake 2 | # Add your own tasks in files placed in lib/tasks ending in .rake, 3 | # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. 4 | 5 | require File.expand_path('../config/application', __FILE__) 6 | 7 | BitidDemo::Application.load_tasks 8 | -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- 1 | //= require jquery 2 | //= require jquery_ujs 3 | //= require_tree . 4 | //= require bootstrap -------------------------------------------------------------------------------- /app/assets/javascripts/ledger-1.0.0.js: -------------------------------------------------------------------------------- 1 | var Ledger = { 2 | init: function(options) { 3 | Ledger._options = options 4 | Ledger._poll_session = false; 5 | Ledger._createProxy(); 6 | addEventListener("message", Ledger._callback, false); 7 | }, 8 | isAppAvailable: function() { 9 | Ledger._message({ command:"ping" }); 10 | }, 11 | launchApp: function() { 12 | Ledger._message({ command:"launch" }); 13 | }, 14 | hasSession: function() { 15 | Ledger._message({ command:"has_session" }); 16 | }, 17 | bitid: function(uri, silent) { 18 | Ledger._messageAfterSession({ command:"bitid", uri:uri, silent:silent }) 19 | }, 20 | sendPayment: function(address, amount) { 21 | Ledger._messageAfterSession({ command:"send_payment", address:address, amount:amount }) 22 | }, 23 | _createProxy: function() { 24 | var div = document.createElement('div'); 25 | div.id = 'ledger-iframe'; 26 | div.style.position = 'absolute' 27 | div.style.left = '-5000px' 28 | document.body.appendChild(div); 29 | Ledger._iframe = document.createElement('iframe'); 30 | if (Ledger._options.debug) { 31 | url = "//dev.ledgerwallet.com:3000/proxy"; 32 | } else { 33 | url = "//www.ledgerwallet.com/proxy"; 34 | } 35 | Ledger._iframe.setAttribute("src", url); 36 | document.getElementById('ledger-iframe').appendChild(Ledger._iframe); 37 | }, 38 | _message: function(data) { 39 | Ledger._iframe.contentWindow.postMessage(data, "*"); 40 | }, 41 | _messageAfterSession: function(data) { 42 | Ledger._after_session = data 43 | Ledger._message("launch"); 44 | Ledger._should_poll_session = true; 45 | Ledger._do_poll_session(); 46 | }, 47 | _callback: function(event) { 48 | if (typeof event.data.response == "object" && event.data.response.command == "has_session" && event.data.response.success && typeof Ledger._after_session == "object") { 49 | Ledger._message(Ledger._after_session); 50 | Ledger._after_session = null; 51 | Ledger._should_poll_session = false; 52 | } 53 | Ledger._options.callback(event.data); 54 | }, 55 | _do_poll_session: function() { 56 | Ledger.hasSession(); 57 | if (Ledger._should_poll_session) { 58 | setTimeout(Ledger._do_poll_session, 500); 59 | } 60 | } 61 | }; -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css.scss: -------------------------------------------------------------------------------- 1 | @import "bootstrap"; 2 | 3 | /* Space out content a bit */ 4 | 5 | body { 6 | padding-top: 20px; 7 | padding-bottom: 20px; 8 | } 9 | 10 | /* Everything but the jumbotron gets side spacing for mobile first views */ 11 | 12 | .header, .marketing, .footer { 13 | padding-right: 15px; 14 | padding-left: 15px; 15 | } 16 | 17 | /* Custom page header */ 18 | 19 | .header { 20 | border-bottom: 1px solid #e5e5e5; 21 | h3 { 22 | padding-bottom: 19px; 23 | margin-top: 0; 24 | margin-bottom: 0; 25 | line-height: 40px; 26 | } 27 | } 28 | 29 | /* Make the masthead heading the same height as the navigation */ 30 | 31 | /* Custom page footer */ 32 | 33 | .footer { 34 | padding-top: 19px; 35 | color: #777; 36 | border-top: 1px solid #e5e5e5; 37 | } 38 | 39 | /* Customize container */ 40 | @media (min-width: 768px) { 41 | .container { 42 | max-width: 730px; 43 | } 44 | } 45 | 46 | .container-narrow > hr { 47 | margin: 30px 0; 48 | } 49 | 50 | /* Main marketing message and sign up button */ 51 | 52 | .jumbotron { 53 | text-align: center; 54 | border-bottom: 1px solid #e5e5e5; 55 | .btn { 56 | padding: 14px 24px; 57 | font-size: 21px; 58 | } 59 | } 60 | 61 | /* Supporting marketing content */ 62 | 63 | .marketing { 64 | margin: 40px 0; 65 | p + h4 { 66 | margin-top: 28px; 67 | } 68 | } 69 | 70 | /* Responsive: Portrait tablets and up */ 71 | @media screen and (min-width: 768px) { 72 | /* Remove the padding we set earlier */ 73 | .header, .marketing, .footer { 74 | padding-right: 0; 75 | padding-left: 0; 76 | } 77 | /* Space out the masthead */ 78 | .header { 79 | margin-bottom: 30px; 80 | } 81 | /* Remove the bottom border on the jumbotron for visual effect */ 82 | .jumbotron { 83 | border-bottom: 0; 84 | } 85 | } 86 | 87 | .spacer5 { height: 5px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; } 88 | .spacer10 { height: 10px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; } 89 | .spacer15 { height: 15px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; } 90 | .spacer20 { height: 20px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; } 91 | .spacer25 { height: 25px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; } 92 | .spacer30 { height: 30px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; } 93 | .spacer35 { height: 35px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; } 94 | .spacer40 { height: 40px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; } 95 | .spacer45 { height: 45px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; } 96 | .spacer50 { height: 50px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; } 97 | .spacer100 { height: 100px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; } 98 | .spacer200 { height: 200px; width: 100%; font-size: 0; margin: 0; padding: 0; border: 0; display: block; } -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- 1 | class ApplicationController < ActionController::Base 2 | protect_from_forgery 3 | 4 | before_filter :get_session_id 5 | 6 | def get_session_id 7 | @session_id = request.session_options[:id] 8 | logger.error "SESSION ID #{@session_id}" 9 | end 10 | end -------------------------------------------------------------------------------- /app/controllers/callback_controller.rb: -------------------------------------------------------------------------------- 1 | class CallbackController < ApplicationController 2 | 3 | def create 4 | @address = params[:address] 5 | bitid = Bitid.new(uri:params[:uri], signature:params[:signature], address:@address, callback:callback_index_url) 6 | 7 | if !bitid.uri_valid? 8 | render json: { message: "BitID URI is invalid or not legal"}, status: :unauthorized 9 | elsif !bitid.signature_valid? 10 | render json: { message: "Signature is incorrect"}, status: :unauthorized 11 | else 12 | @nonce = Nonce.find_by_uuid(bitid.nonce) 13 | if @nonce.nil? 14 | render json: { message: "NONCE is illegal"}, status: :unauthorized 15 | elsif @nonce.expired? 16 | render json: { message: "NONCE has expired"}, status: :unauthorized 17 | else 18 | 19 | user = User.find_or_create_by_btc(@address) 20 | @nonce.user_id = user.id 21 | @nonce.save! 22 | 23 | render json: { address: @address, nonce: @nonce.uuid } 24 | end 25 | end 26 | end 27 | end -------------------------------------------------------------------------------- /app/controllers/home_controller.rb: -------------------------------------------------------------------------------- 1 | class HomeController < ApplicationController 2 | 3 | def login 4 | @nonce = Nonce.create(session_id:@session_id) 5 | @bitid = Bitid.new({nonce:@nonce.uuid, callback:callback_index_url, unsecure:true}) 6 | end 7 | 8 | def auth 9 | nonce = Nonce.find_by_session_id(@session_id) 10 | if nonce && nonce.user.present? 11 | sign_in nonce.user 12 | nonce.destroy 13 | render json: { auth: 1 } 14 | else 15 | render json: { auth: 0 } 16 | end 17 | end 18 | end -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitid/bitid-demo/f17de2a36a3e712887445dfb836d4a3b6973df42/app/mailers/.gitkeep -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitid/bitid-demo/f17de2a36a3e712887445dfb836d4a3b6973df42/app/models/.gitkeep -------------------------------------------------------------------------------- /app/models/nonce.rb: -------------------------------------------------------------------------------- 1 | class Nonce < ActiveRecord::Base 2 | belongs_to :user 3 | 4 | validates :uuid, presence: true, uniqueness: true 5 | validates :session_id, presence: true, uniqueness: true 6 | 7 | attr_accessible :session_id 8 | 9 | before_validation :init 10 | 11 | def expired? 12 | self.created_at.to_i < Time.now.to_i - 600 13 | end 14 | 15 | private 16 | 17 | def init 18 | if self.uuid.nil? 19 | Nonce.where(session_id:self.session_id).destroy_all 20 | self.uuid = SecureRandom.hex(8) 21 | end 22 | end 23 | end -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- 1 | class User < ActiveRecord::Base 2 | devise :database_authenticatable, :registerable, 3 | :recoverable, :rememberable, :trackable 4 | 5 | has_many :nonces 6 | 7 | attr_accessible :btc, :name 8 | attr_accessible :email, :password, :password_confirmation, :remember_me 9 | 10 | validates :btc, presence: true, uniqueness: true 11 | end -------------------------------------------------------------------------------- /app/views/home/index.html.erb: -------------------------------------------------------------------------------- 1 |
2 |

BitID demonstration

3 |

With BitID you can sign up to any service. It's secure, quick and easy. Please have your wallet ready !

4 |

Sign me in with my Bitcoin address

5 |
6 | -------------------------------------------------------------------------------- /app/views/home/login.html.erb: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |
9 |
10 |

Scan this QRcode with your BitID enabled mobile wallet.

11 |

You can also click on the QRcode if you have a BitID enabled desktop wallet. 12 |

13 | <%= link_to image_tag(@bitid.qrcode, border:0, alt:'Click on QRcode to activate compatible desktop wallet', align:'center'), @bitid.uri.to_s %> 14 |
15 |

No compatible wallet ? Use manual signing.

16 |
17 |
18 |
19 |

Manual signing

20 |

The user experience is quite combersome, but it has the advangage of being compatible with all wallets 21 | including Bitcoin Core.

22 |

Please sign the challenge in the box below using the private key of this Bitcoin address you want to 23 | identify yourself with. Copy the text, open your wallet, choose your Bitcoin address, select the sign message 24 | function, paste the text into the message input and sign. After it is done, copy and paste the signature 25 | into the field below.

26 |

Cumbersome. Yep. Much better with a simple scan or click using a compatible wallet :)

27 |
<%= @bitid.uri %>
28 |
29 | 30 | 31 |
32 |
33 | 34 | 35 |
36 | 37 |
38 |

You can also simulate the response of the wallet by executing the following API call :

39 |
 40 |     
41 |
42 |
43 |

Ledger Wallet

44 | 45 |

46 |

47 |

48 | The Ledger Wallet Nano is a secure and affordable hardware wallet. 49 |
50 | It implements native BitID login through its API. 51 |

52 | 53 |

54 |
55 | 56 | -------------------------------------------------------------------------------- /app/views/home/user.html.erb: -------------------------------------------------------------------------------- 1 |
2 |

Success !

3 |

Your Bitcoin address is <%= current_user.btc %>

4 |

Sign in count : <%= current_user.sign_in_count %>

5 |

Log out

6 |
7 | -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BitID Open Protocol - Demonstration site 5 | <%= stylesheet_link_tag "application", :media => "all" %> 6 | <%= javascript_include_tag "application" %> 7 | <%= csrf_meta_tags %> 8 | 9 | 10 | 11 |
12 |
13 | 21 |

BitID

22 |
23 | 24 | <%= yield %> 25 | 26 |
27 | 28 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | # This file is used by Rack-based servers to start the application. 2 | 3 | require ::File.expand_path('../config/environment', __FILE__) 4 | run BitidDemo::Application 5 | -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- 1 | require File.expand_path('../boot', __FILE__) 2 | 3 | require 'rails/all' 4 | 5 | if defined?(Bundler) 6 | # If you precompile assets before deploying to production, use this line 7 | Bundler.require(*Rails.groups(:assets => %w(development test))) 8 | # If you want your assets lazily compiled in production, use this line 9 | # Bundler.require(:default, :assets, Rails.env) 10 | end 11 | 12 | module BitidDemo 13 | class Application < Rails::Application 14 | # Settings in config/environments/* take precedence over those specified here. 15 | # Application configuration should go into files in config/initializers 16 | # -- all .rb files in that directory are automatically loaded. 17 | 18 | # Custom directories with classes and modules you want to be autoloadable. 19 | config.autoload_paths += %W(#{config.root}/lib) 20 | 21 | # Only load the plugins named here, in the order given (default is alphabetical). 22 | # :all can be used as a placeholder for all plugins not explicitly named. 23 | # config.plugins = [ :exception_notification, :ssl_requirement, :all ] 24 | 25 | # Activate observers that should always be running. 26 | # config.active_record.observers = :cacher, :garbage_collector, :forum_observer 27 | 28 | # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. 29 | # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. 30 | # config.time_zone = 'Central Time (US & Canada)' 31 | 32 | # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. 33 | # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] 34 | # config.i18n.default_locale = :de 35 | 36 | # Configure the default encoding used in templates for Ruby 1.9. 37 | config.encoding = "utf-8" 38 | 39 | # Configure sensitive parameters which will be filtered from the log file. 40 | config.filter_parameters += [:password] 41 | 42 | # Enable escaping HTML in JSON. 43 | config.active_support.escape_html_entities_in_json = true 44 | 45 | # Use SQL instead of Active Record's schema dumper when creating the database. 46 | # This is necessary if your schema can't be completely dumped by the schema dumper, 47 | # like if you have constraints or database-specific column types 48 | # config.active_record.schema_format = :sql 49 | 50 | # Enforce whitelist mode for mass assignment. 51 | # This will create an empty whitelist of attributes available for mass-assignment for all models 52 | # in your app. As such, your models will need to explicitly whitelist or blacklist accessible 53 | # parameters by using an attr_accessible or attr_protected declaration. 54 | config.active_record.whitelist_attributes = true 55 | 56 | # Enable the asset pipeline 57 | config.assets.enabled = true 58 | 59 | # Version of your assets, change this if you want to expire all your assets 60 | config.assets.version = '1.0' 61 | 62 | config.assets.initialize_on_precompile = false 63 | end 64 | end 65 | -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | 3 | # Set up gems listed in the Gemfile. 4 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 5 | 6 | require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE']) 7 | -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- 1 | production: 2 | adapter: sqlite3 3 | database: db/production.sqlite3 4 | pool: 5 5 | timeout: 5000 6 | 7 | development: 8 | adapter: sqlite3 9 | database: db/development.sqlite3 10 | pool: 5 11 | timeout: 5000 12 | 13 | test: 14 | adapter: sqlite3 15 | database: db/test.sqlite3 16 | pool: 5 17 | timeout: 5000 18 | -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- 1 | # Load the rails application 2 | require File.expand_path('../application', __FILE__) 3 | 4 | # Initialize the rails application 5 | BitidDemo::Application.initialize! 6 | -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- 1 | BitidDemo::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 | # Log error messages when you accidentally call methods on nil. 10 | config.whiny_nils = true 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 | # Only use best-standards-support built into browsers 23 | config.action_dispatch.best_standards_support = :builtin 24 | 25 | # Raise exception on mass assignment protection for Active Record models 26 | config.active_record.mass_assignment_sanitizer = :strict 27 | 28 | # Log the query plan for queries taking more than this (works 29 | # with SQLite, MySQL, and PostgreSQL) 30 | config.active_record.auto_explain_threshold_in_seconds = 0.5 31 | 32 | # Do not compress assets 33 | config.assets.compress = false 34 | 35 | # Expands the lines which load the assets 36 | config.assets.debug = true 37 | end 38 | -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- 1 | BitidDemo::Application.configure do 2 | # Settings specified here will take precedence over those in config/application.rb 3 | 4 | # Code is not reloaded between requests 5 | config.cache_classes = true 6 | 7 | # Full error reports are disabled and caching is turned on 8 | config.consider_all_requests_local = false 9 | config.action_controller.perform_caching = true 10 | 11 | # Disable Rails's static asset server (Apache or nginx will already do this) 12 | config.serve_static_assets = false 13 | 14 | # Compress JavaScripts and CSS 15 | config.assets.compress = true 16 | 17 | # Don't fallback to assets pipeline if a precompiled asset is missed 18 | config.assets.compile = false 19 | 20 | # Generate digests for assets URLs 21 | config.assets.digest = true 22 | 23 | # Defaults to nil and saved in location specified by config.assets.prefix 24 | # config.assets.manifest = YOUR_PATH 25 | 26 | # Specifies the header that your server uses for sending files 27 | # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache 28 | # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx 29 | 30 | # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. 31 | # config.force_ssl = true 32 | 33 | # See everything in the log (default is :info) 34 | # config.log_level = :debug 35 | 36 | # Prepend all log lines with the following tags 37 | # config.log_tags = [ :subdomain, :uuid ] 38 | 39 | # Use a different logger for distributed setups 40 | # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new) 41 | 42 | # Use a different cache store in production 43 | # config.cache_store = :mem_cache_store 44 | 45 | # Enable serving of images, stylesheets, and JavaScripts from an asset server 46 | # config.action_controller.asset_host = "http://assets.example.com" 47 | 48 | # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added) 49 | # config.assets.precompile += %w( search.js ) 50 | 51 | # Disable delivery errors, bad email addresses will be ignored 52 | # config.action_mailer.raise_delivery_errors = false 53 | 54 | # Enable threaded mode 55 | # config.threadsafe! 56 | 57 | # Enable locale fallbacks for I18n (makes lookups for any locale fall back to 58 | # the I18n.default_locale when a translation can not be found) 59 | config.i18n.fallbacks = true 60 | 61 | # Send deprecation notices to registered listeners 62 | config.active_support.deprecation = :notify 63 | 64 | # Log the query plan for queries taking more than this (works 65 | # with SQLite, MySQL, and PostgreSQL) 66 | # config.active_record.auto_explain_threshold_in_seconds = 0.5 67 | end 68 | -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- 1 | BitidDemo::Application.configure do 2 | # Settings specified here will take precedence over those in config/application.rb 3 | 4 | # The test environment is used exclusively to run your application's 5 | # test suite. You never need to work with it otherwise. Remember that 6 | # your test database is "scratch space" for the test suite and is wiped 7 | # and recreated between test runs. Don't rely on the data there! 8 | config.cache_classes = true 9 | 10 | # Configure static asset server for tests with Cache-Control for performance 11 | config.serve_static_assets = true 12 | config.static_cache_control = "public, max-age=3600" 13 | 14 | # Log error messages when you accidentally call methods on nil 15 | config.whiny_nils = true 16 | 17 | # Show full error reports and disable caching 18 | config.consider_all_requests_local = true 19 | config.action_controller.perform_caching = false 20 | 21 | # Raise exceptions instead of rendering exception templates 22 | config.action_dispatch.show_exceptions = false 23 | 24 | # Disable request forgery protection in test environment 25 | config.action_controller.allow_forgery_protection = false 26 | 27 | # Tell Action Mailer not to deliver emails to the real world. 28 | # The :test delivery method accumulates sent emails in the 29 | # ActionMailer::Base.deliveries array. 30 | config.action_mailer.delivery_method = :test 31 | 32 | # Raise exception on mass assignment protection for Active Record models 33 | config.active_record.mass_assignment_sanitizer = :strict 34 | 35 | # Print deprecation notices to the stderr 36 | config.active_support.deprecation = :stderr 37 | end 38 | -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. 4 | # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } 5 | 6 | # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. 7 | # Rails.backtrace_cleaner.remove_silencers! 8 | -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- 1 | # Use this hook to configure devise mailer, warden hooks and so forth. 2 | # Many of these configuration options can be set straight in your model. 3 | Devise.setup do |config| 4 | # The secret key used by Devise. Devise uses this key to generate 5 | # random tokens. Changing this key will render invalid all existing 6 | # confirmation, reset password and unlock tokens in the database. 7 | config.secret_key = '961beaa1889480d5e9392f1767c327d9746c6cb38bc1df8e974d71609a7c01480a6cbc3c62e2ef9a30d1ba7cac339dfba5496458ad19e8f607796faa70ab9d30' 8 | 9 | # ==> Mailer Configuration 10 | # Configure the e-mail address which will be shown in Devise::Mailer, 11 | # note that it will be overwritten if you use your own mailer class 12 | # with default "from" parameter. 13 | config.mailer_sender = 'please-change-me-at-config-initializers-devise@example.com' 14 | 15 | # Configure the class responsible to send e-mails. 16 | # config.mailer = 'Devise::Mailer' 17 | 18 | # ==> ORM configuration 19 | # Load and configure the ORM. Supports :active_record (default) and 20 | # :mongoid (bson_ext recommended) by default. Other ORMs may be 21 | # available as additional gems. 22 | require 'devise/orm/active_record' 23 | 24 | # ==> Configuration for any authentication mechanism 25 | # Configure which keys are used when authenticating a user. The default is 26 | # just :email. You can configure it to use [:username, :subdomain], so for 27 | # authenticating a user, both parameters are required. Remember that those 28 | # parameters are used only when authenticating and not when retrieving from 29 | # session. If you need permissions, you should implement that in a before filter. 30 | # You can also supply a hash where the value is a boolean determining whether 31 | # or not authentication should be aborted when the value is not present. 32 | # config.authentication_keys = [ :email ] 33 | 34 | # Configure parameters from the request object used for authentication. Each entry 35 | # given should be a request method and it will automatically be passed to the 36 | # find_for_authentication method and considered in your model lookup. For instance, 37 | # if you set :request_keys to [:subdomain], :subdomain will be used on authentication. 38 | # The same considerations mentioned for authentication_keys also apply to request_keys. 39 | # config.request_keys = [] 40 | 41 | # Configure which authentication keys should be case-insensitive. 42 | # These keys will be downcased upon creating or modifying a user and when used 43 | # to authenticate or find a user. Default is :email. 44 | config.case_insensitive_keys = [ :email ] 45 | 46 | # Configure which authentication keys should have whitespace stripped. 47 | # These keys will have whitespace before and after removed upon creating or 48 | # modifying a user and when used to authenticate or find a user. Default is :email. 49 | config.strip_whitespace_keys = [ :email ] 50 | 51 | # Tell if authentication through request.params is enabled. True by default. 52 | # It can be set to an array that will enable params authentication only for the 53 | # given strategies, for example, `config.params_authenticatable = [:database]` will 54 | # enable it only for database (email + password) authentication. 55 | # config.params_authenticatable = true 56 | 57 | # Tell if authentication through HTTP Auth is enabled. False by default. 58 | # It can be set to an array that will enable http authentication only for the 59 | # given strategies, for example, `config.http_authenticatable = [:database]` will 60 | # enable it only for database authentication. The supported strategies are: 61 | # :database = Support basic authentication with authentication key + password 62 | # config.http_authenticatable = false 63 | 64 | # If http headers should be returned for AJAX requests. True by default. 65 | # config.http_authenticatable_on_xhr = true 66 | 67 | # The realm used in Http Basic Authentication. 'Application' by default. 68 | # config.http_authentication_realm = 'Application' 69 | 70 | # It will change confirmation, password recovery and other workflows 71 | # to behave the same regardless if the e-mail provided was right or wrong. 72 | # Does not affect registerable. 73 | # config.paranoid = true 74 | 75 | # By default Devise will store the user in session. You can skip storage for 76 | # particular strategies by setting this option. 77 | # Notice that if you are skipping storage for all authentication paths, you 78 | # may want to disable generating routes to Devise's sessions controller by 79 | # passing skip: :sessions to `devise_for` in your config/routes.rb 80 | config.skip_session_storage = [:http_auth] 81 | 82 | # By default, Devise cleans up the CSRF token on authentication to 83 | # avoid CSRF token fixation attacks. This means that, when using AJAX 84 | # requests for sign in and sign up, you need to get a new CSRF token 85 | # from the server. You can disable this option at your own risk. 86 | # config.clean_up_csrf_token_on_authentication = true 87 | 88 | # ==> Configuration for :database_authenticatable 89 | # For bcrypt, this is the cost for hashing the password and defaults to 10. If 90 | # using other encryptors, it sets how many times you want the password re-encrypted. 91 | # 92 | # Limiting the stretches to just one in testing will increase the performance of 93 | # your test suite dramatically. However, it is STRONGLY RECOMMENDED to not use 94 | # a value less than 10 in other environments. Note that, for bcrypt (the default 95 | # encryptor), the cost increases exponentially with the number of stretches (e.g. 96 | # a value of 20 is already extremely slow: approx. 60 seconds for 1 calculation). 97 | config.stretches = Rails.env.test? ? 1 : 10 98 | 99 | # Setup a pepper to generate the encrypted password. 100 | # config.pepper = 'a0db738e9b9caccb30ec810c4b47d07202031a0bc6c172184808629c22b7671faac3776fb917ad3c7be5a1ce3fc5228637c27ba87eded1f3c07e3a20346f1b58' 101 | 102 | # ==> Configuration for :confirmable 103 | # A period that the user is allowed to access the website even without 104 | # confirming their account. For instance, if set to 2.days, the user will be 105 | # able to access the website for two days without confirming their account, 106 | # access will be blocked just in the third day. Default is 0.days, meaning 107 | # the user cannot access the website without confirming their account. 108 | # config.allow_unconfirmed_access_for = 2.days 109 | 110 | # A period that the user is allowed to confirm their account before their 111 | # token becomes invalid. For example, if set to 3.days, the user can confirm 112 | # their account within 3 days after the mail was sent, but on the fourth day 113 | # their account can't be confirmed with the token any more. 114 | # Default is nil, meaning there is no restriction on how long a user can take 115 | # before confirming their account. 116 | # config.confirm_within = 3.days 117 | 118 | # If true, requires any email changes to be confirmed (exactly the same way as 119 | # initial account confirmation) to be applied. Requires additional unconfirmed_email 120 | # db field (see migrations). Until confirmed, new email is stored in 121 | # unconfirmed_email column, and copied to email column on successful confirmation. 122 | config.reconfirmable = true 123 | 124 | # Defines which key will be used when confirming an account 125 | # config.confirmation_keys = [ :email ] 126 | 127 | # ==> Configuration for :rememberable 128 | # The time the user will be remembered without asking for credentials again. 129 | # config.remember_for = 2.weeks 130 | 131 | # If true, extends the user's remember period when remembered via cookie. 132 | # config.extend_remember_period = false 133 | 134 | # Options to be passed to the created cookie. For instance, you can set 135 | # secure: true in order to force SSL only cookies. 136 | # config.rememberable_options = {} 137 | 138 | # ==> Configuration for :validatable 139 | # Range for password length. 140 | config.password_length = 8..128 141 | 142 | # Email regex used to validate email formats. It simply asserts that 143 | # one (and only one) @ exists in the given string. This is mainly 144 | # to give user feedback and not to assert the e-mail validity. 145 | # config.email_regexp = /\A[^@]+@[^@]+\z/ 146 | 147 | # ==> Configuration for :timeoutable 148 | # The time you want to timeout the user session without activity. After this 149 | # time the user will be asked for credentials again. Default is 30 minutes. 150 | # config.timeout_in = 30.minutes 151 | 152 | # If true, expires auth token on session timeout. 153 | # config.expire_auth_token_on_timeout = false 154 | 155 | # ==> Configuration for :lockable 156 | # Defines which strategy will be used to lock an account. 157 | # :failed_attempts = Locks an account after a number of failed attempts to sign in. 158 | # :none = No lock strategy. You should handle locking by yourself. 159 | # config.lock_strategy = :failed_attempts 160 | 161 | # Defines which key will be used when locking and unlocking an account 162 | # config.unlock_keys = [ :email ] 163 | 164 | # Defines which strategy will be used to unlock an account. 165 | # :email = Sends an unlock link to the user email 166 | # :time = Re-enables login after a certain amount of time (see :unlock_in below) 167 | # :both = Enables both strategies 168 | # :none = No unlock strategy. You should handle unlocking by yourself. 169 | # config.unlock_strategy = :both 170 | 171 | # Number of authentication tries before locking an account if lock_strategy 172 | # is failed attempts. 173 | # config.maximum_attempts = 20 174 | 175 | # Time interval to unlock the account if :time is enabled as unlock_strategy. 176 | # config.unlock_in = 1.hour 177 | 178 | # Warn on the last attempt before the account is locked. 179 | # config.last_attempt_warning = false 180 | 181 | # ==> Configuration for :recoverable 182 | # 183 | # Defines which key will be used when recovering the password for an account 184 | # config.reset_password_keys = [ :email ] 185 | 186 | # Time interval you can reset your password with a reset password key. 187 | # Don't put a too small interval or your users won't have the time to 188 | # change their passwords. 189 | config.reset_password_within = 6.hours 190 | 191 | # ==> Configuration for :encryptable 192 | # Allow you to use another encryption algorithm besides bcrypt (default). You can use 193 | # :sha1, :sha512 or encryptors from others authentication tools as :clearance_sha1, 194 | # :authlogic_sha512 (then you should set stretches above to 20 for default behavior) 195 | # and :restful_authentication_sha1 (then you should set stretches to 10, and copy 196 | # REST_AUTH_SITE_KEY to pepper). 197 | # 198 | # Require the `devise-encryptable` gem when using anything other than bcrypt 199 | # config.encryptor = :sha512 200 | 201 | # ==> Scopes configuration 202 | # Turn scoped views on. Before rendering "sessions/new", it will first check for 203 | # "users/sessions/new". It's turned off by default because it's slower if you 204 | # are using only default views. 205 | # config.scoped_views = false 206 | 207 | # Configure the default scope given to Warden. By default it's the first 208 | # devise role declared in your routes (usually :user). 209 | # config.default_scope = :user 210 | 211 | # Set this configuration to false if you want /users/sign_out to sign out 212 | # only the current scope. By default, Devise signs out all scopes. 213 | # config.sign_out_all_scopes = true 214 | 215 | # ==> Navigation configuration 216 | # Lists the formats that should be treated as navigational. Formats like 217 | # :html, should redirect to the sign in page when the user does not have 218 | # access, but formats like :xml or :json, should return 401. 219 | # 220 | # If you have any extra navigational formats, like :iphone or :mobile, you 221 | # should add them to the navigational formats lists. 222 | # 223 | # The "*/*" below is required to match Internet Explorer requests. 224 | # config.navigational_formats = ['*/*', :html] 225 | 226 | # The default HTTP method used to sign out a resource. Default is :delete. 227 | config.sign_out_via = :delete 228 | 229 | # ==> OmniAuth 230 | # Add a new OmniAuth provider. Check the wiki for more information on setting 231 | # up on your models and hooks. 232 | # config.omniauth :github, 'APP_ID', 'APP_SECRET', scope: 'user,public_repo' 233 | 234 | # ==> Warden configuration 235 | # If you want to use other strategies, that are not supported by Devise, or 236 | # change the failure app, you can configure them inside the config.warden block. 237 | # 238 | # config.warden do |manager| 239 | # manager.intercept_401 = false 240 | # manager.default_strategies(scope: :user).unshift :some_external_strategy 241 | # end 242 | 243 | # ==> Mountable engine configurations 244 | # When using Devise inside an engine, let's call it `MyEngine`, and this engine 245 | # is mountable, there are some extra configurations to be taken into account. 246 | # The following options are available, assuming the engine is mounted as: 247 | # 248 | # mount MyEngine, at: '/my_engine' 249 | # 250 | # The router that invoked `devise_for`, in the example above, would be: 251 | # config.router_name = :my_engine 252 | # 253 | # When using omniauth, Devise cannot automatically set Omniauth path, 254 | # so you need to do it manually. For the users scope, it would be: 255 | # config.omniauth_path_prefix = '/my_engine/users/auth' 256 | end 257 | -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Add new inflection rules using the following format 4 | # (all these examples are active by default): 5 | # ActiveSupport::Inflector.inflections do |inflect| 6 | # inflect.plural /^(ox)$/i, '\1en' 7 | # inflect.singular /^(ox)en/i, '\1' 8 | # inflect.irregular 'person', 'people' 9 | # inflect.uncountable %w( fish sheep ) 10 | # end 11 | # 12 | # These inflection rules are supported but not enabled by default: 13 | # ActiveSupport::Inflector.inflections do |inflect| 14 | # inflect.acronym 'RESTful' 15 | # end 16 | -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Add new mime types for use in respond_to blocks: 4 | # Mime::Type.register "text/richtext", :rtf 5 | # Mime::Type.register_alias "text/html", :iphone 6 | -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Your secret key for verifying the integrity of signed cookies. 4 | # If you change this key, all old signed cookies will become invalid! 5 | # Make sure the secret is at least 30 characters and all random, 6 | # no regular words or you'll be exposed to dictionary attacks. 7 | BitidDemo::Application.config.secret_token = '2d15e3faf821cbb7f13009667bd900c83e922dccfc2b92b97c3fa736378ecb537e13aabd51d9d5800f39d69a2983551906cae051f05c4d7bf2e212138dc44035' 8 | -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | BitidDemo::Application.config.session_store :cookie_store, key: '_bitid-demo_session' 4 | 5 | # Use the database for sessions instead of the cookie-based default, 6 | # which shouldn't be used to store highly confidential information 7 | # (create the session table with "rails generate session_migration") 8 | # BitidDemo::Application.config.session_store :active_record_store 9 | -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | # 3 | # This file contains settings for ActionController::ParamsWrapper which 4 | # is enabled by default. 5 | 6 | # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. 7 | ActiveSupport.on_load(:action_controller) do 8 | wrap_parameters format: [:json] 9 | end 10 | 11 | # Disable root element in JSON by default. 12 | ActiveSupport.on_load(:active_record) do 13 | self.include_root_in_json = false 14 | end 15 | -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- 1 | # Additional translations at https://github.com/plataformatec/devise/wiki/I18n 2 | 3 | en: 4 | devise: 5 | confirmations: 6 | confirmed: "Your account was successfully confirmed." 7 | send_instructions: "You will receive an email with instructions about how to confirm your account in a few minutes." 8 | send_paranoid_instructions: "If your email address exists in our database, you will receive an email with instructions about how to confirm your account in a few minutes." 9 | failure: 10 | already_authenticated: "You are already signed in." 11 | inactive: "Your account is not activated yet." 12 | invalid: "Invalid email or password." 13 | locked: "Your account is locked." 14 | last_attempt: "You have one more attempt before your account will be locked." 15 | not_found_in_database: "Invalid email or password." 16 | timeout: "Your session expired. Please sign in again to continue." 17 | unauthenticated: "You need to sign in or sign up before continuing." 18 | unconfirmed: "You have to confirm your account before continuing." 19 | mailer: 20 | confirmation_instructions: 21 | subject: "Confirmation instructions" 22 | reset_password_instructions: 23 | subject: "Reset password instructions" 24 | unlock_instructions: 25 | subject: "Unlock Instructions" 26 | omniauth_callbacks: 27 | failure: "Could not authenticate you from %{kind} because \"%{reason}\"." 28 | success: "Successfully authenticated from %{kind} account." 29 | passwords: 30 | no_token: "You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided." 31 | send_instructions: "You will receive an email with instructions on how to reset your password in a few minutes." 32 | send_paranoid_instructions: "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes." 33 | updated: "Your password was changed successfully. You are now signed in." 34 | updated_not_active: "Your password was changed successfully." 35 | registrations: 36 | destroyed: "Bye! Your account was successfully cancelled. We hope to see you again soon." 37 | signed_up: "Welcome! You have signed up successfully." 38 | signed_up_but_inactive: "You have signed up successfully. However, we could not sign you in because your account is not yet activated." 39 | signed_up_but_locked: "You have signed up successfully. However, we could not sign you in because your account is locked." 40 | signed_up_but_unconfirmed: "A message with a confirmation link has been sent to your email address. Please open the link to activate your account." 41 | update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and click on the confirm link to finalize confirming your new email address." 42 | updated: "You updated your account successfully." 43 | sessions: 44 | signed_in: "Signed in successfully." 45 | signed_out: "Signed out successfully." 46 | unlocks: 47 | send_instructions: "You will receive an email with instructions about how to unlock your account in a few minutes." 48 | send_paranoid_instructions: "If your account exists, you will receive an email with instructions about how to unlock it in a few minutes." 49 | unlocked: "Your account has been unlocked successfully. Please sign in to continue." 50 | errors: 51 | messages: 52 | already_confirmed: "was already confirmed, please try signing in" 53 | confirmation_period_expired: "needs to be confirmed within %{period}, please request a new one" 54 | expired: "has expired, please request a new one" 55 | not_found: "not found" 56 | not_locked: "was not locked" 57 | not_saved: 58 | one: "1 error prohibited this %{resource} from being saved:" 59 | other: "%{count} errors prohibited this %{resource} from being saved:" 60 | -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- 1 | # Sample localization file for English. Add more files in this directory for other locales. 2 | # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points. 3 | 4 | en: 5 | hello: "Hello world" 6 | -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- 1 | BitidDemo::Application.routes.draw do 2 | devise_for :users 3 | 4 | root to: 'home#index' 5 | match '/login', to: 'home#login' 6 | match '/user', to: 'home#user' 7 | match '/auth', to: 'home#auth' 8 | 9 | resources :callback, only: :create 10 | end -------------------------------------------------------------------------------- /db/migrate/20140402115522_create_users.rb: -------------------------------------------------------------------------------- 1 | class CreateUsers < ActiveRecord::Migration 2 | def change 3 | create_table :users do |t| 4 | t.string :name 5 | t.string :btc 6 | t.integer :signin_count, default: 0 7 | 8 | t.timestamps 9 | end 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /db/migrate/20140402131702_create_nonces.rb: -------------------------------------------------------------------------------- 1 | class CreateNonces < ActiveRecord::Migration 2 | def change 3 | create_table :nonces do |t| 4 | t.string :uuid 5 | 6 | t.timestamps 7 | end 8 | end 9 | end 10 | -------------------------------------------------------------------------------- /db/migrate/20140403161329_add_devise_to_users.rb: -------------------------------------------------------------------------------- 1 | class AddDeviseToUsers < ActiveRecord::Migration 2 | def self.up 3 | change_table(:users) do |t| 4 | ## Database authenticatable 5 | t.string :email, null: false, default: "" 6 | t.string :encrypted_password, null: false, default: "" 7 | 8 | ## Recoverable 9 | t.string :reset_password_token 10 | t.datetime :reset_password_sent_at 11 | 12 | ## Rememberable 13 | t.datetime :remember_created_at 14 | 15 | ## Trackable 16 | t.integer :sign_in_count, default: 0, null: false 17 | t.datetime :current_sign_in_at 18 | t.datetime :last_sign_in_at 19 | t.string :current_sign_in_ip 20 | t.string :last_sign_in_ip 21 | 22 | ## Confirmable 23 | # t.string :confirmation_token 24 | # t.datetime :confirmed_at 25 | # t.datetime :confirmation_sent_at 26 | # t.string :unconfirmed_email # Only if using reconfirmable 27 | 28 | ## Lockable 29 | # t.integer :failed_attempts, default: 0, null: false # Only if lock strategy is :failed_attempts 30 | # t.string :unlock_token # Only if unlock strategy is :email or :both 31 | # t.datetime :locked_at 32 | 33 | 34 | # Uncomment below if timestamps were not included in your original model. 35 | # t.timestamps 36 | end 37 | 38 | add_index :users, :email, unique: true 39 | add_index :users, :reset_password_token, unique: true 40 | # add_index :users, :confirmation_token, unique: true 41 | # add_index :users, :unlock_token, unique: true 42 | end 43 | 44 | def self.down 45 | # By default, we don't want to make any assumption about how to roll back a migration when your 46 | # model already existed. Please edit below which fields you would like to remove in this migration. 47 | raise ActiveRecord::IrreversibleMigration 48 | end 49 | end 50 | -------------------------------------------------------------------------------- /db/migrate/20140403215242_remove_unique_email_index_from_users.rb: -------------------------------------------------------------------------------- 1 | class RemoveUniqueEmailIndexFromUsers < ActiveRecord::Migration 2 | def up 3 | remove_index :users, :email 4 | end 5 | 6 | def down 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /db/migrate/20140415161831_add_secret_to_nonce.rb: -------------------------------------------------------------------------------- 1 | class AddSecretToNonce < ActiveRecord::Migration 2 | def change 3 | add_column :nonces, :secret, :string 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /db/migrate/20140415163848_add_user_id_to_nonce.rb: -------------------------------------------------------------------------------- 1 | class AddUserIdToNonce < ActiveRecord::Migration 2 | def change 3 | add_column :nonces, :user_id, :integer 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /db/migrate/20140416123614_add_session_id_to_nonce.rb: -------------------------------------------------------------------------------- 1 | class AddSessionIdToNonce < ActiveRecord::Migration 2 | def change 3 | add_column :nonces, :session_id, :string 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- 1 | # encoding: UTF-8 2 | # This file is auto-generated from the current state of the database. Instead 3 | # of editing this file, please use the migrations feature of Active Record to 4 | # incrementally modify your database, and then regenerate this schema definition. 5 | # 6 | # Note that this schema.rb definition is the authoritative source for your 7 | # database schema. If you need to create the application database on another 8 | # system, you should be using db:schema:load, not running all the migrations 9 | # from scratch. The latter is a flawed and unsustainable approach (the more migrations 10 | # you'll amass, the slower it'll run and the greater likelihood for issues). 11 | # 12 | # It's strongly recommended to check this file into your version control system. 13 | 14 | ActiveRecord::Schema.define(:version => 20140416123614) do 15 | 16 | create_table "nonces", :force => true do |t| 17 | t.string "uuid" 18 | t.datetime "created_at", :null => false 19 | t.datetime "updated_at", :null => false 20 | t.string "secret" 21 | t.integer "user_id" 22 | t.string "session_id" 23 | end 24 | 25 | create_table "users", :force => true do |t| 26 | t.string "name" 27 | t.string "btc" 28 | t.integer "signin_count", :default => 0 29 | t.datetime "created_at", :null => false 30 | t.datetime "updated_at", :null => false 31 | t.string "email", :default => "", :null => false 32 | t.string "encrypted_password", :default => "", :null => false 33 | t.string "reset_password_token" 34 | t.datetime "reset_password_sent_at" 35 | t.datetime "remember_created_at" 36 | t.integer "sign_in_count", :default => 0, :null => false 37 | t.datetime "current_sign_in_at" 38 | t.datetime "last_sign_in_at" 39 | t.string "current_sign_in_ip" 40 | t.string "last_sign_in_ip" 41 | end 42 | 43 | add_index "users", ["reset_password_token"], :name => "index_users_on_reset_password_token", :unique => true 44 | 45 | end 46 | -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- 1 | # This file should contain all the record creation needed to seed the database with its default values. 2 | # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup). 3 | # 4 | # Examples: 5 | # 6 | # cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }]) 7 | # Mayor.create(name: 'Emanuel', city: cities.first) 8 | -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitid/bitid-demo/f17de2a36a3e712887445dfb836d4a3b6973df42/lib/assets/.gitkeep -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitid/bitid-demo/f17de2a36a3e712887445dfb836d4a3b6973df42/lib/tasks/.gitkeep -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitid/bitid-demo/f17de2a36a3e712887445dfb836d4a3b6973df42/log/.gitkeep -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The page you were looking for doesn't exist (404) 5 | 17 | 18 | 19 | 20 | 21 |
22 |

The page you were looking for doesn't exist.

23 |

You may have mistyped the address or the page may have moved.

24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The change you wanted was rejected (422) 5 | 17 | 18 | 19 | 20 | 21 |
22 |

The change you wanted was rejected.

23 |

Maybe you tried to change something you didn't have access to.

24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | We're sorry, but something went wrong (500) 5 | 17 | 18 | 19 | 20 | 21 |
22 |

We're sorry, but something went wrong.

23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitid/bitid-demo/f17de2a36a3e712887445dfb836d4a3b6973df42/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file 2 | # 3 | # To ban all spiders from the entire site uncomment the next two lines: 4 | # User-Agent: * 5 | # Disallow: / 6 | -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application. 3 | 4 | APP_PATH = File.expand_path('../../config/application', __FILE__) 5 | require File.expand_path('../../config/boot', __FILE__) 6 | require 'rails/commands' 7 | -------------------------------------------------------------------------------- /test/fixtures/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitid/bitid-demo/f17de2a36a3e712887445dfb836d4a3b6973df42/test/fixtures/.gitkeep -------------------------------------------------------------------------------- /test/functional/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitid/bitid-demo/f17de2a36a3e712887445dfb836d4a3b6973df42/test/functional/.gitkeep -------------------------------------------------------------------------------- /test/integration/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitid/bitid-demo/f17de2a36a3e712887445dfb836d4a3b6973df42/test/integration/.gitkeep -------------------------------------------------------------------------------- /test/performance/browsing_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | require 'rails/performance_test_help' 3 | 4 | class BrowsingTest < ActionDispatch::PerformanceTest 5 | # Refer to the documentation for all available options 6 | # self.profile_options = { :runs => 5, :metrics => [:wall_time, :memory] 7 | # :output => 'tmp/performance', :formats => [:flat] } 8 | 9 | def test_homepage 10 | get '/' 11 | end 12 | end 13 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- 1 | ENV["RAILS_ENV"] = "test" 2 | require File.expand_path('../../config/environment', __FILE__) 3 | require 'rails/test_help' 4 | 5 | class ActiveSupport::TestCase 6 | # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order. 7 | # 8 | # Note: You'll currently still have to declare fixtures explicitly in integration tests 9 | # -- they do not yet inherit this setting 10 | fixtures :all 11 | 12 | # Add more helper methods to be used by all tests here... 13 | end 14 | -------------------------------------------------------------------------------- /test/unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitid/bitid-demo/f17de2a36a3e712887445dfb836d4a3b6973df42/test/unit/.gitkeep -------------------------------------------------------------------------------- /test/unit/nonce_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class NonceTest < ActiveSupport::TestCase 4 | 5 | test "should create nonce" do 6 | nonce = Nonce.new(session_id:"abcd") 7 | assert nonce.save 8 | assert_equal 16, nonce.uuid.length 9 | assert_equal "abcd", nonce.session_id 10 | end 11 | 12 | test "should destroy other identical session_id nonce" do 13 | Nonce.create!(session_id:"abcd") 14 | nonce = Nonce.new(session_id:"abcd") 15 | assert nonce.save 16 | end 17 | 18 | test "should expire after 10 minutes" do 19 | nonce = Nonce.create(session_id:"123") 20 | assert !nonce.expired? 21 | 22 | nonce.created_at = 20.minutes.ago 23 | assert nonce.expired? 24 | end 25 | end -------------------------------------------------------------------------------- /test/unit/user_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class UserTest < ActiveSupport::TestCase 4 | 5 | test "should create user" do 6 | user = User.new(btc:"1Q2TWHE3GMdB6BZKafqwxXtWAWgFt5Jvm3") 7 | assert user.save 8 | end 9 | end -------------------------------------------------------------------------------- /vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitid/bitid-demo/f17de2a36a3e712887445dfb836d4a3b6973df42/vendor/assets/javascripts/.gitkeep -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitid/bitid-demo/f17de2a36a3e712887445dfb836d4a3b6973df42/vendor/assets/stylesheets/.gitkeep -------------------------------------------------------------------------------- /vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitid/bitid-demo/f17de2a36a3e712887445dfb836d4a3b6973df42/vendor/plugins/.gitkeep --------------------------------------------------------------------------------