Compare commits
3 commits
3018547876
...
19f56f96cd
Author | SHA1 | Date | |
---|---|---|---|
19f56f96cd | |||
31767fd38a | |||
0c74258e35 |
3 changed files with 15 additions and 3 deletions
6
.env.example
Normal file
6
.env.example
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
PLAKKEN_HOST=0.0.0.0
|
||||||
|
PLAKKEN_PORT=3000
|
||||||
|
PLAKKEN_REDIS_ADDR=localhost:6379
|
||||||
|
PLAKKEN_REDIS_USER=
|
||||||
|
PLAKKEN_REDIS_PASSWORD=
|
||||||
|
PLAKKEN_REDIS_DB=0
|
10
db.go
10
db.go
|
@ -28,9 +28,15 @@ func insertPaste(key string, content string, secret string, ttl time.Duration) {
|
||||||
content: content,
|
content: content,
|
||||||
secret: secret,
|
secret: secret,
|
||||||
}
|
}
|
||||||
connectDB().HSet(ctx, key, "content", hash.content)
|
db := connectDB()
|
||||||
connectDB().HSet(ctx, key, "secret", hash.secret)
|
db.HSet(ctx, key, "content", hash.content)
|
||||||
|
db.HSet(ctx, key, "secret", hash.secret)
|
||||||
if ttl > -1 {
|
if ttl > -1 {
|
||||||
connectDB().Do(ctx, key, ttl)
|
connectDB().Do(ctx, key, ttl)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func getContent(key string) string {
|
||||||
|
db := connectDB()
|
||||||
|
return db.HGet(ctx, key, "content").Val()
|
||||||
|
}
|
||||||
|
|
2
main.go
2
main.go
|
@ -11,7 +11,7 @@ import (
|
||||||
var currentConfig config
|
var currentConfig config
|
||||||
|
|
||||||
func handleRequest(w http.ResponseWriter, r *http.Request) {
|
func handleRequest(w http.ResponseWriter, r *http.Request) {
|
||||||
path := r.URL.Path
|
path := strings.ReplaceAll(r.URL.Path, "/raw", "")
|
||||||
switch r.Method {
|
switch r.Method {
|
||||||
case "GET":
|
case "GET":
|
||||||
if path == "/" {
|
if path == "/" {
|
||||||
|
|
Loading…
Reference in a new issue