2015-09-22 12:43:40 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-03-01 19:25:15 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-09-22 12:43:40 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-09-22 12:43:40 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCP;
|
|
|
|
|
|
|
|
use OCP\AppFramework\Http;
|
2019-10-16 13:36:03 +03:00
|
|
|
use OCP\EventDispatcher\Event;
|
2019-11-22 22:52:10 +03:00
|
|
|
use Sabre\DAV\Server;
|
2015-09-22 12:43:40 +03:00
|
|
|
|
2015-09-23 17:15:56 +03:00
|
|
|
/**
|
|
|
|
* @since 8.2.0
|
|
|
|
*/
|
2015-09-22 12:43:40 +03:00
|
|
|
class SabrePluginEvent extends Event {
|
|
|
|
|
|
|
|
/** @var int */
|
|
|
|
protected $statusCode;
|
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
protected $message;
|
|
|
|
|
2015-12-04 14:11:07 +03:00
|
|
|
/** @var Server */
|
|
|
|
protected $server;
|
|
|
|
|
2015-09-23 17:15:56 +03:00
|
|
|
/**
|
|
|
|
* @since 8.2.0
|
|
|
|
*/
|
2015-12-04 14:11:07 +03:00
|
|
|
public function __construct($server = null) {
|
2015-09-22 12:43:40 +03:00
|
|
|
$this->message = '';
|
|
|
|
$this->statusCode = Http::STATUS_OK;
|
2015-12-04 14:11:07 +03:00
|
|
|
$this->server = $server;
|
2015-09-22 12:43:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $statusCode
|
|
|
|
* @return self
|
2015-09-23 17:15:56 +03:00
|
|
|
* @since 8.2.0
|
2015-09-22 12:43:40 +03:00
|
|
|
*/
|
|
|
|
public function setStatusCode($statusCode) {
|
|
|
|
$this->statusCode = (int) $statusCode;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $message
|
|
|
|
* @return self
|
2015-09-23 17:15:56 +03:00
|
|
|
* @since 8.2.0
|
2015-09-22 12:43:40 +03:00
|
|
|
*/
|
|
|
|
public function setMessage($message) {
|
|
|
|
$this->message = (string) $message;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return int
|
2015-09-23 17:15:56 +03:00
|
|
|
* @since 8.2.0
|
2015-09-22 12:43:40 +03:00
|
|
|
*/
|
|
|
|
public function getStatusCode() {
|
|
|
|
return $this->statusCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
2015-09-23 17:15:56 +03:00
|
|
|
* @since 8.2.0
|
2015-09-22 12:43:40 +03:00
|
|
|
*/
|
|
|
|
public function getMessage() {
|
|
|
|
return $this->message;
|
|
|
|
}
|
2015-12-04 14:11:07 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return null|Server
|
|
|
|
* @since 9.0.0
|
|
|
|
*/
|
|
|
|
public function getServer() {
|
|
|
|
return $this->server;
|
|
|
|
}
|
2015-09-22 12:43:40 +03:00
|
|
|
}
|