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
<?php
namespace SIW\Batch;
use SIW\HTML;
use SIW\Email\Template;
use SIW\WooCommerce\Import\Product as Import_Product;
class Send_Workcamp_Approval_Emails extends Job {
protected $action = 'send_workcamp_approval_emails';
protected $name = 'versturen email goedkeuren groepsprojecten';
protected $category = 'groepsprojecten';
protected function select_data() {
$categories = get_terms( [
'taxonomy' => 'product_cat',
'hide_empty' => true
]);
if ( empty( $categories ) || is_wp_error( $categories ) ) {
return false;
}
foreach ( $categories as $category ) {
$data[] = [
'slug' => $category->slug,
'name' => $category->name,
];
}
return $data;
}
protected function task( $category ) {
$products = wc_get_products([
'return' => 'ids',
'category' => [ $category['slug'] ],
'status' => Import_Product::REVIEW_STATUS,
'limit' => -1,
]);
if ( empty( $products ) ) {
return false;
}
$supervisor = $this->get_supervisor();
if ( false === $supervisor ) {
return false;
}
$responsible_user = $this->get_responsible_user( $category['slug'] );
if ( false === $responsible_user ) {
$responsible_user = $supervisor;
}
$admin_url = add_query_arg(
[
'post_type' => 'product',
'post_status' => Import_Product::REVIEW_STATUS,
'product_cat' => $category['slug'],
],
admin_url( 'edit.php' )
);
$message =
sprintf( 'Beste %s,', $responsible_user->user_firstname ) . BR2 .
sprintf( 'Er wachten nog %d projecten in %s op jouw beoordeling.', count( $products ), $category['name'] ) . BR .
sprintf( 'Klik %s om de projecten te bekijken.', HTML::generate_link( $admin_url, 'hier') );
$template = new Template(
[
'subject' => sprintf( 'Nog te beoordelen projecten in %s', $category['name'] ),
'message' => $message,
'show_signature' => true,
'signature_name' => $supervisor->display_name
]
);
$this->send_mail(
$responsible_user,
$supervisor,
sprintf( 'Nog te beoordelen projecten in %s', $category['name'] ),
$template->generate()
);
$this->increment_processed_count();
return false;
}
protected function get_supervisor() {
$workcamp_approval = siw_get_option( 'workcamp_approval' );
if ( isset( $workcamp_approval['supervisor'] ) ) {
return get_userdata( $workcamp_approval['supervisor'] );
}
return false;
}
protected function get_responsible_user( string $category_slug ) {
$workcamp_approval = siw_get_option( 'workcamp_approval' );
if ( isset( $workcamp_approval[ "responsible_{$category_slug}" ] ) ) {
return get_userdata( $workcamp_approval[ "responsible_{$category_slug}" ] );
}
return false;
}
protected function send_mail( \WP_User $to, \WP_User $from, string $subject, string $message ) {
$headers = [
'Content-Type: text/html; charset=UTF-8',
sprintf( 'From: %s <%s>', $from->display_name, $from->user_email ),
];
if ( $to != $from ) {
$headers[] = sprintf( 'CC: %s <%s>', $from->display_name, $from->user_email );
}
wp_mail(
$to->user_email,
$subject,
$message,
$headers
);
}
}