update create_bolt_card API

This commit is contained in:
Peter Rounce 2022-08-24 09:03:50 +00:00
parent 1fd70e31d6
commit 8edb9a3993
28 changed files with 2365 additions and 140 deletions

View file

@ -7,10 +7,33 @@ import (
"os"
)
/**
* @api {get} /new/:a Request information to create a new bolt card
* @apiName NewBoltCard
* @apiGroup BoltCardService
*
* @apiParam {String} a one time authentication code
*
* @apiSuccess {String} protocol_name name of the protocol message
* @apiSuccess {Int} protocol_version version of the protocol message
* @apiSuccess {String} lnurlw_base base for creating the lnurlw on the card
* @apiSuccess {String} k0 Key 0 - authorisation key
* @apiSuccess {String} k1 Key 1 - decryption key
* @apiSuccess {String} k2 Key 2 - authentication key
* @apiSuccess {String} k3 Key 3 - NXP documents say this must be set
* @apiSuccess {String} k4 Key 4 - NXP documents say this must be set
*/
type NewCardResponse struct {
K0 string `json:"k0"`
K1 string `json:"k1"`
K2 string `json:"k2"`
PROTOCOL_NAME string `json:"protocol_name"`
PROTOCOL_VERSION int `json:"protocol_version"`
CARD_NAME string `json:"card_name"`
LNURLW_BASE string `json:"lnurlw_base"`
K0 string `json:"k0"`
K1 string `json:"k1"`
K2 string `json:"k2"`
K3 string `json:"k3"`
K4 string `json:"k4"`
}
func new_card_request(w http.ResponseWriter, req *http.Request) {
@ -26,25 +49,8 @@ func new_card_request(w http.ResponseWriter, req *http.Request) {
a := params_a[0]
if a == "00000000000000000000000000000000" {
response := NewCardResponse{}
response.K0 = "11111111111111111111111111111111"
response.K1 = "22222222222222222222222222222222"
response.K2 = "33333333333333333333333333333333"
log.Debug("special a = 0...0")
jsonData, err := json.Marshal(response)
if err != nil {
log.Warn(err)
return
}
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusOK)
w.Write(jsonData)
return;
}
host_domain := os.Getenv("HOST_DOMAIN")
lnurlw_base := "lnurlw://" + host_domain + "/ln"
c, err := db_get_new_card(a)
if err != nil {
@ -52,13 +58,22 @@ func new_card_request(w http.ResponseWriter, req *http.Request) {
return
}
aes_decrypt_key := os.Getenv("AES_DECRYPT_KEY")
k1_decrypt_key := os.Getenv("AES_DECRYPT_KEY")
response := NewCardResponse{}
response.K0 = c.lock_key
response.K1 = aes_decrypt_key
response.K2 = c.aes_cmac
response.PROTOCOL_NAME = "create_bolt_card_response"
response.PROTOCOL_VERSION = 1
response.CARD_NAME = c.card_name
response.LNURLW_BASE = lnurlw_base
response.K0 = c.k0_auth_key
response.K1 = k1_decrypt_key
response.K2 = c.k2_cmac_key
response.K3 = c.k3
response.K4 = c.k4
log.SetFormatter(&log.JSONFormatter{
DisableHTMLEscape: true,
})
jsonData, err := json.Marshal(response)
if err != nil {
log.Warn(err)