1. Go to this page and download the library: Download nti/sync-bundle library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
nti / sync-bundle example snippets
public function registerBundles()
{
$bundles = array(
...
new NTI\SyncBundle\NTISyncBundle(),
...
);
}
...
use NTI\Annotations as NTI;
/**
* ...
* @NTI\SyncEntity()
*/
public class Product {
...
/**
* @ORM\Column(name="last_timestamp", type="bigint", options={"default": 0})
*/
private $lastTimestamp;
...
/**
* Set lastTimestamp
* @param $lastTimestamp
* @return Company
*/
public function setLastTimestamp($lastTimestamp)
{
$this->lastTimestamp = $lastTimestamp;
return $this;
}
/**
* Get lastTimestamp
* @return integer
*/
public function getLastTimestamp()
{
return $this->lastTimestamp;
}
}
An example of a class using a `ManyToOne` where the child also needs the parent's `last_timestamp` to be updated can be defined as:
/**
* Interface SyncRepositoryInterface
* @package NTI\SyncBundle\Interfaces
*/
interface SyncRepositoryInterface {
/**
* This function should return a plain array containing the results to be sent to the client
* when a sync is requested. The container is also passed as a parameter in order to give additional
* flexibility to the repository when making decision on what to show to the client. For example, if the user
* making the request only has access to a portion of the data, this can be handled via the container in this method
* of the repository.
*
* Note 1: If the `updatedOn` of a child entity is the one that is affected and not the parent, you may have to take that
* into account when doing your queries so that the updated information shows up in the results if desired when doing
* the comparison with the timestamp
*
* For example:
*
* $qb -> ...
* $qb -> leftJoin('a.b', 'b')
* $qb -> andWhere($qb->expr()->orX(
* $qb->expr()->gte('a.lastTimestamp', $date),
* $qb->expr()->gte('b.lastTimestamp', $date)
* ))
* ...
*
* This way if the only way of syncronizing B is through A, next time A gets synched B changes will be reflected.
*
* The resulting structure should be the following:
*
* array(
* "data" => (array of objects),
* SyncState::REAL_LAST_TIMESTAMP => (last updated_on date from the array of objects),
* )
*
*
* @param $timestamp
* @param ContainerInterface $container
* @param array $serializationGroups
* @return mixed
*/
public function findFromTimestamp($timestamp, ContainerInterface $container, $serializationGroups = array());
GET /nti/sync/summary
[
{
"id": 1,
"mapping": {
"id": 1,
"name": "Product",
"class": "AppBundle\\Entity\\Product\\Product",
"sync_service": "AppBundle\\Service\\Product\\ProductService"
},
"timestamp": 1515076764
},
...
]
POST /nti/sync/pull
Content-Type: application/json
{
"mappings": [
{ "mapping": "[MAPPING_NAME]", "timestamp": [LAST_TIMESTAMP_CHECKED] }
]
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.