62 lines
1.8 KiB
Go
62 lines
1.8 KiB
Go
package main
|
|
|
|
import (
|
|
log "github.com/sirupsen/logrus"
|
|
"github.com/gorilla/mux"
|
|
"net/http"
|
|
)
|
|
|
|
func lnurlp_response(w http.ResponseWriter, r *http.Request) {
|
|
if db_get_setting("FUNCTION_LNURLP") != "ENABLE" {
|
|
log.Debug("LNURLp function is not enabled")
|
|
return
|
|
}
|
|
|
|
name := mux.Vars(r)["name"]
|
|
|
|
log.WithFields(
|
|
log.Fields{
|
|
"url_path": r.URL.Path,
|
|
"name": name,
|
|
"r.Host": r.Host,
|
|
},).Info("lnurlp_response")
|
|
|
|
// look up domain setting (HOST_DOMAIN)
|
|
|
|
domain := db_get_setting("HOST_DOMAIN")
|
|
if r.Host != domain {
|
|
log.Warn("wrong host domain")
|
|
write_error(w)
|
|
return
|
|
}
|
|
|
|
// look up name in database (table cards, field card_name)
|
|
|
|
card_count, err := db_get_card_count_for_name_lnurlp(name)
|
|
if err != nil {
|
|
log.Warn("could not get card count for name")
|
|
write_error(w)
|
|
return
|
|
}
|
|
|
|
if card_count != 1 {
|
|
log.Info("not one enabled card with that name")
|
|
write_error(w)
|
|
return
|
|
}
|
|
|
|
metadata := "[[\\\"text/identifier\\\",\\\"" + name + "@" + domain + "\\\"],[\\\"text/plain\\\",\\\"bolt card deposit\\\"]]"
|
|
|
|
jsonData := []byte(`{"status":"OK",` +
|
|
`"callback":"https://` + domain + `/lnurlp/` + name + `",` +
|
|
`"tag":"payRequest",` +
|
|
`"maxSendable":1000000000,` +
|
|
`"minSendable":1000,` +
|
|
`"metadata":"` + metadata + `",` +
|
|
`"commentAllowed":0` +
|
|
`}`)
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
w.WriteHeader(http.StatusOK)
|
|
w.Write(jsonData)
|
|
}
|