Skip to content

Commit d09d003

Browse files
committed
Improve Software design
1 parent 891a1a2 commit d09d003

7 files changed

+81
-10
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"license": "MIT",
66
"require": {
77
"php": "^8.2",
8-
"illuminate/contracts": "^10.0||^11.0",
8+
"illuminate/contracts": "^11.0",
99
"thecodingmachine/safe": "^2.5"
1010
},
1111
"require-dev": {

config/verify.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88

99
return [
1010
'validation' => [
11-
ValidateHash::class => '283d910da171808f650011e41d5c23c743e90e39',
12-
ValidateSignature::class => '71627830f8485d02dc48a59e2aa28cc9dea6fe3b',
13-
Verify::class => 'b9e4048f3543734262582553d2202f9ef5d39b1f',
11+
ValidateHash::class => 'e2511ed0f1adc865c7c8b40bec19d656323d81f6',
12+
ValidateSignature::class => '1bae28471b402e73ddad2ea871b15835954822c3',
13+
Verify::class => '6dd9c193b7505dff9d4ba0f19f0e2b3a3171d83a',
1414
VerifySupporterStatus::class => '6358c45ed0414c1e2697e0881238659fa6221bed',
1515
VerifyServiceProvider::class => '927a8f3c811fc82cb8a0ac2667c06e7d292c3633',
1616
],

src/Contract/Validator.php src/Contract/ValidatorInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Interface to check whther a license key is valid or not.
77
*/
8-
interface Validator
8+
interface ValidatorInterface
99
{
1010
/**
1111
* Given a license key and a verifiable string, check whether the license key is valid or not.

src/Contract/VerifyInterface.php

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
<?php
2+
3+
namespace LycheeVerify\Contract;
4+
5+
use LycheeVerify\Exceptions\SupporterOnlyOperationException;
6+
7+
interface VerifyInterface
8+
{
9+
/**
10+
* Check if the installation is verified.
11+
*
12+
* @return Status
13+
*/
14+
public function get_status(): Status;
15+
16+
/**
17+
* Check the status of the installation and validate.
18+
*
19+
* @param Status $required_status (default to SUPPORTER_EDITION)
20+
*
21+
* @return bool
22+
*/
23+
public function check(Status $required_status = Status::SUPPORTER_EDITION): bool;
24+
25+
/**
26+
* Returns true if the user is a supporter (or plus registered user).
27+
*
28+
* @return bool
29+
*/
30+
public function is_supporter(): bool;
31+
32+
/**
33+
* Return true of the user is a plus registered user.
34+
*
35+
* @return bool
36+
*/
37+
public function is_plus(): bool;
38+
39+
/**
40+
* Authorize the operation if the installation is verified.
41+
* Otherwise throw an exception.
42+
*
43+
* @param Status $required_status (default to SUPPORTER_EDITION)
44+
*
45+
* @return void
46+
*
47+
* @throws SupporterOnlyOperationException
48+
*/
49+
public function authorize(Status $required_status = Status::SUPPORTER_EDITION): void;
50+
51+
/**
52+
* Fork depending whether the installation is verified or not.
53+
*
54+
* @template T
55+
*
56+
* @param T|\Closure(): T $valIfTrue what happens or Value if we features are enabled
57+
* @param T|\Closure(): T $valIfFalse what happens or Value if we features are disabled
58+
* @param Status $required_status
59+
*
60+
* @return T
61+
*/
62+
public function when(mixed $valIfTrue, mixed $valIfFalse, Status $required_status = Status::SUPPORTER_EDITION): mixed;
63+
64+
/**
65+
* Validate installation.
66+
*
67+
* @return bool
68+
*/
69+
public function validate(): bool;
70+
}

src/Validators/ValidateHash.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
use Illuminate\Support\Facades\Hash;
66
use LycheeVerify\Contract\Status;
7-
use LycheeVerify\Contract\Validator;
7+
use LycheeVerify\Contract\ValidatorInterface;
88

99
/**
1010
* This is the validator for supporters.
1111
*/
12-
class ValidateHash implements Validator
12+
class ValidateHash implements ValidatorInterface
1313
{
1414
private string $hash;
1515

src/Validators/ValidateSignature.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use Illuminate\Support\Facades\Log;
66
use LycheeVerify\Contract\Status;
7-
use LycheeVerify\Contract\Validator;
7+
use LycheeVerify\Contract\ValidatorInterface;
88
use function Safe\base64_decode;
99
use Safe\Exceptions\OpensslException;
1010
use function Safe\openssl_pkey_get_public;
@@ -13,7 +13,7 @@
1313
/**
1414
* This is the validator for the premium users.
1515
*/
16-
class ValidateSignature implements Validator
16+
class ValidateSignature implements ValidatorInterface
1717
{
1818
private string $public_key;
1919

src/Verify.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@
44

55
use Illuminate\Support\Facades\DB;
66
use LycheeVerify\Contract\Status;
7+
use LycheeVerify\Contract\VerifyInterface;
78
use LycheeVerify\Exceptions\SupporterOnlyOperationException;
89
use LycheeVerify\Validators\ValidateHash;
910
use LycheeVerify\Validators\ValidateSignature;
1011
use function Safe\json_encode;
1112
use function Safe\preg_replace;
1213

13-
class Verify
14+
class Verify implements VerifyInterface
1415
{
1516
private string $config_email;
1617
private string $license_key;

0 commit comments

Comments
 (0)