2014-08-14 08:24:10 -04:00
|
|
|
<?php
|
2021-04-19 09:50:30 -04:00
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2014-08-14 08:24:10 -04:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2014-08-14 08:24:10 -04:00
|
|
|
*/
|
|
|
|
|
namespace OCP;
|
|
|
|
|
|
|
|
|
|
/**
|
2020-07-05 08:31:19 -04:00
|
|
|
* Manage trusted certificates
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.0.0
|
2014-08-14 08:24:10 -04:00
|
|
|
*/
|
|
|
|
|
interface ICertificateManager {
|
|
|
|
|
/**
|
2020-07-05 08:31:19 -04:00
|
|
|
* Returns all certificates trusted by the system
|
2014-08-14 08:24:10 -04:00
|
|
|
*
|
2014-08-15 11:18:46 -04:00
|
|
|
* @return \OCP\ICertificate[]
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.0.0
|
2014-08-14 08:24:10 -04:00
|
|
|
*/
|
2021-04-19 09:50:30 -04:00
|
|
|
public function listCertificates(): array;
|
2014-08-14 08:24:10 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param string $certificate the certificate data
|
|
|
|
|
* @param string $name the filename for the certificate
|
2015-04-15 09:56:10 -04:00
|
|
|
* @return \OCP\ICertificate
|
|
|
|
|
* @throws \Exception If the certificate could not get added
|
2015-06-05 11:30:45 -04:00
|
|
|
* @since 8.0.0 - since 8.1.0 throws exception instead of returning false
|
2014-08-14 08:24:10 -04:00
|
|
|
*/
|
2021-04-19 09:50:30 -04:00
|
|
|
public function addCertificate(string $certificate, string $name): \OCP\ICertificate;
|
2014-08-14 08:24:10 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param string $name
|
2021-04-19 09:50:30 -04:00
|
|
|
* @return bool
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.0.0
|
2014-08-14 08:24:10 -04:00
|
|
|
*/
|
2021-04-19 09:50:30 -04:00
|
|
|
public function removeCertificate(string $name): bool;
|
2014-08-14 08:24:10 -04:00
|
|
|
|
|
|
|
|
/**
|
2020-07-05 08:31:19 -04:00
|
|
|
* Get the path to the certificate bundle
|
2014-08-14 08:24:10 -04:00
|
|
|
*
|
|
|
|
|
* @return string
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.0.0
|
2014-08-14 08:24:10 -04:00
|
|
|
*/
|
2021-04-19 09:50:30 -04:00
|
|
|
public function getCertificateBundle(): string;
|
2015-12-22 11:42:28 -05:00
|
|
|
|
|
|
|
|
/**
|
2020-07-05 08:31:19 -04:00
|
|
|
* Get the full local path to the certificate bundle
|
2015-12-22 11:42:28 -05:00
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
* @since 9.0.0
|
|
|
|
|
*/
|
2021-04-19 09:50:30 -04:00
|
|
|
public function getAbsoluteBundlePath(): string;
|
2014-08-14 08:24:10 -04:00
|
|
|
}
|