Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117887657
SyncState.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
7 KB
Referenced Files
None
Subscribers
None
SyncState.php
View Options
<?php
/**
* Syncroton
*
* @package Syncroton
* @subpackage Backend
* @license http://www.tine20.org/licenses/lgpl.html LGPL Version 3
* @author Lars Kneschke <l.kneschke@metaways.de>
* @copyright Copyright (c) 2009-2012 Metaways Infosystems GmbH (http://www.metaways.de)
*
*/
/**
* sql backend class for the folder state
*
* @package Syncroton
* @subpackage Backend
*/
class
Syncroton_Backend_SyncState
extends
Syncroton_Backend_ABackend
implements
Syncroton_Backend_ISyncState
{
protected
$_tableName
=
'synckey'
;
protected
$_modelClassName
=
'Syncroton_Model_SyncState'
;
protected
$_modelInterfaceName
=
'Syncroton_Model_ISyncState'
;
/**
* (non-PHPdoc)
* @see Syncroton_Backend_ISyncState::create()
*/
public
function
create
(
$model
,
$keepPreviousSyncState
=
true
)
{
$state
=
parent
::
create
(
$model
);
if
(
$keepPreviousSyncState
!==
true
)
{
// remove all other synckeys
$this
->
_deleteOtherStates
(
$state
);
}
return
$state
;
}
/**
* (non-PHPdoc)
* @see Syncroton_Backend_ABackend::_convertModelToArray()
*/
protected
function
_convertModelToArray
(
$model
)
{
$model
=
parent
::
_convertModelToArray
(
$model
);
$model
[
'pendingdata'
]
=
isset
(
$model
[
'pendingdata'
])
&&
is_array
(
$model
[
'pendingdata'
])
?
Zend_Json
::
encode
(
$model
[
'pendingdata'
])
:
null
;
return
$model
;
}
/**
*
* @param Syncroton_Model_ISyncState $state
*/
protected
function
_deleteOtherStates
(
Syncroton_Model_ISyncState
$state
)
{
// remove all other synckeys
$where
=
array
(
'device_id = ?'
=>
$state
->
deviceId
,
'type = ?'
=>
$state
->
type
,
'counter != ?'
=>
$state
->
counter
);
$this
->
_db
->
delete
(
$this
->
_tablePrefix
.
$this
->
_tableName
,
$where
);
return
true
;
}
/**
* (non-PHPdoc)
* @see Syncroton_Backend_ABackend::_getObject()
*/
protected
function
_getObject
(
$data
)
{
$model
=
parent
::
_getObject
(
$data
);
if
(
$model
->
pendingdata
!==
NULL
)
{
$model
->
pendingdata
=
Zend_Json
::
decode
(
$model
->
pendingdata
);
}
return
$model
;
}
/**
* (non-PHPdoc)
* @see Syncroton_Backend_ISyncState::getSyncState()
*/
public
function
getSyncState
(
$deviceId
,
$folderId
)
{
$deviceId
=
$deviceId
instanceof
Syncroton_Model_IDevice
?
$deviceId
->
id
:
$deviceId
;
$folderId
=
$folderId
instanceof
Syncroton_Model_IFolder
?
$folderId
->
id
:
$folderId
;
$select
=
$this
->
_db
->
select
()
->
from
(
$this
->
_tablePrefix
.
$this
->
_tableName
)
->
where
(
$this
->
_db
->
quoteIdentifier
(
'device_id'
)
.
' = ?'
,
$deviceId
)
->
where
(
$this
->
_db
->
quoteIdentifier
(
'type'
)
.
' = ?'
,
$folderId
)
->
order
(
'counter DESC'
)
->
limit
(
1
);
$stmt
=
$this
->
_db
->
query
(
$select
);
$data
=
$stmt
->
fetch
();
$stmt
=
null
;
# see https://bugs.php.net/bug.php?id=44081
if
(
$data
===
false
)
{
throw
new
Syncroton_Exception_NotFound
(
'id not found'
);
}
return
$this
->
_getObject
(
$data
);
}
/**
* delete all stored synckeys for given type
*
* @param Syncroton_Model_IDevice|string $deviceId
* @param Syncroton_Model_IFolder|string $folderId
*/
public
function
resetState
(
$deviceId
,
$folderId
)
{
$deviceId
=
$deviceId
instanceof
Syncroton_Model_IDevice
?
$deviceId
->
id
:
$deviceId
;
$folderId
=
$folderId
instanceof
Syncroton_Model_IFolder
?
$folderId
->
id
:
$folderId
;
$where
=
array
(
$this
->
_db
->
quoteInto
(
$this
->
_db
->
quoteIdentifier
(
'device_id'
)
.
' = ?'
,
$deviceId
),
$this
->
_db
->
quoteInto
(
$this
->
_db
->
quoteIdentifier
(
'type'
)
.
' = ?'
,
$folderId
)
);
$this
->
_db
->
delete
(
$this
->
_tablePrefix
.
$this
->
_tableName
,
$where
);
}
/**
* get array of ids which got send to the client for a given class
*
* @param Syncroton_Model_IDevice|string $deviceId
* @param Syncroton_Model_IFolder|string $folderId
* @return Syncroton_Model_SyncState
*/
public
function
validate
(
$deviceId
,
$folderId
,
$syncKey
)
{
$deviceId
=
$deviceId
instanceof
Syncroton_Model_IDevice
?
$deviceId
->
id
:
$deviceId
;
$folderId
=
$folderId
instanceof
Syncroton_Model_IFolder
?
$folderId
->
id
:
$folderId
;
$select
=
$this
->
_db
->
select
()
->
from
(
$this
->
_tablePrefix
.
$this
->
_tableName
)
->
where
(
$this
->
_db
->
quoteIdentifier
(
'device_id'
)
.
' = ?'
,
$deviceId
)
->
where
(
$this
->
_db
->
quoteIdentifier
(
'counter'
)
.
' = ?'
,
$syncKey
)
->
where
(
$this
->
_db
->
quoteIdentifier
(
'type'
)
.
' = ?'
,
$folderId
);
$stmt
=
$this
->
_db
->
query
(
$select
);
$data
=
$stmt
->
fetch
();
$stmt
=
null
;
# see https://bugs.php.net/bug.php?id=44081
if
(
$data
===
false
)
{
return
false
;
}
$state
=
$this
->
_getObject
(
$data
);
// check if this was the latest syncKey
$select
=
$this
->
_db
->
select
()
->
from
(
$this
->
_tablePrefix
.
$this
->
_tableName
)
->
where
(
$this
->
_db
->
quoteIdentifier
(
'device_id'
)
.
' = ?'
,
$deviceId
)
->
where
(
$this
->
_db
->
quoteIdentifier
(
'counter'
)
.
' = ?'
,
$syncKey
+
1
)
->
where
(
$this
->
_db
->
quoteIdentifier
(
'type'
)
.
' = ?'
,
$folderId
);
$stmt
=
$this
->
_db
->
query
(
$select
);
$moreRecentStateData
=
$stmt
->
fetch
();
$stmt
=
null
;
# see https://bugs.php.net/bug.php?id=44081
// found more recent synckey => the last sync repsone got not received by the client
if
(
$moreRecentStateData
!==
false
)
{
// undelete entries marked as deleted in Syncroton_content table
$this
->
_db
->
update
(
$this
->
_tablePrefix
.
'content'
,
array
(
'is_deleted'
=>
0
,
),
array
(
'device_id = ?'
=>
$deviceId
,
'folder_id = ?'
=>
$folderId
,
'creation_synckey = ?'
=>
$state
->
counter
,
'is_deleted = ?'
=>
1
));
}
else
{
// finally delete all entries marked for removal in Syncroton_content table
$this
->
_db
->
delete
(
$this
->
_tablePrefix
.
'content'
,
array
(
'device_id = ?'
=>
$deviceId
,
'folder_id = ?'
=>
$folderId
,
'is_deleted = ?'
=>
1
));
}
// remove all other synckeys
$this
->
_deleteOtherStates
(
$state
);
// remove entries from Syncroton_content table with an creation_synckey bigger than current one
$this
->
_db
->
delete
(
$this
->
_tablePrefix
.
'content'
,
array
(
'device_id = ?'
=>
$deviceId
,
'folder_id = ?'
=>
$folderId
,
'creation_synckey > ?'
=>
$state
->
counter
,
));
return
$state
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Apr 6, 3:04 AM (2 w, 6 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
3a/5b/774133c406db4dd4644427699091
Default Alt Text
SyncState.php (7 KB)
Attached To
Mode
rS syncroton
Attached
Detach File
Event Timeline