Compare commits

..

1 Commits

Author SHA1 Message Date
9006678b33
Update cat
All checks were successful
Gitea Actions Demo / lint (push) Successful in 1m31s
Gitea Actions Demo / test (push) Successful in 1m19s
Gitea Actions Demo / release-image (push) Successful in 1m6s
2024-08-26 15:21:22 -05:00
2 changed files with 9 additions and 55 deletions

61
app.rb
View File

@ -1,5 +1,6 @@
require "bundler/setup"
require "sinatra"
require "sinatra/json"
require "sinatra/cookies"
require "sinatra/multi_route"
require "time"
@ -208,50 +209,23 @@ before do
request.session_options[:skip] = !request.path_info.start_with?("/session")
end
helpers do
def json(obj, opts: nil, pretty: false)
if pretty
JSON.pretty_generate obj, opts:
else
JSON.generate(obj, opts:)
end
end
def protected! hidden = false
return if authorized?
if hidden
halt 404, "Not Found"
else
headers["WWW-Authenticate"] = 'Basic realm="Restricted Area"'
halt 401, "Unauthorized"
end
end
def authorized?
@auth ||= Rack::Auth::Basic::Request.new(request.env)
@auth.provided? and
@auth.basic? and
@auth.credentials and
@auth.credentials == ["qwer", "asdf"]
end
end
get "/" do
"hello there!\n"
end
get "/env", provides: "json" do
pretty = params.key? :pretty
content_type :json
json ENV.sort.to_h, pretty:
return JSON.pretty_generate ENV.sort.to_h if params.key? "pretty"
JSON.generate ENV.sort.to_h
end
get "/headers", provides: "json" do
pretty = params.key? :pretty
h = req_headers
return JSON.pretty_generate h if params.key? "pretty"
json h, pretty:
JSON.generate h
end
get "/livez" do
@ -265,7 +239,6 @@ end
get "/livez/uptime" do
tt = TickTock.new
x = {started_at: tt.started_at, seconds: tt.uptime.to_i, human: human_time(tt.uptime.to_i)}
json x
end
@ -328,9 +301,7 @@ post "/halt" do
end
get "/pid" do
pretty = params.key? :pretty
json({puma: master_pid, pid: Process.pid}, pretty:)
JSON.generate({puma: master_pid, pid: Process.pid})
end
get "/token" do
@ -339,27 +310,23 @@ get "/token" do
expires_at = Time.at(exp).to_datetime
token = JWT.encode payload, JWT_SECRET, "HS256"
x = {token: token, expires_at: expires_at}
json x
end
get "/token/validate" do
token = req_headers["authorization"].split[1]
payload = JWT.decode token, JWT_SECRET, true, algorithm: "HS256"
json payload
end
post "/session" do
session.merge! params
json session.to_hash
end
get "/session" do
j = session.to_hash
j[:hostname] = ENV["HOSTNAME"]
json j
end
@ -405,15 +372,3 @@ get "/chunked/:delay" do
out << "Hello, world!\n"
end
end
route :delete, :get, :patch, :post, :put, "/auth/basic", provides: "json" do
pretty = params.key? :pretty
if params.key? :hidden
protected! hidden: true
else
protected!
end
json({authenticated: true, user: @auth.username}, pretty:)
end

View File

@ -5,5 +5,4 @@ metadata:
name: kipunji-configmap
namespace: kipunji
data:
CAT: luna
KIPUNJI_CAT: kilwin