Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F1821960
Response.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Size
6 KB
Subscribers
None
Response.php
View Options
<?php
namespace
Sabre\DAV\Xml\Element
;
use
Sabre\Xml\Element
;
use
Sabre\Xml\Reader
;
use
Sabre\Xml\Writer
;
/**
* WebDAV {DAV:}response parser
*
* This class parses the {DAV:}response element, as defined in:
*
* https://tools.ietf.org/html/rfc4918#section-14.24
*
* @copyright Copyright (C) 2007-2015 fruux GmbH (https://fruux.com/).
* @author Evert Pot (http://www.rooftopsolutions.nl/)
* @license http://sabre.io/license/ Modified BSD License
*/
class
Response
implements
Element
{
/**
* Url for the response
*
* @var string
*/
protected
$href
;
/**
* Propertylist, ordered by HTTP status code
*
* @var array
*/
protected
$responseProperties
;
/**
* The HTTP status for an entire response.
*
* This is currently only used in WebDAV-Sync
*
* @var string
*/
protected
$httpStatus
;
/**
* The href argument is a url relative to the root of the server. This
* class will calculate the full path.
*
* The responseProperties argument is a list of properties
* within an array with keys representing HTTP status codes
*
* Besides specific properties, the entire {DAV:}response element may also
* have a http status code.
* In most cases you don't need it.
*
* This is currently used by the Sync extension to indicate that a node is
* deleted.
*
* @param string $href
* @param array $responseProperties
* @param string $httpStatus
*/
function
__construct
(
$href
,
array
$responseProperties
,
$httpStatus
=
null
)
{
$this
->
href
=
$href
;
$this
->
responseProperties
=
$responseProperties
;
$this
->
httpStatus
=
$httpStatus
;
}
/**
* Returns the url
*
* @return string
*/
function
getHref
()
{
return
$this
->
href
;
}
/**
* Returns the httpStatus value
*
* @return string
*/
function
getHttpStatus
()
{
return
$this
->
httpStatus
;
}
/**
* Returns the property list
*
* @return array
*/
function
getResponseProperties
()
{
return
$this
->
responseProperties
;
}
/**
* The serialize method is called during xml writing.
*
* It should use the $writer argument to encode this object into XML.
*
* Important note: it is not needed to create the parent element. The
* parent element is already created, and we only have to worry about
* attributes, child elements and text (if any).
*
* Important note 2: If you are writing any new elements, you are also
* responsible for closing them.
*
* @param Writer $writer
* @return void
*/
function
xmlSerialize
(
Writer
$writer
)
{
if
(
$status
=
$this
->
getHTTPStatus
())
{
$writer
->
writeElement
(
'{DAV:}status'
,
'HTTP/1.1 '
.
$status
.
' '
.
\Sabre\HTTP\Response
::
$statusCodes
[
$status
]);
}
$writer
->
writeElement
(
'{DAV:}href'
,
$writer
->
contextUri
.
$this
->
getHref
());
foreach
(
$this
->
getResponseProperties
()
as
$status
=>
$properties
)
{
// Skipping empty lists
if
(!
$properties
||
(!
ctype_digit
(
$status
)
&&
!
is_int
(
$status
)))
{
continue
;
}
$writer
->
startElement
(
'{DAV:}propstat'
);
$writer
->
writeElement
(
'{DAV:}prop'
,
$properties
);
$writer
->
writeElement
(
'{DAV:}status'
,
'HTTP/1.1 '
.
$status
.
' '
.
\Sabre\HTTP\Response
::
$statusCodes
[
$status
]);
$writer
->
endElement
();
// {DAV:}propstat
}
}
/**
* The deserialize method is called during xml parsing.
*
* This method is called statictly, this is because in theory this method
* may be used as a type of constructor, or factory method.
*
* Often you want to return an instance of the current class, but you are
* free to return other data as well.
*
* You are responsible for advancing the reader to the next element. Not
* doing anything will result in a never-ending loop.
*
* If you just want to skip parsing for this element altogether, you can
* just call $reader->next();
*
* $reader->parseInnerTree() will parse the entire sub-tree, and advance to
* the next element.
*
* @param Reader $reader
* @return mixed
*/
static
function
xmlDeserialize
(
Reader
$reader
)
{
$reader
->
pushContext
();
$reader
->
elementMap
[
'{DAV:}propstat'
]
=
'Sabre
\\
Xml
\\
Element
\\
KeyValue'
;
// We are overriding the parser for {DAV:}prop. This deserializer is
// almost identical to the one for Sabre\Xml\Element\KeyValue.
//
// The difference is that if there are any child-elements inside of
// {DAV:}prop, that have no value, normally any deserializers are
// called. But we don't want this, because a singlular element without
// child-elements implies 'no value' in {DAV:}prop, so we want to skip
// deserializers and just set null for those.
$reader
->
elementMap
[
'{DAV:}prop'
]
=
function
(
Reader
$reader
)
{
if
(
$reader
->
isEmptyElement
)
{
$reader
->
next
();
return
[];
}
$values
=
[];
$reader
->
read
();
do
{
if
(
$reader
->
nodeType
===
Reader
::
ELEMENT
)
{
$clark
=
$reader
->
getClark
();
if
(
$reader
->
isEmptyElement
)
{
$values
[
$clark
]
=
null
;
$reader
->
next
();
}
else
{
$values
[
$clark
]
=
$reader
->
parseCurrentElement
()[
'value'
];
}
}
else
{
$reader
->
read
();
}
}
while
(
$reader
->
nodeType
!==
Reader
::
END_ELEMENT
);
$reader
->
read
();
return
$values
;
};
$elems
=
$reader
->
parseInnerTree
();
$reader
->
popContext
();
$href
=
null
;
$propertyLists
=
[];
$statusCode
=
null
;
foreach
(
$elems
as
$elem
)
{
switch
(
$elem
[
'name'
])
{
case
'{DAV:}href'
:
$href
=
$elem
[
'value'
];
break
;
case
'{DAV:}propstat'
:
$status
=
$elem
[
'value'
][
'{DAV:}status'
];
list
(,
$status
,
)
=
explode
(
' '
,
$status
,
3
);
$properties
=
isset
(
$elem
[
'value'
][
'{DAV:}prop'
])
?
$elem
[
'value'
][
'{DAV:}prop'
]
:
[];
$propertyLists
[
$status
]
=
$properties
;
break
;
case
'{DAV:}status'
:
list
(,
$statusCode
,
)
=
explode
(
' '
,
$elem
[
'value'
],
3
);
break
;
}
}
return
new
self
(
$href
,
$propertyLists
,
$statusCode
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Dec 24, 12:11 PM (17 h, 56 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
914239
Default Alt Text
Response.php (6 KB)
Attached To
rDAVCAL DokuWiki DAVCal PlugIn
Event Timeline
Log In to Comment