summaryrefslogtreecommitdiff
path: root/users/lib/warden/strategies/secure_remote_password.rb
blob: 594e27e4662b2501175dce76a32c8b16862d489c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
module Warden
  module Strategies
    class SecureRemotePassword < Warden::Strategies::Base

      def valid?
        handshake? || authentication?
      end

      def authenticate!
        if authentication?
          validate!
        else  # handshake
          initialize!
        end
      end

      protected

      def handshake?
        params['A'] && params['login']
      end

      def authentication?
        params['client_auth'] && session[:handshake]
      end

      def validate!
        user = session[:handshake].authenticate(params['client_auth'].hex)
        user ? success!(user) : fail!(:password => "wrong_password")
      end

      def initialize!
        if user = User.find_by_login(id)
          session[:handshake] = user.initialize_auth(params['A'].hex)
          custom! json_response(session[:handshake])
        else
          fail! :login => "user_not_found"
        end
      end

      def json_response(object)
        [ 200,
          {"Content-Type" => "application/json; charset=utf-8"},
          [object.to_json]
        ]
      end

      def id
        params["id"] || params["login"]
      end
    end
  end
  Warden::Strategies.add :secure_remote_password,
    Warden::Strategies::SecureRemotePassword

end