lulu 0.0.721

A mini lua runtime
Documentation
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
434
435

local class! HttpMetadata(
  @default_to({})
  #headers,
  #body,
  @default_to("")
  #url,
  @default_to("")
  #uri,
  @default_to({})
  #query,
  @default_to("GET")
  #method,
), {
  init(){
    if self.uri:find("?") then
      local query_str = self.uri:match("%?(.*)$")
      for key, val in query_str:gmatch("([^&=?]+)=([^&=?]+)") do
        self.query[key] = val
      end
    end
  }
  json(){
    self.headers["Content-Type"] = "application/json"
    return self
  }
  is_json(){
    return self.headers["Content-Type"] == "application/json"
  }
};

class! Request:HttpMetadata;
class! Response:HttpMetadata(
  @default_to(200)
  #status,
);


local function _handle_response(response)
  local body = response.body
  local headers = response.headers or {}
  local status = response.status or 0

  local res = {
    status = status,
    headers = headers,
  }

  res.text = function()
    if type(body) == "string" then
      return body
    elseif type(body) == "userdata" then
      return body:to_string()
    end
    return tostring(body)
  end

  res.json = function()
    local text = res.text()
    local ok, decoded = pcall(serde.json.decode, text)
    if not ok then
      error("Invalid JSON: " .. tostring(decoded))
    end
    return decoded
  end

  res.into_many = function(_class)
    local params = {}
    try_catch! {
      params = res.json()
    }, {
      try_catch! {
        params = res.yaml()
      }, {
        params = {}
      }
    }

    local items = Vec()
    for k, v in pairs(params) do
      items:push(_class(v))
    end

    return items
  end

  res.into = function(_class)
    if not _class then return end

    if _class.deserialize then
      return _class:deserialize(res.text())
    else
      local params = {}
      try_catch! {
        params = res.json()
      }, {
        try_catch! {
          params = res.yaml()
        }, {
          params = {}
        }
      }

      return _class(params)
    end
  end

  res.yaml = function()
    local text = res.text()
    local ok, decoded = pcall(serde.yaml.decode, text)
    if not ok then
      error("Invalid YAML: " .. tostring(decoded))
    end
    return decoded
  end

  res.body = function()
    return body
  end

  return res
end

macro {
  ____request_method($method, $method_string){
    net.http.$method = function(url, options)
      local data = options or {}
      local response = net.http.request {
        method = data.method or $method_string,
        url = url,
        headers = data.headers or {},
        body = data.body,
      }
      return _handle_response(response)
    end
  }
}

____request_method! send, "GET";
____request_method! get, "GET";
____request_method! post, "POST";
____request_method! patch, "PATCH";
____request_method! put, "PUT";
____request_method! delete, "DELETE";

Serve = {}

--------------------------------------------------
-- Utilities
--------------------------------------------------
local function join_path(a, b)
  if a:sub(-1) == "/" then a = a:sub(1, -2) end
  if b:sub(1, 1) == "/" then b = b:sub(2) end
  return a .. "/" .. b
end

local function clone(tbl)
  local t = {}
  for k, v in pairs(tbl) do
    t[k] = v
  end
  return t
end

local function match_path(template, actual)
  local params = {}

  -- Escape Lua pattern magic characters
  local escaped = template:gsub("([%^%$%(%)%%%.%[%]%*%+%-%?])", "%%%1")

  -- Replace :param placeholders with capture groups
  local pattern = escaped:gsub(":(%w+)", function(pname)
    params[#params+1] = pname
    return "([^/]+)"
  end)

  -- Allow optional trailing slash in both template and actual
  pattern = pattern:gsub("/+$", "") .. "/?$"

  -- Try to match
  local captures = { actual:match("^" .. pattern) }

  -- No match? fail fast
  if #captures == 0 then
    return false
  end

  -- Build param map
  local map = {}
  for i, pname in ipairs(params) do
    map[pname] = captures[i]
  end

  return true, map
end

local function clean_uri(uri)
  return String(uri):split('?'):get(1)
end

function Serve.Server(addr, fn)
  local server = {
    __addr = addr,
    __controllers = {},
    __services = {},
    __middlewares = {},
  }

  function server:use(controller)
    -- Instantiate the controller with injected services
    if controller.__call_init then
      local instance = controller(self.__services)
      table.insert(self.__controllers, instance)
    elseif controller then
      table.insert(self.__middlewares, controller)
    end
    return server
  end

  function server:provide(service)
    local meta = getmetatable(service)
    if meta and meta.__is_service then
      self.__services[meta.__name] = service()
    end
    return server
  end

  function server:start()
    net.http.serve(self.__addr, function(req)
      return server:_handle(req)
    end)
    return server
  end

  function server:_handle(req)
    for _, ctrl in ipairs(self.__controllers) do
      local cmeta = ctrl.controller
      for _, route in ipairs(cmeta.__routes) do
        local matched, params = match_path(route.path, clean_uri(req.uri))
        if route.method == req.method and matched then
          local req = Request(req)

          req.params = params
          
          for _, mw in ipairs(server.__middlewares) do
            local mr = mw:handle(req)
            if mr then
              return mr
            end
          end

          for _, guard in ipairs(cmeta.__guards) do
            local gr = guard.check(req)
            if not gr or instanceof(gr, Response) then
              return gr or { body = "Unauthorized", status = 401 }
            end
          end

          for _, guard in ipairs(route.guards or {}) do
            local gr = guard.check(req)
            if not gr or instanceof(gr, Response) then
              return gr or { body = "Unauthorized", status = 401 }
            end
          end

          for _, mw in ipairs(cmeta.__middlewares) do
            local mr = mw:handle(req)
            if mr then
              return mr
            end
          end
          for _, mw in ipairs(route.middlewares or {}) do
            local mr = mw:handle(req)
            if mr then
              return mr
            end
          end

          ctrl.req = req
          local result = route.handler(ctrl)
          ctrl.req = nil
          local body = result
          local headers = {}
          
          if instanceof(result, Response) then
            return result
          end

          return {
            body = body,
            headers = {},
            status = 200
          }
        end
      end
    end

    return { body = "Not Found", status = 404 }
  end

  if fn then fn(server) end
  return server
end

function Serve.Controller(base_path)
  local meta = {
    __base = base_path or "",
    __routes = {},
    __middlewares = {},
    __guards = {}
  }

  return function(class)
    class.controller = meta
    return class
  end
end

function Serve.UseGuard(guard)
  return decorator! {
    (_class, method){
      for _, route in ipairs(_class.controller.__routes) do
        if route.handler == method then
          table.insert(route.guards, guard)
        end
      end
      return method
    }
    (_class){
      table.insert(_class.controller.__guards, guard)
      return _class
    }
  }
end

function Serve.UseMiddleware(mw)
  return decorator! {
    (_class, method){
      for _, route in ipairs(class.controller.__routes) do
        if route.handler == method then
          table.insert(route.middlewares, mw)
        end
      end
      return method
    }
    (_class){
      table.insert(_class.controller.__middlewares, mw)
      return _class
    }
  }
end

local function make_method_decorator(method)
  return function(path)
    return function(class, fn)
      table.insert(class.controller.__routes, {
        method = method,
        path = join_path(class.controller.__base, path),
        handler = fn,
        guards = {},
        middlewares = {},
      })
      return fn
    end
  end
end

Serve.Get = make_method_decorator("GET")
Serve.Post = make_method_decorator("POST")
Serve.Put = make_method_decorator("PUT")
Serve.Patch = make_method_decorator("PATCH")
Serve.Delete = make_method_decorator("DELETE")

function Serve.Service(class, name)
  setmetatable(class, {
    __is_service = true,
    __name = name or tostring(class)
  })
  return class
end

function Serve.Guard(fn)
  return  {
    __type = "guard",
    check = fn
  }
end

function Serve.Middleware(class, fn)
  return  {
    __type = "middleware",
    handle = fn
  }
end

function Serve.Param(name)
  return function(self)
    return self.req.params[name]
  end
end

function Serve.Query(name)
  return function(self)
    return self.req.query[name]
  end
end

function Serve.Context(name)
  return function(self)
    return self.req[name]
  end
end

function Serve.Body(Class)
  return function(self)
    if Class then
      return Class:deserialize(self.req.body:to_string())
    else
      return self.req.body
    end
  end
end

function Serve.Serialized(class, method)
  return function(self)
    local result = method(self)
    if instanceof(result, Response) then
      return result
    end
    if not result.serialize then
      print("Class is not serializable")
    end
    return result:serialize()
  end
end