1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
<?php
namespace SIW\Plato;
abstract class Plato_Interface {
const API_URL = 'https://workcamp-plato.org/files/services/ExternalSynchronization.asmx/';
protected $name;
protected $webkey;
protected $endpoint;
protected $endpoint_url;
protected $http_response;
protected $xml_response;
protected $logger;
protected $logger_context;
public function __construct() {
$this->set_logger();
$this->set_webkey();
$this->set_endpoint_url();
}
protected function set_webkey() {
$this->webkey = siw_get_option( 'plato_organization_webkey' );
}
protected function get_webkey() {
return $this->webkey;
}
protected function set_endpoint_url() {
$this->endpoint_url = self::API_URL . $this->endpoint;
}
protected function add_query_arg( string $key, string $value ) {
$this->endpoint_url = add_query_arg( $key, $value, $this->endpoint_url );
}
private function set_logger() {
$this->logger = wc_get_logger();
$source = sanitize_title( "siw-{$this->name}" );
$this->logger_context = [ 'source' => $source ];
}
public function log( string $level, string $message ) {
$this->logger->log( $level, $message, $this->logger_context );
}
protected function is_valid_response() {
if ( is_wp_error( $this->http_response ) ) {
$this->log('error', 'Verbinding met PLATO mislukt. Response: ' . wc_print_r( $this->http_response ) );
return false;
}
$status_code = wp_remote_retrieve_response_code( $this->http_response );
if ( \WP_Http::OK !== $status_code ) {
$this->log( 'error', "Verbinding met PLATO mislukt. Statuscode: {$status_code}" );
return false;
}
return true;
}
}