-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.php
More file actions
356 lines (308 loc) · 9.1 KB
/
api.php
File metadata and controls
356 lines (308 loc) · 9.1 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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
<?php
/**
* The public Cumulus API.
*
* @copyright 2021 SiteCrafting, Inc.
* @author Coby Tamayo <ctamayo@sitecrafting.com>
*/
namespace SiteCrafting\Cumulus;
use Cloudinary\Api\Exception\ApiError;
use Cloudinary\Api\Upload\UploadApi;
use WP_Post;
/**
* Get the current Cumulus settings, taking constants and environment variables
* into account as described here:
*
* https://github.com/sitecrafting/cumulus/#managing-cloudinary-settings
* @return array an array with (at least) the following keys:
* - cloud_name
* - api_key
* - api_secret
*/
function settings() : array {
return apply_filters('cumulus/settings', []);
}
/**
* Get the currently configured Cloudinary Cloud Name setting.
*
* @return string
*/
function cloud_name() : string {
return apply_filters('cumulus/settings', [])['cloud_name'] ?? '';
}
/**
* Get the currently configured Cloudinary API Key setting.
*
* @return string
*/
function api_key() : string {
return apply_filters('cumulus/settings', [])['api_key'] ?? '';
}
/**
* Get the currently configured Cloudinary API Secret setting.
*
* @return string
*/
function api_secret() : string {
return apply_filters('cumulus/settings', [])['api_secret'] ?? '';
}
/**
* Get the currently configured Cloudinary Folder setting.
*
* @return string
*/
function folder() : string {
return apply_filters('cumulus/settings', [])['folder'] ?? '';
}
/**
* Whether Cumulus should upload the given attachment to Cloudinary,
* based on current settings.
*
* @param int $id the attachment ID to check
*/
function should_upload(int $id) : bool {
$path = get_attached_file($id);
if (!$path) {
return false;
}
$supportedTypes = apply_filters(
'cumulus/mime_types_to_upload',
array_values(get_allowed_mime_types())
);
return in_array(mime_content_type($path), $supportedTypes);
}
/**
* Given an assoc array like ['x' => 123, 'y' => 456], returns a URL segment
* like "x_123,y_456". Ignores w and h values of zero, which are invalid.
* @internal
*/
function transform_segment(array $params) {
return implode(',', array_filter(array_map(function($k, $v) {
if (in_array($k, ['w', 'h', 'dpr']) && $v === 0) {
return '';
}
return sprintf('%s_%s', $k, $v);
}, array_keys($params), array_values($params))));
}
/**
* Compute the default (auto-scaled) URL of an attachment for the given size
*
* @param string $cloud the cloud name of your Cloudinary account
* @param array $size the WP image size (array with width/height keys)
* @param array $img the uploaded image as returned from the Cloudinary REST
* API.
* @return string the computed URL
*/
function default_url(string $cloud, array $size, array $img) : string {
$width = $size['width'] ?? null;
$height = $size['height'] ?? null;
$resize = implode(',', array_filter([
($width ? "w_{$width}" : ''),
($height ? "h_{$height}" : ''),
'c_lfill',
]));
return sprintf(
'https://res.cloudinary.com/%s/image/upload/%s/%s.%s',
$cloud,
$resize,
$img['public_id'],
$img['format']
);
}
/**
* Compute the dynamic crop URL of an attachment with the given crop params
*
* @param string $cloud the cloud name of your Cloudinary account
* @param array $params an array of crop params, which should typically include:
* - crop - the x, y, w, and h values
* - target_size - an array in the form [width, height], to dictate the
* secondary scale operation after the primay crop
* @param array $img the uploaded image as returned from the Cloudinary REST
* API.
* @return string the computed URL
*/
function crop_url(string $cloud, array $params, array $img) : string {
$crop = transform_segment(array_merge($params['crop'], [
'c' => 'crop',
]));
$scale = transform_segment([
'w' => $params['target_size'][0],
'h' => $params['target_size'][1],
'c' => 'scale',
'dpr' => $params['dpr'],
]);
return sprintf(
'https://res.cloudinary.com/%s/image/upload/%s/%s/%s.%s',
$cloud,
$crop,
$scale,
$img['cloudinary_data']['public_id'],
$img['cloudinary_data']['format']
);
}
function scale_url(string $cloud, array $params, array $img) : string {
$scale = transform_segment([
'w' => $params['target_size'][0],
'h' => $params['target_size'][1],
'c' => 'lfill',
'dpr' => $params['dpr'] ?? 0,
]);
return sprintf(
'https://res.cloudinary.com/%s/image/upload/%s/%s.%s',
$cloud,
$scale,
$img['cloudinary_data']['public_id'],
$img['cloudinary_data']['format']
);
}
/**
* Compute a Retina URL of an attachment for the given size, at a given
* device-pixel ratio (DPR)
*
* @param string $cloud the cloud name of your Cloudinary account
* @param string|array $size the WP image size name as a string, or an array
* with "width" and "height" indices. If passed an array, assumes an edit_mode
* of "scale".
* @param array $img the uploaded image as returned from the Cloudinary REST
* API.
* @param int $ratio
* @return string the computed URL
*/
function retina_url(string $cloud, $size, array $img, int $ratio) : string {
if (is_string($size)) {
// Look up dimensions by size name.
$dimensions = sizes()[$size] ?? null;
if (empty($dimensions)) {
return '';
}
$params = $img['params_by_size'][$size] ?? [];
} elseif (is_array($size)) {
$dimensions = $size;
$params = [
'edit_mode' => 'scale',
];
}
// Ratio of 1 is a no-op; don't bother with a dpr_ param in that case.
$dpr = $ratio === 1 ? 0 : $ratio;
$params = array_merge($params, [
'target_size' => [$dimensions['width'] ?? 0, $dimensions['height'] ?? 0],
'dpr' => $dpr,
]);
return $params['edit_mode'] === 'crop'
? crop_url($cloud, $params, $img)
: scale_url($cloud, $params, $img);
}
function retina_srcset($img, string $size) : string {
if (is_int($img)) {
$img = get_post_meta($img, 'cumulus_image', true) ?: [];
} elseif ($img instanceof WP_Post) {
$img = get_post_meta($img->ID, 'cumulus_image', true) ?: [];
}
if (!is_array($img) || empty($img['cloudinary_data'])) {
return '';
}
if (!isset(sizes()[$size]) || !isset($img['params_by_size'][$size])) {
// We don't have enough information to compute this srcset.
return '';
}
$cloud = cloud_name();
$srcset_sizes = array_map(
function($ratio) use ($cloud, $size, $img) {
return sprintf(
'%s %dx',
retina_url($cloud, $size, $img, $ratio),
$ratio
);
},
apply_filters('cumulus/retina_dprs', [1, 2])
);
return implode(',', $srcset_sizes);
}
/**
* Get the image sizes that are relevant to Cumulus, as an array keyed by
* size name (e.g. "thumbnail"); values are arrays as returned by
* wp_get_registered_image_subsizes().
*
* @return array
*/
function sizes() : array {
$sizes = wp_get_registered_image_subsizes();
return array_intersect_key(
$sizes,
array_flip(apply_filters('cumulus/sizes', array_keys($sizes)))
);
}
/**
* Save a Cloudinary upload result to a specific attachment
*
* @param int $id the attachment ID
* @param array $result the Cloudinary upload result from the REST API, as an
* array
*/
function save_uploaded(int $id, array $result) : void {
if (!$result) {
return;
}
$registeredSizes = sizes();
$urlsBySize = array_reduce(array_keys($registeredSizes),
function($sizes, $size) use ($registeredSizes, $result) {
// Compute the scale (lfill) URL for this size.
$url = default_url(cloud_name(), $registeredSizes[$size], $result);
$url = apply_filters("cumulus/crop_url/$size", $url, [
'size' => $size,
'dimensions' => $registeredSizes[$size],
'cloud_name' => cloud_name(),
'response' => $result,
]);
return array_merge($sizes, [
$size => $url,
]);
}, []);
// Ensure we also serve the full URL from Cloudinary
$urlsBySize['full'] = $result['secure_url'];
$paramsBySize = array_reduce(array_keys($registeredSizes),
function($sizes, $size) use ($registeredSizes) {
return array_merge($sizes, [
$size => [
'edit_mode' => 'scale',
],
]);
}, []);
update_post_meta($id, 'cumulus_image', [
'cloudinary_id' => $result['public_id'],
'urls_by_size' => $urlsBySize,
'params_by_size' => $paramsBySize,
'cloudinary_data' => $result,
]);
}
/**
* Upload an attachment to Cloudinary by its ID
*
* @param int $id the ID of the attachment post to upload
*/
function upload_attachment(int $id) : void {
$path = get_attached_file($id);
if (!$path) {
return;
}
static $uploader;
$result = [];
try {
$uploader = $uploader ?? new UploadApi();
$result = $uploader->upload($path, apply_filters('cumulus/upload_options', [
'public_id' => basename($path),
'folder' => folder(),
]));
} catch (ApiError $err) {
do_action('cumulus/api_error', $err->getMessage(), [
'exception' => $err,
'context' => 'upload',
]);
} catch (InvalidArgumentException $err) {
do_action('cumulus/api_error', $err->getMessage(), [
'exception' => $err,
'context' => 'upload',
]);
}
save_uploaded($id, (array) $result);
}