mirror of
https://github.com/openfaas/faas.git
synced 2025-06-09 08:46:48 +00:00
**What** - Move the new secrets sample function to ApiKeyProtected-Secrets - Bring back the original ApiKeyProtected sample function Signed-off-by: Lucas Roesler <roesler.lucas@gmail.com>
32 lines
468 B
Go
32 lines
468 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"io/ioutil"
|
|
"log"
|
|
"os"
|
|
"strings"
|
|
)
|
|
|
|
func handle(body []byte) {
|
|
key := os.Getenv("Http_X_Api_Key")
|
|
|
|
secretBytes, err := ioutil.ReadFile("/run/secrets/secret_api_key")
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
secret := strings.TrimSpace(string(secretBytes))
|
|
|
|
if key == secret {
|
|
fmt.Println("Unlocked the function!")
|
|
} else {
|
|
fmt.Println("Access denied!")
|
|
}
|
|
}
|
|
|
|
func main() {
|
|
bytes, _ := ioutil.ReadAll(os.Stdin)
|
|
handle(bytes)
|
|
}
|