-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
161 lines (161 loc) · 4.15 KB
/
config.lua
File metadata and controls
161 lines (161 loc) · 4.15 KB
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
return {
DB = 'postgresql://postgres:password@0.0.0.0:5432/pico',
ROUTES = {
[''] = {
GET = {
VIEW = {
{
TYPE = 'LINKS',
LINKS = {
{ value = 'login', label = 'Login' },
{ value = 'register', label = 'Register' },
},
},
},
},
},
['login'] = {
GET = {
VIEW = {
{
TYPE = 'POSTFORM',
TITLE = 'Login',
TARGET = '/login',
FIELDS = {
{ id = 'user_email', type = 'email', label = 'Email' },
{ id = 'user_password', type = 'password', label = 'Password' },
{ id = 'button', type = 'submit', value = 'Login' },
},
},
},
},
POST = {
VIEW = {
{
TYPE = 'MARKDOWN',
},
{
TYPE = 'LINKS',
LINKS = {
{ value = '', label = 'Home' },
},
},
},
SQL = 'authenticate_user.sql',
PREPROCESS = function(params, jwt)
print('Login PREPROCESS:', params, 'JWT:', jwt)
if jwt and jwt.userId then
print('User already authenticated as:', jwt.userId)
end
return params
end,
POSTPROCESS = function(obj, jwt)
print('Login POSTPROCESS:', obj, 'JWT:', jwt)
if obj and obj.id then
return 'Login successful! Welcome back.'
else
return 'Invalid email or password. Please try again.'
end
end,
SETJWT = function(obj, jwt)
if obj and obj.id then
return {
userId = obj.id,
email = obj.email,
}
end
return nil
end,
},
},
['register'] = {
GET = {
VIEW = {
{
TYPE = 'POSTFORM',
TITLE = 'Register',
TARGET = '/register',
FIELDS = {
{ id = 'user_email', type = 'email', label = 'Email' },
{ id = 'user_password', type = 'password', label = 'Password' },
{ id = 'button', type = 'submit', value = 'Register' },
},
},
},
},
POST = {
VIEW = {
{
TYPE = 'MARKDOWN',
},
{
TYPE = 'LINKS',
LINKS = {
{ value = 'login', label = 'Login' },
{ value = '', label = 'Home' },
},
},
},
SQL = 'register_user.sql',
POSTPROCESS = function(obj, jwt)
print('Registration POSTPROCESS:', obj, 'JWT:', jwt)
if obj and obj.id then
return 'Registration successful! Please login with your new account.'
else
return 'Registration failed. Email may already be in use.'
end
end,
},
},
['test-jwt'] = {
GET = {
PREPROCESS = function(params, jwt)
print('Test PREPROCESS - params:', params, 'JWT:', jwt)
if jwt then
print('JWT found - userId:', jwt.userId)
params.authenticated_user = jwt.userId
else
print 'No JWT found'
params.authenticated_user = nil
end
return params
end,
POSTPROCESS = function(obj, jwt)
print('Test POSTPROCESS - obj:', obj, 'JWT:', jwt)
if jwt then
return {
message = 'Hello authenticated user ' .. (jwt.userId or 'unknown'),
jwt_present = true,
user_id = jwt.userId,
}
else
return {
message = 'Hello anonymous user',
jwt_present = false,
}
end
end,
},
},
['ping'] = {
GET = {
VIEW = {
{
TYPE = 'OBJECT',
},
},
SQL = 'pong.sql',
POSTPROCESS = function(obj, jwt)
return { response = obj, timestamp = os.time() }
end,
},
},
['logout'] = {
POST = {
SETJWT = function()
return nil
end,
},
},
},
}