2017 © Pedro Peláez
 

magento2-module kustomer-integration

Integrate Magento eCommerce site with Kustomer service

image

kustomer/kustomer-integration

Integrate Magento eCommerce site with Kustomer service

  • Monday, June 18, 2018
  • by kustomer
  • Repository
  • 9 Watchers
  • 0 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 7 Versions
  • 0 % Grown

The README.md

Kustomer Extension for Adobe Commerce 2.x

This extension allows publication of Adobe Commerce events to Kustomer. It provides a KustomerEventObserver class that you can extend to publish events to your Kustomer account., (*1)

Installation

  1. $ composer require kustomer/kustomer-integration from your Adobe Commerce project root
  2. $ bin/magento module:enable Kustomer_KustomerIntegration --clear-static-content
  3. $ bin/magento setup:upgrade
  4. $ bin/magento setup:di:compile

Notes

Packagist

If you are using the default adobe commerce metapackage, you will need to add the packagist repo to your store's composer.json:, (*2)

{
    "repositories": [
        {
            "type": "composer",
            "url": "https://repo.magento.com/"
        },
        {
            "type": "composer",
            "url": "https://packagist.org"
        }
    ]
}

Find more detailed instructions here, (*3)

Cron

The extension makes use of a cron job to collect events and send them to Kustomer and thus requires cron to be installed on the Adobe Commerce server., (*4)

You can check if the cron was installed correctly with crontab -l. If the cron does not show up, run bin/magento cron:install in your Adobe Commerce dir. This command is available with Adobe Commerce 2.2., (*5)

Setup

Use of this extension requires an active Kustomer subscription. More information about Kustomer can be found on our website., (*6)

Before you can start sending data to Kustomer, you must install the Adobe Commerce app in your Kustomer account. You can do this by logging into the Kustomer app then go to Settings>>App Directory and click Install for Adobe Commerce., (*7)

Once Adobe Commerce is enabled on your Kustomer account, you need to create an API key so your Adobe Commerce store can send data to Kustomer. In the Kustomer app, go to Settings>>API Keys. Create a key here with the role org.user and keep a copy of the key handy. You will need it., (*8)

Next, go to your Adobe Commerce store's admin site and navigate to Store>>Configuration>>Customers>>Kustomer (if the Kustomer option is not available, see the installation instructions above). Select the store/website you want to integrate with Kustomer (or stay in the default scope if you want to use the integration globally). Enter the API key you generated in Kustomer into the API Key box and make sure the Enabled option is set to Yes. Next, select any of the default events you want to broadcast to Kustomer (such as when a new Customer is created) and click Save. You should be all set!, (*9)

Pausing the Extension

If you want to stop sending data to Kustomer, you can turn off the extension at any time by returning to the settings page and setting the Enabled value to No. Note that any data collected while the extension is off will not be sent to Kustomer., (*10)

Custom Events and Objects

While the Kustomer Extension comes with a few pre-made events (new customers, orders, etc.), it is possible to send add your own custom events to Kustomer. To do this, create your own module and make sure kustomer/kustomer-integration is one of the requirements in composer.json. For more information about creating Adobe Commerce Modules, see the Adobe Commerce Developer Documentation., (*11)

Then create an Observer under Observers/MySubscriptionObserver.php and extend the KustomerEventObserver class. If you wanted to send a custom Subscription object to Kustomer when it is created, you might do something like this:, (*12)

getEvent()->getSubscription();
        $customer = $subscription->getCustomerId();

        $type = 'subscription';
        $data = array(
            'plan' => $subscription->getPlan(),
            'term' => $subscription->getTerm(),
            'period_start' => $subscription->getPeriodStart(),
            'period_end' => $subscription->getPeriodEnd()  
        );
        $this->publish($type, $data, $customer);
    }
}
```
Note that the `KustomerEventObserver.publish()` method requires a `$type` string, an array of `$data` (this is will be your object in Kustomer) and a `$customer` variable that is either a customer ID or an instance of `CustomerInterface`.

We also recommend you explicitly select which fields you send to Kustomer. This will avoid inadvertently sharing information you may not want to share with Kustomer, such as passwords.

Once your observer is ready, you need to register it in your module's `etc/events.xml` file. This example might look like this:

```xml

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd">
    <event name="subscription_create_success">
        <observer name="my_subscription_observer" instance="MyCompany\MyModule\Observer\MySubscriptionObserver" />
    </event>
</config>

Subscription objects will automatically be ingested by Kustomer and associated with your customer as Kustom Objects belonging to a dynamically-generated Klass., (*13)

Customer Only Events

If you just want to send the Customer object, you can assign $type a value of 'customer' and pass an empty array as $data:, (*14)

<?php
class MySubscriptionObserver extends KustomerEventObserver
{
    /**
     * @param EventObserver $observer
     */
    public function execute(EventObserver $observer)
    {
        $customer = $observer->getEvent()->getCustomer();

        $type = 'customer';
        $data = [];
        $this->publish($type, $data, $customer);
    }
}

The Versions

18/06 2018

dev-master

9999999-dev

Integrate Magento eCommerce site with Kustomer service

  Sources   Download

OSL-3.0 AFL-3.0

The Requires

  • php ~5.5.0|~5.6.0|~7.0.0|~7.1.0

 

The Development Requires

18/06 2018

1.1.3

1.1.3.0

Integrate Magento eCommerce site with Kustomer service

  Sources   Download

OSL-3.0 AFL-3.0

The Requires

  • php ~5.5.0|~5.6.0|~7.0.0|~7.1.0

 

The Development Requires

17/05 2018

1.1.2

1.1.2.0

Integrate Magento eCommerce site with Kustomer service

  Sources   Download

OSL-3.0 AFL-3.0

The Requires

  • php ~5.5.0|~5.6.0|~7.0.0|~7.1.0

 

The Development Requires

02/05 2018

1.1.1

1.1.1.0

Integrate Magento eCommerce site with Kustomer service

  Sources   Download

OSL-3.0 AFL-3.0

The Requires

  • php ^7.1.0
  • magento/framework ~101.0
  • magento/module-customer ~101.0
  • magento/module-quote ~101.0
  • magento/module-store ~100.2
  • magento/module-catalog ~102.0
  • magento/module-config ~101.0

 

The Development Requires

11/04 2018

1.1.0

1.1.0.0

Integrate Magento eCommerce site with Kustomer service

  Sources   Download

OSL-3.0 AFL-3.0

The Requires

  • php ~5.5.0|~5.6.0|~7.0.0
  • magento/framework ~101.0
  • magento/module-customer ~101.0
  • magento/module-quote ~101.0
  • magento/module-store ~100.2
  • magento/module-catalog ~102.0
  • magento/module-config ~101.0

 

The Development Requires

03/04 2018

1.0.3

1.0.3.0

Integrate Magento eCommerce site with Kustomer service

  Sources   Download

OSL-3.0 AFL-3.0

The Requires

  • php ~5.5.0|~5.6.0|~7.0.0
  • magento/framework ~101.0
  • magento/module-customer ~101.0
  • magento/module-quote ~101.0
  • magento/module-store ~100.2
  • magento/module-catalog ~102.0
  • magento/module-config ~101.0

 

The Development Requires

30/03 2018

1.0.2

1.0.2.0

Integrate Magento eCommerce site with Kustomer service

  Sources   Download

OSL-3.0 AFL-3.0

The Requires

  • php ~5.5.0|~5.6.0|~7.0.0
  • magento/framework ~101.0
  • magento/module-customer ~101.0
  • magento/module-store ~100.2
  • magento/module-catalog ~102.0
  • magento/module-config ~101.0

 

The Development Requires