Skip to content
Snippets Groups Projects
Commit 27b89ed5 authored by ale's avatar ale
Browse files

Improve error checking on calls to wp-mat-server

Addresses issue #1.
parent 856b3fe9
No related branches found
No related tags found
No related merge requests found
Pipeline #61123 passed
......@@ -3,7 +3,7 @@
* Plugin Name: wp-mat
* Plugin URI: https://git.autistici.org/noblogs/wp-mat
* Description: Process uploaded files through MAT
* Version: 0.1.2
* Version: 0.1.4
* Author: Autistici/Inventati
* Author URI: https://www.autistici.org/
* License: MIT
......@@ -38,7 +38,8 @@ class WP_Mat {
}
// Make a POST request to the MAT service with the uploaded file and
// store the results into '$output_path'.
// store the results into '$output_path'. Returns true on success,
// false on any error.
function issue_cleanup_request($path, $mimetype, $output_path) {
$upfile = new CURLFile($path, $mimetype, 'input');
......@@ -59,6 +60,16 @@ class WP_Mat {
$ret = curl_exec($curl);
if ($ret === false) {
error_log("wp-mat: curl error: ".curl_error($curl));
} else {
$status = curl_getinfo($curl, CURLINFO_HTTP_CODE);
if ($status != 200) {
error_log("wp-mat: curl error: server returned HTTP status ".$status);
$ret = false;
}
}
fclose($fp);
curl_close($curl);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment