Update API to support new PayIn type

This commit is contained in:
ekzyis 2025-12-02 16:48:02 +01:00
parent 47a35e428e
commit d40da044b1

View File

@ -61,30 +61,29 @@ type ItemsResponse struct {
} `json:"data"` } `json:"data"`
} }
type ItemPaidAction struct { type PayIn struct {
Result Item `json:"result"` Id int `json:"id,string"`
Invoice Invoice `json:"invoice"` Item Item `json:"item"`
PaymentMethod PaymentMethod `json:"paymentMethod"`
} }
type UpsertDiscussionResponse struct { type UpsertDiscussionResponse struct {
Errors []GqlError `json:"errors"` Errors []GqlError `json:"errors"`
Data struct { Data struct {
UpsertDiscussion ItemPaidAction `json:"upsertDiscussion"` UpsertDiscussion PayIn `json:"upsertDiscussion"`
} `json:"data"` } `json:"data"`
} }
type UpsertLinkResponse struct { type UpsertLinkResponse struct {
Errors []GqlError `json:"errors"` Errors []GqlError `json:"errors"`
Data struct { Data struct {
UpsertLink ItemPaidAction `json:"upsertLink"` UpsertLink PayIn `json:"upsertLink"`
} `json:"data"` } `json:"data"`
} }
type UpsertCommentResponse struct { type UpsertCommentResponse struct {
Errors []GqlError `json:"errors"` Errors []GqlError `json:"errors"`
Data struct { Data struct {
UpsertComment ItemPaidAction `json:"upsertComment"` UpsertComment PayIn `json:"upsertComment"`
} `json:"data"` } `json:"data"`
} }
@ -226,17 +225,10 @@ func (c *Client) PostDiscussion(title string, text string, sub string) (int, err
Query: ` Query: `
mutation upsertDiscussion($title: String!, $text: String, $sub: String) { mutation upsertDiscussion($title: String!, $text: String, $sub: String) {
upsertDiscussion(title: $title, text: $text, sub: $sub) { upsertDiscussion(title: $title, text: $text, sub: $sub) {
result { id
item {
id id
} }
invoice {
id
hash
bolt11
satsRequested
expiresAt
}
paymentMethod
} }
}`, }`,
Variables: map[string]interface{}{ Variables: map[string]interface{}{
@ -264,12 +256,12 @@ func (c *Client) PostDiscussion(title string, text string, sub string) (int, err
return -1, err return -1, err
} }
inv := respBody.Data.UpsertDiscussion.Invoice item := respBody.Data.UpsertDiscussion.Item
if inv.Id != 0 { if item.Id == 0 {
return -1, fmt.Errorf("mutation requires %d sats as payment", inv.SatsRequested) return -1, fmt.Errorf("API returned no item id")
} }
return respBody.Data.UpsertDiscussion.Result.Id, nil return item.Id, nil
} }
func (c *Client) PostLink(url string, title string, text string, sub string) (int, error) { func (c *Client) PostLink(url string, title string, text string, sub string) (int, error) {
@ -277,17 +269,10 @@ func (c *Client) PostLink(url string, title string, text string, sub string) (in
Query: ` Query: `
mutation upsertLink($url: String!, $title: String!, $text: String, $sub: String!) { mutation upsertLink($url: String!, $title: String!, $text: String, $sub: String!) {
upsertLink(url: $url, title: $title, text: $text, sub: $sub) { upsertLink(url: $url, title: $title, text: $text, sub: $sub) {
result { id
item {
id id
} }
invoice {
id
hash
bolt11
satsRequested
expiresAt
}
paymentMethod
} }
}`, }`,
Variables: map[string]interface{}{ Variables: map[string]interface{}{
@ -316,12 +301,12 @@ func (c *Client) PostLink(url string, title string, text string, sub string) (in
return -1, err return -1, err
} }
inv := respBody.Data.UpsertLink.Invoice item := respBody.Data.UpsertLink.Item
if inv.Id != 0 { if item.Id == 0 {
return -1, fmt.Errorf("mutation requires %d sats as payment", inv.SatsRequested) return -1, fmt.Errorf("API returned no item id")
} }
return respBody.Data.UpsertLink.Result.Id, nil return item.Id, nil
} }
func (c *Client) CreateComment(parentId int, text string) (int, error) { func (c *Client) CreateComment(parentId int, text string) (int, error) {
@ -329,17 +314,10 @@ func (c *Client) CreateComment(parentId int, text string) (int, error) {
Query: ` Query: `
mutation upsertComment($parentId: ID!, $text: String!) { mutation upsertComment($parentId: ID!, $text: String!) {
upsertComment(parentId: $parentId, text: $text) { upsertComment(parentId: $parentId, text: $text) {
result { id
item {
id id
} }
invoice {
id
hash
bolt11
satsRequested
expiresAt
}
paymentMethod
} }
}`, }`,
Variables: map[string]interface{}{ Variables: map[string]interface{}{
@ -366,12 +344,12 @@ func (c *Client) CreateComment(parentId int, text string) (int, error) {
return -1, err return -1, err
} }
inv := respBody.Data.UpsertComment.Invoice item := respBody.Data.UpsertComment.Item
if inv.Id != 0 { if item.Id == 0 {
return -1, fmt.Errorf("mutation requires %d sats as payment", inv.SatsRequested) return -1, fmt.Errorf("API returned no item id")
} }
return respBody.Data.UpsertComment.Result.Id, nil return item.Id, nil
} }
func (c *Client) Dupes(url string) (*[]Dupe, error) { func (c *Client) Dupes(url string) (*[]Dupe, error) {