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