23
23
import com .aws .greengrass .clientdevices .auth .session .MqttSessionFactory ;
24
24
import com .aws .greengrass .clientdevices .auth .session .SessionConfig ;
25
25
import com .aws .greengrass .clientdevices .auth .session .SessionCreator ;
26
- import com .aws .greengrass .clientdevices .auth .session .SessionManager ;
27
26
import com .aws .greengrass .clientdevices .auth .util .ResizableLinkedBlockingQueue ;
28
27
import com .aws .greengrass .config .Node ;
29
28
import com .aws .greengrass .config .Topics ;
@@ -95,6 +94,7 @@ protected void install() throws InterruptedException {
95
94
initializeInfrastructure ();
96
95
initializeHandlers ();
97
96
subscribeToConfigChanges ();
97
+ initializeIpc ();
98
98
}
99
99
100
100
private int getValidCloudCallQueueSize (Topics topics ) {
@@ -127,8 +127,8 @@ private void initializeInfrastructure() {
127
127
128
128
private void initializeHandlers () {
129
129
// Register auth session handlers
130
- context .get ( SessionManager .class ). setSessionConfig ( new SessionConfig (getConfig ()));
131
- SessionCreator .registerSessionFactory ("mqtt" , context .get (MqttSessionFactory .class ));
130
+ context .put ( SessionConfig .class , new SessionConfig (getConfig ()));
131
+ context . get ( SessionCreator . class ) .registerSessionFactory ("mqtt" , context .get (MqttSessionFactory .class ));
132
132
133
133
// Register domain event handlers
134
134
context .get (CACertificateChainChangedHandler .class ).listen ();
@@ -137,6 +137,36 @@ private void initializeHandlers() {
137
137
context .get (SecurityConfigurationChangedHandler .class ).listen ();
138
138
}
139
139
140
+ private void initializeIpc () {
141
+ AuthorizationHandler authorizationHandler = context .get (AuthorizationHandler .class );
142
+ try {
143
+ authorizationHandler .registerComponent (this .getName (),
144
+ new HashSet <>(Arrays .asList (SUBSCRIBE_TO_CERTIFICATE_UPDATES ,
145
+ VERIFY_CLIENT_DEVICE_IDENTITY ,
146
+ GET_CLIENT_DEVICE_AUTH_TOKEN ,
147
+ AUTHORIZE_CLIENT_DEVICE_ACTION )));
148
+ } catch (com .aws .greengrass .authorization .exceptions .AuthorizationException e ) {
149
+ logger .atError ("initialize-cda-service-authorization-error" , e )
150
+ .log ("Failed to initialize the client device auth service with the Authorization module." );
151
+ }
152
+
153
+ GreengrassCoreIPCService greengrassCoreIPCService = context .get (GreengrassCoreIPCService .class );
154
+ ClientDevicesAuthServiceApi serviceApi = context .get (ClientDevicesAuthServiceApi .class );
155
+ CertificateManager certificateManager = context .get (CertificateManager .class );
156
+
157
+ greengrassCoreIPCService .setSubscribeToCertificateUpdatesHandler (context ->
158
+ new SubscribeToCertificateUpdatesOperationHandler (context , certificateManager , authorizationHandler ));
159
+ greengrassCoreIPCService .setVerifyClientDeviceIdentityHandler (context ->
160
+ new VerifyClientDeviceIdentityOperationHandler (context , serviceApi ,
161
+ authorizationHandler , cloudCallThreadPool ));
162
+ greengrassCoreIPCService .setGetClientDeviceAuthTokenHandler (context ->
163
+ new GetClientDeviceAuthTokenOperationHandler (context , serviceApi , authorizationHandler ,
164
+ cloudCallThreadPool ));
165
+ greengrassCoreIPCService .setAuthorizeClientDeviceActionHandler (context ->
166
+ new AuthorizeClientDeviceActionOperationHandler (context , serviceApi ,
167
+ authorizationHandler ));
168
+ }
169
+
140
170
private void subscribeToConfigChanges () {
141
171
onConfigurationChanged ();
142
172
config .lookupTopics (CONFIGURATION_CONFIG_KEY ).subscribe (this ::configChangeHandler );
@@ -199,38 +229,6 @@ protected void shutdown() throws InterruptedException {
199
229
context .get (BackgroundCertificateRefresh .class ).stop ();
200
230
}
201
231
202
- @ Override
203
- public void postInject () {
204
- super .postInject ();
205
- AuthorizationHandler authorizationHandler = context .get (AuthorizationHandler .class );
206
- try {
207
- authorizationHandler .registerComponent (this .getName (),
208
- new HashSet <>(Arrays .asList (SUBSCRIBE_TO_CERTIFICATE_UPDATES ,
209
- VERIFY_CLIENT_DEVICE_IDENTITY ,
210
- GET_CLIENT_DEVICE_AUTH_TOKEN ,
211
- AUTHORIZE_CLIENT_DEVICE_ACTION )));
212
- } catch (com .aws .greengrass .authorization .exceptions .AuthorizationException e ) {
213
- logger .atError ("initialize-cda-service-authorization-error" , e )
214
- .log ("Failed to initialize the client device auth service with the Authorization module." );
215
- }
216
-
217
- GreengrassCoreIPCService greengrassCoreIPCService = context .get (GreengrassCoreIPCService .class );
218
- ClientDevicesAuthServiceApi serviceApi = context .get (ClientDevicesAuthServiceApi .class );
219
- CertificateManager certificateManager = context .get (CertificateManager .class );
220
-
221
- greengrassCoreIPCService .setSubscribeToCertificateUpdatesHandler (context ->
222
- new SubscribeToCertificateUpdatesOperationHandler (context , certificateManager , authorizationHandler ));
223
- greengrassCoreIPCService .setVerifyClientDeviceIdentityHandler (context ->
224
- new VerifyClientDeviceIdentityOperationHandler (context , serviceApi ,
225
- authorizationHandler , cloudCallThreadPool ));
226
- greengrassCoreIPCService .setGetClientDeviceAuthTokenHandler (context ->
227
- new GetClientDeviceAuthTokenOperationHandler (context , serviceApi , authorizationHandler ,
228
- cloudCallThreadPool ));
229
- greengrassCoreIPCService .setAuthorizeClientDeviceActionHandler (context ->
230
- new AuthorizeClientDeviceActionOperationHandler (context , serviceApi ,
231
- authorizationHandler ));
232
- }
233
-
234
232
public CertificateManager getCertificateManager () {
235
233
return context .get (CertificateManager .class );
236
234
}
0 commit comments