/var/www/html_uk/wp-content/plugins/automatewoo/includes/Queued_Event.php


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
<?php

namespace AutomateWoo;

use 
AutomateWoo\DataTypes\DataTypes;
use 
AutomateWoo\Workflows\Factory;

defined'ABSPATH' ) || exit;

/**
 * @class Queued_Event
 *
 * @property array $data_items (legacy)
 */
class Queued_Event extends Abstract_Model_With_Meta_Table {

    
/** @var string */
    
public $table_id 'queue';

    
/** @var string  */
    
public $object_type 'queue';

    
/** @var bool|array */
    
private $uncompressed_data_layer;


    
// error messages
    
const F_WORKFLOW_INACTIVE 100;
    const 
F_MISSING_DATA      101;
    const 
F_FATAL_ERROR       102;

    
/**
     * Returns the ID of the model's meta table.
     *
     * @return string
     */
    
public function get_meta_table_id() {
        return 
'queue-meta';
    }

    
/**
     * @param bool|int $id
     */
    
public function __construct$id false ) {
        if ( 
$id ) {
            
$this->get_by'id'$id );
        }
    }


    
/**
     * Set workflow ID prop.
     *
     * @param int $id
     *
     * @return $this
     */
    
public function set_workflow_id$id ) {
        
$this->set_prop'workflow_id'Clean::id$id ) );
        return 
$this;
    }


    
/**
     * @return int
     */
    
public function get_workflow_id() {
        return 
Clean::id$this->get_prop'workflow_id' ) );
    }


    
/**
     * Set failed prop.
     *
     * @param bool $failed
     *
     * @return $this
     */
    
public function set_failed$failed true ) {
        
$this->set_prop'failed'aw_bool_int$failed ) );
        return 
$this;
    }


    
/**
     * @return bool
     */
    
public function is_failed() {
        return (bool) 
$this->get_prop'failed' );
    }


    
/**
     * @param int $failure_code
     *
     * @return $this
     */
    
public function set_failure_code$failure_code ) {
        
$this->set_prop'failure_code'absint$failure_code ) );
        return 
$this;
    }

    
/**
     * @return int
     */
    
public function get_failure_code() {
        return 
absint$this->get_prop'failure_code' ) );
    }


    
/**
     * @param DateTime $date
     *
     * @return $this
     */
    
public function set_date_created$date ) {
        
$this->set_date_column'created'$date );
        return 
$this;
    }


    
/**
     * @return bool|DateTime
     */
    
public function get_date_created() {
        return 
$this->get_date_column'created' );
    }


    
/**
     * @param DateTime $date
     *
     * @return $this
     */
    
public function set_date_due$date ) {
        
$this->set_date_column'date'$date );
        return 
$this;
    }


    
/**
     * @return bool|DateTime
     */
    
public function get_date_due() {
        return 
$this->get_date_column'date' );
    }


    
/**
     * @param Data_Layer $data_layer The data layer for the queued event
     */
    
public function store_data_layer$data_layer ) {
        
$this->uncompressed_data_layer $data_layer->get_raw_data();

        foreach ( 
$this->uncompressed_data_layer as $data_type_id => $data_item ) {
            
$this->store_data_item$data_type_id$data_item );
        }
    }

    
/**
     * @param string $data_type_id Data type object ID
     * @param mixed  $data_item    The data item
     */
    
private function store_data_item$data_type_id$data_item ) {
        
$data_type DataTypes::get$data_type_id );

        if (
            ! 
$data_type ||
            ! 
$data_type->validate$data_item ) ||
            
DataTypes::is_non_stored_data_type$data_type_id )
        ) {
            return;
        }

        
$storage_key   Queue_Manager::get_data_layer_storage_key$data_type_id );
        
$storage_value $data_type->compress$data_item );

        if ( 
$storage_key ) {
            
$this->update_meta$storage_key$storage_value );
        }
    }


    
/**
     * @return Data_Layer The data layer instance
     */
    
public function get_data_layer() {
        if ( ! isset( 
$this->uncompressed_data_layer ) ) {

            
$uncompressed_data_layer = [];
            
$compressed_data_layer   $this->get_compressed_data_layer();

            if ( 
$compressed_data_layer ) {
                foreach ( 
$compressed_data_layer as $data_type_id => $compressed_item ) {
                    
$data_type DataTypes::get$data_type_id );
                    if ( 
$data_type ) {
                        
$decompressed_data $data_type->decompress$compressed_item$compressed_data_layer );
                        if ( ! 
$decompressed_data && $this->id ) {
                            
$message sprintf(
                                
'Some of the required data was not found. Queued event ID: %s. The missing "%s" data\'s ID: %d.',
                                
$this->id,
                                
$data_type_id,
                                
Clean::id$compressed_item )
                            );
                            if ( 
'subscription' === $data_type_id ) {
                                
$message .= ' For example, the order or subscription order could have been deleted. This issue may occur when a subscription order initially fails due to payment issues, but later succeeds. In such cases, the subscription order with the failed payment is deleted, but its workflow remains intact.';
                            }
                            
Logger::info'queued-event'$message );
                        }
                        
$uncompressed_data_layer$data_type_id ] = $decompressed_data;
                    }
                }
            }

            
$this->uncompressed_data_layer = new Data_Layer$uncompressed_data_layer );
        }

        return 
$this->uncompressed_data_layer;
    }


    
/**
     * Fetches the data layer from queue meta, but does not decompress
     * Uses the the supplied_data_items field on the workflows trigger
     *
     * @return array|false
     */
    
public function get_compressed_data_layer() {
        
$workflow $this->get_workflow();
        if ( ! 
$workflow ) {
            return 
false// workflow must be set
        
}

        if ( ! 
$this->exists ) {
            return 
false// queue must be saved
        
}

        
$trigger $workflow->get_trigger();
        if ( ! 
$trigger ) {
            return 
false// need a trigger
        
}

        
$data_layer = [];

        
$supplied_items $trigger->get_supplied_data_items();

        foreach ( 
$supplied_items as $data_type_id ) {
            
$data_item_value $this->get_compressed_data_item$data_type_id$supplied_items );

            if ( 
$data_item_value !== false ) {
                
$data_layer$data_type_id ] = $data_item_value;
            }
        }

        return 
$data_layer;
    }


    
/**
     * @param string $data_type_id        Data type object ID
     * @param array  $supplied_data_items An array of supplied data items
     *
     * @return string|false
     */
    
private function get_compressed_data_item$data_type_id$supplied_data_items ) {
        if ( 
DataTypes::is_non_stored_data_type$data_type_id ) ) {
            return 
false// storage not required
        
}

        
$storage_key Queue_Manager::get_data_layer_storage_key$data_type_id );

        if ( ! 
$storage_key ) {
            return 
false;
        }

        return 
Clean::string$this->get_meta$storage_key ) );
    }


    
/**
     * Returns the workflow without a data layer
     *
     * @return Workflow|false
     */
    
public function get_workflow() {
        return 
Factory::get$this->get_workflow_id() );
    }


    
/**
     * @return bool
     */
    
public function run() {
        if ( ! 
$this->exists ) {
            return 
false;
        }

        
// mark as failed and then delete if complete, so fatal error will not cause it to run repeatedly
        
$this->mark_as_failedself::F_FATAL_ERROR );
        
$this->save();
        
$success false;

        
$workflow $this->get_workflow();
        
$workflow->setup$this->get_data_layer() );

        
$failure $this->do_failure_check$workflow );

        if ( 
$failure ) {
            
// queued event failed
            
$this->mark_as_failed$failure );
        } else {
            
$success true;

            
// passed fail check so validate workflow and then delete
            
if ( $this->validate_workflow$workflow ) ) {
                
$workflow->run();
            } else {
                
// Order is no longer valid for this workflow so add a log before deleting the queued entry
                
$workflow->create_run_log();

                
$log $workflow->get_current_log();

                
$log->add_note__'Queued Workflow: Run failed as requirements are no longer met for this workflow.''automatewoo' ) );
                
$log->set_has_errorstrue );
                
$log->save();
            }

            
$this->delete();
        }

        
// important to always clean up
        
$workflow->cleanup();
        return 
$success;
    }


    
/**
     * Returns false if no failure occurred
     *
     * @param Workflow $workflow
     * @return bool|int
     */
    
public function do_failure_check$workflow ) {
        if ( ! 
$workflow || ! $workflow->is_active() ) {
            return 
self::F_WORKFLOW_INACTIVE;
        }

        if ( 
$this->get_data_layer()->is_missing_data() ) {
            return 
self::F_MISSING_DATA;
        }

        return 
false;
    }


    
/**
     * Validate the workflow before running it from the queue.
     * This validation is different from the initial trigger validation.
     *
     * @param Workflow $workflow The Workflow to validate
     *
     * @return bool
     */
    
public function validate_workflow$workflow ) {
        
$trigger $workflow->get_trigger();
        if ( ! 
$trigger ) {
            return 
false;
        }

        if ( ! 
$trigger->validate_before_queued_event$workflow ) ) {
            return 
false;
        }

        if ( ! 
$workflow->validate_rules() ) {
            return 
false;
        }

        return 
true;
    }

    
/**
     * Clear cached workflow data stored as a transient `current_queue_count/workflow=WORKFLOW_ID`
     *
     * @return void
     */
    
public function clear_cached_data() {
        
// Clear cached dashboard counts.
        
Cache::flush_group'dashboard' );

        if ( ! 
$this->get_workflow_id() ) {
            return;
        }

        
Cache::delete_transient'current_queue_count/workflow=' $this->get_workflow_id() );
    }

    
/**
     * Save the current queued event
     *
     * @return void
     */
    
public function save() {
        if ( ! 
$this->exists ) {
            
$this->set_date_created( new DateTime() );
        }

        
parent::save();
    }

    
/**
     * @param int $code The error code to set for the current queued event
     */
    
public function mark_as_failed$code ) {
        
$this->set_failed();
        
$this->set_failure_code$code );
        
$this->save();
    }

    
/**
     * Get failure message from failure code
     *
     * @return string
     */
    
public function get_failure_message() {
        return 
Queue_Manager::get_failure_message$this->get_failure_code() );
    }


    
/**
     * Just for unit tests
     */
    
public function clear_in_memory_data_layer() {
        
$this->uncompressed_data_layer null;
    }
}