ILIAS  trunk Revision v11.0_alpha-1713-gd8962da2f67
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
DataSigner.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\FileDelivery\Token;
22 
42 
46 final class DataSigner
47 {
48  private Signer $signer;
55 
56  public function __construct(
57  SecretKeyRotation $key_rotation
58  ) {
59  $this->salt_factory = new Factory();
60  $compression = new DeflateCompression();
61  $transport = new URLSafeTransport();
62  $algorithm = new SHA1();
63 
64  $this->signing_serializer = new SigningSerializer(
66  $key_rotation,
67  new HMACSigner(
68  $algorithm
69  ),
71  $algorithm
72  )
73  ),
74  new JSONSerializer(),
75  $compression,
76  $transport
77  );
78 
79  $this->payload_builder = new Builder();
80  }
81 
82  public function getSignedStreamToken(
83  FileStream $stream,
84  string $filename,
85  Disposition $disposition,
86  int $user_id,
87  ?\DateTimeImmutable $until = null
88  ): string {
89  $payload = $this->payload_builder->shortFile(
90  $stream,
91  $filename
92  );
93 
94  if ($until !== null) {
95  $payload->setUntil($until->getTimestamp());
96  }
97 
98  return $this->signing_serializer->sign(
99  $payload,
100  $this->salt_factory->create('stream')
101  );
102  }
103 
104  public function verifyStreamToken(string $token): ?Payload
105  {
106  $data = $this->verify($token, 'stream');
107  if ($data === null) {
108  return null;
109  }
110  return $this->payload_builder->shortFileFromRaw($data);
111  }
112 
113  public function sign(
114  array $data,
115  string $salt,
116  ?\DateTimeImmutable $until = null
117  ): string {
118  $payload = new StructuredPayload($data);
119 
120  if ($until !== null) {
121  $payload->setUntil($until->getTimestamp());
122  }
123 
124  return $this->signing_serializer->sign(
125  $payload,
126  $this->salt_factory->create($salt)
127  );
128  }
129 
130  public function verify(
131  string $token,
132  string $salt
133  ): ?array {
134  return $this->signing_serializer->verify(
135  $token,
136  $this->salt_factory->create($salt)
137  )?->get();
138  }
139 }
SigningSerializer $signing_serializer
Definition: DataSigner.php:50
verify(string $token, string $salt)
Definition: DataSigner.php:130
The salt is combined with the secret key to derive a unique key for distinguishing different contexts...
Definition: Factory.php:37
if(count($parts) !=3) $payload
Definition: ltitoken.php:67
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
sign(array $data, string $salt, ?\DateTimeImmutable $until=null)
Definition: DataSigner.php:113
$token
Definition: xapitoken.php:70
$filename
Definition: buildRTE.php:78
getSignedStreamToken(FileStream $stream, string $filename, Disposition $disposition, int $user_id, ?\DateTimeImmutable $until=null)
Definition: DataSigner.php:82
__construct(SecretKeyRotation $key_rotation)
Definition: DataSigner.php:56
The base interface for all filesystem streams.
Definition: FileStream.php:31
Key rotation can provide an extra layer of mitigation against an attacker discovering a secret key...