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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
|
-module(jchat_auth).
-export([
authenticate_request/1,
register_user/3,
login_user/2,
validate_token/1,
generate_jwt/2,
hash_password/1,
verify_password/2,
get_user_by_id/1,
get_user_by_email/1
]).
-include("jchat.hrl").
%% JWT secret - in production, load from config/environment
-define(JWT_SECRET, <<"your-secret-key-change-this-in-production">>).
-define(TOKEN_EXPIRY_HOURS, 24).
%% Main authentication entry point
authenticate_request(Req) ->
case cowboy_req:header(<<"authorization">>, Req) of
undefined ->
{error, #{
type => <<"unauthorized">>,
status => 401,
detail => <<"Missing Authorization header">>,
prompt => <<"register">> % Signal to show registration prompt
}};
AuthHeader ->
case jchat_utils:extract_auth_token(AuthHeader) of
{ok, Token} ->
validate_token(Token);
{error, invalid_auth_format} ->
{error, #{
type => <<"unauthorized">>,
status => 401,
detail => <<"Invalid Authorization header format. Use 'Bearer <token>'">>,
prompt => <<"register">>
}};
{error, no_auth_header} ->
{error, #{
type => <<"unauthorized">>,
status => 401,
detail => <<"Missing Authorization header">>,
prompt => <<"register">>
}}
end
end.
%% Register a new user
register_user(Email, Password, DisplayName) ->
case validate_registration_data(Email, Password, DisplayName) of
ok ->
case get_user_by_email(Email) of
{ok, _ExistingUser} ->
{error, #{
type => <<"userExists">>,
status => 400,
detail => <<"User with this email already exists">>
}};
{error, not_found} ->
UserId = jchat_utils:generate_id(),
PasswordHash = hash_password(Password),
User = #user{
id = UserId,
email = Email,
password_hash = PasswordHash,
display_name = DisplayName,
created_at = jchat_utils:now_iso8601(),
is_active = true,
auth_provider = <<"local">>,
auth_provider_id = null
},
case jchat_db:create_user(User) of
{ok, CreatedUser} ->
Token = generate_jwt(UserId, Email),
{ok, #{
<<"user">> => user_to_json(CreatedUser),
<<"token">> => Token,
<<"tokenType">> => <<"Bearer">>,
<<"expiresIn">> => ?TOKEN_EXPIRY_HOURS * 3600
}};
{error, Reason} ->
{error, #{
type => <<"serverFail">>,
status => 500,
detail => <<"Failed to create user: ", (iolist_to_binary(io_lib:format("~p", [Reason])))/binary>>
}}
end;
{error, Reason} ->
{error, #{
type => <<"serverFail">>,
status => 500,
detail => <<"Database error: ", (iolist_to_binary(io_lib:format("~p", [Reason])))/binary>>
}}
end;
{error, ValidationError} ->
{error, ValidationError}
end.
%% Login existing user
login_user(Email, Password) ->
case get_user_by_email(Email) of
{ok, User} ->
case verify_password(Password, User#user.password_hash) of
true ->
case User#user.is_active of
true ->
Token = generate_jwt(User#user.id, Email),
% Update last login time
UpdatedUser = User#user{last_login_at = jchat_utils:now_iso8601()},
jchat_db:update_user(UpdatedUser),
{ok, #{
<<"user">> => user_to_json(UpdatedUser),
<<"token">> => Token,
<<"tokenType">> => <<"Bearer">>,
<<"expiresIn">> => ?TOKEN_EXPIRY_HOURS * 3600
}};
false ->
{error, #{
type => <<"accountDisabled">>,
status => 403,
detail => <<"Account is disabled">>
}}
end;
false ->
{error, #{
type => <<"invalidCredentials">>,
status => 401,
detail => <<"Invalid email or password">>
}}
end;
{error, not_found} ->
{error, #{
type => <<"invalidCredentials">>,
status => 401,
detail => <<"Invalid email or password">>
}};
{error, Reason} ->
{error, #{
type => <<"serverFail">>,
status => 500,
detail => <<"Database error: ", (iolist_to_binary(io_lib:format("~p", [Reason])))/binary>>
}}
end.
%% Validate JWT token
validate_token(Token) ->
try
case jwt:decode(Token, ?JWT_SECRET) of
{ok, Claims} ->
case validate_token_claims(Claims) of
{ok, UserId, Email} ->
case get_user_by_id(UserId) of
{ok, User} ->
case User#user.is_active of
true ->
{ok, #{
user_id => UserId,
email => Email,
user => User
}};
false ->
{error, #{
type => <<"accountDisabled">>,
status => 403,
detail => <<"Account is disabled">>
}}
end;
{error, not_found} ->
{error, #{
type => <<"invalidToken">>,
status => 401,
detail => <<"User no longer exists">>
}};
{error, Reason} ->
{error, #{
type => <<"serverFail">>,
status => 500,
detail => <<"Database error: ", (iolist_to_binary(io_lib:format("~p", [Reason])))/binary>>
}}
end;
{error, Reason} ->
{error, #{
type => <<"invalidToken">>,
status => 401,
detail => Reason
}}
end;
{error, _Reason} ->
{error, #{
type => <<"invalidToken">>,
status => 401,
detail => <<"Invalid or malformed token">>,
prompt => <<"register">>
}}
end
catch
_:_ ->
{error, #{
type => <<"invalidToken">>,
status => 401,
detail => <<"Token validation failed">>,
prompt => <<"register">>
}}
end.
%% Generate JWT token
generate_jwt(UserId, Email) ->
Now = erlang:system_time(second),
Expiry = Now + (?TOKEN_EXPIRY_HOURS * 3600),
Claims = #{
<<"sub">> => UserId,
<<"email">> => Email,
<<"iat">> => Now,
<<"exp">> => Expiry,
<<"iss">> => <<"jchat-server">>
},
{ok, Token} = jwt:encode(<<"HS256">>, Claims, ?JWT_SECRET),
Token.
%% Hash password using bcrypt with fallback
hash_password(Password) ->
try
Salt = bcrypt:gen_salt(),
Hash = bcrypt:hashpw(Password, Salt),
<<"bcrypt$", Hash/binary>>
catch
_:_ ->
% Fallback to crypto-based hashing
logger:warning("bcrypt failed, using crypto fallback for password hashing"),
crypto_hash_password(Password)
end.
%% Verify password against hash
verify_password(Password, Hash) ->
case Hash of
<<"bcrypt$", BcryptHash/binary>> ->
try
bcrypt:verify(Password, BcryptHash)
catch
_:_ ->
logger:warning("bcrypt verify failed"),
false
end;
<<"crypto$", CryptoHash/binary>> ->
crypto_verify_password(Password, CryptoHash);
_ ->
% Legacy bcrypt hash without prefix
try
bcrypt:verify(Password, Hash)
catch
_:_ ->
false
end
end.
%% Fallback crypto-based password hashing
crypto_hash_password(Password) ->
Salt = crypto:strong_rand_bytes(16),
Hash = crypto:hash(sha256, <<Salt/binary, Password/binary>>),
SaltHex = hex_encode(Salt),
HashHex = hex_encode(Hash),
<<"crypto$", SaltHex/binary, "$", HashHex/binary>>.
%% Verify crypto-based password
crypto_verify_password(Password, CryptoHash) ->
case binary:split(CryptoHash, <<"$">>) of
[SaltHex, HashHex] ->
try
Salt = hex_decode(SaltHex),
ExpectedHash = hex_decode(HashHex),
ActualHash = crypto:hash(sha256, <<Salt/binary, Password/binary>>),
ActualHash =:= ExpectedHash
catch
_:_ ->
false
end;
_ ->
false
end.
%% Hex encoding/decoding helpers
hex_encode(Binary) ->
<< <<(hex_char(N div 16)), (hex_char(N rem 16))>> || <<N>> <= Binary >>.
hex_decode(Hex) ->
<< <<(hex_to_int(H1) * 16 + hex_to_int(H2))>> || <<H1, H2>> <= Hex >>.
hex_char(N) when N < 10 -> $0 + N;
hex_char(N) -> $a + N - 10.
hex_to_int(C) when C >= $0, C =< $9 -> C - $0;
hex_to_int(C) when C >= $a, C =< $f -> C - $a + 10;
hex_to_int(C) when C >= $A, C =< $F -> C - $A + 10.
%% Get user by ID
get_user_by_id(UserId) ->
jchat_db:get_user_by_id(UserId).
%% Get user by email
get_user_by_email(Email) ->
jchat_db:get_user_by_email(Email).
%% Private helper functions
validate_registration_data(Email, Password, DisplayName) ->
case validate_email(Email) of
ok ->
case validate_password(Password) of
ok ->
case validate_display_name(DisplayName) of
ok -> ok;
Error -> Error
end;
Error -> Error
end;
Error -> Error
end.
validate_email(Email) when is_binary(Email) ->
EmailStr = binary_to_list(Email),
case re:run(EmailStr, "^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$") of
{match, _} ->
case byte_size(Email) =< 255 of
true -> ok;
false -> {error, #{
type => <<"invalidArguments">>,
status => 400,
detail => <<"Email address is too long">>
}}
end;
nomatch ->
{error, #{
type => <<"invalidArguments">>,
status => 400,
detail => <<"Invalid email address format">>
}}
end;
validate_email(_) ->
{error, #{
type => <<"invalidArguments">>,
status => 400,
detail => <<"Email must be a string">>
}}.
validate_password(Password) when is_binary(Password) ->
case byte_size(Password) of
Size when Size >= 8, Size =< 128 ->
ok;
Size when Size < 8 ->
{error, #{
type => <<"invalidArguments">>,
status => 400,
detail => <<"Password must be at least 8 characters long">>
}};
_ ->
{error, #{
type => <<"invalidArguments">>,
status => 400,
detail => <<"Password is too long">>
}}
end;
validate_password(_) ->
{error, #{
type => <<"invalidArguments">>,
status => 400,
detail => <<"Password must be a string">>
}}.
validate_display_name(DisplayName) when is_binary(DisplayName) ->
case byte_size(DisplayName) of
Size when Size >= 1, Size =< 100 ->
% Check for valid characters (letters, numbers, spaces, basic punctuation)
case re:run(DisplayName, "^[a-zA-Z0-9 ._-]+$", [unicode]) of
{match, _} -> ok;
nomatch -> {error, #{
type => <<"invalidArguments">>,
status => 400,
detail => <<"Display name contains invalid characters">>
}}
end;
Size when Size < 1 ->
{error, #{
type => <<"invalidArguments">>,
status => 400,
detail => <<"Display name cannot be empty">>
}};
_ ->
{error, #{
type => <<"invalidArguments">>,
status => 400,
detail => <<"Display name is too long">>
}}
end;
validate_display_name(_) ->
{error, #{
type => <<"invalidArguments">>,
status => 400,
detail => <<"Display name must be a string">>
}}.
validate_token_claims(Claims) ->
try
UserId = maps:get(<<"sub">>, Claims),
Email = maps:get(<<"email">>, Claims),
Expiry = maps:get(<<"exp">>, Claims),
Now = erlang:system_time(second),
case Expiry > Now of
true ->
{ok, UserId, Email};
false ->
{error, <<"Token has expired">>}
end
catch
_:_ ->
{error, <<"Invalid token claims">>}
end.
user_to_json(User) ->
#{
<<"id">> => User#user.id,
<<"email">> => User#user.email,
<<"displayName">> => User#user.display_name,
<<"createdAt">> => User#user.created_at,
<<"lastLoginAt">> => User#user.last_login_at,
<<"isActive">> => User#user.is_active,
<<"authProvider">> => User#user.auth_provider
}.
|