forked from ProcessMaker/processmaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImportScreen.php
More file actions
70 lines (61 loc) · 1.65 KB
/
ImportScreen.php
File metadata and controls
70 lines (61 loc) · 1.65 KB
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
<?php
namespace ProcessMaker\Jobs;
use Exception;
use ProcessMaker\Models\Screen;
use ProcessMaker\Models\Script;
use ProcessMaker\Managers\ExportManager;
class ImportScreen extends ImportProcess
{
/**
* Parse files with version 1
*
* @return array
*/
private function parseFileV1()
{
$this->prepareStatus('screens', 1);
$this->saveScreen($this->file->screens);
$this->finishStatus('screens');
return $this->status;
}
/**
* Parse files with version 2
*
* @return array
*/
private function parseFileV2()
{
$new = [Screen::class => []];
$this->prepareStatus('screens', count($this->file->screens));
foreach ($this->file->screens as $screen) {
$new[Screen::class][$screen->id] = $this->saveScreen($screen);
}
$manager = app(ExportManager::class);
$manager->updateReferences($new);
$this->finishStatus('screens');
return $this->status;
}
/**
* Execute the job.
*
* @return boolean
*/
public function handle()
{
//First, decode the file
$this->decodeFile();
//Then, process it based on version number
if ($this->file->type === 'screen_package') {
if ($method = $this->getParser()) {
$this->status = [];
$this->status['screens'] = [
'label' => __('Screens'),
'success' => false,
'message' => __('Starting')];
return $this->{$method}();
}
}
//Return false by default
return false;
}
}