1d6ac46ba3
CI / No Debug Code (pull_request) Successful in 3s
CI / Tests (PHP 8.2) (pull_request) Successful in 48s
CI / Tests (PHP 8.3) (pull_request) Successful in 52s
CI / Coding Standards (pull_request) Successful in 57s
CI / Tests (PHP 8.1) (pull_request) Successful in 1m1s
CI / PHPStan (pull_request) Successful in 1m11s
CI / Build Plugin Zip (pull_request) Has been skipped
- Bump phpstan/phpstan ^2.0 and szepeviktor/phpstan-wordpress ^2.0 - Move the analysis level into phpstan.neon (single source) and raise it to 10 - Add Val, a runtime coercion helper that narrows untyped WordPress boundary values (wpdb rows, REST params, superglobals, options) with explicit checks instead of blind casts, plus unit tests - Type value-object fromRow() params as stdClass (what wpdb returns) and map columns through Val so unexpected shapes degrade safely - Use %i identifier placeholders for table names in all wpdb::prepare() calls so every query string is a literal and identifiers are escaped by WordPress; raises the minimum WordPress version to 6.2 where %i was introduced - Guard wpdb::prepare() null result before wpdb::query() in updateTax() - Fix nullable get_permalink()/strtotime() handling, list types at REST and capability call sites, dead null-coalescing on checked superglobals, and narrow get_users() results before mapping - Register Val method names with the ValidatedSanitizedInput sniff so it validates the real sanitizer around each superglobal read - Update repository unit tests for the %i placeholder arguments Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
118 lines
3.1 KiB
PHP
118 lines
3.1 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Unsupervised\Schedular\Offering;
|
|
|
|
class OfferingRepository {
|
|
|
|
private string $table;
|
|
|
|
public function __construct( private \wpdb $db ) {
|
|
$this->table = $db->prefix . 'us_offerings';
|
|
}
|
|
|
|
/**
|
|
* Column formats aligned to {@see columns()} (instructor_id, kind, title,
|
|
* description, duration_minutes, price, currency, billing_mode, allow_weekly,
|
|
* capacity, term_start, term_end, schedule_note, etransfer_email, is_active).
|
|
*
|
|
* @var list<string>
|
|
*/
|
|
private const COLUMN_FORMATS = [ '%d', '%s', '%s', '%s', '%d', '%f', '%s', '%s', '%d', '%d', '%s', '%s', '%s', '%s', '%d' ];
|
|
|
|
public function insert( Offering $offering ): int {
|
|
$this->db->insert(
|
|
$this->table,
|
|
$this->columns( $offering ) + [ 'created_at' => current_time( 'mysql' ) ],
|
|
[ ...self::COLUMN_FORMATS, '%s' ]
|
|
);
|
|
|
|
return $this->db->insert_id;
|
|
}
|
|
|
|
public function update( int $id, Offering $offering ): bool {
|
|
return false !== $this->db->update(
|
|
$this->table,
|
|
$this->columns( $offering ),
|
|
[ 'id' => $id ],
|
|
self::COLUMN_FORMATS,
|
|
[ '%d' ]
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Column values shared by insert and update (excludes created_at).
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
private function columns( Offering $offering ): array {
|
|
return [
|
|
'instructor_id' => $offering->instructorId,
|
|
'kind' => $offering->kind,
|
|
'title' => $offering->title,
|
|
'description' => $offering->description,
|
|
'duration_minutes' => $offering->durationMinutes,
|
|
'price' => $offering->price,
|
|
'currency' => $offering->currency,
|
|
'billing_mode' => $offering->billingMode,
|
|
'allow_weekly' => $offering->allowWeekly ? 1 : 0,
|
|
'capacity' => $offering->capacity,
|
|
'term_start' => $offering->termStart,
|
|
'term_end' => $offering->termEnd,
|
|
'schedule_note' => $offering->scheduleNote,
|
|
'etransfer_email' => $offering->etransferEmail,
|
|
'is_active' => $offering->isActive ? 1 : 0,
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Find offerings, optionally filtered by instructor, kind, and active state.
|
|
*
|
|
* @return list<Offering>
|
|
*/
|
|
public function findAll( int $instructorId = 0, string $kind = '', ?bool $activeOnly = null ): array {
|
|
$where = [ '1 = 1' ];
|
|
$params = [];
|
|
|
|
if ( $instructorId > 0 ) {
|
|
$where[] = 'instructor_id = %d';
|
|
$params[] = $instructorId;
|
|
}
|
|
|
|
if ( '' !== $kind ) {
|
|
$where[] = 'kind = %s';
|
|
$params[] = $kind;
|
|
}
|
|
|
|
if ( null !== $activeOnly ) {
|
|
$where[] = 'is_active = %d';
|
|
$params[] = $activeOnly ? 1 : 0;
|
|
}
|
|
|
|
$whereClause = implode( ' AND ', $where );
|
|
$sql = "SELECT * FROM %i WHERE {$whereClause} ORDER BY title ASC";
|
|
|
|
$rows = $this->db->get_results(
|
|
$this->db->prepare( $sql, array_merge( [ $this->table ], $params ) )
|
|
);
|
|
|
|
return array_map( Offering::fromRow( ... ), $rows ?? [] );
|
|
}
|
|
|
|
public function findById( int $id ): ?Offering {
|
|
$row = $this->db->get_row(
|
|
$this->db->prepare( 'SELECT * FROM %i WHERE id = %d', $this->table, $id )
|
|
);
|
|
|
|
return $row ? Offering::fromRow( $row ) : null;
|
|
}
|
|
|
|
public function delete( int $id ): bool {
|
|
return (bool) $this->db->delete(
|
|
$this->table,
|
|
[ 'id' => $id ],
|
|
[ '%d' ]
|
|
);
|
|
}
|
|
}
|