89 lines
2.6 KiB
Ruby
89 lines
2.6 KiB
Ruby
class Oauth2Proxy < Formula
|
|
desc "Reverse proxy for authenticating users via OAuth 2 providers"
|
|
homepage "https://oauth2-proxy.github.io/oauth2-proxy/"
|
|
url "https://github.com/oauth2-proxy/oauth2_proxy/archive/v6.1.1.tar.gz"
|
|
sha256 "d5fb4129d7f1d1c39f4f45184b319e9b60fcb186f3acdd7c3ea415c56f69079c"
|
|
license "MIT"
|
|
head "https://github.com/oauth2-proxy/oauth2-proxy.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "f109dd498dd23e387c4338baa42df3e00a3d83829571f9d7c5b3e55857e0d818" => :catalina
|
|
sha256 "17ad8e33c417229882d67128f50ea94c94f834e8a56c62884351fa06eb1c7c2e" => :mojave
|
|
sha256 "b37692fbfcd018de90a1580e99547919adb4d4c25169c02f67ce2d84a3f1bea6" => :high_sierra
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
system "go", "build", "-ldflags", "-s -w -X main.VERSION=#{version}",
|
|
"-trimpath",
|
|
"-o", bin/"oauth2-proxy"
|
|
(etc/"oauth2-proxy").install "contrib/oauth2-proxy.cfg.example"
|
|
bash_completion.install "contrib/oauth2-proxy_autocomplete.sh" => "oauth2-proxy"
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
#{etc}/oauth2-proxy/oauth2-proxy.cfg must be filled in.
|
|
EOS
|
|
end
|
|
|
|
plist_options manual: "oauth2-proxy"
|
|
|
|
def plist
|
|
<<~EOS
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>KeepAlive</key>
|
|
<true/>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/oauth2-proxy</string>
|
|
<string>--config=#{etc}/oauth2-proxy/oauth2-proxy.cfg</string>
|
|
</array>
|
|
<key>WorkingDirectory</key>
|
|
<string>#{HOMEBREW_PREFIX}</string>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
require "timeout"
|
|
|
|
port = free_port
|
|
|
|
pid = fork do
|
|
exec "#{bin}/oauth2-proxy",
|
|
"--client-id=testing",
|
|
"--client-secret=testing",
|
|
# Cookie secret must be 16, 24, or 32 bytes to create an AES cipher
|
|
"--cookie-secret=0b425616d665d89fb6ee917b7122b5bf",
|
|
"--http-address=127.0.0.1:#{port}",
|
|
"--upstream=file:///tmp",
|
|
"--email-domain=*"
|
|
end
|
|
|
|
begin
|
|
Timeout.timeout(10) do
|
|
loop do
|
|
Utils.popen_read "curl", "-s", "http://127.0.0.1:#{port}"
|
|
break if $CHILD_STATUS.exitstatus.zero?
|
|
|
|
sleep 1
|
|
end
|
|
end
|
|
ensure
|
|
Process.kill("TERM", pid)
|
|
Process.wait(pid)
|
|
end
|
|
end
|
|
end
|