Revert "Change `NotifyUsers` to allow only data JSON element. Part of status-im/status-react#6772" (#1347)

This reverts commit cddf2e1c6c.
This commit is contained in:
Andrea Maria Piana 2019-01-14 13:09:51 +01:00 committed by GitHub
parent 59426d628c
commit 61bbbdde58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 69 additions and 82 deletions

6
Gopkg.lock generated
View File

@ -2,12 +2,12 @@
[[projects]] [[projects]]
digest = "1:ab480b4ff653dc950445e4ac6747c2a063f3dee7b533f68d4314267ce0fd9005" branch = "master"
digest = "1:5805073c158189c2af2f776b590fc9b88bcc68f2b983842adb08333dbd3c9ae7"
name = "github.com/NaySoftware/go-fcm" name = "github.com/NaySoftware/go-fcm"
packages = ["."] packages = ["."]
pruneopts = "NUT" pruneopts = "NUT"
revision = "024ca6a2c5444c93980f558f91c35a2defebd362" revision = "2a6c4f48b49f0d5dbfe621589da4c5405157d7c9"
source = "github.com/status-im/go-fcm"
[[projects]] [[projects]]
branch = "master" branch = "master"

View File

@ -35,11 +35,6 @@
name = "github.com/golang/protobuf" name = "github.com/golang/protobuf"
version = "1.1.0" version = "1.1.0"
[[constraint]]
name = "github.com/NaySoftware/go-fcm"
revision = "024ca6a2c5444c93980f558f91c35a2defebd362"
source = "github.com/status-im/go-fcm"
# * * * * * `go-ethereum` dependencies * * * * * # * * * * * `go-ethereum` dependencies * * * * *
# Pinned down SHAs from `go-ethereum/vendor/vendor.json` # Pinned down SHAs from `go-ethereum/vendor/vendor.json`
# When upgrading upstream, upgrade these values too. # When upgrading upstream, upgrade these values too.

View File

@ -7,6 +7,7 @@ import (
"math/big" "math/big"
"sync" "sync"
fcmlib "github.com/NaySoftware/go-fcm"
gethcommon "github.com/ethereum/go-ethereum/common" gethcommon "github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil" "github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ethereum/go-ethereum/log" "github.com/ethereum/go-ethereum/log"
@ -463,12 +464,10 @@ func (b *StatusBackend) SelectAccount(address, password string) error {
} }
// NotifyUsers sends push notifications to users. // NotifyUsers sends push notifications to users.
func (b *StatusBackend) NotifyUsers(dataPayloadJSON string, tokens ...string) error { func (b *StatusBackend) NotifyUsers(message string, payload fcmlib.NotificationPayload, tokens ...string) error {
log.Debug("sending push notification") err := b.newNotification().Send(message, payload, tokens...)
err := b.newNotification().Send(dataPayloadJSON, tokens...)
if err != nil { if err != nil {
b.log.Error("NotifyUsers failed", "dataPayloadJSON", dataPayloadJSON, "error", err) b.log.Error("Notify failed", "error", err)
} }
return err return err

View File

@ -8,6 +8,7 @@ import (
"os" "os"
"unsafe" "unsafe"
"github.com/NaySoftware/go-fcm"
"github.com/ethereum/go-ethereum/log" "github.com/ethereum/go-ethereum/log"
"github.com/status-im/status-go/api" "github.com/status-im/status-go/api"
"github.com/status-im/status-go/logutils" "github.com/status-im/status-go/logutils"
@ -422,7 +423,7 @@ func makeJSONResponse(err error) *C.char {
// NotifyUsers sends push notifications by given tokens. // NotifyUsers sends push notifications by given tokens.
//export NotifyUsers //export NotifyUsers
func NotifyUsers(dataPayloadJSON, tokensArray *C.char) (outCBytes *C.char) { func NotifyUsers(message, payloadJSON, tokensArray *C.char) (outCBytes *C.char) {
var ( var (
err error err error
outBytes []byte outBytes []byte
@ -437,7 +438,7 @@ func NotifyUsers(dataPayloadJSON, tokensArray *C.char) (outCBytes *C.char) {
outBytes, err = json.Marshal(out) outBytes, err = json.Marshal(out)
if err != nil { if err != nil {
logger.Error("failed to marshal NotifyUsers output", "error", err) logger.Error("failed to marshal Notify output", "error", err)
outCBytes = makeJSONResponse(err) outCBytes = makeJSONResponse(err)
return return
} }
@ -451,7 +452,14 @@ func NotifyUsers(dataPayloadJSON, tokensArray *C.char) (outCBytes *C.char) {
return return
} }
err = statusBackend.NotifyUsers(C.GoString(dataPayloadJSON), tokens...) var payload fcm.NotificationPayload
err = json.Unmarshal([]byte(C.GoString(payloadJSON)), &payload)
if err != nil {
errString = err.Error()
return
}
err = statusBackend.NotifyUsers(C.GoString(message), payload, tokens...)
if err != nil { if err != nil {
errString = err.Error() errString = err.Error()
return return

View File

@ -8,4 +8,5 @@ import (
type FirebaseClient interface { type FirebaseClient interface {
NewFcmRegIdsMsg(tokens []string, body interface{}) *gofcm.FcmClient NewFcmRegIdsMsg(tokens []string, body interface{}) *gofcm.FcmClient
Send() (*gofcm.FcmResponseStatus, error) Send() (*gofcm.FcmResponseStatus, error)
SetNotificationPayload(payload *gofcm.NotificationPayload) *gofcm.FcmClient
} }

View File

@ -35,7 +35,6 @@ func (m *MockFirebaseClient) EXPECT() *MockFirebaseClientMockRecorder {
// NewFcmRegIdsMsg mocks base method // NewFcmRegIdsMsg mocks base method
func (m *MockFirebaseClient) NewFcmRegIdsMsg(tokens []string, body interface{}) *go_fcm.FcmClient { func (m *MockFirebaseClient) NewFcmRegIdsMsg(tokens []string, body interface{}) *go_fcm.FcmClient {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "NewFcmRegIdsMsg", tokens, body) ret := m.ctrl.Call(m, "NewFcmRegIdsMsg", tokens, body)
ret0, _ := ret[0].(*go_fcm.FcmClient) ret0, _ := ret[0].(*go_fcm.FcmClient)
return ret0 return ret0
@ -49,7 +48,6 @@ func (mr *MockFirebaseClientMockRecorder) NewFcmRegIdsMsg(tokens, body interface
// Send mocks base method // Send mocks base method
func (m *MockFirebaseClient) Send() (*go_fcm.FcmResponseStatus, error) { func (m *MockFirebaseClient) Send() (*go_fcm.FcmResponseStatus, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Send") ret := m.ctrl.Call(m, "Send")
ret0, _ := ret[0].(*go_fcm.FcmResponseStatus) ret0, _ := ret[0].(*go_fcm.FcmResponseStatus)
ret1, _ := ret[1].(error) ret1, _ := ret[1].(error)
@ -61,3 +59,15 @@ func (mr *MockFirebaseClientMockRecorder) Send() *gomock.Call {
mr.mock.ctrl.T.Helper() mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Send", reflect.TypeOf((*MockFirebaseClient)(nil).Send)) return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Send", reflect.TypeOf((*MockFirebaseClient)(nil).Send))
} }
// SetNotificationPayload mocks base method
func (m *MockFirebaseClient) SetNotificationPayload(payload *go_fcm.NotificationPayload) *go_fcm.FcmClient {
ret := m.ctrl.Call(m, "SetNotificationPayload", payload)
ret0, _ := ret[0].(*go_fcm.FcmClient)
return ret0
}
// SetNotificationPayload indicates an expected call of SetNotificationPayload
func (mr *MockFirebaseClientMockRecorder) SetNotificationPayload(payload interface{}) *gomock.Call {
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetNotificationPayload", reflect.TypeOf((*MockFirebaseClient)(nil).SetNotificationPayload), payload)
}

View File

@ -1,7 +1,6 @@
package fcm package fcm
import ( import (
"encoding/json"
"fmt" "fmt"
"github.com/NaySoftware/go-fcm" "github.com/NaySoftware/go-fcm"
@ -9,7 +8,7 @@ import (
// Notifier manages Push Notifications. // Notifier manages Push Notifications.
type Notifier interface { type Notifier interface {
Send(dataPayloadJSON string, tokens ...string) error Send(body string, payload fcm.NotificationPayload, tokens ...string) error
} }
// NotificationConstructor returns constructor of configured instance Notifier interface. // NotificationConstructor returns constructor of configured instance Notifier interface.
@ -26,30 +25,30 @@ func NewNotification(key string) NotificationConstructor {
client := fcm.NewFcmClient(key). client := fcm.NewFcmClient(key).
SetDelayWhileIdle(true). SetDelayWhileIdle(true).
SetContentAvailable(true). SetContentAvailable(true).
SetPriority(fcm.Priority_HIGH). // Message needs to be marked as high-priority so that background task in an Android's recipient device can be invoked (https://github.com/invertase/react-native-firebase/blob/d13f0af53f1c8f20db8bc8d4b6f8c6d210e108b9/android/src/main/java/io/invertase/firebase/messaging/RNFirebaseMessagingService.java#L56)
SetTimeToLive(fcm.MAX_TTL) SetTimeToLive(fcm.MAX_TTL)
return &Notification{client} return &Notification{client}
} }
} }
// Send sends a push notification to the tokens list. // Send send to the tokens list.
func (n *Notification) Send(dataPayloadJSON string, tokens ...string) error { func (n *Notification) Send(body string, payload fcm.NotificationPayload, tokens ...string) error {
var dataPayload map[string]string data := map[string]string{
err := json.Unmarshal([]byte(dataPayloadJSON), &dataPayload) "msg": body,
if err != nil {
return err
} }
n.client.NewFcmRegIdsMsg(tokens, dataPayload) if payload.Title == "" {
resp, err := n.client.Send() payload.Title = "Status"
if err != nil { }
return err if payload.Body == "" {
payload.Body = "You have a new message"
} }
if resp != nil && !resp.Ok { fmt.Println(payload.Title, payload.Body)
return fmt.Errorf("FCM error sending message, code=%d err=%s", resp.StatusCode, resp.Err)
}
return nil n.client.NewFcmRegIdsMsg(tokens, data)
n.client.SetNotificationPayload(&payload)
_, err := n.client.Send()
return err
} }

View File

@ -1,10 +1,10 @@
package fcm package fcm
import ( import (
"encoding/json"
"errors" "errors"
"testing" "testing"
"github.com/NaySoftware/go-fcm"
"github.com/golang/mock/gomock" "github.com/golang/mock/gomock"
"github.com/stretchr/testify/suite" "github.com/stretchr/testify/suite"
) )
@ -29,52 +29,43 @@ func (s *NotifierTestSuite) TearDownTest() {
s.fcmClientMockCtrl.Finish() s.fcmClientMockCtrl.Finish()
} }
func (s *NotifierTestSuite) TestSendSuccess() { func (s *NotifierTestSuite) TestNotifySuccess() {
fcmPayload := getPayload()
ids := []string{"1"} ids := []string{"1"}
dataPayload := make(map[string]string) payload := fcmPayload
dataPayload["from"] = "a" msg := make(map[string]string)
dataPayload["to"] = "b" body := "body1"
dataPayloadByteArray, err := json.Marshal(dataPayload) msg["msg"] = body
s.Require().NoError(err)
dataPayloadJSON := string(dataPayloadByteArray)
s.fcmClientMock.EXPECT().NewFcmRegIdsMsg(ids, dataPayload).Times(1) s.fcmClientMock.EXPECT().SetNotificationPayload(&fcmPayload).Times(1)
s.fcmClientMock.EXPECT().NewFcmRegIdsMsg(ids, msg).Times(1)
s.fcmClientMock.EXPECT().Send().Return(nil, nil).Times(1) s.fcmClientMock.EXPECT().Send().Return(nil, nil).Times(1)
fcmClient := Notification{s.fcmClientMock} fcmClient := Notification{s.fcmClientMock}
err = fcmClient.Send(dataPayloadJSON, ids...) err := fcmClient.Send(body, payload, ids...)
s.NoError(err) s.NoError(err)
} }
func (s *NotifierTestSuite) TestSendError() { func (s *NotifierTestSuite) TestNotifyError() {
expectedError := errors.New("error") expectedError := errors.New("error")
ids := []string{"2"} fcmPayload := getPayload()
dataPayload := make(map[string]string) ids := []string{"1"}
dataPayload["from"] = "c" payload := fcmPayload
dataPayload["to"] = "d" msg := make(map[string]string)
dataPayloadByteArray, err := json.Marshal(dataPayload) body := "body2"
s.Require().NoError(err) msg["msg"] = body
dataPayloadJSON := string(dataPayloadByteArray)
s.fcmClientMock.EXPECT().NewFcmRegIdsMsg(ids, dataPayload).Times(1) s.fcmClientMock.EXPECT().SetNotificationPayload(&fcmPayload).Times(1)
s.fcmClientMock.EXPECT().NewFcmRegIdsMsg(ids, msg).Times(1)
s.fcmClientMock.EXPECT().Send().Return(nil, expectedError).Times(1) s.fcmClientMock.EXPECT().Send().Return(nil, expectedError).Times(1)
fcmClient := Notification{s.fcmClientMock} fcmClient := Notification{s.fcmClientMock}
err = fcmClient.Send(dataPayloadJSON, ids...) err := fcmClient.Send(body, payload, ids...)
s.Equal(expectedError, err) s.Equal(expectedError, err)
} }
func (s *NotifierTestSuite) TestSendWithInvalidJSON() { func getPayload() fcm.NotificationPayload {
ids := []string{"3"} return fcm.NotificationPayload{Title: "Status - new message", Body: "sum"}
dataPayloadJSON := "{a=b}"
fcmClient := Notification{s.fcmClientMock}
err := fcmClient.Send(dataPayloadJSON, ids...)
s.Require().Error(err)
_, ok := err.(*json.SyntaxError)
s.True(ok)
} }

View File

@ -55,7 +55,6 @@ type FcmMsg struct {
RestrictedPackageName string `json:"restricted_package_name,omitempty"` RestrictedPackageName string `json:"restricted_package_name,omitempty"`
DryRun bool `json:"dry_run,omitempty"` DryRun bool `json:"dry_run,omitempty"`
Condition string `json:"condition,omitempty"` Condition string `json:"condition,omitempty"`
MutableContent bool `json:"mutable_content,omitempty"`
} }
// FcmMsg represents fcm response message - (tokens and topics) // FcmMsg represents fcm response message - (tokens and topics)
@ -180,8 +179,6 @@ func (this *FcmClient) sendOnce() (*FcmResponseStatus, error) {
return fcmRespStatus, err return fcmRespStatus, err
} }
fcmRespStatus.Err = string(body)
fcmRespStatus.StatusCode = response.StatusCode fcmRespStatus.StatusCode = response.StatusCode
fcmRespStatus.RetryAfter = response.Header.Get(retry_after_header) fcmRespStatus.RetryAfter = response.Header.Get(retry_after_header)
@ -316,19 +313,6 @@ func (this *FcmClient) SetDryRun(drun bool) *FcmClient {
return this return this
} }
// SetMutableContent Currently for iOS 10+ devices only. On iOS,
// use this field to represent mutable-content in the APNs payload.
// When a notification is sent and this is set to true, the content
// of the notification can be modified before it is displayed,
// using a Notification Service app extension.
// This parameter will be ignored for Android and web.
func (this *FcmClient) SetMutableContent(mc bool) *FcmClient {
this.Message.MutableContent = mc
return this
}
// PrintResults prints the FcmResponseStatus results for fast using and debugging // PrintResults prints the FcmResponseStatus results for fast using and debugging
func (this *FcmResponseStatus) PrintResults() { func (this *FcmResponseStatus) PrintResults() {
fmt.Println("Status Code :", this.StatusCode) fmt.Println("Status Code :", this.StatusCode)