Download the PHP package nti/sync-bundle without Composer
On this page you can find all versions of the php package nti/sync-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download nti/sync-bundle
More information about nti/sync-bundle
Files in nti/sync-bundle
Package sync-bundle
Short Description Symfony NTISyncBundle
License MIT
Informations about the package sync-bundle
NTISyncBundle
Installation
-
Install the bundle using composer:
-
Add the bundle configuration to the AppKernel
-
Update the database schema
- Add the routes to your
routing.yml
Requirements
Below are a list of things that need to be considered in order to implement this bundle:
- Any Entity that needs to be taken into account during the synchronization process must have the
@NTI\SyncEntity
annotation at the class level. ManyToOne
relationships that should alter the last synchronization timestamp of their parents should use the annotation@NTI\SyncParent(getter="[Getter Name]")
(see example below for more information).- Entities to be synced must have a repository implementing the
SyncRepositoryInterface
(see below for more information). - The mapping
SyncMapping
needs to be configured foreach entity as it is the list used as reference for the lookup. -
The
SyncState
should be created for each mapping. This can be done with this query after creating all theSyncMapping
: yaml nti_sync: deletes:Identifier to use when an item gets deleted. This would go in your
deletes
section as shown belowidentifier_getter: "getId"
{
"[MAPPING_NAME]": {
"changes": [
{
"id": 2,
"productId": "POTATOBAG",
"name": "Potato bag",
"description": "Bag of potatoes",
"price": "32.99",
"cost": "0",
"createdOn": "11/30/2017 04:22:49 PM",
"updatedOn": "11/30/2017 04:22:49 PM",
"lastTimestamp": 1515068439
},
...
],
"newItems": [
{
"id": 1,
"uuid": "24a7aff0-fea8-4f62-b421-6f97f464f310",
"mapping": {
"id": 1,
"name": "Product",
"class": "AppBundle\Entity\Product\Product",
"sync_service": "AppBundle\Service\Product\ProductService"
},
"class_id": 8,
"timestamp": 1515068439
},
...
],
"deletes": [
{
"id": 2,
"mapping": {
"id": 2,
"name": "Product",
"class": "AppBundle\Entity\Product\Product"
},
"classId": "[identifier_getter result]",
"timestamp": 1512080746
},
...
],
"failedItems": [
{
"id": 7,
"uuid": "abcdefg-123456-hifgxyz-78901",
"mapping": {
"id": 9,
"name": "Product",
"class": "AppBundle\Entity\Product\Product",
"sync_service": " ... "
},
"classId": 137,
"timestamp": 1512080747,
"errors": [...errors provided...]
},
...
],
"_real_last_timestamp": 1512092445
}
}
POST /nti/sync/push Content-Type: application/json { "mappings": [ { "mapping": "[MAPPING_NAME]", "data": [ { "id": "5eb86d4a-9b82-42f3-abae-82b1b61ad58e", "serverId": 1, "name": "Product1", "description": "Description of the product", "price": 55, "lastTimestamp": 1512080746 }, ... ] } ] }
{ "mappings": [ { "[MAPPING_NAME]": "RESULT OF YOUR sync() HERE" }, { "[MAPPING_NAME]": "RESULT OF YOUR sync() HERE" }, { "[MAPPING_NAME]": "RESULT OF YOUR sync() HERE" }, ] }
## Todo
* Handle deletes from third parties
* `ManyToMany` relationships are tricky and can lead to performance issues