13
13
14
14
namespace CleverAge \UiProcessBundle \Controller \Admin \Process ;
15
15
16
+ use CleverAge \ProcessBundle \Exception \MissingProcessException ;
16
17
use CleverAge \UiProcessBundle \Entity \User ;
17
18
use CleverAge \UiProcessBundle \Form \Type \LaunchType ;
18
19
use CleverAge \UiProcessBundle \Manager \ProcessConfigurationsManager ;
39
40
#[IsGranted('ROLE_USER ' )]
40
41
class LaunchAction extends AbstractController
41
42
{
43
+ public function __construct (private readonly MessageBusInterface $ messageBus )
44
+ {
45
+ }
46
+
42
47
public function __invoke (
43
48
RequestStack $ requestStack ,
44
- MessageBusInterface $ messageBus ,
45
49
string $ uploadDirectory ,
46
50
ProcessConfigurationsManager $ processConfigurationsManager ,
47
51
AdminContext $ context ,
48
52
): Response {
49
- $ uiOptions = $ processConfigurationsManager ->getUiOptions ($ requestStack ->getMainRequest ()?->get('process ' ) ?? '' );
53
+ $ processCode = $ requestStack ->getMainRequest ()?->get('process ' );
54
+ if (null === $ processCode ) {
55
+ throw new MissingProcessException ();
56
+ }
57
+ $ uiOptions = $ processConfigurationsManager ->getUiOptions ($ processCode );
58
+ if (null === $ uiOptions ) {
59
+ throw new \InvalidArgumentException ('Missing UI Options ' );
60
+ }
61
+ if (null === $ uiOptions ['ui_launch_mode ' ] || 'modal ' === $ uiOptions ['ui_launch_mode ' ]) {
62
+ $ this ->dispatch ($ processCode );
63
+ $ this ->addFlash (
64
+ 'success ' ,
65
+ 'Process has been added to queue. It will start as soon as possible '
66
+ );
67
+
68
+ return $ this ->redirectToRoute ('process ' , ['routeName ' => 'process_list ' ]);
69
+ }
50
70
$ form = $ this ->createForm (
51
71
LaunchType::class,
52
72
null ,
53
73
[
54
- 'constraints ' => $ uiOptions ['constraints ' ] ?? [] ,
55
- 'process_code ' => $ requestStack -> getMainRequest ()?->get( ' process ' ) ,
74
+ 'constraints ' => $ uiOptions ['constraints ' ],
75
+ 'process_code ' => $ processCode ,
56
76
]
57
77
);
58
78
if (false === $ form ->isSubmitted ()) {
59
- $ default = $ uiOptions ['default ' ] ?? [] ;
79
+ $ default = $ uiOptions ['default ' ];
60
80
if (false === $ form ->get ('input ' )->getConfig ()->getType ()->getInnerType () instanceof TextType
61
81
&& isset ($ default ['input ' ])
62
82
) {
@@ -72,16 +92,11 @@ public function __invoke(
72
92
(new Filesystem ())->dumpFile ($ filename , $ input ->getContent ());
73
93
$ input = $ filename ;
74
94
}
75
-
76
- $ message = new ProcessExecuteMessage (
95
+ $ this ->dispatch (
77
96
$ form ->getConfig ()->getOption ('process_code ' ),
78
97
$ input ,
79
- array_merge (
80
- ['execution_user ' => $ this ->getUser ()?->getEmail()],
81
- $ form ->get ('context ' )->getData ()
82
- )
98
+ $ form ->get ('context ' )->getData ()
83
99
);
84
- $ messageBus ->dispatch ($ message );
85
100
$ this ->addFlash (
86
101
'success ' ,
87
102
'Process has been added to queue. It will start as soon as possible '
@@ -99,6 +114,22 @@ public function __invoke(
99
114
);
100
115
}
101
116
117
+ /**
118
+ * @param mixed[] $context
119
+ */
120
+ protected function dispatch (string $ processCode , mixed $ input = null , array $ context = []): void
121
+ {
122
+ $ message = new ProcessExecuteMessage (
123
+ $ processCode ,
124
+ $ input ,
125
+ array_merge (
126
+ ['execution_user ' => $ this ->getUser ()?->getEmail()],
127
+ $ context
128
+ )
129
+ );
130
+ $ this ->messageBus ->dispatch ($ message );
131
+ }
132
+
102
133
protected function getUser (): ?User
103
134
{
104
135
/** @var User $user */
0 commit comments