Skip to content

Commit

Permalink
fix(signatory): details on interfaces
Browse files Browse the repository at this point in the history
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
  • Loading branch information
ArtificialOwl committed Dec 3, 2024
1 parent 8faa63e commit 94d8125
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 50 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,15 +188,14 @@ public function getRequest(): IRequest {
}

/**
* @inheritDoc
* set the hostname at the source of the request,
* based on the keyId defined in the signature header.
*
* @param string $origin
* @return IIncomingSignedRequest
* @since 31.0.0
*/
public function setOrigin(string $origin): IIncomingSignedRequest {
private function setOrigin(string $origin): void {
$this->origin = $origin;
return $this;
}

/**
Expand Down
13 changes: 7 additions & 6 deletions lib/private/Security/Signature/Model/SignedRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,15 @@ public function getBody(): string {
}

/**
* @inheritDoc
* set algorithm used to generate digest
*
* @param DigestAlgorithm $algorithm
*
* @return self
* @since 31.0.0
*/
public function setDigestAlgorithm(DigestAlgorithm $algorithm): self {
protected function setDigestAlgorithm(DigestAlgorithm $algorithm): self {
$this->digestAlgorithm = $algorithm;
return $this;
}

Expand Down Expand Up @@ -119,14 +120,14 @@ public function getSigningElement(string $key): string { // getSignatureDetail /
}

/**
* @inheritDoc
* store data used to generate signature
*
* @param array $data
*
* @return self
* @since 31.0.0
*/
public function setSignatureData(array $data): self {
protected function setSignatureData(array $data): self {
$this->signatureData = $data;
return $this;
}
Expand All @@ -142,14 +143,14 @@ public function getSignatureData(): array {
}

/**
* @inheritDoc
* set the signed version of the signature
*
* @param string $signature
*
* @return self
* @since 31.0.0
*/
public function setSignature(string $signature): self {
protected function setSignature(string $signature): self {
$this->signature = $signature;
return $this;
}
Expand Down
17 changes: 7 additions & 10 deletions lib/unstable/Security/Signature/IIncomingSignedRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@
* model wrapping an actual incoming request, adding details about the signature and the
* authenticity of the origin of the request.
*
* This interface must not be implemented in your application but
* instead obtained from {@see ISignatureManager::getIncomingSignedRequest}.
*
* ```php
* $signedRequest = $this->signatureManager->getIncomingSignedRequest($mySignatoryManager);
* ```
*
* @see ISignatureManager for details on signature
* @experimental 31.0.0
*/
Expand All @@ -29,16 +36,6 @@ interface IIncomingSignedRequest extends ISignedRequest {
*/
public function getRequest(): IRequest;

/**
* set the hostname at the source of the request,
* based on the keyId defined in the signature header.
*
* @param string $origin
* @return IIncomingSignedRequest
* @experimental 31.0.0
*/
public function setOrigin(string $origin): IIncomingSignedRequest;

/**
* get the hostname at the source of the base request.
* based on the keyId defined in the signature header.
Expand Down
7 changes: 7 additions & 0 deletions lib/unstable/Security/Signature/IOutgoingSignedRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
/**
* extends ISignedRequest to add info requested at the generation of the signature
*
* This interface must not be implemented in your application but
* instead obtained from {@see ISignatureManager::getIncomingSignedRequest}.
*
* ```php
* $signedRequest = $this->signatureManager->getIncomingSignedRequest($mySignatoryManager);
* ```
*
* @see ISignatureManager for details on signature
* @experimental 31.0.0
*/
Expand Down
4 changes: 4 additions & 0 deletions lib/unstable/Security/Signature/ISignatoryManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,16 @@
namespace NCU\Security\Signature;

use NCU\Security\Signature\Model\Signatory;
use OC\Security\Signature\SignatureManager;

/**
* ISignatoryManager contains a group of method that will help
* - signing outgoing request
* - confirm the authenticity of incoming signed request.
*
* This interface must be implemented to generate a `SignatoryManager` to
* be used with {@see SignatureManager}
*
* @experimental 31.0.0
*/
interface ISignatoryManager {
Expand Down
10 changes: 10 additions & 0 deletions lib/unstable/Security/Signature/ISignatureManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,16 @@
* listed in 'headers' and their value. Some elements (content-length date digest host) are mandatory
* to ensure authenticity override protection.
*
* This interface can be used to inject {@see SignatureManager} in your code:
*
* ```php
* public function __construct(
* private ISignatureManager $signatureManager,
* ) {}
* ```
*
* instead obtained from {@see ISignatureManager::getIncomingSignedRequest}.
*
* @experimental 31.0.0
*/
interface ISignatureManager {
Expand Down
34 changes: 4 additions & 30 deletions lib/unstable/Security/Signature/ISignedRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
* - to confirm authenticity of a signed incoming request
* - to sign an outgoing request
*
* This interface must not be implemented in your application:
* @see IIncomingSignedRequest
* @see IOutgoingSignedRequest
*
* @experimental 31.0.0
*/
interface ISignedRequest {
Expand All @@ -30,16 +34,6 @@ interface ISignedRequest {
*/
public function getBody(): string;

/**
* set algorithm used to generate digest
*
* @param DigestAlgorithm $algorithm
*
* @return self
* @experimental 31.0.0
*/
public function setDigestAlgorithm(DigestAlgorithm $algorithm): self;

/**
* get algorithm used to generate digest
*
Expand Down Expand Up @@ -83,16 +77,6 @@ public function getSigningElements(): array;
*/
public function getSigningElement(string $key): string;

/**
* store data used to generate signature
*
* @param array $data
*
* @return self
* @experimental 31.0.0
*/
public function setSignatureData(array $data): self;

/**
* returns data used to generate signature
*
Expand All @@ -101,16 +85,6 @@ public function setSignatureData(array $data): self;
*/
public function getSignatureData(): array;

/**
* set the signed version of the signature
*
* @param string $signature
*
* @return self
* @experimental 31.0.0
*/
public function setSignature(string $signature): self;

/**
* get the signed version of the signature
*
Expand Down

0 comments on commit 94d8125

Please sign in to comment.