[대상향 ]비밀번호 변경페이지 변경
This commit is contained in:
parent
760b098fc4
commit
93c7991e20
|
@ -53,7 +53,10 @@ import {
|
||||||
import { AppAuthenticationService } from '@app/services/authentication.service';
|
import { AppAuthenticationService } from '@app/services/authentication.service';
|
||||||
import { NGXLogger } from 'ngx-logger';
|
import { NGXLogger } from 'ngx-logger';
|
||||||
import { Store } from '@ngrx/store';
|
import { Store } from '@ngrx/store';
|
||||||
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
import {
|
||||||
|
SessionStorageService,
|
||||||
|
LocalStorageService
|
||||||
|
} from '@ucap-webmessenger/web-storage';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
AuthenticationProtocolService,
|
AuthenticationProtocolService,
|
||||||
|
@ -73,6 +76,8 @@ import {
|
||||||
UserPasswordSetResponse
|
UserPasswordSetResponse
|
||||||
} from '@ucap-webmessenger/protocol-service';
|
} from '@ucap-webmessenger/protocol-service';
|
||||||
import { DaesangUrlInfoResponse } from '@ucap-webmessenger/api-external';
|
import { DaesangUrlInfoResponse } from '@ucap-webmessenger/api-external';
|
||||||
|
import { AppUserInfo, KEY_APP_USER_INFO } from '@app/types/app-user-info.type';
|
||||||
|
import { DaesangCipherService } from '@ucap-webmessenger/daesang';
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class Effects {
|
export class Effects {
|
||||||
|
@ -309,7 +314,21 @@ export class Effects {
|
||||||
weblink => weblink.key === 'WebLinkChgPassword'
|
weblink => weblink.key === 'WebLinkChgPassword'
|
||||||
);
|
);
|
||||||
if (passwordChangeUrl.length > 0) {
|
if (passwordChangeUrl.length > 0) {
|
||||||
this.nativeService.openDefaultBrowser(passwordChangeUrl[0].url);
|
const appUserInfo = this.localStorageService.encGet<AppUserInfo>(
|
||||||
|
KEY_APP_USER_INFO,
|
||||||
|
environment.customConfig.appKey
|
||||||
|
);
|
||||||
|
const loginPw = appUserInfo.loginPw;
|
||||||
|
const loginId = appUserInfo.loginId;
|
||||||
|
|
||||||
|
const url = passwordChangeUrl[0].url
|
||||||
|
.replace(/(\(%USER_ID%\))/g, loginId)
|
||||||
|
.replace(
|
||||||
|
/(\(%USER_PASS%\))/g,
|
||||||
|
this.daesangCipherService.encryptForWebLink(loginPw)
|
||||||
|
);
|
||||||
|
|
||||||
|
this.nativeService.openDefaultBrowser(url);
|
||||||
}
|
}
|
||||||
|
|
||||||
this.store.dispatch(logout());
|
this.store.dispatch(logout());
|
||||||
|
@ -455,6 +474,7 @@ export class Effects {
|
||||||
private ngZone: NgZone,
|
private ngZone: NgZone,
|
||||||
private router: Router,
|
private router: Router,
|
||||||
private store: Store<any>,
|
private store: Store<any>,
|
||||||
|
private localStorageService: LocalStorageService,
|
||||||
private sessionStorageService: SessionStorageService,
|
private sessionStorageService: SessionStorageService,
|
||||||
private piService: PiService,
|
private piService: PiService,
|
||||||
private appAuthenticationService: AppAuthenticationService,
|
private appAuthenticationService: AppAuthenticationService,
|
||||||
|
@ -464,6 +484,7 @@ export class Effects {
|
||||||
private dialogService: DialogService,
|
private dialogService: DialogService,
|
||||||
private snackBarService: SnackBarService,
|
private snackBarService: SnackBarService,
|
||||||
@Inject(UCAP_NATIVE_SERVICE) private nativeService: NativeService,
|
@Inject(UCAP_NATIVE_SERVICE) private nativeService: NativeService,
|
||||||
private logger: NGXLogger
|
private logger: NGXLogger,
|
||||||
|
private daesangCipherService: DaesangCipherService
|
||||||
) {}
|
) {}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
|
import CryptoJS from 'crypto-js';
|
||||||
import crypto from 'crypto';
|
import crypto from 'crypto';
|
||||||
|
|
||||||
import { CipherUtil } from '../utils/CipherUtil';
|
import { CipherUtil } from '../utils/CipherUtil';
|
||||||
|
@ -34,4 +34,10 @@ export class DaesangCipherService {
|
||||||
|
|
||||||
return cipherChunks.join('');
|
return cipherChunks.join('');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
encryptForWebLink(pvSource: string): string {
|
||||||
|
return CryptoJS.SHA1(pvSource)
|
||||||
|
.toString()
|
||||||
|
.toUpperCase();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user