Coder Social home page Coder Social logo

sinatra-secure-password-lab-v-000's Introduction

Secure Password Lab

Objectives

  1. Use bcrypt, a gem that works to encrypt passwords.
  2. Use Active Record's has_secure_password method.
  3. Sign up and Sign in a user with a secure, encrypted password.

The Challenge

You're back at Flatiron Bank, where the executive staff has been alerted that the developers who built the authentication system forgot to use password encryption. That means that all of the bank's user passwords are easily available to hackers and bad actors. The CTO has called you in to implement secure passwords in the bank's system.

Use the bcrypt gem, to implement this strategy.

Starter Code

We've got a basic Sinatra MVC application for our bank. In our application_controller we have two helper methods defined; logged_in? returns true or false based on the presence of a session[:user_id] and current_user returns the instance of the logged in user, based on the session[:user_id].

We have five actions defined:

  • get "/" do renders an index.erb file with links to signup or login.
  • get '/signup' renders a form to create a new user. The form includes fields for username and password.
  • get '/login' renders a form for logging in.
  • get '/account' renders an account.erb page, which should be displayed once a user successfully logs in.
  • get '/failure' renders a failure.erb page. This will be accessed if there is an error logging in or signing up.
  • get '/logout' clears the session data and redirects to the home page.

The Helper Methods at the bottom of the controller are part of Sinatra's configurations for helper methods. These are methods that allow us to add logic to our views. Views automatically have access to all helper methods thanks to Sinatra.

We've also stubbed out a user model in app/models/user.rb which inherits from ActiveRecord::Base.

Fork and clone this repository and run bundle install to get started. Preview your work by running shotgun and navigating to http://localhost:9393 in your browser.

To Do

Get the tests to pass. You'll need to use 'bcrypt' to salt your password and make sure that it is encrypted.

You'll also need to create a users table. A user should have a username and password.

Bonus

Add a migration that gives the user model a balance (should start for any user at $0), and add functionality on the account page to make deposits and withdrawals. A user should never be able to withdraw more money than they have in their account.

View Secure Password Lab on Learn.co and start learning to code for free.

sinatra-secure-password-lab-v-000's People

Contributors

annjohn avatar brennenawana avatar danielseehausen avatar dfenjves avatar drakeltheryuujin avatar jakebrady5 avatar maxwellbenton avatar pletcher avatar sophiedebenedetto avatar tddycks avatar victhevenot avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

sinatra-secure-password-lab-v-000's Issues

Test passing without creating new user on sign up

Ok so I was looking at the tests on this lab and noticed currently I can pass without creating a user on sign up.

      post "/signup" do 
	if params.values.any?{|v| v.empty?}
	  redirect '/failure'
	else
	  redirect '/login'
	end
      end

The above code passes because the tests are creating the users for us.

I'd say add a test for sign up that checks if that user was created after filling the sign up form to ensure test doesn't pass with incomplete code.

Unneeded "success" route in starter code

The starter code has an unnecessary route that is not required by the tests. Upon successful login, the test expects to be redirected to the /account route, not /success.
Also, the /account route does not check to see if the user is logged in.

get "/success" do
if logged_in?
erb :success
else
redirect "/login"
end
end

needs_migration? no_method error

Change config.ru to the following:

require './config/environment'

if ActiveRecord::Migrator.needs_migration?
raise 'Migrations are pending. Run rake db:migrate to resolve the issue.'
end

run ApplicationController

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.