Compare commits
No commits in common. "master" and "v1.3.0" have entirely different histories.
7 changed files with 25 additions and 104 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -29,7 +29,7 @@ jobs:
|
||||||
- name: Lint code with golangci-lint
|
- name: Lint code with golangci-lint
|
||||||
uses: golangci/golangci-lint-action@v3
|
uses: golangci/golangci-lint-action@v3
|
||||||
with:
|
with:
|
||||||
version: v1.50.1
|
version: v1.42.1
|
||||||
only-new-issues: true
|
only-new-issues: true
|
||||||
tests:
|
tests:
|
||||||
name: Tests
|
name: Tests
|
||||||
|
|
|
@ -6,33 +6,20 @@ output:
|
||||||
format: colored-line-number
|
format: colored-line-number
|
||||||
sort-results: true
|
sort-results: true
|
||||||
|
|
||||||
# Linters below do not support go1.18 yet because of generics.
|
|
||||||
# See https://github.com/golangci/golangci-lint/issues/2649
|
|
||||||
# - bodyclose
|
|
||||||
# - sqlclosecheck
|
|
||||||
|
|
||||||
linters:
|
linters:
|
||||||
disable-all: true
|
disable-all: true
|
||||||
enable:
|
enable:
|
||||||
- paralleltest
|
- deadcode
|
||||||
- tparallel
|
|
||||||
- asciicheck
|
|
||||||
- asasalint
|
|
||||||
- varnamelen
|
|
||||||
- reassign
|
|
||||||
- nilnil
|
|
||||||
- nilerr
|
|
||||||
- nakedret
|
|
||||||
- goprintffuncname
|
|
||||||
- typecheck
|
|
||||||
- errchkjson
|
|
||||||
- errcheck
|
- errcheck
|
||||||
- gosimple
|
- gosimple
|
||||||
- govet
|
- govet
|
||||||
- ineffassign
|
- ineffassign
|
||||||
- staticcheck
|
- staticcheck
|
||||||
|
- structcheck
|
||||||
- unused
|
- unused
|
||||||
- unparam
|
- unparam
|
||||||
|
- varcheck
|
||||||
|
- bodyclose
|
||||||
- dogsled
|
- dogsled
|
||||||
- dupl
|
- dupl
|
||||||
- errorlint
|
- errorlint
|
||||||
|
@ -47,13 +34,14 @@ linters:
|
||||||
- goimports
|
- goimports
|
||||||
- revive
|
- revive
|
||||||
- gosec
|
- gosec
|
||||||
|
- ifshort
|
||||||
- lll
|
- lll
|
||||||
- makezero
|
- makezero
|
||||||
- misspell
|
- misspell
|
||||||
- nestif
|
- nestif
|
||||||
- prealloc
|
- prealloc
|
||||||
- predeclared
|
- predeclared
|
||||||
- exportloopref
|
- sqlclosecheck
|
||||||
- unconvert
|
- unconvert
|
||||||
- whitespace
|
- whitespace
|
||||||
|
|
||||||
|
@ -80,6 +68,7 @@ linters-settings:
|
||||||
- unmarshal
|
- unmarshal
|
||||||
- unreachable
|
- unreachable
|
||||||
- unsafeptr
|
- unsafeptr
|
||||||
|
- unused
|
||||||
settings:
|
settings:
|
||||||
printf:
|
printf:
|
||||||
funcs:
|
funcs:
|
||||||
|
@ -138,48 +127,42 @@ linters-settings:
|
||||||
threshold: 200
|
threshold: 200
|
||||||
errorlint:
|
errorlint:
|
||||||
errorf: true
|
errorf: true
|
||||||
asserts: false
|
|
||||||
comparison: false
|
|
||||||
exhaustive:
|
exhaustive:
|
||||||
check-generated: false
|
check-generated: false
|
||||||
default-signifies-exhaustive: false
|
default-signifies-exhaustive: false
|
||||||
funlen:
|
funlen:
|
||||||
lines: 90
|
lines: 60
|
||||||
statements: 40
|
statements: 40
|
||||||
gocognit:
|
gocognit:
|
||||||
min-complexity: 25
|
min-complexity: 25
|
||||||
gocyclo:
|
gocyclo:
|
||||||
min-complexity: 25
|
min-complexity: 25
|
||||||
goimports:
|
goimports:
|
||||||
local-prefixes: github.com/retailcrm/messenger
|
local-prefixes: github.com/retailcrm/mg-transport-core
|
||||||
lll:
|
lll:
|
||||||
line-length: 120
|
line-length: 120
|
||||||
misspell:
|
misspell:
|
||||||
locale: US
|
locale: US
|
||||||
nestif:
|
nestif:
|
||||||
min-complexity: 4
|
min-complexity: 6
|
||||||
whitespace:
|
whitespace:
|
||||||
multi-if: false
|
multi-if: false
|
||||||
multi-func: false
|
multi-func: false
|
||||||
varnamelen:
|
|
||||||
max-distance: 10
|
|
||||||
ignore-map-index-ok: true
|
|
||||||
ignore-type-assert-ok: true
|
|
||||||
ignore-chan-recv-ok: true
|
|
||||||
ignore-decls:
|
|
||||||
- t *testing.T
|
|
||||||
- e error
|
|
||||||
- i int
|
|
||||||
issues:
|
issues:
|
||||||
exclude-rules:
|
exclude-rules:
|
||||||
- path: _test\.go
|
- path: _test\.go
|
||||||
linters:
|
linters:
|
||||||
- lll
|
- lll
|
||||||
|
- errorlint
|
||||||
|
- bodyclose
|
||||||
- errcheck
|
- errcheck
|
||||||
|
- sqlclosecheck
|
||||||
- misspell
|
- misspell
|
||||||
- ineffassign
|
- ineffassign
|
||||||
- whitespace
|
- whitespace
|
||||||
- makezero
|
- makezero
|
||||||
|
- ifshort
|
||||||
- errcheck
|
- errcheck
|
||||||
- funlen
|
- funlen
|
||||||
- goconst
|
- goconst
|
||||||
|
@ -187,8 +170,6 @@ issues:
|
||||||
- gocyclo
|
- gocyclo
|
||||||
- godot
|
- godot
|
||||||
- unused
|
- unused
|
||||||
- errchkjson
|
|
||||||
- varnamelen
|
|
||||||
- path: \.go
|
- path: \.go
|
||||||
text: "Error return value of `io.WriteString` is not checked"
|
text: "Error return value of `io.WriteString` is not checked"
|
||||||
exclude-use-default: true
|
exclude-use-default: true
|
||||||
|
@ -202,4 +183,4 @@ severity:
|
||||||
case-sensitive: false
|
case-sensitive: false
|
||||||
|
|
||||||
service:
|
service:
|
||||||
golangci-lint-version: 1.50.x
|
golangci-lint-version: 1.36.x
|
||||||
|
|
7
go.mod
7
go.mod
|
@ -1,11 +1,8 @@
|
||||||
module github.com/retailcrm/messenger
|
module github.com/retailcrm/messenger
|
||||||
|
|
||||||
require (
|
|
||||||
github.com/stretchr/testify v1.2.2
|
|
||||||
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7
|
|
||||||
)
|
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/davecgh/go-spew v1.1.1 // indirect
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
||||||
github.com/pmezard/go-difflib v1.0.0 // indirect
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
||||||
|
github.com/stretchr/testify v1.2.2
|
||||||
|
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7
|
||||||
)
|
)
|
||||||
|
|
|
@ -81,7 +81,7 @@ type IGMessageReaction struct {
|
||||||
// Mid is a message ID.
|
// Mid is a message ID.
|
||||||
Mid string `json:"mid"`
|
Mid string `json:"mid"`
|
||||||
// Action can be {react|unreact}
|
// Action can be {react|unreact}
|
||||||
Action ReactionAction `json:"action"`
|
Action string `json:"action"`
|
||||||
// Reaction is a reaction name. Optional.
|
// Reaction is a reaction name. Optional.
|
||||||
Reaction string `json:"reaction,omitempty"`
|
Reaction string `json:"reaction,omitempty"`
|
||||||
// Emoji is optional.
|
// Emoji is optional.
|
||||||
|
@ -94,10 +94,8 @@ type IGMessageProduct struct {
|
||||||
ID string `json:"id,omitempty"`
|
ID string `json:"id,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// IGMessageReferral represents Instagram message referral with ad data and product ID.
|
// IGMessageReferral represents Instagram message referral with product ID.
|
||||||
type IGMessageReferral struct {
|
type IGMessageReferral struct {
|
||||||
// Ad data
|
|
||||||
Referral
|
|
||||||
// Product data.
|
// Product data.
|
||||||
Product IGMessageProduct `json:"product,omitempty"`
|
Product IGMessageProduct `json:"product,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
14
messenger.go
14
messenger.go
|
@ -517,20 +517,6 @@ func (m *Messenger) SenderAction(to Recipient, action SenderAction) (QueryRespon
|
||||||
return response.SenderAction(action)
|
return response.SenderAction(action)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *Messenger) InstagramReaction(
|
|
||||||
to Recipient,
|
|
||||||
mid string,
|
|
||||||
action ReactionAction,
|
|
||||||
reaction ...string,
|
|
||||||
) (QueryResponse, error) {
|
|
||||||
response := &Response{
|
|
||||||
token: m.token,
|
|
||||||
to: to,
|
|
||||||
sendAPIVersion: m.sendAPIVersion,
|
|
||||||
}
|
|
||||||
return response.InstagramReaction(mid, action, reaction...)
|
|
||||||
}
|
|
||||||
|
|
||||||
// classify determines what type of message a webhook event is.
|
// classify determines what type of message a webhook event is.
|
||||||
func (m *Messenger) classify(info MessageInfo) Action {
|
func (m *Messenger) classify(info MessageInfo) Action {
|
||||||
if info.Message != nil {
|
if info.Message != nil {
|
||||||
|
|
|
@ -35,8 +35,6 @@ type MessageInfo struct {
|
||||||
// Delivery is the contents of a message if it is a DeliveryAction.
|
// Delivery is the contents of a message if it is a DeliveryAction.
|
||||||
// Nil if it is not a DeliveryAction.
|
// Nil if it is not a DeliveryAction.
|
||||||
Delivery *Delivery `json:"delivery"`
|
Delivery *Delivery `json:"delivery"`
|
||||||
// Reaction represents reaction to Instagram message.
|
|
||||||
Reaction *IGMessageReaction `json:"reaction,omitempty"`
|
|
||||||
|
|
||||||
PostBack *PostBack `json:"postback"`
|
PostBack *PostBack `json:"postback"`
|
||||||
|
|
||||||
|
@ -84,8 +82,6 @@ type Referral struct {
|
||||||
AdID string `json:"ad_id,omitempty"`
|
AdID string `json:"ad_id,omitempty"`
|
||||||
// The data containing information about the CTM ad, the user initiated the thread from.
|
// The data containing information about the CTM ad, the user initiated the thread from.
|
||||||
AdsContextData AdsContextData `json:"ads_context_data,omitempty"`
|
AdsContextData AdsContextData `json:"ads_context_data,omitempty"`
|
||||||
// URI of the site from which the message was sent to the Facebook chat plugin.
|
|
||||||
RefererURI string `json:"referer_uri,omitempty"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// AdsContextData represents data containing information about the CTM ad, the user initiated the thread from.
|
// AdsContextData represents data containing information about the CTM ad, the user initiated the thread from.
|
||||||
|
|
45
response.go
45
response.go
|
@ -182,7 +182,7 @@ func (r *Response) Image(im image.Image) (QueryResponse, error) {
|
||||||
return qr, err
|
return qr, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return r.AttachmentData(ImageAttachment, "meme.jpg", "image/jpeg", imageBytes)
|
return r.AttachmentData(ImageAttachment, "meme.jpg", imageBytes)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Attachment sends an image, sound, video or a regular file to a chat.
|
// Attachment sends an image, sound, video or a regular file to a chat.
|
||||||
|
@ -228,14 +228,15 @@ func createFormFile(filename string, w *multipart.Writer, contentType string) (i
|
||||||
}
|
}
|
||||||
|
|
||||||
// AttachmentData sends an image, sound, video or a regular file to a chat via an io.Reader.
|
// AttachmentData sends an image, sound, video or a regular file to a chat via an io.Reader.
|
||||||
func (r *Response) AttachmentData(
|
func (r *Response) AttachmentData(dataType AttachmentType, filename string, filedata io.Reader) (QueryResponse, error) {
|
||||||
dataType AttachmentType, filename string, contentType string, filedata io.Reader) (QueryResponse, error) {
|
|
||||||
var qr QueryResponse
|
var qr QueryResponse
|
||||||
|
|
||||||
filedataBytes, err := ioutil.ReadAll(filedata)
|
filedataBytes, err := ioutil.ReadAll(filedata)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return qr, err
|
return qr, err
|
||||||
}
|
}
|
||||||
|
contentType := http.DetectContentType(filedataBytes[:512])
|
||||||
|
fmt.Println("Content-type detected:", contentType)
|
||||||
|
|
||||||
var body bytes.Buffer
|
var body bytes.Buffer
|
||||||
multipartWriter := multipart.NewWriter(&body)
|
multipartWriter := multipart.NewWriter(&body)
|
||||||
|
@ -360,21 +361,6 @@ func (r *Response) SenderAction(action SenderAction) (QueryResponse, error) {
|
||||||
return r.DispatchMessage(&m)
|
return r.DispatchMessage(&m)
|
||||||
}
|
}
|
||||||
|
|
||||||
// InstagramReaction sends an info about Instagram reaction.
|
|
||||||
func (r *Response) InstagramReaction(mid string, action ReactionAction, reaction ...string) (QueryResponse, error) {
|
|
||||||
m := SendInstagramReaction{
|
|
||||||
Recipient: r.to,
|
|
||||||
SenderAction: action,
|
|
||||||
Payload: SenderInstagramReactionPayload{
|
|
||||||
MessageID: mid,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
if len(reaction) > 0 {
|
|
||||||
m.Payload.Reaction = reaction[0]
|
|
||||||
}
|
|
||||||
return r.DispatchMessage(&m)
|
|
||||||
}
|
|
||||||
|
|
||||||
// DispatchMessage posts the message to messenger, return the error if there's any.
|
// DispatchMessage posts the message to messenger, return the error if there's any.
|
||||||
func (r *Response) DispatchMessage(m interface{}) (QueryResponse, error) {
|
func (r *Response) DispatchMessage(m interface{}) (QueryResponse, error) {
|
||||||
var res QueryResponse
|
var res QueryResponse
|
||||||
|
@ -564,26 +550,3 @@ type SendSenderAction struct {
|
||||||
Recipient Recipient `json:"recipient"`
|
Recipient Recipient `json:"recipient"`
|
||||||
SenderAction SenderAction `json:"sender_action"`
|
SenderAction SenderAction `json:"sender_action"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ReactionAction contains info about reaction action type.
|
|
||||||
type ReactionAction string
|
|
||||||
|
|
||||||
const (
|
|
||||||
// ReactionActionReact is used when user added a reaction.
|
|
||||||
ReactionActionReact ReactionAction = "react"
|
|
||||||
// ReactionActionUnReact is used when user removed a reaction.
|
|
||||||
ReactionActionUnReact ReactionAction = "unreact"
|
|
||||||
)
|
|
||||||
|
|
||||||
// SendInstagramReaction is the information about sender action.
|
|
||||||
type SendInstagramReaction struct {
|
|
||||||
Recipient Recipient `json:"recipient"`
|
|
||||||
SenderAction ReactionAction `json:"sender_action"`
|
|
||||||
Payload SenderInstagramReactionPayload `json:"payload"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// SenderInstagramReactionPayload contains target message ID and reaction name.
|
|
||||||
type SenderInstagramReactionPayload struct {
|
|
||||||
MessageID string `json:"message_id"`
|
|
||||||
Reaction string `json:"reaction"`
|
|
||||||
}
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue