image_thumbs 0.5.0

Simple to use crate to create thumbnails and store them in a object store like Google Cloud Storage
Documentation
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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
//! # Image Thumbs
//! Easy-to-use library to create image thumbnails from images existing on some (cloud) object
//! storage or from disk.
//!
//! Currently implemented is a connection to Google Cloud Storage,
//! but it can be easily extended to other providers.
//!
//! ## Supported formats
//! PNG and JPEG are currently the only supported image formats.
//!
//! # How to use
//! ## Sizes
//! Configure what thumbnails you would like to have in a .yaml file:
//! ```yaml
#![doc = include_str!("../examples/image_thumbs.yaml")]
//! ```
//!
//! ## Google credentials
//! This crate relies on [object_store](https://crates.io/crates/object_store) for the interaction
//! with the storage backend.
//! Currently, this crate only supports Google Cloud Storage.
//!
//! To configure the Google Service Account, use one of the following environment variables as
//! [described in the object_store](https://docs.rs/object_store/0.9.0/object_store/gcp/struct.GoogleCloudStorageBuilder.html#method.from_env)
//! crate.
//!
//! ```text
//! GOOGLE_SERVICE_ACCOUNT: location of service account file
//! GOOGLE_SERVICE_ACCOUNT_PATH: (alias) location of service account file
//! SERVICE_ACCOUNT: (alias) location of service account file
//! GOOGLE_SERVICE_ACCOUNT_KEY: JSON serialized service account key
//! GOOGLE_BUCKET: bucket name
//! GOOGLE_BUCKET_NAME: (alias) bucket name
//! ```
//!
//! Then use it in your code
//! ```no_run
//! # #[tokio::main]
//! # async fn main() {
//!     // Path to your thumbnail configuration yaml. You may specify the .yaml extension in the
//!     // path, but you don't need to.
//!     let thumbs = image_thumbs::ImageThumbs::new("examples/image_thumbs").unwrap();
//!     thumbs
//!         .create_thumbs("penguin.jpg", "/thumbs", false)
//!         .await
//!         .unwrap();
//!     thumbs
//!         .create_thumbs("penguin.png", "/thumbs", false)
//!         .await
//!         .unwrap();
//! # }
//! ```

use ::image::ImageFormat;
use config::Config;
use object_store::ObjectStore;
use object_store::path::Path;
use thiserror::Error;

pub use crate::error::Error;
pub use crate::error::ThumbsResult;
pub use crate::model::ImageThumbs;
pub use model::Params;
pub use object_store::gcp::GoogleCloudStorage;

mod error;
mod gcs;
mod image;
mod model;
mod storage;

impl<T: ObjectStore> ImageThumbs<T> {
    /// Gets all images from one object storage level, creates thumbnails for each of them, and puts
    /// them in the `dest_dir` directory.
    ///
    /// # Arguments
    /// * `directory` - directory to create thumbnails for.
    ///   It will list all objects on this level and create thumbnails (if they do not already exist).
    ///
    /// * `dest_dir` - directory to store all created thumbnails.
    ///   This directory will be checked for already existent thumbnails, if `force_override` is false.
    ///
    /// * `force_override` - if `true` it will override already existent files with the same name.
    ///   If false, it will preserve already existent files.
    pub async fn create_thumbs_dir(
        &self,
        directory: Option<&str>,
        dest_dir: &str,
        force_override: bool,
    ) -> ThumbsResult<()> {
        let prefix = match directory {
            Some(p) => Some(Path::parse(p)?),
            None => None,
        };

        let mut names = self.list_folder(prefix.as_ref()).await?;

        if force_override {
            let existent_thumbs = self.list_folder(Some(&Path::parse(dest_dir)?)).await?;
            names = self.filter_existent_thumbs(names, &existent_thumbs)?;
        }

        for name in names {
            self.create_thumbs(name.as_ref(), dest_dir, force_override)
                .await?;
        }
        Ok(())
    }

    /// Gets one image from the object storage, creates thumbnails for it, and puts them in the
    /// `dest_dir` directory.
    ///
    /// # Arguments
    /// * `file` - image to create thumbnails for.
    ///
    /// * `dest_dir` - directory to store all created thumbnails.
    ///   This directory will be checked for already existent thumbnails if `force_override` is false.
    ///
    /// * `force_override` - if `true` it will override already existent files with the same name.
    ///   If false, it will preserve already existent files.
    pub async fn create_thumbs(
        &self,
        file: &str,
        dest_dir: &str,
        force_override: bool,
    ) -> ThumbsResult<()> {
        let image = self.download_image(file).await?;
        self.create_thumbs_from_bytes(
            image.bytes,
            dest_dir,
            &image.stem,
            image.format,
            force_override,
            (0.5, 0.5),
        )
        .await
    }

    /// Gets one image from the object storage, creates thumbnails for it, and puts them in the
    /// `dest_dir` directory.
    /// This function allows providing a manual definition of the image center, i.e., the most
    /// relevant part, to avoid cutting it of.
    ///
    /// # Arguments
    /// * `file` - image to create thumbnails for.
    ///
    /// * `dest_dir` - directory to store all created thumbnails.
    ///   This directory will be checked for already existent thumbnails if `force_override` is false.
    ///
    /// * `force_override` - if `true` it will override already existent files with the same name.
    ///   If false, it will preserve already existent files.
    ///
    /// # `center` - (width, height) in percent (i.e., between 0 and 1) where to place the center of
    /// the image, if the edges need to be cut off.
    pub async fn create_thumbs_man_center(
        &self,
        file: &str,
        dest_dir: &str,
        force_override: bool,
        center: (f32, f32),
    ) -> ThumbsResult<()> {
        let image = self.download_image(file).await?;
        self.create_thumbs_from_bytes(
            image.bytes,
            dest_dir,
            &image.stem,
            image.format,
            force_override,
            center,
        )
        .await
    }

    /// Takes the raw bytes of an image, creates thumbnails for it, and puts them in the `dest_dir`
    /// directory.
    ///
    /// # Arguments
    /// * `bytes` - raw image bytes to create thumbnails for.
    ///
    /// * `dest_dir` - directory to store all created thumbnails.
    ///   This directory will be checked for already existent thumbnails if `force_override` is false.
    ///
    /// * `image_name` - name used for the created thumbnails. Should not include the extension.
    ///   The Final thumbnail names will be of the form `<image_name>_<thumbnail_name>.<extension>`
    ///
    /// * `format` - format of the input image. The output image will have the same type.
    ///   Currently supported are JPG and PNG.
    ///
    /// * `force_override` - if `true` it will override already existent files with the same name.
    ///   If false, it will preserve already existent files.
    pub async fn create_thumbs_from_bytes(
        &self,
        bytes: Vec<u8>,
        dest_dir: &str,
        image_name: &str,
        format: ImageFormat,
        force_override: bool,
        center: (f32, f32),
    ) -> ThumbsResult<()> {
        let dest_dir = Path::parse(dest_dir)?;

        let thumbs = self
            .create_thumb_images_from_bytes(
                bytes,
                dest_dir,
                image_name,
                format,
                force_override,
                center,
            )
            .await?;
        self.upload_thumbs(thumbs).await
    }

    /// Extracts the settings from the given configuration file.
    ///
    /// The config file must look like the example in `examples/image_thumbs.yaml`:
    /// ```yaml
    #[doc = include_str!("../examples/image_thumbs.yaml")]
    /// ```
    ///
    /// # Arguments
    /// * `config` - Path to the config file from the crate root (`.yaml` may be omitted)
    fn settings(config: &str) -> ThumbsResult<Vec<Params>> {
        Ok(Config::builder()
            .add_source(config::File::with_name(config))
            .build()?
            .get("thumbs")?)
    }
}

#[cfg(test)]
mod tests {
    use image::ImageFormat;
    use object_store::path::Path;
    use sequential_test::sequential;
    use tokio::fs::File;
    use tokio::io::{AsyncReadExt, BufReader};

    use crate::ImageThumbs;
    use crate::model::ImageDetails;

    #[tokio::test]
    #[ignore]
    #[sequential]
    async fn create_thumbs() {
        let client = ImageThumbs::new("src/test/image_thumbs").unwrap();
        client
            .create_thumbs("penguin.jpg", "/test_dir", false)
            .await
            .unwrap();
        client
            .create_thumbs("penguin.png", "/test_dir", false)
            .await
            .unwrap();

        // check if they exist
        client
            .download_image("test_dir/penguin_standard.jpg")
            .await
            .unwrap();
        client
            .download_image("test_dir/penguin_mini.jpg")
            .await
            .unwrap();
        client
            .download_image("test_dir/penguin_standard.png")
            .await
            .unwrap();
        client
            .download_image("test_dir/penguin_mini.png")
            .await
            .unwrap();

        // delete them to not influence following test
        client
            .delete("test_dir/penguin_standard.jpg")
            .await
            .unwrap();
        client.delete("test_dir/penguin_mini.jpg").await.unwrap();
        client
            .delete("test_dir/penguin_standard.png")
            .await
            .unwrap();
        client.delete("test_dir/penguin_mini.png").await.unwrap();
    }

    #[tokio::test]
    #[ignore]
    #[sequential]
    async fn create_thumbs_dir() {
        let client = ImageThumbs::new("src/test/image_thumbs").unwrap();
        client
            .create_thumbs_dir(None, "thumbs", false)
            .await
            .unwrap();

        // check if they exist
        client
            .download_image("thumbs/penguin_standard.jpg")
            .await
            .unwrap();
        client
            .download_image("thumbs/penguin_mini.jpg")
            .await
            .unwrap();
        client
            .download_image("thumbs/penguin_standard.png")
            .await
            .unwrap();
        client
            .download_image("thumbs/penguin_mini.png")
            .await
            .unwrap();

        // delete them to not influence following test
        client.delete("thumbs/penguin_standard.jpg").await.unwrap();
        client.delete("thumbs/penguin_mini.jpg").await.unwrap();
        client.delete("thumbs/penguin_standard.png").await.unwrap();
        client.delete("thumbs/penguin_mini.png").await.unwrap();

        client
            .create_thumbs_dir(Some("/"), "thumbs", false)
            .await
            .unwrap();

        // check if they exist
        client
            .download_image("thumbs/penguin_standard.jpg")
            .await
            .unwrap();
        client
            .download_image("thumbs/penguin_mini.jpg")
            .await
            .unwrap();
        client
            .download_image("thumbs/penguin_standard.png")
            .await
            .unwrap();
        client
            .download_image("thumbs/penguin_mini.png")
            .await
            .unwrap();

        // delete them to not influence following test
        client.delete("thumbs/penguin_standard.jpg").await.unwrap();
        client.delete("thumbs/penguin_mini.jpg").await.unwrap();
        client.delete("thumbs/penguin_standard.png").await.unwrap();
        client.delete("thumbs/penguin_mini.png").await.unwrap();
    }

    #[tokio::test]
    #[ignore]
    #[sequential]
    async fn create_thumbs_from_bytes() {
        let client = ImageThumbs::new("src/test/image_thumbs").unwrap();
        // create JPG image thumbs
        {
            let test_jpg = File::open("src/test/mock_data/testBucket/penguin.jpg")
                .await
                .unwrap();
            let mut reader = BufReader::new(test_jpg);
            let mut buffer = Vec::new();

            reader.read_to_end(&mut buffer).await.unwrap();

            client
                .create_thumbs_from_bytes(
                    buffer,
                    "/from_bytes_test",
                    "penguin",
                    ImageFormat::Jpeg,
                    false,
                    (0.5, 0.5),
                )
                .await
                .unwrap();
        }

        // create PNG image thumbs
        {
            let test_png = File::open("src/test/mock_data/testBucket/penguin.png")
                .await
                .unwrap();
            let mut reader = BufReader::new(test_png);
            let mut buffer = Vec::new();

            reader.read_to_end(&mut buffer).await.unwrap();

            client
                .create_thumbs_from_bytes(
                    buffer,
                    "/from_bytes_test",
                    "penguin",
                    ImageFormat::Png,
                    false,
                    (0.5, 0.5),
                )
                .await
                .unwrap();
        }

        // check if they exist
        client
            .download_image("from_bytes_test/penguin_standard.png")
            .await
            .unwrap();
        client
            .download_image("from_bytes_test/penguin_mini.png")
            .await
            .unwrap();
        client
            .download_image("from_bytes_test/penguin_standard.png")
            .await
            .unwrap();
        client
            .download_image("from_bytes_test/penguin_mini.png")
            .await
            .unwrap();

        // delete them to not influence following test
        client
            .delete("from_bytes_test/penguin_standard.jpg")
            .await
            .unwrap();
        client
            .delete("from_bytes_test/penguin_mini.jpg")
            .await
            .unwrap();
        client
            .delete("from_bytes_test/penguin_standard.png")
            .await
            .unwrap();
        client
            .delete("from_bytes_test/penguin_mini.png")
            .await
            .unwrap();
    }

    #[tokio::test]
    #[ignore]
    #[sequential]
    async fn override_behaviour() {
        let client = ImageThumbs::new("src/test/image_thumbs").unwrap();
        let broken_thumb = ImageDetails {
            stem: "penguin_standard".to_string(),
            format: ImageFormat::Png,
            path: Path::parse("/thumbs").unwrap(),
            bytes: vec![1, 2, 3, 4, 5, 6, 7, 8, 9],
        };
        client.upload_thumbs(vec![broken_thumb]).await.unwrap();

        client
            .create_thumbs_dir(Some("/"), "thumbs", false)
            .await
            .unwrap();

        client
            .download_image("thumbs/penguin_standard.jpg")
            .await
            .unwrap();
        client
            .download_image("thumbs/penguin_mini.jpg")
            .await
            .unwrap();
        assert!(
            client
                .download_image("thumbs/penguin_standard.png")
                .await
                .is_err(),
            "This image should not be overwritten"
        );
        client
            .download_image("thumbs/penguin_mini.png")
            .await
            .unwrap();

        client
            .create_thumbs_dir(Some("/"), "thumbs", true)
            .await
            .unwrap();

        assert_ne!(
            client
                .download_image("thumbs/penguin_standard.png")
                .await
                .unwrap()
                .bytes,
            vec![1, 2, 3, 4, 5, 6, 7, 8, 9],
            "The image should have been overwritten"
        );

        // delete them to not influence following test
        client.delete("thumbs/penguin_standard.jpg").await.unwrap();
        client.delete("thumbs/penguin_mini.jpg").await.unwrap();
        client.delete("thumbs/penguin_standard.png").await.unwrap();
        client.delete("thumbs/penguin_mini.png").await.unwrap();
    }
}