/var/www/html_us/wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/TaskList.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
436
437
438
439
440
441
<?php
/**
 * Handles storage and retrieval of a task list
 */

namespace Automattic\WooCommerce\Admin\Features\OnboardingTasks;

use 
Automattic\WooCommerce\Admin\Features\OnboardingTasks\Task;
use 
Automattic\WooCommerce\Admin\WCAdminHelper;


/**
 * Task List class.
 */
class TaskList {
    
/**
     * Task traits.
     */
    
use TaskTraits;

    
/**
     * Option name hidden task lists.
     */
    
const HIDDEN_OPTION 'woocommerce_task_list_hidden_lists';

    
/**
     * Option name of completed task lists.
     */
    
const COMPLETED_OPTION 'woocommerce_task_list_completed_lists';

    
/**
     * Option name of hidden reminder bar.
     */
    
const REMINDER_BAR_HIDDEN_OPTION 'woocommerce_task_list_reminder_bar_hidden';

    
/**
     * ID.
     *
     * @var string
     */
    
public $id '';

    
/**
     * ID.
     *
     * @var string
     */
    
public $hidden_id '';

    
/**
     * ID.
     *
     * @var boolean
     */
    
public $display_progress_header false;

    
/**
     * Title.
     *
     * @var string
     */
    
public $title '';

    
/**
     * Tasks.
     *
     * @var array
     */
    
public $tasks = array();

    
/**
     * Sort keys.
     *
     * @var array
     */
    
public $sort_by = array();

    
/**
     * Event prefix.
     *
     * @var string|null
     */
    
public $event_prefix null;

    
/**
     * Task list visibility.
     *
     * @var boolean
     */
    
public $visible true;

    
/**
     * Array of custom options.
     *
     * @var array
     */
    
public $options = array();

    
/**
     * Array of TaskListSection.
     *
     * @deprecated 7.2.0
     *
     * @var array
     */
    
private $sections = array();

    
/**
     * Key value map of task class and id used for sections.
     *
     * @deprecated 7.2.0
     *
     * @var array
     */
    
public $task_class_id_map = array();

    
/**
     * Constructor
     *
     * @param array $data Task list data.
     */
    
public function __construct$data = array() ) {
        
$defaults = array(
            
'id'                      => null,
            
'hidden_id'               => null,
            
'title'                   => '',
            
'tasks'                   => array(),
            
'sort_by'                 => array(),
            
'event_prefix'            => null,
            
'options'                 => array(),
            
'visible'                 => true,
            
'display_progress_header' => false,
        );

        
$data wp_parse_args$data$defaults );

        
$this->id                      $data['id'];
        
$this->hidden_id               $data['hidden_id'];
        
$this->title                   $data['title'];
        
$this->sort_by                 $data['sort_by'];
        
$this->event_prefix            $data['event_prefix'];
        
$this->options                 $data['options'];
        
$this->visible                 $data['visible'];
        
$this->display_progress_header $data['display_progress_header'];

        foreach ( 
$data['tasks'] as $task_name ) {
            
$class 'Automattic\WooCommerce\Admin\Features\OnboardingTasks\Tasks\\' $task_name;
            
$task  = new $class$this );
            
$this->add_task$task );
        }

        
$this->possibly_remove_reminder_bar();
    }

    
/**
     * Check if the task list is hidden.
     *
     * @return bool
     */
    
public function is_hidden() {
        
$hidden get_optionself::HIDDEN_OPTION, array() );
        return 
in_array$this->hidden_id $this->hidden_id $this->id$hiddentrue );
    }

    
/**
     * Check if the task list is visible.
     *
     * @return bool
     */
    
public function is_visible() {
        if ( ! 
$this->visible || $this->is_hidden() || ! count$this->get_viewable_tasks() ) > ) {
            return 
false;
        }
        return ! 
$this->is_hidden();
    }

    
/**
     * Hide the task list.
     *
     * @return bool
     */
    
public function hide() {
        if ( 
$this->is_hidden() ) {
            return;
        }

        
$viewable_tasks  $this->get_viewable_tasks();
        
$completed_count array_reduce(
            
$viewable_tasks,
            function( 
$total$task ) {
                return 
$task->is_complete() ? $total $total;
            },
            
0
        
);

        
$this->record_tracks_event(
            
'completed',
            array(
                
'action'                => 'remove_card',
                
'completed_task_count'  => $completed_count,
                
'incomplete_task_count' => count$viewable_tasks ) - $completed_count,
                
'tasklist_id'           => $this->id,
            )
        );

        
$hidden   get_optionself::HIDDEN_OPTION, array() );
        
$hidden[] = $this->hidden_id $this->hidden_id $this->id;
        
$this->maybe_set_default_layout$hidden );
        return 
update_optionself::HIDDEN_OPTIONarray_unique$hidden ) );
    }

    
/**
     * Sets the default homepage layout to two_columns if "setup" tasklist is completed or hidden.
     *
     * @param array $completed_or_hidden_tasklist_ids Array of tasklist ids.
     */
    
public function maybe_set_default_layout$completed_or_hidden_tasklist_ids ) {
        if ( 
in_array'setup'$completed_or_hidden_tasklist_idstrue ) ) {
            
update_option'woocommerce_default_homepage_layout''two_columns' );
        }
    }

    
/**
     * Undo hiding of the task list.
     *
     * @return bool
     */
    
public function unhide() {
        
$hidden get_optionself::HIDDEN_OPTION, array() );
        
$hidden array_diff$hidden, array( $this->hidden_id $this->hidden_id $this->id ) );
        return 
update_optionself::HIDDEN_OPTION$hidden );
    }

    
/**
     * Check if all viewable tasks are complete.
     *
     * @return bool
     */
    
public function is_complete() {
        foreach ( 
$this->get_viewable_tasks() as $viewable_task ) {
            if ( 
$viewable_task->is_complete() === false ) {
                return 
false;
            }
        }

        return 
true;
    }

    
/**
     * Check if a task list has previously been marked as complete.
     *
     * @return bool
     */
    
public function has_previously_completed() {
        
$complete get_optionself::COMPLETED_OPTION, array() );
        return 
in_array$this->get_list_id(), $completetrue );
    }

    
/**
     * Add task to the task list.
     *
     * @param Task $task Task class.
     */
    
public function add_task$task ) {
        if ( ! 
is_subclass_of$task'Automattic\WooCommerce\Admin\Features\OnboardingTasks\Task' ) ) {
            return new 
\WP_Error(
                
'woocommerce_task_list_invalid_task',
                
__'Task is not a subclass of `Task`''woocommerce' )
            );
        }
        if ( 
array_search$task$this->taskstrue ) ) {
            return;
        }

        
$this->tasks[] = $task;
    }

    
/**
     * Get only visible tasks in list.
     *
     * @param string $task_id id of task.
     * @return Task
     */
    
public function get_task$task_id ) {
        return 
current(
            
array_filter(
                
$this->tasks,
                function( 
$task ) use ( $task_id ) {
                    return 
$task->get_id() === $task_id;
                }
            )
        );
    }

    
/**
     * Get only visible tasks in list.
     *
     * @return array
     */
    
public function get_viewable_tasks() {
        return 
array_values(
            
array_filter(
                
$this->tasks,
                function( 
$task ) {
                    return 
$task->can_view();
                }
            )
        );
    }

    
/**
     * Get task list sections.
     *
     * @deprecated 7.2.0
     *
     * @return array
     */
    
public function get_sections() {
        
wc_deprecated_function__CLASS__ '::' __FUNCTION__'7.2.0' );

        return 
$this->sections;
    }

    
/**
     * Track list completion of viewable tasks.
     */
    
public function possibly_track_completion() {
        if ( 
$this->has_previously_completed() ) {
            return;
        }

        
// If it's hidden, completion is tracked via hide method.
        
if ( $this->is_hidden() ) {
            return;
        }

        
// Expensive check, do it last.
        
if ( ! $this->is_complete() ) {
            return;
        }

        
$completed_lists   get_optionself::COMPLETED_OPTION, array() );
        
$completed_lists[] = $this->get_list_id();
        
update_optionself::COMPLETED_OPTION$completed_lists );
        
$this->maybe_set_default_layout$completed_lists );
        
$this->record_tracks_event(
            
'tasks_completed',
            array(
                
'tasklist_id' => $this->id,
            )
        );
    }

    
/**
     * Sorts the attached tasks array.
     *
     * @param array $sort_by list of columns with sort order.
     * @return TaskList returns $this, for chaining.
     */
    
public function sort_tasks$sort_by = array() ) {
        
$sort_by count$sort_by ) > $sort_by $this->sort_by;
        if ( 
!== count$sort_by ) ) {
            
usort(
                
$this->tasks,
                function( 
$a$b ) use ( $sort_by ) {
                    return 
Task::sort$a$b$sort_by );
                }
            );
        }
        return 
$this;
    }

    
/**
     * Prefix event for track event naming.
     *
     * @param string $event_name Event name.
     * @return string
     */
    
public function prefix_event$event_name ) {
        if ( 
null !== $this->event_prefix ) {
            return 
$this->event_prefix $event_name;
        }
        return 
$this->get_list_id() . '_tasklist_' $event_name;
    }

    
/**
     * Returns option to keep completed task list.
     *
     * @return string
     */
    
public function get_keep_completed_task_list() {
        return 
get_option'woocommerce_task_list_keep_completed''no' );
    }

    
/**
     * Remove reminder bar four weeks after store creation.
     */
    
public static function possibly_remove_reminder_bar() {
        
$bar_hidden            get_optionself::REMINDER_BAR_HIDDEN_OPTION'no' );
        
$active_for_four_weeks WCAdminHelper::is_wc_admin_active_forWEEK_IN_SECONDS );

        if ( 
'yes' === $bar_hidden || ! $active_for_four_weeks ) {
            return;
        }

        
update_optionself::REMINDER_BAR_HIDDEN_OPTION'yes' );
    }

    
/**
     * Get the list for use in JSON.
     *
     * @return array
     */
    
public function get_json() {
        
$this->possibly_track_completion();
        
$tasks_json = array();

        
// We have no use for hidden lists, it's expensive to compute individual tasks completion.
        // Exception: Secret tasklist is always hidden.
        
if ( $this->is_visible() || 'secret_tasklist' === $this->id ) {
            foreach ( 
$this->tasks as $task ) {
                
$json $task->get_json();
                if ( 
$json['canView'] ) {
                    
$tasks_json[] = $json;
                }
            }
        }

        return array(
            
'id'                    => $this->get_list_id(),
            
'title'                 => $this->title,
            
'isHidden'              => $this->is_hidden(),
            
'isVisible'             => $this->is_visible(),
            
'isComplete'            => $this->is_complete(),
            
'tasks'                 => $tasks_json,
            
'eventPrefix'           => $this->prefix_event'' ),
            
'displayProgressHeader' => $this->display_progress_header,
            
'keepCompletedTaskList' => $this->get_keep_completed_task_list(),
        );
    }
}