-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.go
109 lines (95 loc) · 2.41 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package main
import (
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
"path/filepath"
"strconv"
"strings"
"github.com/getAlby/lsat-middleware/ginlsat"
"github.com/getAlby/lsat-middleware/ln"
"github.com/gin-gonic/gin"
"github.com/joho/godotenv"
)
const SATS_PER_BTC = 100000000
const MIN_SATS_TO_BE_PAID = 1
type FiatRateConfig struct {
Currency string
Amount float64
}
func (fr *FiatRateConfig) FiatToBTCAmountFunc(req *http.Request) (amount int64) {
if req == nil {
return MIN_SATS_TO_BE_PAID
}
res, err := http.Get(fmt.Sprintf("https://blockchain.info/tobtc?currency=%s&value=%f", fr.Currency, fr.Amount))
if err != nil {
return MIN_SATS_TO_BE_PAID
}
defer res.Body.Close()
amountBits, err := ioutil.ReadAll(res.Body)
if err != nil {
return MIN_SATS_TO_BE_PAID
}
amountInBTC, err := strconv.ParseFloat(string(amountBits), 32)
if err != nil {
return MIN_SATS_TO_BE_PAID
}
amountInSats := SATS_PER_BTC * amountInBTC
return int64(amountInSats)
}
func fileNameWithoutExt(fileName string) string {
return strings.TrimSuffix(fileName, filepath.Ext(fileName))
}
func main() {
router := gin.Default()
err := godotenv.Load(".env")
if err != nil {
log.Fatal("Failed to load .env file")
}
lnClientConfig := &ln.LNClientConfig{
LNClientType: os.Getenv("LN_CLIENT_TYPE"),
LNDConfig: ln.LNDoptions{
Address: os.Getenv("LND_ADDRESS"),
MacaroonHex: os.Getenv("MACAROON_HEX"),
},
LNURLConfig: ln.LNURLoptions{
Address: os.Getenv("LNURL_ADDRESS"),
},
}
fr := &FiatRateConfig{
Currency: "USD",
Amount: 0.01,
}
lsatmiddleware, err := ginlsat.NewLsatMiddleware(lnClientConfig, fr.FiatToBTCAmountFunc)
if err != nil {
log.Fatal(err)
}
router.Use(lsatmiddleware.Handler)
router.GET("/:file", func(c *gin.Context) {
lsatInfo := c.Value("LSAT").(*ginlsat.LsatInfo)
fileName := c.Param("file")
paidPath := fmt.Sprintf("assets/paid/%s", fileName)
freePath := fmt.Sprintf("assets/free/%s", fileName)
if lsatInfo.Type == ginlsat.LSAT_TYPE_FREE {
c.File(freePath)
} else if lsatInfo.Type == ginlsat.LSAT_TYPE_PAID {
if _, err := os.Stat(paidPath); err == nil {
c.File(paidPath)
} else {
c.File(freePath)
}
} else {
c.JSON(http.StatusBadRequest, gin.H{
"code": http.StatusBadRequest,
"message": fmt.Sprint(lsatInfo.Error),
})
}
})
port := "8080"
if os.Getenv("PORT") != "" {
port = os.Getenv("PORT")
}
router.Run(fmt.Sprintf(":%v", port))
}