Created
May 29, 2020 18:32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "socket" | |
require "file_utils" | |
require "http/server" | |
require "json" | |
class FnHelper | |
getter(url : String) { ENV.fetch "FN_LISTENER", "unix:/tmp/iofs/lsnr.sock" } | |
getter(socket_path : String) { url[5..] } | |
getter(private_socket_path : String) { socket_path + ".private" } | |
getter? linked : Bool = false | |
getter(private_socket : UNIXServer) do | |
UNIXServer.new private_socket_path | |
end | |
getter(linked_socket : UNIXServer) do | |
private_socket.tap do |ps| | |
ps.path.try do |path| | |
File.chmod(path, 0o666) | |
FileUtils.ln_s(File.basename(path), socket_path) | |
end | |
end | |
end | |
def handle(&block : JSON::Any -> String) | |
server = HTTP::Server.new do |context| | |
body = context.request.body.try(&.gets_to_end) | |
body = "{}" if body.try(&.empty?) || body.nil? | |
context.response.content_type = "application/json" | |
body.try { |b| context.response.print block.call JSON.parse b } | |
end | |
server.bind linked_socket | |
server.listen | |
end | |
def self.handle(&block : JSON::Any -> String) | |
FnHelper.new.handle &block | |
end | |
end | |
my_proc = ->(input : JSON::Any) do | |
name = input["name"]? || "world" | |
%({"message": "Hello #{name}"}) | |
end | |
FnHelper.handle &my_proc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment