|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Symbiote\AdvancedWorkflow\Dev; |
|
4
|
|
|
|
|
5
|
|
|
use SilverStripe\Control\Controller; |
|
6
|
|
|
use SilverStripe\Core\Injector\Injector; |
|
7
|
|
|
use SilverStripe\Dev\BulkLoader; |
|
8
|
|
|
use SilverStripe\Dev\BulkLoader_Result; |
|
9
|
|
|
use SilverStripe\ORM\ValidationException; |
|
10
|
|
|
use Symbiote\AdvancedWorkflow\Admin\WorkflowDefinitionExporter; |
|
11
|
|
|
use Symbiote\AdvancedWorkflow\Admin\WorkflowDefinitionImporter; |
|
12
|
|
|
use Symbiote\AdvancedWorkflow\DataObjects\ImportedWorkflowTemplate; |
|
13
|
|
|
use Symbiote\AdvancedWorkflow\DataObjects\WorkflowDefinition; |
|
14
|
|
|
use Symbiote\AdvancedWorkflow\Services\WorkflowService; |
|
15
|
|
|
use Symbiote\AdvancedWorkflow\Templates\WorkflowTemplate; |
|
16
|
|
|
|
|
17
|
|
|
/** |
|
18
|
|
|
* Utility class to facilitate a simple YML-import via the standard CMS ImportForm() logic. |
|
19
|
|
|
* |
|
20
|
|
|
* @license BSD License (http://silverstripe.org/bsd-license/) |
|
21
|
|
|
* @package advancedworkflow |
|
22
|
|
|
*/ |
|
23
|
|
|
class WorkflowBulkLoader extends BulkLoader |
|
24
|
|
|
{ |
|
25
|
|
|
/** |
|
26
|
|
|
* @inheritDoc |
|
27
|
|
|
*/ |
|
28
|
|
|
public function preview($filepath) |
|
29
|
|
|
{ |
|
30
|
|
|
return $this->processAll($filepath, true); |
|
|
|
|
|
|
31
|
|
|
} |
|
32
|
|
|
|
|
33
|
|
|
/** |
|
34
|
|
|
* @param string $filepath |
|
35
|
|
|
* @param boolean $preview |
|
36
|
|
|
*/ |
|
37
|
|
|
protected function processAll($filepath, $preview = false) |
|
38
|
|
|
{ |
|
39
|
|
|
$results = new BulkLoader_Result(); |
|
40
|
|
|
|
|
41
|
|
|
try { |
|
42
|
|
|
$yml = singleton(WorkflowDefinitionImporter::class)->parseYAMLImport($filepath); |
|
43
|
|
|
$this->processRecord($yml, $this->columnMap, $results, $preview); |
|
44
|
|
|
return $results; |
|
45
|
|
|
} catch (ValidationException $e) { |
|
46
|
|
|
return new BulkLoader_Result(); |
|
47
|
|
|
} |
|
48
|
|
|
} |
|
49
|
|
|
|
|
50
|
|
|
/** |
|
51
|
|
|
* @param array $record |
|
52
|
|
|
* @param array $columnMap |
|
53
|
|
|
* @param BulkLoader_Result $results |
|
54
|
|
|
* @param boolean $preview |
|
55
|
|
|
* @return number |
|
56
|
|
|
*/ |
|
57
|
|
|
protected function processRecord($record, $columnMap, &$results, $preview = false) |
|
58
|
|
|
{ |
|
59
|
|
|
$posted = Controller::curr()->getRequest()->postVars(); |
|
60
|
|
|
$default = WorkflowDefinitionExporter::$export_filename_prefix.'0.yml'; |
|
|
|
|
|
|
61
|
|
|
$filename = (isset($posted['_CsvFile']['name']) ? $posted['_CsvFile']['name'] : $default); |
|
62
|
|
|
|
|
63
|
|
|
// @todo is this the best way to extract records (nested array keys)?? |
|
64
|
|
|
$struct = $record[Injector::class]['ExportedWorkflow']; |
|
65
|
|
|
$name = $struct['constructor'][0]; |
|
66
|
|
|
$import = $this->createImport($name, $filename, $record); |
|
67
|
|
|
|
|
68
|
|
|
$template = Injector::inst()->createWithArgs(WorkflowTemplate::class, $struct['constructor']); |
|
69
|
|
|
$template->setStructure($struct['properties']['structure']); |
|
70
|
|
|
|
|
71
|
|
|
$def = WorkflowDefinition::create(); |
|
72
|
|
|
$def->workflowService = singleton(WorkflowService::class); |
|
73
|
|
|
$def->Template = $template->getName(); |
|
|
|
|
|
|
74
|
|
|
$obj = $def->workflowService->defineFromTemplate($def, $def->Template); |
|
|
|
|
|
|
75
|
|
|
|
|
76
|
|
|
$results->addCreated($obj, ''); |
|
77
|
|
|
$objID = $obj->ID; |
|
78
|
|
|
|
|
79
|
|
|
// Update the import |
|
80
|
|
|
$import->DefinitionID = $objID; |
|
|
|
|
|
|
81
|
|
|
$import->write(); |
|
82
|
|
|
|
|
83
|
|
|
$obj->destroy(); |
|
84
|
|
|
unset($obj); |
|
85
|
|
|
|
|
86
|
|
|
return $objID; |
|
87
|
|
|
} |
|
88
|
|
|
|
|
89
|
|
|
/** |
|
90
|
|
|
* Create the ImportedWorkflowTemplate record for the uploaded YML file. |
|
91
|
|
|
* |
|
92
|
|
|
* @param string $name |
|
93
|
|
|
* @param string $filename |
|
94
|
|
|
* @param array $record |
|
95
|
|
|
* @return ImportedWorkflowTemplate $import |
|
96
|
|
|
*/ |
|
97
|
|
|
protected function createImport($name, $filename, $record) |
|
98
|
|
|
{ |
|
99
|
|
|
// This is needed to feed WorkflowService#getNamedTemplate() |
|
100
|
|
|
$import = ImportedWorkflowTemplate::create(); |
|
101
|
|
|
$import->Name = $name; |
|
|
|
|
|
|
102
|
|
|
$import->Filename = $filename; |
|
|
|
|
|
|
103
|
|
|
$import->Content = serialize($record); |
|
|
|
|
|
|
104
|
|
|
$import->write(); |
|
105
|
|
|
|
|
106
|
|
|
return $import; |
|
107
|
|
|
} |
|
108
|
|
|
} |
|
109
|
|
|
|
If you return a value from a function or method, it should be a sub-type of the type that is given by the parent type f.e. an interface, or abstract method. This is more formally defined by the Lizkov substitution principle, and guarantees that classes that depend on the parent type can use any instance of a child type interchangably. This principle also belongs to the SOLID principles for object oriented design.
Let’s take a look at an example:
Our function
my_functionexpects aPostobject, and outputs the author of the post. The base classPostreturns a simple string and outputting a simple string will work just fine. However, the child classBlogPostwhich is a sub-type ofPostinstead decided to return anobject, and is therefore violating the SOLID principles. If aBlogPostwere passed tomy_function, PHP would not complain, but ultimately fail when executing thestrtouppercall in its body.