Spaces:
Sleeping
Sleeping
File size: 475 Bytes
0cdcff9 acdabf4 019c487 872cbc7 019c487 0cdcff9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
local json = require("json")
local config = require('../utils/config')
return function(req, res, go)
local pass = req.headers["authorization"]
p('[addon - auth]', req.path)
-- Just for Hugging Face
if req.path == '/' then
res.code = 200
return
end
if pass ~= config.server.password then
res.body = json.encode({ error = "Authorization failed" })
res.code = 401
res.headers["Content-Type"] = "application/json"
return
end
go()
end
|