mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-27 16:48:47 +00:00
76 lines
1.9 KiB
PHP
76 lines
1.9 KiB
PHP
<?php
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
require_once 'modules/WSAPP/synclib/models/SyncStateModel.php';
|
|
|
|
abstract class WSAPP_BaseConnector {
|
|
|
|
protected $syncController;
|
|
|
|
function __construct() {
|
|
|
|
}
|
|
|
|
public function pull(){
|
|
return false;
|
|
}
|
|
|
|
public function push(){
|
|
return false;
|
|
}
|
|
|
|
function postEvent($type, $synchronizedRecords, $syncStateModel){
|
|
return false;
|
|
}
|
|
|
|
function preEvent($type){
|
|
return false;
|
|
}
|
|
|
|
abstract function getName();
|
|
|
|
function getSyncState(){
|
|
return new WSAPP_SyncStateModel();
|
|
}
|
|
function updateSyncState(){
|
|
|
|
}
|
|
|
|
function getSynchronizeController(){
|
|
return $this->syncController;
|
|
}
|
|
|
|
function setSynchronizeController($syncController){
|
|
$this->syncController = $syncController;
|
|
}
|
|
|
|
/*
|
|
* This will performs basic transformation between two records
|
|
* <params>
|
|
* The sourece records refers to record which has data
|
|
* Target record refers to record to which data has to be copied
|
|
*
|
|
*/
|
|
public function performBasicTransformations(WSAPP_SyncRecordModel $sourceRecord,WSAPP_SyncRecordModel $targetRecord){
|
|
$targetRecord->setType($sourceRecord->getType())
|
|
->setMode($sourceRecord->getMode())
|
|
->setSyncIdentificationKey($sourceRecord->getSyncIdentificationKey());
|
|
return $targetRecord;
|
|
}
|
|
|
|
public function performBasicTransformationsToSourceRecords(WSAPP_SyncRecordModel $sourceRecord, WSAPP_SyncRecordModel $targetRecord){
|
|
$sourceRecord->setId($targetRecord->getId())
|
|
->setModifiedTime($targetRecord->getModifiedTime());
|
|
return $sourceRecord;
|
|
}
|
|
|
|
public function performBasicTransformationsToTargetRecords(WSAPP_SyncRecordModel $sourceRecord, WSAPP_SyncRecordModel $targetRecord){
|
|
$sourceRecord->setId($targetRecord->get('_id'))
|
|
->setModifiedTime($targetRecord->get('_modifiedtime'));
|
|
return $sourceRecord;
|
|
}
|
|
|
|
}
|
|
?>
|