Compare commits

..

No commits in common. "f369cb65bf2ed246d76cdbac716ec3a36e48c2c5" and "10c069e9999b619d2809f3db7ef98308690e4ace" have entirely different histories.

3 changed files with 4 additions and 42 deletions

View File

@ -1,41 +0,0 @@
<?php
// Get API Key for git.fjla.uk
$giteaKey = "Authorization: token d9e748bbca7b662dbd946854e57ae0213d0e8f88";
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";
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;
?>

View File

@ -1,3 +1,5 @@
<?php <?php
$athenaVersion = '0.4.0-devel'; $athenaVersion = '0.4.0-devel';
$athenaVersionInt = 40;
$athenaVersionDescript = 'devel';
?> ?>

View File

@ -46,7 +46,8 @@
// Prepare the request // Prepare the request
$rawData = array( $rawData = array(
'body' => $body, 'body' => $body,
'title' => $subject 'title' => $subject,
'closed' => 'false'
); );
$issueData = json_encode($rawData); $issueData = json_encode($rawData);