bug of AppMessengerResolver is fixed

This commit is contained in:
병준 박 2019-09-24 18:42:53 +09:00
parent c49e7e5931
commit a198cf8ddf
6 changed files with 151 additions and 142 deletions

View File

@ -21,7 +21,7 @@ const routes: Routes = [
]; ];
@NgModule({ @NgModule({
imports: [RouterModule.forRoot(routes)], imports: [RouterModule.forRoot(routes, { enableTracing: true })],
exports: [RouterModule] exports: [RouterModule]
}) })
export class AppRoutingModule {} export class AppRoutingModule {}

View File

@ -4,10 +4,10 @@ import {
ActivatedRouteSnapshot, ActivatedRouteSnapshot,
RouterStateSnapshot RouterStateSnapshot
} from '@angular/router'; } from '@angular/router';
import { Observable, of } from 'rxjs'; import { Observable, throwError } from 'rxjs';
import { take, map, catchError } from 'rxjs/operators'; import { map, tap, mergeMap, catchError, take } from 'rxjs/operators';
import { Store, select } from '@ngrx/store'; import { Store } from '@ngrx/store';
import { ProtocolService } from '@ucap-webmessenger/protocol'; import { ProtocolService } from '@ucap-webmessenger/protocol';
import { SessionStorageService } from '@ucap-webmessenger/web-storage'; import { SessionStorageService } from '@ucap-webmessenger/web-storage';
@ -19,9 +19,10 @@ import { LoginInfo, KEY_LOGIN_INFO } from '../types';
import { InnerProtocolService } from '@ucap-webmessenger/protocol-inner'; import { InnerProtocolService } from '@ucap-webmessenger/protocol-inner';
import { import {
AuthenticationProtocolService, AuthenticationProtocolService,
SSOMode SSOMode,
LoginResponse
} from '@ucap-webmessenger/protocol-authentication'; } from '@ucap-webmessenger/protocol-authentication';
import { LocaleCode } from '@ucap-webmessenger/core';
import * as AuthenticationStore from '@app/store/account/authentication'; import * as AuthenticationStore from '@app/store/account/authentication';
@Injectable() @Injectable()
@ -41,68 +42,63 @@ export class AppMessengerResolver implements Resolve<void> {
): void | Observable<void> | Promise<void> { ): void | Observable<void> | Promise<void> {
const loginInfo = this.sessionStorageService.get<LoginInfo>(KEY_LOGIN_INFO); const loginInfo = this.sessionStorageService.get<LoginInfo>(KEY_LOGIN_INFO);
return this.publicApiService return new Promise<void>((resolve, reject) => {
.versionInfo2({ this.publicApiService
deviceType: loginInfo.deviceType, .versionInfo2({
companyGroupType: 'C', deviceType: loginInfo.deviceType,
companyCode: loginInfo.companyCode, companyGroupType: 'C',
loginId: loginInfo.loginId companyCode: loginInfo.companyCode,
}) loginId: loginInfo.loginId
.pipe(
take(1),
map(res => {
this.store.dispatch(VersionInfoStore.fetchSuccess(res));
this.protocolService
.connect(res.serverIp)
.then(() => {
this.innerProtocolService
.conn({})
.pipe(
take(1),
map(connRes => {
console.log('connRes', connRes);
this.authenticationProtocolService
.login({
loginId: loginInfo.loginId,
loginPw: loginInfo.loginPw,
deviceType: loginInfo.deviceType,
deviceId: ' ',
token: '',
localeCode: loginInfo.localeCode,
pushId: ' ',
companyCode: loginInfo.companyCode,
passwordEncodingType: 1,
clientVersion: '',
reconnect: false,
ip: 'localhost',
hostName: '',
ssoMode: SSOMode.AUTH,
userSpecificInformation: 'PRO_000482',
productId: 'PRO_000482',
productName: 'EZMessenger'
})
.pipe(
take(1),
map(loginRes => {
this.store.dispatch(
AuthenticationStore.loginSuccess({
loginInfo: loginRes
})
);
}),
catchError(err => {
return of(
AuthenticationStore.loginFailure({ error: err })
);
})
)
.subscribe();
})
)
.subscribe();
})
.catch(reason => {});
}) })
); .pipe(
take(1),
tap(versionInfo2Res => {
this.store.dispatch(VersionInfoStore.fetchSuccess(versionInfo2Res));
}),
mergeMap(versionInfo2Res =>
this.protocolService.connect(versionInfo2Res.serverIp)
),
mergeMap(() => this.innerProtocolService.conn({})),
mergeMap(connRres =>
this.authenticationProtocolService.login({
loginId: loginInfo.loginId,
loginPw: loginInfo.loginPw,
deviceType: loginInfo.deviceType,
deviceId: ' ',
token: '',
localeCode: loginInfo.localeCode,
pushId: ' ',
companyCode: loginInfo.companyCode,
passwordEncodingType: 1,
clientVersion: '',
reconnect: false,
ip: 'localhost',
hostName: '',
ssoMode: SSOMode.AUTH,
userSpecificInformation: 'PRO_000482',
productId: 'PRO_000482',
productName: 'EZMessenger'
})
),
map(loginRes => {
this.store.dispatch(
AuthenticationStore.loginSuccess({
loginInfo: loginRes
})
);
}),
catchError(err => {
return throwError(err);
})
)
.subscribe(
() => {
resolve();
},
err => {
reject();
}
);
});
} }
} }

View File

@ -4,7 +4,14 @@ import { Router } from '@angular/router';
import { Actions, ofType, createEffect } from '@ngrx/effects'; import { Actions, ofType, createEffect } from '@ngrx/effects';
import { of } from 'rxjs'; import { of } from 'rxjs';
import { catchError, exhaustMap, map, tap, take } from 'rxjs/operators'; import {
catchError,
exhaustMap,
map,
tap,
take,
switchMap
} from 'rxjs/operators';
import { import {
PiService, PiService,
@ -68,24 +75,20 @@ export class Effects {
() => () =>
this.actions$.pipe( this.actions$.pipe(
ofType(webLoginSuccess), ofType(webLoginSuccess),
tap(params => { switchMap(params =>
this.nativeService this.nativeService.checkForUpdates().pipe(
.checkForUpdates() map((update: boolean) => {
.pipe( if (!update) {
take(1), this.appAuthenticationService.login(
map((update: boolean) => { params.loginInfo,
if (!update) { params.rememberMe
this.appAuthenticationService.login( );
params.loginInfo, this.router.navigate(['/messenger']);
params.rememberMe }
); }),
this.router.navigate(['/messenger']); catchError(error => of(error))
} )
}), )
catchError(error => of(error))
)
.subscribe();
})
), ),
{ dispatch: false } { dispatch: false }
); );

View File

@ -54,69 +54,73 @@ export class ProtocolService {
.pipe(share()); .pipe(share());
} }
public connect(serverIp: string | null = null): Promise<void> { public connect(serverIp: string | null = null): Observable<void> {
return new Promise<void>((resolve, reject) => { return new Observable<void>(subscriber => {
this.socket$ = makeWebSocketObservable( try {
`${this.moduleConfig.urls.base}${serverIp ? serverIp : ''}` this.socket$ = makeWebSocketObservable(
); `${this.moduleConfig.urls.base}${serverIp ? serverIp : ''}`
this.messages$ = this.socket$.pipe( );
switchMap(getResponses => { this.messages$ = this.socket$.pipe(
resolve(); switchMap(getResponses => {
return getResponses(this.input$); subscriber.next();
}), return getResponses(this.input$);
retryWhen(errors => }),
errors.pipe(delay(this.moduleConfig.reconnect.delay)) retryWhen(errors =>
), errors.pipe(delay(this.moduleConfig.reconnect.delay))
share() ),
); share()
);
this.messagesSubscription = this.messages$.subscribe( this.messagesSubscription = this.messages$.subscribe(
(message: string) => { (message: string) => {
const arg = message.split(PacketBodyDivider); const arg = message.split(PacketBodyDivider);
if (2 > arg.length) { if (2 > arg.length) {
// OnError(3); // OnError(3);
return; return;
} }
const res = this.decodePacket(arg); const res = this.decodePacket(arg);
let requestState: RequestState | null = null; let requestState: RequestState | null = null;
if (res.requestId) { if (res.requestId) {
requestState = this.pendingRequests.get(res.requestId); requestState = this.pendingRequests.get(res.requestId);
} }
if (SSVC_TYPE_ERROR_RES === res.message.subServiceType) { if (SSVC_TYPE_ERROR_RES === res.message.subServiceType) {
const errorCode: ServerErrorCode = res.message const errorCode: ServerErrorCode = res.message
.bodyList[0] as ServerErrorCode; .bodyList[0] as ServerErrorCode;
if (requestState) {
requestState.subject.error(errorCode);
}
return;
}
if (requestState) { if (requestState) {
requestState.subject.error(errorCode); requestState.subject.next(res.message);
return;
} }
return;
}
if (requestState) { this.serverMessageSubject.next(res.message);
requestState.subject.next(res.message); },
return; (error: Error) => {
const { message } = error;
if (message === NormalClosureMessage) {
console.log('server closed the websocket connection normally');
} else {
console.log('socket was disconnected due to error:', message);
}
},
() => {
// The clean termination only happens in response to the last
// subscription to the observable being unsubscribed, any
// other closure is considered an error.
console.log('the connection was closed in response to the user');
} }
);
this.serverMessageSubject.next(res.message); } catch (error) {
}, subscriber.error(error);
(error: Error) => { }
const { message } = error;
if (message === NormalClosureMessage) {
console.log('server closed the websocket connection normally');
} else {
console.log('socket was disconnected due to error:', message);
}
},
() => {
// The clean termination only happens in response to the last
// subscription to the observable being unsubscribed, any
// other closure is considered an error.
console.log('the connection was closed in response to the user');
}
);
}); });
} }

View File

@ -8,7 +8,7 @@
{{ data.message }} {{ data.message }}
</div> </div>
</mat-card-content> </mat-card-content>
<mat-card-actions class="button-farm flex-row"> <mat-card-actions *ngIf="!hideAction" class="button-farm flex-row">
<button <button
mat-stroked-button mat-stroked-button
(click)="onClickChoice(false)" (click)="onClickChoice(false)"

View File

@ -11,6 +11,7 @@ export interface ConfirmDialogData {
title: string; title: string;
message?: string; message?: string;
html?: string; html?: string;
hideAction?: boolean;
} }
export interface ConfirmDialogResult { export interface ConfirmDialogResult {
@ -26,6 +27,8 @@ export class ConfirmDialogComponent implements OnInit {
@ViewChild('messageContainer', { static: true }) @ViewChild('messageContainer', { static: true })
messageContainer: ElementRef; messageContainer: ElementRef;
hideAction = false;
constructor( constructor(
public dialogRef: MatDialogRef<ConfirmDialogComponent, ConfirmDialogResult>, public dialogRef: MatDialogRef<ConfirmDialogComponent, ConfirmDialogResult>,
@Inject(MAT_DIALOG_DATA) public data: ConfirmDialogData @Inject(MAT_DIALOG_DATA) public data: ConfirmDialogData
@ -35,6 +38,9 @@ export class ConfirmDialogComponent implements OnInit {
if (!!this.data.html) { if (!!this.data.html) {
this.messageContainer.nativeElement.innerHTML = this.data.html; this.messageContainer.nativeElement.innerHTML = this.data.html;
} }
if (!!this.data.hideAction) {
this.hideAction = this.data.hideAction;
}
} }
onClickChoice(choice: boolean): void { onClickChoice(choice: boolean): void {