|
| 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 | +} |
0 commit comments