api.php
6.27 KB
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
<?php
/**
* This page contains api class.
*/
namespace EnableMediaReplace;
use EnableMediaReplace\ShortPixelLogger\ShortPixelLogger as Log;
use EnableMediaReplace\Controller\ReplaceController as ReplaceController;
use Exception;
use stdClass;
/**
* This class contains api methods
*/
class Api {
/**
* Request Counter
*
* @var int $counter
*/
private $counter = 0;
/**
* ShortPixel api url
*
* @var string $url
*/
private $url = 'http://api.shortpixel.com/v2/free-reducer.php';
/**
* ShortPixel api request headers
*
* @var array $headers
*/
private $headers = array(
'Content-Type: application/json',
'Accept: application/json',
);
private $refresh = true; // only first request should be fresh
public function __construct()
{
}
/**
* Create ShortPixel api request
*
* @param array $data
* @return stdClass $result
*/
public function request( array $posted_data ) {
$bg_remove = '1';
$compression_level = 0; // intval($posted_data['compression_level']); // off for now.
$attachment_id = isset($_POST['attachment_id']) ? intval($_POST['attachment_id']) : null;
$attachment = get_post($attachment_id);
if (is_null($attachment_id))
{
$result = $this->getResponseObject();
$result->success = false;
$result->message = __('No attachment ID given', 'enable-media-replace');
return $result;
}
if (! emr()->checkImagePermission($attachment)) {
$result = $this->getResponseObject();
$result->success = false;
$result->message = __('No permission for user', 'enable-media-replace');
return $result;
}
$replaceController = new ReplaceController($attachment_id);
$url = $replaceController->getSourceUrl();
$settings = get_option('enable_media_replace', array()); // save settings and show last loaded.
$settings['bg_type'] = isset($_POST['background']['type']) ? sanitize_text_field($_POST['background']['type']) : false;
$settings['bg_color'] = isset($_POST['background']['color']) ? sanitize_text_field($_POST['background']['color']) : '#ffffff'; // default to white.
$settings['bg_transparency'] = isset($_POST['background']['transparency']) ? sanitize_text_field($_POST['background']['transparency']) : false;
update_option('enable_media_replace', $settings, false);
if ( 'solid' === $posted_data['background']['type'] ) {
$bg_remove = $posted_data['background']['color'];
$transparency = isset($posted_data['background']['transparency']) ? intval($posted_data['background']['transparency']) : -1;
// if transparancy without acceptable boundaries, add it to color ( as rgba I presume )
if ($transparency >= 0 && $transparency < 100)
{
if ($transparency == 100)
$transparency = 'FF';
// Strpad for lower than 10 should add 09, 08 etc.
$bg_remove .= str_pad($transparency, 2, '0', STR_PAD_LEFT);
}
}
$data = array(
'plugin_version' => EMR_VERSION,
'bg_remove' => $bg_remove,
'urllist' => array( urlencode( esc_url($url) ) ),
'lossy' => $compression_level,
'refresh' => $this->refresh,
);
$request = array(
'method' => 'POST',
'timeout' => 60,
'headers' => $this->headers,
'body' => json_encode( $data ),
);
$settingsData = '';
//unset($settingsData['url']);
foreach($data as $key => $val)
{
if ($key == 'urllist' || $key == 'refresh')
{
continue;
}
$settingsData .= " $key:$val ";
}
//we need to wait a bit until we try to check if the image is ready
if ($this->counter > 0)
sleep( $this->counter + 3 );
$this->counter++;
$result = $this->getResponseObject();
if ( $this->counter < 10 ) {
try {
Log::addDebug('Sending request', $request);
$response = wp_remote_post( $this->url, $request );
$this->refresh = false;
if ( is_wp_error( $response ) ) {
$result->message = $response->get_error_message();
} else {
$json = json_decode( $response['body'] );
Log::addDebug('Response Json', $json);
if ( is_array( $json ) && '2' === $json[0]->Status->Code ) {
$result->success = true;
if ( '1' === $compression_level || '2' === $compression_level ) {
$result->image = $json[0]->LossyURL;
} else {
$result->image = $json[0]->LosslessURL;
}
$key = $this->handleSuccess($result);
$result->key = $key;
$result->url = $url;
$result->image = add_query_arg('ts', time(), $result->image);
$result->settings = $settingsData;
// $this->handleSuccess($result);
} elseif ( is_array( $json ) && '1' === $json[0]->Status->Code ) {
return $this->request( $posted_data );
} else {
if (is_array($json))
{
$result->message = $json[0]->Status->Message;
}
elseif (is_object($json) && property_exists($json, 'Status'))
{
$result->message = $json->Status->Message;
}
}
}
} catch ( Exception $e ) {
$result->message = $e->getMessage();
}
} else {
$result->message = __( 'The background could not be removed in a reasonable amount of time. The file might be too big, or the API could be busy. Please try again later!', 'enable-media-replace' );
}
return $result;
}
public function handleSuccess($result)
{
// $fs = emr()->filesystem();
// $result = $fs->downloadFile($result->image, wp_tempnam($result->image));
$nonce = isset($_POST['nonce']) ? sanitize_text_field($_POST['nonce']) : wp_create_nonce();
$key = wp_hash($nonce . $result->image, 'logged_in');
set_transient('emr_' . $key, $result->image, 30 * MINUTE_IN_SECONDS);
return $key;
}
public function handleDownload($key)
{
$url = get_transient('emr_' . $key);
$result = $this->getResponseObject();
if ($url === false)
{
$result->message = __('This file seems not available anymore. Please try again', 'enable-media-replace');
return $result;
}
$fs = emr()->filesystem();
$target = wp_tempnam($url);
$bool = $fs->downloadFile($url, $target);
if ($bool === false)
{
$result->message = __('Download failed', 'enable-media-replace');
}
else {
$result->success = true;
$result->image = $target;
}
return $result;
}
protected function getResponseObject()
{
$result = new stdClass;
$result->success = false;
$result->image = null;
$result->message = null;
return $result;
}
}