Skip to content

Commit 29be818

Browse files
author
Fabian Mielke
committed
externalCheckSum (Attachment) available
Fill the externalCheckSum for Attachments for a better synchronization handling.
1 parent 2628080 commit 29be818

File tree

5 files changed

+21
-14
lines changed

5 files changed

+21
-14
lines changed

Immocaster/Immobilienscout/Immobilienscout.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -341,8 +341,9 @@ protected function createAttachmentBody($sMimeBoundary,$aArgs)
341341
$sBody .= 'xmlns:ns3="http://rest.immobilienscout24.de/schema/platform/gis/1.0" xmlns:xlink="http://www.w3.org/1999/xlink" ';
342342
$sBody .= 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">' . $sBreak;
343343
$sBody .= '<title>'.$aArgs['title'].'</title>' . $sBreak;
344+
$sBody .= '<externalId>'.$aArgs['externalId'].'</externalId>' . $sBreak;
345+
$sBody .= '<externalCheckSum>'.$aArgs['externalCheckSum'].'</externalCheckSum>' . $sBreak;
344346
if( $aArgs['type']==='Picture' || $aArgs['type']==='PDFDocument') {
345-
$sBody .= '<externalId>'.$aArgs['externalId'].'</externalId>' . $sBreak;
346347
$sBody .= '<floorplan>'.$aArgs['floorplan'].'</floorplan>' . $sBreak;
347348
}
348349
if( $aArgs['type']==='Picture') {

Immocaster/Immobilienscout/Rest.php

+2
Original file line numberDiff line numberDiff line change
@@ -817,6 +817,7 @@ private function _exportObjectAttachment($aArgs)
817817
if(!isset($aArgs['titlePicture'])){ $aArgs['titlePicture'] = 'false'; }
818818
if(!isset($aArgs['type'])){ $aArgs['type'] = ''; }
819819
if(!isset($aArgs['externalId'])){ $aArgs['externalId'] = ''; }
820+
if(!isset($aArgs['externalCheckSum'])){ $aArgs['externalCheckSum'] = ''; }
820821
$oToken = null;
821822
$sSecret = null;
822823
$aHeader = array();
@@ -853,6 +854,7 @@ private function _exportObjectAttachment($aArgs)
853854
$req->unset_parameter('url');
854855
$req->unset_parameter('type');
855856
$req->unset_parameter('externalId');
857+
$req->unset_parameter('externalCheckSum');
856858
return parent::getContent(
857859
$req,
858860
$sSecret,

Immocaster/Sdk.php

+11-11
Original file line numberDiff line numberDiff line change
@@ -9,32 +9,32 @@
99
* @author Norman Braun (medienopfer98.de)
1010
* @link http://www.immobilienscout24.de
1111
*/
12-
12+
1313
class Immocaster_Sdk
1414
{
15-
15+
1616
/**
1717
* Version and Application
1818
*
1919
* @var string
2020
*/
2121
private $_sImmocasterApplication = 'SDK';
22-
private $_sImmocasterVersion = '1_1_x';
22+
private $_sImmocasterVersion = '1_1_x';
2323

2424
/**
2525
* Service Objekt
2626
*
2727
* @var mixed
2828
*/
2929
private $_oService = false;
30-
30+
3131
/**
3232
* Singleton Instanzen
3333
*
3434
* @var array
3535
*/
3636
static private $_instances = array();
37-
37+
3838
/**
3939
* Singleton Pattern für die Erstellung
4040
* der Instanzen von Immocaster_Sdk.
@@ -55,7 +55,7 @@ static public function getInstance($sName,$sKey='',$sSecret='',$sService='immobi
5555
}
5656
return self::$_instances[$sName];
5757
}
58-
58+
5959
/**
6060
* Abhängige Dateien laden und Verbindung
6161
* zu einem Service aufbauen.
@@ -92,7 +92,7 @@ protected function __construct($sKey,$sSecret,$sService,$sAuth,$sProtocol)
9292
echo sprintf(IMMOCASTER_SDK_LANG_CANNOT_CONNECT_SERVICE,$sService,$sAuth.'/'.$sProtocol);
9393
return false;
9494
}
95-
95+
9696
/**
9797
* Aufgerufene Methode in den jeweiligen
9898
* Service weiterleiten und dort aufrufen.
@@ -110,7 +110,7 @@ public function __call($method,$args)
110110
echo IMMOCASTER_SDK_LANG_NO_SERVICE_FOUND;
111111
return false;
112112
}
113-
113+
114114
/**
115115
* Haupt-URL zum Service ändern.
116116
*
@@ -126,7 +126,7 @@ public function setRequestUrl($sUrl=false)
126126
echo IMMOCASTER_SDK_LANG_NO_SERVICE_FOR_CHANGE_URL;
127127
return false;
128128
}
129-
129+
130130
/**
131131
* Datenspeicherung Datenbank
132132
* initialisieren (für 3-legged-oauth).
@@ -148,5 +148,5 @@ public function setDataStorage($aConnection,$sSessionNamespace=null,$sTableName=
148148
require_once(dirname(__FILE__).'/Data/'.$sFileName.'.php');
149149
return call_user_func(array('Immocaster_Data_'.$sFileName,'getInstance'),$aConnection,$sTableName);
150150
}
151-
152-
}
151+
152+
}

README.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Immocaster PHP SDK v1.1.80
1+
Immocaster PHP SDK v1.1.81
22
==========================
33
Author: Norman Braun (http://www.medienopfer98.de)
44
Copyright: Immobilien Scout GmbH
@@ -9,6 +9,9 @@ Das PHP SDK von ImmobilienScout24 steht unter der FreeBSD Lizenz zur Verfügung
99
History
1010
=======
1111

12+
SDK Version 1.1.81
13+
- externalCheckSum für effizientere Synchronisierung von Attachments verfügbar.
14+
1215
SDK Version 1.1.80
1316
- Erlaubt die Verwendung eines eigenen Proxys. Vielen Dank, webbird!
1417

index.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,8 @@
353353
'type' => 'ATTACHMENTTYPE', // Picture, PDFDocument or Link
354354
'file' => 'LOCATION', // file path OR URL
355355
//'url' => 'URL',
356-
'externalId' => 'EXTERNALID'); // optional
356+
'externalId' => 'EXTERNALID', // optional
357+
'externalCheckSum' => 'CHECKSUM'); // optional
357358
$res = $oImmocaster->exportObjectAttachment($aParameter);
358359
echo '<div class="codebox"><textarea>'.$res.'</textarea></div>';
359360
*/

0 commit comments

Comments
 (0)