6c4097b385
CI / Tests (PHP 8.1) (pull_request) Successful in 45s
CI / Tests (PHP 8.3) (pull_request) Successful in 50s
CI / No Debug Code (pull_request) Successful in 3s
CI / Coding Standards (pull_request) Successful in 1m2s
CI / Tests (PHP 8.2) (pull_request) Successful in 1m0s
CI / PHPStan (pull_request) Successful in 1m4s
CI / Build Plugin Zip (pull_request) Has been skipped
Implements the payments foundation for #7. Without Stripe credentials everything works on e-transfer (pending payment confirmed by a studio admin); when Stripe keys are configured the default flips to credit card. Per-student override (card/etransfer/comp) is set on the student detail. - Schema: us_payments (amount DECIMAL dollars, method, status, receipt, stripe intent id). - src/Payment/: Payment VO, PaymentRepository, StudioSettings (Stripe options + isStripeConfigured + settings page), BillingMethodResolver (per-student override; default card if configured else etransfer), ReceiptMailer, PaymentService (create at registration, link payment_id, comp->paid+confirm, markPaid->confirm+receipt), PaymentController (e-transfer confirmation queue), PaymentEndpoint (PATCH /payments/{id}). - Booking + enrolment create the payment from the offering price; comp auto-confirms the lesson; setPaymentId on both repositories. - Admin: Studio Settings + Payments menus (manage_billing); per-student billing method on the student detail page. - Docs: payments.md + README updated. Deferred to a follow-up: the live Stripe card charge (PaymentIntent + Stripe.js Elements + webhook + stripe/stripe-php). Until then a card payment is created pending and confirmed like an e-transfer. Tests: tests/Unit/Payment/ (VO, repository, resolver, service, mailer). composer test (147), cs, and PHPStan level 6 all pass. Refs #7 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
70 lines
2.4 KiB
PHP
70 lines
2.4 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Unsupervised\Schedular\Payment;
|
|
|
|
use Unsupervised\Schedular\Auth\RoleManager;
|
|
|
|
class StudioSettings {
|
|
|
|
public const OPT_PUBLISHABLE = 'us_stripe_publishable_key';
|
|
public const OPT_SECRET = 'us_stripe_secret_key';
|
|
public const OPT_MODE = 'us_stripe_mode';
|
|
public const OPT_CURRENCY = 'us_currency';
|
|
|
|
public function publishableKey(): string {
|
|
return (string) get_option( self::OPT_PUBLISHABLE, '' );
|
|
}
|
|
|
|
public function secretKey(): string {
|
|
return (string) get_option( self::OPT_SECRET, '' );
|
|
}
|
|
|
|
public function mode(): string {
|
|
return 'live' === get_option( self::OPT_MODE, 'test' ) ? 'live' : 'test';
|
|
}
|
|
|
|
public function currency(): string {
|
|
$currency = (string) get_option( self::OPT_CURRENCY, 'CAD' );
|
|
|
|
return '' !== $currency ? strtoupper( $currency ) : 'CAD';
|
|
}
|
|
|
|
/**
|
|
* Whether Stripe is configured. When false the platform falls back to
|
|
* e-transfer billing and card processing is unavailable.
|
|
*/
|
|
public function isStripeConfigured(): bool {
|
|
return '' !== $this->publishableKey() && '' !== $this->secretKey();
|
|
}
|
|
|
|
public function renderPage(): void {
|
|
if ( ! current_user_can( RoleManager::CAP_MANAGE_BILLING ) ) {
|
|
wp_die( esc_html__( 'You do not have permission to manage billing settings.', 'unsupervised-schedular' ) );
|
|
}
|
|
|
|
if ( isset( $_POST['usc_action'] ) && check_admin_referer( 'usc_settings_action' ) ) {
|
|
$this->save();
|
|
}
|
|
|
|
$publishableKey = $this->publishableKey();
|
|
$secretKey = $this->secretKey();
|
|
$mode = $this->mode();
|
|
$currency = $this->currency();
|
|
$stripeConfigured = $this->isStripeConfigured();
|
|
|
|
include USC_PLUGIN_DIR . 'templates/admin/settings.php';
|
|
}
|
|
|
|
private function save(): void {
|
|
// Nonce is verified by the caller (renderPage) before this method runs.
|
|
// phpcs:disable WordPress.Security.NonceVerification.Missing
|
|
$mode = sanitize_key( wp_unslash( $_POST['mode'] ?? 'test' ) );
|
|
update_option( self::OPT_PUBLISHABLE, sanitize_text_field( wp_unslash( $_POST['publishable_key'] ?? '' ) ) );
|
|
update_option( self::OPT_SECRET, sanitize_text_field( wp_unslash( $_POST['secret_key'] ?? '' ) ) );
|
|
update_option( self::OPT_MODE, 'live' === $mode ? 'live' : 'test' );
|
|
update_option( self::OPT_CURRENCY, strtoupper( sanitize_text_field( wp_unslash( $_POST['currency'] ?? 'CAD' ) ) ) );
|
|
// phpcs:enable WordPress.Security.NonceVerification.Missing
|
|
}
|
|
}
|