mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-09 18:08:49 +00:00
Initial Release of the calendar plugin
This commit is contained in:
parent
45cc9885fc
commit
7115197a33
561 changed files with 189494 additions and 0 deletions
102
dav/SabreDAV/lib/Sabre/DAV/Property/LockDiscovery.php
Normal file
102
dav/SabreDAV/lib/Sabre/DAV/Property/LockDiscovery.php
Normal file
|
@ -0,0 +1,102 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Represents {DAV:}lockdiscovery property
|
||||
*
|
||||
* This property contains all the open locks on a given resource
|
||||
*
|
||||
* @package Sabre
|
||||
* @subpackage DAV
|
||||
* @copyright Copyright (C) 2007-2012 Rooftop Solutions. All rights reserved.
|
||||
* @author Evert Pot (http://www.rooftopsolutions.nl/)
|
||||
* @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
|
||||
*/
|
||||
class Sabre_DAV_Property_LockDiscovery extends Sabre_DAV_Property {
|
||||
|
||||
/**
|
||||
* locks
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $locks;
|
||||
|
||||
/**
|
||||
* Should we show the locktoken as well?
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
public $revealLockToken;
|
||||
|
||||
/**
|
||||
* Hides the {DAV:}lockroot element from the response.
|
||||
*
|
||||
* It was reported that showing the lockroot in the response can break
|
||||
* Office 2000 compatibility.
|
||||
*/
|
||||
static public $hideLockRoot = false;
|
||||
|
||||
/**
|
||||
* __construct
|
||||
*
|
||||
* @param array $locks
|
||||
* @param bool $revealLockToken
|
||||
*/
|
||||
public function __construct($locks, $revealLockToken = false) {
|
||||
|
||||
$this->locks = $locks;
|
||||
$this->revealLockToken = $revealLockToken;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* serialize
|
||||
*
|
||||
* @param Sabre_DAV_Server $server
|
||||
* @param DOMElement $prop
|
||||
* @return void
|
||||
*/
|
||||
public function serialize(Sabre_DAV_Server $server, DOMElement $prop) {
|
||||
|
||||
$doc = $prop->ownerDocument;
|
||||
|
||||
foreach($this->locks as $lock) {
|
||||
|
||||
$activeLock = $doc->createElementNS('DAV:','d:activelock');
|
||||
$prop->appendChild($activeLock);
|
||||
|
||||
$lockScope = $doc->createElementNS('DAV:','d:lockscope');
|
||||
$activeLock->appendChild($lockScope);
|
||||
|
||||
$lockScope->appendChild($doc->createElementNS('DAV:','d:' . ($lock->scope==Sabre_DAV_Locks_LockInfo::EXCLUSIVE?'exclusive':'shared')));
|
||||
|
||||
$lockType = $doc->createElementNS('DAV:','d:locktype');
|
||||
$activeLock->appendChild($lockType);
|
||||
|
||||
$lockType->appendChild($doc->createElementNS('DAV:','d:write'));
|
||||
|
||||
/* {DAV:}lockroot */
|
||||
if (!self::$hideLockRoot) {
|
||||
$lockRoot = $doc->createElementNS('DAV:','d:lockroot');
|
||||
$activeLock->appendChild($lockRoot);
|
||||
$href = $doc->createElementNS('DAV:','d:href');
|
||||
$href->appendChild($doc->createTextNode($server->getBaseUri() . $lock->uri));
|
||||
$lockRoot->appendChild($href);
|
||||
}
|
||||
|
||||
$activeLock->appendChild($doc->createElementNS('DAV:','d:depth',($lock->depth == Sabre_DAV_Server::DEPTH_INFINITY?'infinity':$lock->depth)));
|
||||
$activeLock->appendChild($doc->createElementNS('DAV:','d:timeout','Second-' . $lock->timeout));
|
||||
|
||||
if ($this->revealLockToken) {
|
||||
$lockToken = $doc->createElementNS('DAV:','d:locktoken');
|
||||
$activeLock->appendChild($lockToken);
|
||||
$lockToken->appendChild($doc->createElementNS('DAV:','d:href','opaquelocktoken:' . $lock->token));
|
||||
}
|
||||
|
||||
$activeLock->appendChild($doc->createElementNS('DAV:','d:owner',$lock->owner));
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue