1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Libraries/InApp/StoreKit/Apple.php
Shift 19080933b6
Apply Laravel coding style
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions.

You may customize the code style applied by adding a [PHP CS Fixer][1] or [PHP CodeSniffer][2] ruleset to your project root. Feel free to use [Shift's Laravel ruleset][3] to help you get started.

For more information on customizing the code style applied by Shift, [watch this short video][4].

[1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer
[2]: https://github.com/squizlabs/PHP_CodeSniffer
[3]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200
[4]: https://laravelshift.com/videos/shift-code-style
2022-06-21 09:57:17 +00:00

73 lines
1.7 KiB
PHP

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Libraries\InApp\StoreKit;
use Firebase\JWT\JWT;
use Firebase\JWT\Key;
/**
* Class Apple.
*/
class Apple
{
private string $bundle_id = '';
private string $issuer_id = '';
private string $key_id = '';
private string $private_key = '';
private string $alg = 'ES256';
public function createJwt()
{
$this->bundle_id = config('ninja.ninja_apple_bundle_id');
$this->issuer_id = config('ninja.ninja_apple_issuer_id');
$this->key_id = config('ninja.ninja_apple_api_key');
$this->private_key = config('ninja.ninja_apple_private_key');
$issue_time = time();
$expiration_time = $issue_time + 60 * 60;
$header = [
'alg' => $this->alg,
'kid' => $this->key_id,
'typ' => 'JWT',
];
$payload = [
'iss'=> $this->issuer_id,
'iat'=> $issue_time,
'exp'=> $expiration_time,
'aud'=> 'appstoreconnect-v1',
'nonce'=> $this->guidv4(),
'bid'=> $this->bundle_id,
];
$jwt = JWT::encode($payload, $this->private_key, $this->alg, $header);
$decoded = JWT::decode($jwt, new Key($this->private_key, $this->alg));
return $decoded;
}
private function guidv4()
{
return vsprintf('%s%s-%s-%s-%s-%s%s%s', str_split(bin2hex(random_bytes(16)), 4));
}
}