GithubHelp home page GithubHelp logo

awspushbundle's People

Contributors

ahonymous avatar avtehnik avatar ayoze avatar deguif avatar dylan-salmon avatar etheriq avatar javer avatar mcfedr avatar nonanerz avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

awspushbundle's Issues

Device disabled error

If a device is disabled in SNS, an error is thrown preventing the rest of my code from functioning โ€“ can't seem to find a method to check if a device is enabled prior to delivery of method therefore I can't guarantee execution of the rest of my code, what's the normal approach to handle this?

Error while installing

I have error when I try installing plugin:

Notice: Undefined index: platforms In McfedrAwsPushExtension.php line 28:

add apns-collapse-id

Hello

collapse_key is compatible only for android devices, for apns we must use apns-collapse-id.
it exist this attribute AWS.SNS.MOBILE.APNS.COLLAPSE_ID now supported by SNS
https://docs.aws.amazon.com/sns/latest/dg/sns-message-attributes.html#sns-attrib-mobile-reserved

in the Mcfedr\AwsPushBundle\Service\Messages we could use the collapseKey to add this message attribute ?

    public function send($message, string $endpointArn): void
    {
        if ($this->debug) {
            $this->logger && $this->logger->notice(
                "Message would have been sent to $endpointArn",
                [
                    'Message' => $message,
                ]
            );

            return;
        }

        if (!($message instanceof Message)) {
            $message = new Message($message);
        }

        if ($this->platforms !== null && !$message->isPlatformsCustomized()) {
            $message->setPlatforms($this->platforms);
        }

        $messageAttributes = [
            'AWS.SNS.MOBILE.APNS.PUSH_TYPE' => ['DataType' => 'String', 'StringValue' => $message->getPushType()],
        ];

        if ($message->getCollapseKey() != Message::NO_COLLAPSE) {
            $messageAttributes['AWS.SNS.MOBILE.APNS.COLLAPSE_ID'] = ['DataType' => 'String', 'StringValue' => $message->getCollapseKey()];
        }

        $this->sns->publish(
            [
                'TargetArn' => $endpointArn,
                'Message' => $this->encodeMessage($message),
                'MessageStructure' => 'json',
                'MessageAttributes' => $messageAttributes,
            ]
        );
    }

Update to Symfony 3

Hi,

I have downloaded and tested your code in my Symfony 3 project and it works fine.

I only could test send to one device, but I think that the rest of methods work too.

APNS aps data

I can't find any way to set aps data except badge, sound and content-avaliable.

How can I set category for example?

I found on your documentation the customAPNSdata but it seems it encapsulates it outside the aps key.

Could you provide a method to add an array of data the user wants inside aps key?

Thank you!

deprecated autowiring

Hi, Im using symfony 3.4.22 and apear this deprecated

Autowiring services based on the types they implement is deprecated since Symfony 3.3 and won't be supported in version 4.0. You should rename (or alias) the "mcfedr_aws_push.sns_client" service to "Aws\Sns\SnsClient" instead.

my composer has this detail information

        "name": "mcfedr/awspushbundle",
        "version": "6.11.0",
        "source": {
            "type": "git",
            "url": "https://github.com/mcfedr/awspushbundle.git",
            "reference": "8a90e38b8f463e86618be816553f35e9262ad0dc"
        },

could I can remove this deprecated?

ClassNotFoundException in AppKernel.php

Hi,

Installed mcfedr/awspushbundle V5.1.2 (version), but I got error while include awspushbundle in appkernel. Plz refer below screenshots:

  1. Installed path:
    screen1
  2. Include in appkernel:
    screen2

3.Error:
screen3

Thanks

Microsoft Platforms(WNS,MPNS)

Hi,

First of all thank you for your great work. I have a question. Can you add the Windows Phone push platforms or can you help me how can I add them to your bundle.

Thanks.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.