Devise login mobile api in ruby on rails

In routes.rb

namespace :api do
  namespace :v1 do
    devise_scope :user do
      post "/sign_in", :to => 'session#create'
      delete "/sign_out", :to => 'session#destroy'
    end
  end 
 

In  Api::V1::SessionsController:-

class Api::V1::SessionsController < Api::V1::ApiController
    before_filter :authenticate_user!, :except => [:create]
    skip_before_filter  :verify_authenticity_token
    respond_to :json
   
    def create   
        email = params[:email]
        password = params[:password]
        if request.format != :json
          render :status=>406, :json=>{:message=>"The request must be json"}
          return
        end

        if email.nil? and password.nil?
          render :status=>400,
          :json=>{:message=>"The request must contain the user email and password."}
          return
        end

        @user=User.find_by_email(email.downcase)
   
        if @user.blank?
          logger.info("User #{email} failed signin, user cannot be found.")
          render :status=>401, :json=>{:message=>"Invalid email or passoword."}
          return
        end
           if not @user.valid_password?(password)
          logger.info("User #{email} failed signin, password \"#{password}\" is invalid")
          render :status=>401, :json=>{:message=>"Invalid email or password."}
        else
          sign_in("user", @user)
          render :status=>200, :json=>{:status => true,:user_id=>@user.id
            }
          end
    end

    def logout       
        if request.format != :json
          render :status=>406, :json=>{:message=>"The request must be json"}
          return
        end   

       if  Devise.sign_out_all_scopes ? sign_out : sign_out(resource_name)       
          render :status=>200, :json=>{:message=>"Success"}
          return
      else
          render :status=>406, :json=>{:message=>"0"}
          return
      end
    end
end

Comments

Popular Posts

How to pass hash in Postman

nginx: unrecognized service

Bootstrap Select Picker append add new item if search not exist

Reading Excel Sheets using "Roo" gem in ruby on rails

Add CORS to Nginx on AWS Elastic Beanstalk

Enable gzip compression on Elastic Beanstalk with nginx

Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock'

Get video duration by URL in Ruby on Rails

site-enables nginx setting in ruby in rails