An error occurred while loading the file. Please try again.
-
Artem Baranovskyi authored
Some code style fixes.
9acbb49a
<?php
namespace local_asystgrade\api;
use Exception;
defined('MOODLE_INTERNAL') || die();
class http_client implements http_client_interface {
/**
* @param string $url
* @param array $data
* @return bool|string
* @throws Exception
*/
public function post(string $url, array $data): bool|string
{
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
$response = curl_exec($ch);
if (curl_errno($ch)) {
throw new Exception('Curl error: ' . curl_error($ch));
}
curl_close($ch);
if ($response === false) {
throw new Exception('Error sending data to API');
}
return $response;
}
}