1
0
Fork 0
mirror of synced 2025-04-04 21:53:37 +03:00

Merge pull request #1 from Neur0toxine/master

Fixed imports, picked https://github.com/paked/messenger/commit/efd9d44
This commit is contained in:
Alex Lushpai 2019-06-11 12:19:26 +03:00 committed by GitHub
commit 0a2552c940
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 29 additions and 12 deletions

View file

@ -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:

View file

@ -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

View file

@ -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

View file

@ -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"`
}

View file

@ -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"`
}