one-click-accessibility/modules/remediation/database/remediation-entry.php
2025-06-30 20:26:50 +02:00

141 lines
2.9 KiB
PHP

<?php
namespace EA11y\Modules\Remediation\Database;
use EA11y\Classes\Database\Entry;
use EA11y\Modules\Remediation\Exceptions\Missing_URL;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
/**
* Class Page_Entry
*/
class Remediation_Entry extends Entry {
/**
* @var string $url holds page url
*/
private string $url;
public static function get_helper_class(): string {
return Remediation_Table::get_class_name();
}
/**
* Create
*
* used to ensure:
* URL is set
*
* @param string $id
*
* @throws Missing_URL
*/
public function create( string $id = 'id' ) {
if ( empty( $this->entry_data[ Remediation_Table::URL ] ) ) {
throw new Missing_URL();
}
$date_time = gmdate( 'Y-m-d H:i:s' );
$this->entry_data[ Remediation_Table::CREATED_AT ] = $date_time;
$this->entry_data[ Remediation_Table::UPDATED_AT ] = $date_time;
parent::create( $id );
}
/**
* Remove
*
* @param string $by
* @param string $by_value
*/
public static function remove( string $by, string $by_value ) {
$where = [
$by => $by_value,
];
Remediation_Table::delete( $where );
}
/**
* get_page_remediations
*
* @param string $url
* @param bool $total
* @return array
*/
public static function get_page_remediations( string $url, bool $total = false ) : array {
$where = $total ? [
[
'column' => Remediation_Table::table_name() . '.' . Remediation_Table::URL,
'value' => $url,
'operator' => '=',
'relation_after' => 'AND',
],
[
'column' => Remediation_Table::table_name() . '.' . Remediation_Table::GROUP,
'value' => 'altText',
'operator' => '<>',
],
] : [
[
'column' => Remediation_Table::URL,
'value' => $url,
'operator' => '=',
],
];
$select = $total ? 'COUNT(*) as total' : '*';
return Remediation_Table::select( $select, $where );
}
public static function get_all_remediations( int $period ) : array {
$date_threshold = gmdate( 'Y-m-d H:i:s', strtotime( "-{$period} days" ) );
$where = [
[
'column' => Remediation_Table::CREATED_AT,
'value' => $date_threshold,
'operator' => '>=',
],
];
return Remediation_Table::select( '*', $where );
}
/**
* @param string $by
* @param string $by_value
* @param bool $status
*
* @return void
*/
public static function update_remediations_status( string $by, string $by_value, bool $status ): void {
$where = [
$by => $by_value,
];
$data = [
Remediation_Table::ACTIVE => $status,
];
Remediation_Table::update( $data, $where );
}
/**
* @param string $by
* @param string $by_value
* @param string $content
*
* @return void
*/
public static function update_remediation_content( string $by, string $by_value, string $content ): void {
$where = [
$by => $by_value,
];
$data = [
Remediation_Table::CONTENT => $content,
];
Remediation_Table::update( $data, $where );
}
}