From fcf031d6170ca4a6b819a8ac828f0b44e7153c57 Mon Sep 17 00:00:00 2001 From: Ahmed Aboelyazeed Date: Fri, 22 Feb 2019 18:16:14 +0200 Subject: [PATCH] Fix conflict with receiving.go while cherry-picking --- .travis.yml | 2 +- examples/basic/main.go | 4 ++-- examples/linked-account/main.go | 16 ++++++++++------ receiving.go | 15 +++++++++++++-- response.go | 4 +++- 5 files changed, 29 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index ab5b8bc..362d290 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ go: - 1.10.x - master -go_import_path: github.com/paked/messenger +go_import_path: github.com/gwinn/messenger install: go get -t ./... script: diff --git a/examples/basic/main.go b/examples/basic/main.go index f86d6e0..54a8346 100644 --- a/examples/basic/main.go +++ b/examples/basic/main.go @@ -8,7 +8,7 @@ import ( "os" "time" - "github.com/paked/messenger" + "github.com/gwinn/messenger" ) var ( @@ -48,7 +48,7 @@ func main() { fmt.Println("Something went wrong!", err) } - r.Text(fmt.Sprintf("Hello, %v!", p.FirstName), messenger.ResponseType) + r.Text(fmt.Sprintf("Hello, %v!", p.FirstName), messenger.ResponseType, "") }) // Setup a handler to be triggered when a message is delivered diff --git a/examples/linked-account/main.go b/examples/linked-account/main.go index cfde079..1b1be9d 100644 --- a/examples/linked-account/main.go +++ b/examples/linked-account/main.go @@ -11,7 +11,7 @@ import ( "strings" "time" - "github.com/paked/messenger" + "github.com/gwinn/messenger" ) const ( @@ -85,7 +85,7 @@ func main() { text = "You've been logged out of your account." } - if err := r.Text(text, messenger.ResponseType); err != nil { + if _, err := r.Text(text, messenger.ResponseType, ""); err != nil { log.Println("Failed to send account linking feedback") } }) @@ -117,7 +117,8 @@ func loginButton(r *messenger.Response) error { URL: "https://" + path.Join(*publicHost, loginPath), }, } - return r.ButtonTemplate("Link your account.", buttons, messenger.ResponseType) + _, err := r.ButtonTemplate("Link your account.", buttons, messenger.ResponseType, "") + return err } // logoutButton show to the user a button that can be used to start @@ -128,12 +129,14 @@ func logoutButton(r *messenger.Response) error { Type: "account_unlink", }, } - return r.ButtonTemplate("Unlink your account.", buttons, messenger.ResponseType) + _, err := r.ButtonTemplate("Unlink your account.", buttons, messenger.ResponseType, "") + return err } // greeting salutes the user. func greeting(p messenger.Profile, r *messenger.Response) error { - return r.Text(fmt.Sprintf("Hello, %v!", p.FirstName), messenger.ResponseType) + _, err := r.Text(fmt.Sprintf("Hello, %v!", p.FirstName), messenger.ResponseType, "") + return err } // help displays possibles actions to the user. @@ -154,7 +157,8 @@ func help(p messenger.Profile, r *messenger.Response) error { }, } - return r.TextWithReplies(text, replies, messenger.ResponseType) + _, err := r.TextWithReplies(text, replies, messenger.ResponseType, "") + return err } // loginForm is the endpoint responsible to displays a login diff --git a/receiving.go b/receiving.go index 96185a2..4bb1543 100644 --- a/receiving.go +++ b/receiving.go @@ -92,7 +92,9 @@ type Recipient struct { // Attachment is a file which used in a message. type Attachment struct { - // Type is what type the message is. (image, video or audio) + Title string `json:"title,omitempty"` + URL string `json:"url,omitempty"` + // Type is what type the message is. (image, video, audio or location) Type string `json:"type"` // Payload is the information for the file which was sent in the attachment. Payload Payload `json:"payload"` @@ -110,6 +112,15 @@ type QuickReply struct { // Payload is the information on where an attachment is. type Payload struct { - // URL is where the attachment resides on the internet. URL string `json:"url,omitempty"` + // Coordinates is Lat/Long pair of location pin + Coordinates *Coordinates `json:"coordinates,omitempty"` +} + +// Coordinates is a pair of latitude and longitude +type Coordinates struct { + // Lat is latitude + Lat float64 `json:"lat"` + // Long is longitude + Long float64 `json:"long"` } diff --git a/response.go b/response.go index c28eb39..8e16e65 100644 --- a/response.go +++ b/response.go @@ -345,7 +345,9 @@ type StructuredMessageData struct { // StructuredMessageAttachment is the attachment of a structured message. type StructuredMessageAttachment struct { // Type must be template - Type AttachmentType `json:"type"` + Title string `json:"title,omitempty"` + URL string `json:"url,omitempty"` + Type AttachmentType `json:"type"` // Payload is the information for the file which was sent in the attachment. Payload StructuredMessagePayload `json:"payload"` }