RefreshLicensesForPlatformFee.php
50 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\License\Migrations; |
| 4 | |
| 5 | use Give\Framework\Migrations\Contracts\Migration; |
| 6 | |
| 7 | /** |
| 8 | * @since 4.3.0 |
| 9 | */ |
| 10 | class RefreshLicensesForPlatformFee extends Migration |
| 11 | { |
| 12 | /** |
| 13 | * @since 4.3.0 |
| 14 | */ |
| 15 | public static function id(): string |
| 16 | { |
| 17 | return 'refresh-licenses-for-platform-fee'; |
| 18 | } |
| 19 | |
| 20 | /** |
| 21 | * @since 4.3.0 |
| 22 | */ |
| 23 | public static function title(): string |
| 24 | { |
| 25 | return 'Refresh Licenses for Platform Fee'; |
| 26 | } |
| 27 | |
| 28 | /** |
| 29 | * @since 4.3.0 |
| 30 | */ |
| 31 | public static function timestamp(): int |
| 32 | { |
| 33 | return strtotime('2025-05-01 00:00:00'); |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * This migration refreshes the stored licenses (making a request to the License Server API) to retrieve the new gateway_fee property. |
| 38 | * |
| 39 | * @since 4.3.0 |
| 40 | */ |
| 41 | public function run(): void |
| 42 | { |
| 43 | // Normally we avoid using production code within migrations, but this is a simple license refresh that will eventually be refreshed anyway. |
| 44 | // We check if the function exists now to avoid errors in case in the future, this function is not defined anymore. |
| 45 | if (function_exists('give_refresh_licenses')) { |
| 46 | give_refresh_licenses(); |
| 47 | } |
| 48 | } |
| 49 | } |
| 50 |