aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/shared/services/httpUtil/http-util.service.ts
diff options
context:
space:
mode:
authorPatrick Brady <patrick.brady@att.com>2020-03-24 15:44:15 -0700
committerPatrick Brady <patrick.brady@att.com>2020-03-24 16:47:23 -0700
commit0141df20b1f533cd2acabdf7ea986aebab8d6868 (patch)
tree7df75e7fd455aeb0ccedeac6be801d4cab4d508d /src/app/shared/services/httpUtil/http-util.service.ts
parent179fea047479a44ef2fb0490c272f7f97127bbe9 (diff)
Authentication support for cdt
-Adding a password box to cdt -Adding a function to check login by making a request to appc -Moving username and authentication to session storage from localstorage so that it is not saved in the browser -Removing the hardcoded credentials from the cdt proxy since these are coming from the cdt login form now Change-Id: I8bd829a22d1b83829c1d53637dc1ad035d1030e9 Signed-off-by: Patrick Brady <patrick.brady@att.com> Issue-ID: APPC-1854
Diffstat (limited to 'src/app/shared/services/httpUtil/http-util.service.ts')
-rw-r--r--src/app/shared/services/httpUtil/http-util.service.ts25
1 files changed, 24 insertions, 1 deletions
diff --git a/src/app/shared/services/httpUtil/http-util.service.ts b/src/app/shared/services/httpUtil/http-util.service.ts
index fc9c327..40c1518 100644
--- a/src/app/shared/services/httpUtil/http-util.service.ts
+++ b/src/app/shared/services/httpUtil/http-util.service.ts
@@ -1,7 +1,7 @@
/*
============LICENSE_START==========================================
===================================================================
-Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
+Copyright (C) 2018-2020 AT&T Intellectual Property. All rights reserved.
===================================================================
Unless otherwise specified, all software contained herein is licensed
@@ -54,5 +54,28 @@ export class HttpUtilService {
.post(req.url, req.data, this.options)
.map((res: Response) => res.json())
}
+
+ postWithAuth(req) {
+ var authString = sessionStorage['auth'];
+ if(authString === undefined || authString === null || authString.length === 0){
+ this.options = new RequestOptions({
+ headers: new Headers({
+ 'Content-Type': 'application/json'
+ })
+ });
+ } else {
+ this.options = new RequestOptions({
+ headers: new Headers({
+ 'Content-Type': 'application/json',
+ 'Authorization': 'Basic ' + authString
+ })
+ });
+ }
+
+ return this
+ .http
+ .post(req.url, req.data, this.options)
+ .map((res: Response) => res.json())
+ }
}