clink exp and desc
This commit is contained in:
parent
e62e6473db
commit
8b0e56f215
8 changed files with 23 additions and 10 deletions
8
package-lock.json
generated
8
package-lock.json
generated
|
|
@ -13,7 +13,7 @@
|
|||
"@protobuf-ts/grpc-transport": "^2.9.4",
|
||||
"@protobuf-ts/plugin": "^2.5.0",
|
||||
"@protobuf-ts/runtime": "^2.5.0",
|
||||
"@shocknet/clink-sdk": "^1.3.1",
|
||||
"@shocknet/clink-sdk": "^1.4.0",
|
||||
"@stablelib/xchacha20": "^1.0.1",
|
||||
"@types/express": "^4.17.21",
|
||||
"@types/node": "^17.0.31",
|
||||
|
|
@ -686,9 +686,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/@shocknet/clink-sdk": {
|
||||
"version": "1.3.1",
|
||||
"resolved": "https://registry.npmjs.org/@shocknet/clink-sdk/-/clink-sdk-1.3.1.tgz",
|
||||
"integrity": "sha512-jQtiB6jHN8ApuyTjmf6xB1b+53O2tSkAUsIQtctEopJL3xq4xLgmIKce+tTefr6BYQJtzSd2lAiumiT4KLxSrw==",
|
||||
"version": "1.4.0",
|
||||
"resolved": "https://registry.npmjs.org/@shocknet/clink-sdk/-/clink-sdk-1.4.0.tgz",
|
||||
"integrity": "sha512-J0PWE8CVRJrFF1Zi/UhChhvOrlmDj7LRJTpR6rbHlFPmjC5TGIW6891tVWWv+JmUR0jzez9QHFrHnc8DgIJYCQ==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@noble/hashes": "^1.8.0",
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
"@protobuf-ts/grpc-transport": "^2.9.4",
|
||||
"@protobuf-ts/plugin": "^2.5.0",
|
||||
"@protobuf-ts/runtime": "^2.5.0",
|
||||
"@shocknet/clink-sdk": "^1.3.1",
|
||||
"@shocknet/clink-sdk": "^1.4.0",
|
||||
"@stablelib/xchacha20": "^1.0.1",
|
||||
"@types/express": "^4.17.21",
|
||||
"@types/node": "^17.0.31",
|
||||
|
|
|
|||
|
|
@ -1393,6 +1393,7 @@ The nostr server will send back a message response, and inside the body there wi
|
|||
|
||||
### NewInvoiceRequest
|
||||
- __amountSats__: _number_
|
||||
- __expiry__: _number_ *this field is optional
|
||||
- __memo__: _string_
|
||||
- __zap__: _string_ *this field is optional
|
||||
|
||||
|
|
|
|||
|
|
@ -466,6 +466,7 @@ type NewAddressResponse struct {
|
|||
}
|
||||
type NewInvoiceRequest struct {
|
||||
Amountsats int64 `json:"amountSats"`
|
||||
Expiry int64 `json:"expiry"`
|
||||
Memo string `json:"memo"`
|
||||
Zap string `json:"zap"`
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2743,14 +2743,16 @@ export const NewAddressResponseValidate = (o?: NewAddressResponse, opts: NewAddr
|
|||
|
||||
export type NewInvoiceRequest = {
|
||||
amountSats: number
|
||||
expiry?: number
|
||||
memo: string
|
||||
zap?: string
|
||||
}
|
||||
export type NewInvoiceRequestOptionalField = 'zap'
|
||||
export const NewInvoiceRequestOptionalFields: NewInvoiceRequestOptionalField[] = ['zap']
|
||||
export type NewInvoiceRequestOptionalField = 'expiry' | 'zap'
|
||||
export const NewInvoiceRequestOptionalFields: NewInvoiceRequestOptionalField[] = ['expiry', 'zap']
|
||||
export type NewInvoiceRequestOptions = OptionsBaseMessage & {
|
||||
checkOptionalsAreSet?: NewInvoiceRequestOptionalField[]
|
||||
amountSats_CustomCheck?: (v: number) => boolean
|
||||
expiry_CustomCheck?: (v?: number) => boolean
|
||||
memo_CustomCheck?: (v: string) => boolean
|
||||
zap_CustomCheck?: (v?: string) => boolean
|
||||
}
|
||||
|
|
@ -2761,6 +2763,9 @@ export const NewInvoiceRequestValidate = (o?: NewInvoiceRequest, opts: NewInvoic
|
|||
if (typeof o.amountSats !== 'number') return new Error(`${path}.amountSats: is not a number`)
|
||||
if (opts.amountSats_CustomCheck && !opts.amountSats_CustomCheck(o.amountSats)) return new Error(`${path}.amountSats: custom check failed`)
|
||||
|
||||
if ((o.expiry || opts.allOptionalsAreSet || opts.checkOptionalsAreSet?.includes('expiry')) && typeof o.expiry !== 'number') return new Error(`${path}.expiry: is not a number`)
|
||||
if (opts.expiry_CustomCheck && !opts.expiry_CustomCheck(o.expiry)) return new Error(`${path}.expiry: custom check failed`)
|
||||
|
||||
if (typeof o.memo !== 'string') return new Error(`${path}.memo: is not a string`)
|
||||
if (opts.memo_CustomCheck && !opts.memo_CustomCheck(o.memo)) return new Error(`${path}.memo: custom check failed`)
|
||||
|
||||
|
|
|
|||
|
|
@ -379,7 +379,6 @@ message AddAppUserInvoiceRequest {
|
|||
optional string offer_string = 6;
|
||||
optional bool rejectUnauthorized = 7;
|
||||
optional string token = 8;
|
||||
|
||||
}
|
||||
|
||||
message GetAppUserRequest {
|
||||
|
|
@ -450,6 +449,7 @@ message NewInvoiceRequest{
|
|||
int64 amountSats = 1;
|
||||
string memo = 2;
|
||||
optional string zap = 3;
|
||||
optional int64 expiry = 4;
|
||||
}
|
||||
|
||||
message NewInvoiceResponse{
|
||||
|
|
|
|||
|
|
@ -195,8 +195,9 @@ export default class {
|
|||
if (req.invoice_req.zap) {
|
||||
zapInfo = this.paymentManager.validateZapEvent(req.invoice_req.zap, req.invoice_req.amountSats)
|
||||
}
|
||||
const expiry = req.invoice_req.expiry ? Math.min(req.invoice_req.expiry, defaultInvoiceExpiry) : defaultInvoiceExpiry
|
||||
const opts: InboundOptionals = {
|
||||
callbackUrl: cbUrl, expiry: defaultInvoiceExpiry, expectedPayer: payer.user, linkedApplication: app, zapInfo,
|
||||
callbackUrl: cbUrl, expiry: expiry, expectedPayer: payer.user, linkedApplication: app, zapInfo,
|
||||
offerId: req.offer_string, payerData: req.payer_data?.data, rejectUnauthorized: req.rejectUnauthorized,
|
||||
token: req.token
|
||||
}
|
||||
|
|
|
|||
|
|
@ -234,9 +234,14 @@ export class OfferManager {
|
|||
this.logger("Invalid expected data", validated || {})
|
||||
return { success: false, code: 1, max: remote }
|
||||
}
|
||||
if (offerReq.description && (typeof offerReq.description !== 'string' || offerReq.description.length > 100)) {
|
||||
return { success: false, code: 1, max: remote }
|
||||
}
|
||||
const memo = offerReq.description || userOffer.label
|
||||
const expiry = offerReq.expires_in_seconds ? Date.now()/1000 + offerReq.expires_in_seconds : undefined
|
||||
const res = await this.applicationManager.AddAppUserInvoice(appId, {
|
||||
http_callback_url: userOffer.callback_url, payer_identifier: userOffer.app_user_id, receiver_identifier: userOffer.app_user_id,
|
||||
invoice_req: { amountSats: amt, memo: userOffer.label, zap: offerReq.zap },
|
||||
invoice_req: { amountSats: amt, memo, zap: offerReq.zap, expiry },
|
||||
payer_data: validated ? { data: validated } : undefined,
|
||||
offer_string: offer,
|
||||
rejectUnauthorized: userOffer.rejectUnauthorized,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue