comsave/salesforce-outbound-message-bundle
Create, update, remove objects in Symfony sent through Salesforce outbound messages.
This bundle assumes you're using:
doctrine/mongodb-odm).comsave/salesforce-mapper-bundle for Salesforce object mapping to your MongoDB Document classes.createupdatedelete. To enable this complete additional setup steps.beforeFlushafterFlushcomposer require comsave/salesforce-outbound-message-bundleAppKernel.php by adding
new Comsave\SalesforceOutboundMessageBundle\ComsaveSalesforceOutboundMessageBundle() /sync) and a method to a controller:<?php
use Symfony\Component\HttpFoundation\Request;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Comsave\SalesforceOutboundMessageBundle\Services\RequestHandler\OutboundMessageRequestHandler;
class OutboundMessageController extends Controller
{
public function syncAction(Request $request, OutboundMessageRequestHandler $requestHandler)
{
try {
$outboundMessageXml = $request->getContent();
return $requestHandler->handle($outboundMessageXml);
}
catch (\Throwable $e) {
throw new \SoapFault("Server", $e->getMessage());
}
}
}
app/config/config.ymlcomsave_salesforce_outbound_message:
# WSDL_CACHE_NONE, WSDL_CACHE_DISK, WSDL_CACHE_MEMORY or WSDL_CACHE_BOTH
wsdl_cache: 'WSDL_CACHE_DISK'
# An absolute path to Salesforce object WSDL files
wsdl_directory: '/absolute/path/'
document_paths:
# Map a document using its Salesforce name and your local class
CustomObject__c:
path: 'YourNamespace\Documents\CustomObject'
force_compare: false # if true, incoming object will be compared to existing ones in the database; will continue sync only if not equal
DocumentInterface to the document class you'd like to be tracked by the OutboundMessageBundle.<?php
use Comsave\SalesforceOutboundMessageBundle\Interfaces\DocumentInterface;
use LogicItLab\Salesforce\MapperBundle\Model\Account as BaseAccount;
class Account extends BaseAccount implements DocumentInterface
{
}
EventSubscriber for an object you'd like to sync. It would look something like this for the Account object:<?php
namespace YourNamespace\EventSubscriber;
use Comsave\SalesforceOutboundMessageBundle\Event\OutboundMessageBeforeFlushEvent;
use Comsave\SalesforceOutboundMessageBundle\Event\OutboundMessageAfterFlushEvent;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Comsave\SalesforceOutboundMessageBundle\Interfaces\DocumentInterface;
use Comsave\Webservice\Core\UserBundle\Document\Account;
class AccountSoapRequestSubscriber implements EventSubscriberInterface
{
public static function getSubscribedEvents()
{
return [
OutboundMessageBeforeFlushEvent::NAME => [
['onBeforeFlush'],
],
OutboundMessageAfterFlushEvent::NAME => [
['onAfterFlush'],
],
];
}
public function supports(DocumentInterface $document): bool
{
$documentClass = get_class($document);
return Account::class == $documentClass || $document instanceof Account;
}
public function onBeforeFlush(OutboundMessageBeforeFlushEvent $event)
{
/**
* Make sure to do call $this->supports() before you start processing the object
* You only want to process the correct object in this EventSubscriber (which is Account in this case)
*/
/** @var Account $newAccount */
$newAccount = $event->getNewDocument();
if (!$this->supports($newAccount)) return;
/** @var Account $existingAccount */
$existingAccount = $event->getExistingDocument();
/**
* You can do any modifications you want to the object before it get's saved (flushed) to the database.
* - - -
* $event->getExistingDocument() provides you access to the existing object (if it exists)
* $event->getNewDocument() provides you access to the new object delivered by the outbound message. This is the object that will be merged over the existing one (if any) and saved to the database. In most of the cases you only need to use this one.
*/
}
public function onAfterFlush(OutboundMessageAfterFlushEvent $event)
{
/** @var Account $account */
$account = $event->getDocument();
if (!$this->supports($account)) return;
/**
* You can process the object further if necessary after it has been saved (flushed) to the database.
*/
}
}
Account in our example).This project is licensed under the MIT License.
How can I help you explore Laravel packages today?