Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
webconsole
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pqc-free5gc
webconsole
Commits
b3a07ee2
Commit
b3a07ee2
authored
4 years ago
by
Chi Chang
Browse files
Options
Downloads
Patches
Plain Diff
Call api with url defiled in config / env variables instead of localhost
parent
4c77d72d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
frontend/src/util/UEInfoApiHelper.js
+12
-13
12 additions, 13 deletions
frontend/src/util/UEInfoApiHelper.js
with
12 additions
and
13 deletions
frontend/src/util/UEInfoApiHelper.js
+
12
−
13
View file @
b3a07ee2
...
...
@@ -7,8 +7,8 @@ class UeInfoApiHelper {
static
async
fetchRegisteredUE
()
{
try
{
let
url
=
"
http://localhost:5000/api/
registered-ue-context
"
console
.
log
(
"
Making request to
"
,
url
,
"
....
"
)
let
url
=
"
registered-ue-context
"
//
console.log("Making request to ", url, " ....")
let
response
=
await
Http
.
get
(
url
);
if
(
response
.
status
===
200
&&
response
.
data
)
{
...
...
@@ -25,9 +25,8 @@ class UeInfoApiHelper {
return
true
;
}
else
{
console
.
log
(
"
Request fail
"
)
console
.
log
(
"
Response Status:
"
,
response
.
status
)
console
.
log
(
"
Response Status:
"
,
response
.
data
)
console
.
log
(
"
Request failed, url:
"
,
url
)
console
.
log
(
"
Response:
"
,
response
.
status
,
response
.
data
)
let
err_msg
;
if
(
response
.
data
!==
undefined
){
...
...
@@ -52,8 +51,8 @@ class UeInfoApiHelper {
static
async
fetchUEInfoDetail
(
supi
)
{
try
{
let
url
=
`
http://localhost:5000/api/
registered-ue-context/
${
supi
}
`
console
.
log
(
"
Making request to
"
,
url
,
"
....
"
)
let
url
=
`registered-ue-context/
${
supi
}
`
//
console.log("Making request to ", url, " ....")
let
response
=
await
Http
.
get
(
url
);
if
(
response
.
status
===
200
&&
response
.
data
)
{
...
...
@@ -69,8 +68,8 @@ class UeInfoApiHelper {
return
[
true
,
smContextRef
];
}
else
{
console
.
log
(
"
Request fail
"
)
console
.
log
(
"
Response
Status
:
"
,
response
.
status
)
console
.
log
(
"
Request fail
ed, url:
"
,
url
)
console
.
log
(
"
Response:
"
,
response
.
status
,
response
.
data
)
}
}
catch
(
error
)
{
console
.
log
(
error
)
...
...
@@ -81,8 +80,8 @@ class UeInfoApiHelper {
static
async
fetchUEInfoDetailSMF
(
smContextRef
)
{
try
{
let
url
=
`
http://localhost:5000/api/
ue-pdu-session-info/
${
smContextRef
}
`
console
.
log
(
"
Making request to
"
,
url
,
"
....
"
)
let
url
=
`ue-pdu-session-info/
${
smContextRef
}
`
//
console.log("Making request to ", url, " ....")
let
response
=
await
Http
.
get
(
url
);
if
(
response
.
status
===
200
&&
response
.
data
)
{
...
...
@@ -95,8 +94,8 @@ class UeInfoApiHelper {
return
true
;
}
else
{
console
.
log
(
"
Request fail
"
)
console
.
log
(
"
Response
Status
:
"
,
response
.
status
)
console
.
log
(
"
Request fail
ed, url:
"
,
url
)
console
.
log
(
"
Response:
"
,
response
.
status
,
response
.
data
)
}
}
catch
(
error
)
{
console
.
log
(
error
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment