php-integration #21

Closed
fred.boniface wants to merge 146 commits from php-integration into main
4 changed files with 1 additions and 42 deletions
Showing only changes of commit cd7e005a69 - Show all commits

View File

@ -22,7 +22,7 @@
$detail = cleanInput($_POST["detail"]);
// Prepare $detail to POST
$body = "User Agent: " . $ua_str . "\n\n Server PHP Version: " . PHP_VERSION . "\n\n" . $detail;
$body = "Athena Version: " . $athenaVersion . "\n\n" . User Agent: " . $ua_str . "\n\n Server PHP Version: " . PHP_VERSION . "\n\n" . $detail;
// Call POST function
sendInput($title,$body);

View File

@ -1,41 +0,0 @@
<?php
// Get API Key for git.fjla.uk
require '/srv/php-keys/athena/gitea.php';
echo "Gitea AUTH header is: $giteaKey";
// Set httpHeaders
$httpHeaders = array(
"accept: application/json",
$giteaKey,
"Content-Type: application/json"
);
// Prepare $detail to POST
$body = "This is a PHP-CLI test issue.";
$subject = "Test Issue - From PHP CLI";
echo "Prepared POST data:\nSubject: $subject\nBody:$body";
// Prepare the request
$rawData = array(
'body' => $body,
'title' => $subject
);
$issueData = json_encode($rawData);
echo "Ready to send data:\n$issueData";
// Prepare CURL
$curlConnection = curl_init('https://git.fjla.uk/api/v1/repos/fred.boniface/athena.fb-infra.uk/issues');
curl_setopt($curlConnection, CURLOPT_POSTFIELDS, $issueData);
curl_setopt($curlConnection, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curlConnection, CURLOPT_HTTPHEADER, $httpHeaders);
// Get response and exit CURL
$giteaResponse = curl_exec($curlConnection);
curl_close($curlConnection);
echo "Response: " . $giteaResponse;
?>