-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.go
140 lines (125 loc) · 3.38 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
package main
import (
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
"strconv"
"github.com/getAlby/lsat-middleware/caveat"
"github.com/getAlby/lsat-middleware/ginlsat"
"github.com/getAlby/lsat-middleware/ln"
"github.com/getAlby/lsat-middleware/lsat"
"github.com/getAlby/lsat-middleware/middleware"
"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 main() {
router := gin.Default()
router.GET("/", func(c *gin.Context) {
c.JSON(http.StatusAccepted, gin.H{
"code": http.StatusAccepted,
"message": "Free content",
})
})
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"),
},
RootKey: []byte(os.Getenv("ROOT_KEY")),
}
fr := &FiatRateConfig{
Currency: "USD",
Amount: 0.01,
}
lsatmiddleware, err := middleware.NewLsatMiddleware(lnClientConfig, fr.FiatToBTCAmountFunc, PathCaveat)
if err != nil {
log.Fatal(err)
}
ginlsatmiddleware := &ginlsat.GinLsat{
Middleware: *lsatmiddleware,
}
router.Use(ginlsatmiddleware.Handler)
router.GET("/protected", func(c *gin.Context) {
lsatInfo := c.Value("LSAT").(*lsat.LsatInfo)
if lsatInfo.Type == lsat.LSAT_TYPE_FREE {
c.JSON(http.StatusAccepted, gin.H{
"code": http.StatusAccepted,
"message": "Free content",
})
} else if lsatInfo.Type == lsat.LSAT_TYPE_PAID {
c.JSON(http.StatusAccepted, gin.H{
"code": http.StatusAccepted,
"message": "Protected content",
})
} else if lsatInfo.Type == lsat.LSAT_TYPE_ERROR {
c.JSON(http.StatusInternalServerError, gin.H{
"code": http.StatusInternalServerError,
"message": fmt.Sprint(lsatInfo.Error),
})
}
})
router.GET("/protected/2", func(c *gin.Context) {
lsatInfo := c.Value("LSAT").(*lsat.LsatInfo)
if lsatInfo.Type == lsat.LSAT_TYPE_FREE {
c.JSON(http.StatusAccepted, gin.H{
"code": http.StatusAccepted,
"message": "Free content",
})
} else if lsatInfo.Type == lsat.LSAT_TYPE_PAID {
c.JSON(http.StatusAccepted, gin.H{
"code": http.StatusAccepted,
"message": "Protected content",
})
} else if lsatInfo.Type == lsat.LSAT_TYPE_ERROR {
c.JSON(http.StatusInternalServerError, gin.H{
"code": http.StatusInternalServerError,
"message": fmt.Sprint(lsatInfo.Error),
})
}
})
router.Run("localhost:8080")
}
func PathCaveat(req *http.Request) []caveat.Caveat {
return []caveat.Caveat{
{
Condition: "RequestPath",
Value: req.URL.Path,
},
}
}