-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
81b5f09
commit c22a25e
Showing
2 changed files
with
175 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
<?php | ||
namespace App\Services; | ||
|
||
use App\Entity\ContentItem; | ||
use Exception; | ||
|
||
class AwsApiAccessibilityService | ||
{ | ||
private $awsAccessKeyId; | ||
private $awsSecretAccessKey; | ||
private $awsRegion; | ||
private $service; | ||
private $host; | ||
private $endpoint; | ||
private $htmlService; | ||
|
||
public function __construct(HtmlService $htmlService) | ||
{ | ||
$this->htmlService = $htmlService; | ||
$this->loadConfig(); | ||
} | ||
|
||
private function loadConfig() | ||
{ | ||
$dotenv = parse_ini_file('.env'); | ||
$this->awsAccessKeyId = $dotenv['AWS_ACCESS_KEY_ID']; | ||
$this->awsSecretAccessKey = $dotenv['AWS_SECRET_ACCESS_KEY']; | ||
$this->awsRegion = "us-east-2"; | ||
$this->service = "execute-api"; | ||
$this->host = "kxm63nv0uk.execute-api.us-east-2.amazonaws.com"; | ||
$this->endpoint = "https://kxm63nv0uk.execute-api.us-east-2.amazonaws.com/Test/generate-accessibility-report"; | ||
} | ||
|
||
public function scanContentItem(ContentItem $contentItem) | ||
{ | ||
$html = $this->htmlService->clean($contentItem->getBody()); | ||
if (!$html) { | ||
return; | ||
} | ||
|
||
return $this->scanHtml($html); | ||
} | ||
|
||
public function scanHtml($html) | ||
{ | ||
$requestPayload = json_encode(["html" => [$html]]); | ||
|
||
$amzDate = gmdate('Ymd\THis\Z'); | ||
$dateStamp = gmdate('Ymd'); | ||
$canonicalUri = "/Test/generate-accessibility-report"; | ||
$canonicalQuerystring = ""; | ||
$canonicalHeaders = "content-type:application/json\nhost:{$this->host}\nx-amz-date:{$amzDate}\n"; | ||
$signedHeaders = "content-type;host;x-amz-date"; | ||
$payloadHash = hash('sha256', $requestPayload); | ||
|
||
$canonicalRequest = "POST\n{$canonicalUri}\n{$canonicalQuerystring}\n{$canonicalHeaders}\n{$signedHeaders}\n{$payloadHash}"; | ||
$algorithm = "AWS4-HMAC-SHA256"; | ||
$credentialScope = "{$dateStamp}/{$this->awsRegion}/{$this->service}/aws4_request"; | ||
$stringToSign = "{$algorithm}\n{$amzDate}\n{$credentialScope}\n" . hash('sha256', $canonicalRequest); | ||
|
||
$signingKey = $this->getSignatureKey($this->awsSecretAccessKey, $dateStamp, $this->awsRegion, $this->service); | ||
$signature = hash_hmac('sha256', $stringToSign, $signingKey); | ||
|
||
$authorizationHeader = | ||
"{$algorithm} Credential={$this->awsAccessKeyId}/{$credentialScope}, " . | ||
"SignedHeaders={$signedHeaders}, Signature={$signature}"; | ||
|
||
$headers = [ | ||
'Content-Type: application/json', | ||
"x-amz-date: {$amzDate}", | ||
"Authorization: {$authorizationHeader}" | ||
]; | ||
|
||
return json_encode($this->makeRequest($requestPayload, $headers), JSON_PRETTY_PRINT); | ||
} | ||
|
||
private function getSignatureKey($key, $dateStamp, $regionName, $serviceName) | ||
{ | ||
$kDate = hash_hmac('sha256', $dateStamp, "AWS4" . $key, true); | ||
$kRegion = hash_hmac('sha256', $regionName, $kDate, true); | ||
$kService = hash_hmac('sha256', $serviceName, $kRegion, true); | ||
return hash_hmac('sha256', "aws4_request", $kService, true); | ||
} | ||
|
||
private function makeRequest($requestPayload, $headers) | ||
{ | ||
$ch = curl_init(); | ||
curl_setopt($ch, CURLOPT_URL, $this->endpoint); | ||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | ||
curl_setopt($ch, CURLOPT_POST, true); | ||
curl_setopt($ch, CURLOPT_POSTFIELDS, $requestPayload); | ||
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); | ||
|
||
try { | ||
$response = curl_exec($ch); | ||
|
||
if ($response === false) { | ||
throw new Exception(curl_error($ch), curl_errno($ch)); | ||
} | ||
|
||
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); | ||
|
||
if ($httpCode >= 400) { | ||
throw new Exception("HTTP Error: " . $httpCode); | ||
} | ||
|
||
$jsonResponse = json_decode($response, true); | ||
if (json_last_error() !== JSON_ERROR_NONE) { | ||
throw new Exception("Invalid JSON response"); | ||
} | ||
|
||
return $jsonResponse; | ||
} catch (Exception $e) { | ||
error_log("An error occurred: " . $e->getMessage()); | ||
return null; | ||
} finally { | ||
curl_close($ch); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<?php | ||
// File: src/Services/test.php | ||
|
||
require_once __DIR__ . '/../../vendor/autoload.php'; | ||
require_once __DIR__ . '/AwsApiAccessibilityService.php'; | ||
require_once __DIR__ . '/HtmlService.php'; | ||
|
||
use App\Services\AwsApiAccessibilityService; | ||
use App\Services\HtmlService; | ||
|
||
// Mock ContentItem class for testing purposes | ||
class ContentItem { | ||
private $body; | ||
|
||
public function __construct($body) { | ||
$this->body = $body; | ||
} | ||
|
||
public function getBody() { | ||
return $this->body; | ||
} | ||
} | ||
|
||
// Initialize services | ||
$htmlService = new HtmlService(); | ||
$accessibilityService = new AwsApiAccessibilityService($htmlService); | ||
|
||
// Test HTML content | ||
$testHtml = ' | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Accessibility Test Page</title> | ||
</head> | ||
<body> | ||
<h1>Welcome to the Test Page</h1> | ||
<img src="example.jpg" alt=""> <!-- Missing alt text for accessibility issue --> | ||
<p>This is a paragraph with some text.</p> | ||
<a href="#">Click here</a> <!-- Non-descriptive link text for accessibility issue --> | ||
</body> | ||
</html> | ||
'; | ||
|
||
// Test scanHtml method | ||
echo "Testing scanHtml method:\n"; | ||
$htmlResult = $accessibilityService->scanHtml($testHtml); | ||
print_r($htmlResult); | ||
|
||
// Test scanContentItem method | ||
// echo "\nTesting scanContentItem method:\n"; | ||
// $contentItem = new ContentItem($testHtml); | ||
// $contentItemResult = $accessibilityService->scanContentItem($contentItem); | ||
// print_r($contentItemResult); |