Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F8223795
FolderDelete.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
FolderDelete.php
View Options
<?php
/**
* Syncroton
*
* @package Syncroton
* @subpackage Command
* @license http://www.tine20.org/licenses/lgpl.html LGPL Version 3
* @copyright Copyright (c) 2008-2012 Metaways Infosystems GmbH (http://www.metaways.de)
* @author Lars Kneschke <l.kneschke@metaways.de>
*/
/**
* class to handle ActiveSync FolderDelete command
*
* @package Syncroton
* @subpackage Command
*/
class
Syncroton_Command_FolderDelete
extends
Syncroton_Command_Wbxml
{
protected
$_defaultNameSpace
=
'uri:FolderHierarchy'
;
protected
$_documentElement
=
'FolderDelete'
;
/**
* @var Syncroton_Model_SyncState
*/
protected
$_folder
;
/**
* @var Syncroton_Model_ISyncState
*/
protected
$_syncState
;
/**
* parse FolderDelete request
*/
public
function
handle
()
{
$xml
=
simplexml_import_dom
(
$this
->
_requestBody
);
// parse xml request
$syncKey
=
(
int
)
$xml
->
SyncKey
;
$serverId
=
(
string
)
$xml
->
ServerId
;
if
(
$this
->
_logger
instanceof
Zend_Log
)
$this
->
_logger
->
debug
(
__METHOD__
.
'::'
.
__LINE__
.
" synckey is $syncKey"
);
if
(!(
$this
->
_syncState
=
$this
->
_syncStateBackend
->
validate
(
$this
->
_device
,
'FolderSync'
,
$syncKey
))
instanceof
Syncroton_Model_SyncState
)
{
return
;
}
try
{
$folder
=
$this
->
_folderBackend
->
getFolder
(
$this
->
_device
,
$serverId
);
$dataController
=
Syncroton_Data_Factory
::
factory
(
$folder
->
class
,
$this
->
_device
,
$this
->
_syncTimeStamp
);
// delete folder in data backend
$dataController
->
deleteFolder
(
$folder
);
}
catch
(
Syncroton_Exception_NotFound
$senf
)
{
if
(
$this
->
_logger
instanceof
Zend_Log
)
$this
->
_logger
->
debug
(
__METHOD__
.
'::'
.
__LINE__
.
" "
.
$senf
->
getMessage
());
return
;
}
// delete folder in syncState backend
$this
->
_folderBackend
->
delete
(
$folder
);
$this
->
_folder
=
$folder
;
}
/**
* generate FolderDelete response
*
* @todo currently we support only the main folder which contains all contacts/tasks/events/notes per class
*/
public
function
getResponse
()
{
$folderDelete
=
$this
->
_outputDom
->
documentElement
;
if
(!
$this
->
_syncState
instanceof
Syncroton_Model_SyncState
)
{
if
(
$this
->
_logger
instanceof
Zend_Log
)
$this
->
_logger
->
info
(
__METHOD__
.
'::'
.
__LINE__
.
" invalid synckey provided. FolderSync 0 needed."
);
$folderDelete
->
appendChild
(
$this
->
_outputDom
->
createElementNS
(
'uri:FolderHierarchy'
,
'Status'
,
Syncroton_Command_FolderSync
::
STATUS_INVALID_SYNC_KEY
));
}
elseif
(!
$this
->
_folder
instanceof
Syncroton_Model_IFolder
)
{
$folderDelete
->
appendChild
(
$this
->
_outputDom
->
createElementNS
(
'uri:FolderHierarchy'
,
'Status'
,
Syncroton_Command_FolderSync
::
STATUS_FOLDER_NOT_FOUND
));
}
else
{
$this
->
_syncState
->
counter
++;
$this
->
_syncState
->
lastsync
=
$this
->
_syncTimeStamp
;
// store folder in state backend
$this
->
_syncStateBackend
->
update
(
$this
->
_syncState
);
// create xml output
$folderDelete
->
appendChild
(
$this
->
_outputDom
->
createElementNS
(
'uri:FolderHierarchy'
,
'Status'
,
Syncroton_Command_FolderSync
::
STATUS_SUCCESS
));
$folderDelete
->
appendChild
(
$this
->
_outputDom
->
createElementNS
(
'uri:FolderHierarchy'
,
'SyncKey'
,
$this
->
_syncState
->
counter
));
}
return
$this
->
_outputDom
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Jul 9, 9:27 PM (1 d, 21 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1057123
Default Alt Text
FolderDelete.php (3 KB)
Attached To
Mode
R4 syncroton
Attached
Detach File
Event Timeline
Log In to Comment