logs #3
4 changed files with 44 additions and 22 deletions
7
.env
7
.env
|
@ -0,0 +1,7 @@
|
||||||
|
PLAKKEN_INTERFACE=0.0.0.0
|
||||||
|
PLAKKEN_PORT=3000
|
||||||
|
PLAKKEN_REDIS_ADDR=localhost:6379
|
||||||
|
PLAKKEN_REDIS_USER=
|
||||||
|
PLAKKEN_REDIS_PASSWORD=
|
||||||
|
PLAKKEN_REDIS_DB=0
|
||||||
|
PLAKKEN_REDIS_URL_LEN=5
|
42
config.go
42
config.go
|
@ -1,6 +1,8 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"github.com/joho/godotenv"
|
||||||
|
"log"
|
||||||
"os"
|
"os"
|
||||||
"strconv"
|
"strconv"
|
||||||
)
|
)
|
||||||
|
@ -15,38 +17,40 @@ type config struct {
|
||||||
urlLength int
|
urlLength int
|
||||||
}
|
}
|
||||||
|
|
||||||
func setConfig() config {
|
func getConfig() config {
|
||||||
host := os.Getenv("PLAKKEN_HOST")
|
err := godotenv.Load()
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("Error loading .env file: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
port := os.Getenv("PLAKKEN_PORT")
|
port := os.Getenv("PLAKKEN_PORT")
|
||||||
if port == "" {
|
|
||||||
port = "3000"
|
|
||||||
}
|
|
||||||
redisAddr := os.Getenv("PLAKKEN_REDIS_ADDR")
|
redisAddr := os.Getenv("PLAKKEN_REDIS_ADDR")
|
||||||
if redisAddr == "" {
|
db := os.Getenv("PLAKKEN_REDIS_DB")
|
||||||
redisAddr = "localhost:6379"
|
uLen := os.Getenv("PLAKKEN_REDIS_URL_LEN")
|
||||||
|
|
||||||
|
if port == "" || redisAddr == "" {
|
||||||
|
log.Fatal("Missing or invalid PLAKKEN_PORT or PLAKKEN_REDIS_ADDR")
|
||||||
}
|
}
|
||||||
|
|
||||||
redisUser := os.Getenv("PLAKKEN_REDIS_USER")
|
redisDB, err := strconv.Atoi(db)
|
||||||
redisPassword := os.Getenv("PLAKKEN_REDIS_PASSWORD")
|
|
||||||
redisDB, err := strconv.Atoi(os.Getenv("PLAKKEN_REDIS_DB"))
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
redisDB = 0
|
log.Fatal("Invalid PLAKKEN_REDIS_DB")
|
||||||
}
|
}
|
||||||
|
|
||||||
urlLength, err := strconv.Atoi("PLAKKEN_URL_LENGTH")
|
urlLen, err := strconv.Atoi(uLen)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
urlLength = 3
|
log.Fatal("Invalid PLAKKEN_REDIS_URL_LEN")
|
||||||
}
|
}
|
||||||
s := config{
|
|
||||||
host: host,
|
conf := config{
|
||||||
|
host: os.Getenv("PLAKKEN_INTERFACE"),
|
||||||
port: port,
|
port: port,
|
||||||
redisAddr: redisAddr,
|
redisAddr: redisAddr,
|
||||||
redisUser: redisUser,
|
redisUser: os.Getenv("PLAKKEN_REDIS_USER"),
|
||||||
redisPassword: redisPassword,
|
redisPassword: os.Getenv("PLAKKEN_REDIS_PASSWORD"),
|
||||||
redisDB: redisDB,
|
redisDB: redisDB,
|
||||||
urlLength: urlLength,
|
urlLength: urlLen,
|
||||||
}
|
}
|
||||||
|
|
||||||
return s
|
return conf
|
||||||
}
|
}
|
||||||
|
|
6
go.mod
6
go.mod
|
@ -2,8 +2,12 @@ module plakken
|
||||||
|
|
||||||
go 1.21
|
go 1.21
|
||||||
|
|
||||||
|
require (
|
||||||
|
github.com/joho/godotenv v1.5.1
|
||||||
|
github.com/redis/go-redis/v9 v9.2.1
|
||||||
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
||||||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
||||||
github.com/redis/go-redis/v9 v9.2.1 // indirect
|
|
||||||
)
|
)
|
||||||
|
|
11
main.go
11
main.go
|
@ -3,6 +3,7 @@ package main
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
@ -42,12 +43,18 @@ func handleRequest(w http.ResponseWriter, r *http.Request) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
currentConfig = setConfig()
|
currentConfig = getConfig()
|
||||||
listen := currentConfig.host + ":" + currentConfig.port
|
listen := currentConfig.host + ":" + currentConfig.port
|
||||||
http.HandleFunc("/", handleRequest)
|
http.HandleFunc("/", handleRequest)
|
||||||
|
|
||||||
|
if currentConfig.host == "" {
|
||||||
|
fmt.Println("Listening on port " + listen)
|
||||||
|
} else {
|
||||||
|
fmt.Println("Listening on " + listen)
|
||||||
|
}
|
||||||
|
|
||||||
err := http.ListenAndServe(listen, nil)
|
err := http.ListenAndServe(listen, nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue