blob: 8266e2d89d719ec2f1f0b5fdad5eeb39d076ba99 (
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
|
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 => "Could not log in")
end
def initialize!
user = User.find_by_param(id)
session[:handshake] = user.initialize_auth(params['A'].hex)
custom! json_response(session[:handshake])
rescue RECORD_NOT_FOUND
fail! :login => "User not found!"
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
|