Setup user login/logout #21
9 changed files with 134 additions and 1 deletions
40
app/controllers/sessions_controller.rb
Normal file
40
app/controllers/sessions_controller.rb
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
class SessionsController < ApplicationController
|
||||||
|
# GET /sessions/new
|
||||||
|
def new
|
||||||
|
@session = Session.new
|
||||||
|
end
|
||||||
|
|
||||||
|
# POST /sessions or /sessions.json
|
||||||
|
def create
|
||||||
|
@session = Session.new(session_params)
|
||||||
|
|
||||||
|
respond_to do |format|
|
||||||
|
if @session.save
|
||||||
|
session[:current_user_id] = @session.user_id
|
||||||
|
Rails.logger.info("ID: #{@session.user_id}")
|
||||||
|
|
||||||
|
format.html { redirect_to root_url, notice: "Session was successfully created." }
|
||||||
|
format.json { render :show, status: :created, location: @session }
|
||||||
|
else
|
||||||
|
format.html { render :new, status: :unprocessable_entity, alert: @session.errors }
|
||||||
|
format.json { render json: @session.errors, status: :unprocessable_entity }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# DELETE /sessions/1 or /sessions/1.json
|
||||||
|
def destroy
|
||||||
|
session[:current_user_id] = nil
|
||||||
|
|
||||||
|
respond_to do |format|
|
||||||
|
format.html { redirect_to root_url, notice: "Session was successfully destroyed." }
|
||||||
|
format.json { head :no_content }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
# Only allow a list of trusted parameters through.
|
||||||
|
def session_params
|
||||||
|
params.require(:session).permit(:email, :password)
|
||||||
|
end
|
||||||
|
end
|
2
app/helpers/sessions_helper.rb
Normal file
2
app/helpers/sessions_helper.rb
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
module SessionsHelper
|
||||||
|
end
|
27
app/views/sessions/_form.html.erb
Normal file
27
app/views/sessions/_form.html.erb
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
<%= form_with(model: session, class: "contents") do |form| %>
|
||||||
|
<% if session.errors.any? %>
|
||||||
|
<div id="error_explanation" class="bg-red-50 text-red-500 px-3 py-2 font-medium rounded-lg mt-3">
|
||||||
|
<h2><%= pluralize(session.errors.count, "error") %> prohibited this session from being saved:</h2>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<% session.errors.each do |error| %>
|
||||||
|
<li><%= error.full_message %></li>
|
||||||
|
<% end %>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<div class="my-5">
|
||||||
|
<%= form.label :email %>
|
||||||
|
<%= form.text_field :email, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="my-5">
|
||||||
|
<%= form.label :password %>
|
||||||
|
<%= form.password_field :password, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="inline">
|
||||||
|
<%= form.submit class: "rounded-lg py-3 px-5 bg-blue-600 text-white inline-block font-medium cursor-pointer" %>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
2
app/views/sessions/_session.html.erb
Normal file
2
app/views/sessions/_session.html.erb
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
<div id="<%= dom_id session %>">
|
||||||
|
</div>
|
2
app/views/sessions/_session.json.jbuilder
Normal file
2
app/views/sessions/_session.json.jbuilder
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
json.extract! session, :id, :created_at, :updated_at
|
||||||
|
json.url session_url(session, format: :json)
|
7
app/views/sessions/new.html.erb
Normal file
7
app/views/sessions/new.html.erb
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
<div class="mx-auto md:w-2/3 w-full">
|
||||||
|
<h1 class="font-bold text-4xl">New session</h1>
|
||||||
|
|
||||||
|
<%= render "form", session: @session %>
|
||||||
|
|
||||||
|
<%= link_to "Back to sessions", sessions_path, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
||||||
|
</div>
|
|
@ -1,5 +1,6 @@
|
||||||
Rails.application.routes.draw do
|
Rails.application.routes.draw do
|
||||||
resources :sessions, only: %i[new create destroy]
|
resources :sessions, only: %i[new create]
|
||||||
|
resource :session, only: :destroy
|
||||||
resources :users
|
resources :users
|
||||||
resources :credit_card_bills
|
resources :credit_card_bills
|
||||||
resource :dashboard, only: :show
|
resource :dashboard, only: :show
|
||||||
|
|
27
test/controllers/sessions_controller_test.rb
Normal file
27
test/controllers/sessions_controller_test.rb
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
require "test_helper"
|
||||||
|
|
||||||
|
class SessionsControllerTest < ActionDispatch::IntegrationTest
|
||||||
|
test "should get new" do
|
||||||
|
get new_session_url
|
||||||
|
assert_response :success
|
||||||
|
end
|
||||||
|
|
||||||
|
test "should create session" do
|
||||||
|
user = users(:one)
|
||||||
|
params = {
|
||||||
|
session: {
|
||||||
|
email: user.email,
|
||||||
|
password: "secret"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
post sessions_url, params: params
|
||||||
|
|
||||||
|
assert_redirected_to root_url
|
||||||
|
end
|
||||||
|
|
||||||
|
test "should destroy session" do
|
||||||
|
delete session_url(@session)
|
||||||
|
|
||||||
|
assert_redirected_to root_url
|
||||||
|
end
|
||||||
|
end
|
25
test/system/sessions_test.rb
Normal file
25
test/system/sessions_test.rb
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
require "application_system_test_case"
|
||||||
|
|
||||||
|
class SessionsTest < ApplicationSystemTestCase
|
||||||
|
setup do
|
||||||
|
@user = users(:one)
|
||||||
|
end
|
||||||
|
|
||||||
|
test "should create session" do
|
||||||
|
visit new_session_url
|
||||||
|
|
||||||
|
fill_in "Email", with: @user.email
|
||||||
|
fill_in "Password", with: "secret"
|
||||||
|
|
||||||
|
click_on "Create Session"
|
||||||
|
|
||||||
|
assert_text "Session was successfully created"
|
||||||
|
end
|
||||||
|
|
||||||
|
test "should destroy Session" do
|
||||||
|
visit root_url
|
||||||
|
click_on "Log out", match: :first
|
||||||
|
|
||||||
|
assert_text "Session was successfully destroyed"
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue