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
<?php
namespace SIW\WooCommerce\Import;
use SIW\Attachment;
use SIW\Data\Country;
use SIW\Data\Work_Type;
use SIW\Plato\Download_File as Plato_Download_File;
class Product_Image {
const MIN_IMAGE_WIDTH = 600;
const MIN_IMAGE_HEIGHT = 600;
protected $subdir = 'groepsprojecten/projectfotos';
public function get_project_image( array $identifiers, string $filename_base, string $project_id ) {
$project_images = get_posts([
'post_type' => 'attachment',
'post_status' => 'inherit',
'fields' => 'ids',
'meta_query' => [
[
'key' => 'plato_document_identifier',
'value' => $identifiers,
'compare' => 'IN'
],
],
]);
if ( sizeof( $project_images ) > 0 ) {
return $project_images[ array_rand( $project_images, 1 ) ];
}
$document_import = new Plato_Download_File;
$attachment = new Attachment( 'image', $this->subdir );
$attachment->set_minimum_resolution( self::MIN_IMAGE_WIDTH, self::MIN_IMAGE_HEIGHT );
foreach ( $identifiers as $identifier ) {
$temp_file = $document_import->download( $identifier, 'jpg' );
if ( null !== $temp_file ) {
$attachment_id = $attachment->add( $temp_file, $filename_base, 'Projectfoto' );
if ( false !== $attachment_id ) {
update_post_meta( $attachment_id, 'plato_document_identifier', $identifier );
update_post_meta( $attachment_id, 'plato_project_id', $project_id );
return $attachment_id;
}
}
}
return null;
}
public function get_stock_image( Country $country, array $work_types ) {
$continent_slug = $country->get_continent()->get_slug();
$country_slug = $country->get_slug();
foreach ( $work_types as $work_type ) {
$work_type_slugs[] = $work_type->get_slug();
}
$tax_queries = $this->get_tax_queries( $continent_slug, $country_slug, $work_type_slugs );
foreach ( $tax_queries as $tax_query ) {
$posts = get_posts( [
'post_type' => 'attachment',
'post_status' => 'inherit',
'fields' => 'ids',
'tax_query' => $tax_query,
]);
if ( sizeof( $posts ) > 0 ) {
return $posts[ array_rand( $posts, 1 ) ];
}
}
return null;
}
protected function get_tax_queries( string $continent, string $country, array $work_types ) {
$country_query = [
'taxonomy' => 'siw_attachment_country',
'field' => 'slug',
'terms' => $country,
];
$continent_query = [
'taxonomy' => 'siw_attachment_continent',
'field' => 'slug',
'terms' => $continent,
];
$work_type_query = [
'taxonomy' => 'siw_attachment_work_type',
'field' => 'slug',
'terms' => $work_types,
];
$tax_queries[] = [
'relation' => 'AND',
$country_query,
$work_type_query,
];
$tax_queries[] = [
'relation' => 'AND',
$country_query,
];
$tax_queries[] = [
'relation' => 'AND',
$continent_query,
$work_type_query,
];
$tax_queries[] = [
'relation' => 'AND',
$continent_query,
];
return $tax_queries;
}
}