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
73 lines (63 loc) · 1.74 KB
/
ImportScreen.php
File metadata and controls
73 lines (63 loc) · 1.74 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
71
72
73
<?php
namespace ProcessMaker\Jobs;
use ProcessMaker\Models\Screen;
class ImportScreen extends ImportProcess
{
/**
* Create a new Screen model for each screen object in the imported file,
* then save it to the database.
*
* @param Screen $screen
*
* @return void
*/
private function saveScreens($screen)
{
try {
$this->new['screens'] = [];
$this->prepareStatus('screens', true);
$new = new Screen();
$new->fill((array)$screen);
$new->title = $this->formatName($screen->title, 'title', Screen::class);
$new->created_at = $this->formatDate($screen->created_at);
$new->save();
$this->new['screens'][] = $new;
$this->finishStatus('screens');
} catch (\Exception $e) {
$this->finishStatus('screens', true);
}
}
/**
* Parse files with version 1
*
* @return array
*/
private function parseFileV1()
{
$this->saveScreens($this->file->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;
}
}