mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-24 05:16:00 +08:00
* [APP-1724] Fix get object type for singular * [APP-1724] Fix get object type for singular * Update modules/remediation/classes/utils.php Co-authored-by: gitstream-cm[bot] <111687743+gitstream-cm[bot]@users.noreply.github.com> --------- Co-authored-by: gitstream-cm[bot] <111687743+gitstream-cm[bot]@users.noreply.github.com>
82 lines
1.9 KiB
PHP
82 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace EA11y\Modules\Scanner\Rest;
|
|
|
|
use EA11y\Modules\Remediation\Database\Page_Entry;
|
|
use EA11y\Modules\Remediation\Database\Remediation_Entry;
|
|
use EA11y\Modules\Scanner\Classes\Route_Base;
|
|
use EA11y\Modules\Scanner\Database\Scan_Entry;
|
|
use Throwable;
|
|
use WP_Error;
|
|
use WP_REST_Response;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
class Scanner_Stats extends Route_Base {
|
|
public string $path = 'stats';
|
|
|
|
public function get_methods(): array {
|
|
return [ 'GET' ];
|
|
}
|
|
|
|
public function get_name(): string {
|
|
return 'stats';
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @return WP_Error|WP_REST_Response
|
|
*
|
|
*/
|
|
public function GET( $request ) {
|
|
try {
|
|
$error = $this->verify_capability();
|
|
|
|
if ( $error ) {
|
|
return $error;
|
|
}
|
|
|
|
$period = $request->get_param( 'period' ) ?? 30;
|
|
$output = [
|
|
'scans' => 0,
|
|
'issues_total' => 0,
|
|
'issues_fixed' => 0,
|
|
'issue_levels' => [
|
|
'a' => 0,
|
|
'aa' => 0,
|
|
'aaa' => 0,
|
|
],
|
|
];
|
|
|
|
$pages_scanned = Page_Entry::get_pages();
|
|
$remediations = Remediation_Entry::get_all_remediations( $period );
|
|
|
|
foreach ( $pages_scanned as $page ) {
|
|
$scans = Scan_Entry::get_scans( $page->url );
|
|
$recent_scans = array_filter( $scans, function ( $scan ) use ( $period ) {
|
|
$scan_date = strtotime( $scan->created_at );
|
|
return $scan_date >= strtotime( "-$period days" );
|
|
} );
|
|
|
|
if ( count( $recent_scans ) > 0 ) {
|
|
$output['scans'] ++;
|
|
$output['issues_total'] += $recent_scans[0]->summary['counts']['violation'] ?? 0;
|
|
$output['issues_fixed'] += $recent_scans[0]->summary['counts']['issuesResolved'] ?? 0;
|
|
}
|
|
}
|
|
|
|
foreach ( $remediations as $remediation ) {
|
|
$output['issue_levels'][ strtolower( $remediation->category ) ] ++;
|
|
}
|
|
|
|
return $this->respond_success_json( $output );
|
|
} catch ( Throwable $t ) {
|
|
return $this->respond_error_json( [
|
|
'message' => $t->getMessage(),
|
|
'code' => 'internal_server_error',
|
|
] );
|
|
}
|
|
}
|
|
}
|