. */ declare(strict_types=1); namespace FireflyIII\Helpers\Webhook; use FireflyIII\Exceptions\FireflyException; use FireflyIII\Models\WebhookMessage; use Illuminate\Support\Facades\Log; use JsonException; /** * Class Sha3SignatureGenerator */ class Sha3SignatureGenerator implements SignatureGeneratorInterface { private int $version = 1; /** * @inheritDoc * @throws FireflyException */ public function generate(WebhookMessage $message): string { // webhook is deleted if (null === $message->webhook) { throw new FireflyException('Part of a deleted webhook.'); } try { $json = json_encode($message->message, JSON_THROW_ON_ERROR); } catch (JsonException $e) { Log::error('Could not generate hash.'); Log::error(sprintf('JSON value: %s', $json)); Log::error($e->getMessage()); Log::error($e->getTraceAsString()); throw new FireflyException('Could not generate JSON for SHA3 hash.', 0, $e); } // signature v1 is generated using the following structure: // The signed_payload string is created by concatenating: // The timestamp (as a string) // The character . // The character . // The actual JSON payload (i.e., the request body) $timestamp = time(); $payload = sprintf('%s.%s', $timestamp, $json); $signature = hash_hmac('sha3-256', $payload, $message->webhook->secret, false); // signature string: // header included in each signed event contains a timestamp and one or more signatures. // The timestamp is prefixed by t=, and each signature is prefixed by a scheme. // Schemes start with v, followed by an integer. Currently, the only valid live signature scheme is v1. return sprintf('t=%s,v%d=%s', $timestamp, $this->getVersion(), $signature); } /** * @inheritDoc */ public function getVersion(): int { return $this->version; } }