137 lines
2.8 KiB
PHP
137 lines
2.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
*
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
*
|
|
* @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,
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
*
|
|
*/
|
|
namespace OC\Notification;
|
|
|
|
use OCP\Notification\IAction;
|
|
use OCP\Notification\InvalidValueException;
|
|
|
|
class Action implements IAction {
|
|
protected string $label = '';
|
|
protected string $labelParsed = '';
|
|
protected string $link = '';
|
|
protected string $requestType = '';
|
|
protected bool $primary = false;
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function setLabel(string $label): IAction {
|
|
if ($label === '' || isset($label[32])) {
|
|
throw new InvalidValueException('label');
|
|
}
|
|
$this->label = $label;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function getLabel(): string {
|
|
return $this->label;
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function setParsedLabel(string $label): IAction {
|
|
if ($label === '') {
|
|
throw new InvalidValueException('parsedLabel');
|
|
}
|
|
$this->labelParsed = $label;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function getParsedLabel(): string {
|
|
return $this->labelParsed;
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function setPrimary(bool $primary): IAction {
|
|
$this->primary = $primary;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function isPrimary(): bool {
|
|
return $this->primary;
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function setLink(string $link, string $requestType): IAction {
|
|
if ($link === '' || isset($link[256])) {
|
|
throw new InvalidValueException('link');
|
|
}
|
|
if (!in_array($requestType, [
|
|
self::TYPE_GET,
|
|
self::TYPE_POST,
|
|
self::TYPE_PUT,
|
|
self::TYPE_DELETE,
|
|
self::TYPE_WEB,
|
|
], true)) {
|
|
throw new InvalidValueException('requestType');
|
|
}
|
|
$this->link = $link;
|
|
$this->requestType = $requestType;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function getLink(): string {
|
|
return $this->link;
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function getRequestType(): string {
|
|
return $this->requestType;
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function isValid(): bool {
|
|
return $this->label !== '' && $this->link !== '';
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function isValidParsed(): bool {
|
|
return $this->labelParsed !== '' && $this->link !== '';
|
|
}
|
|
}
|