Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
portal-backend
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
HBP Medical Informatics Platform
portal-backend
Commits
10ae08e6
Commit
10ae08e6
authored
9 years ago
by
Mirco Nasuti
Browse files
Options
Downloads
Patches
Plain Diff
Handle workflow exceptions in a better way (still not that good)
parent
58291f55
No related branches found
Branches containing commit
Tags
v0.0.2
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/org/hbp/mip/controllers/WorkflowApi.java
+23
-14
23 additions, 14 deletions
src/main/java/org/hbp/mip/controllers/WorkflowApi.java
with
23 additions
and
14 deletions
src/main/java/org/hbp/mip/controllers/WorkflowApi.java
+
23
−
14
View file @
10ae08e6
...
...
@@ -5,6 +5,7 @@
package
org.hbp.mip.controllers
;
import
io.swagger.annotations.*
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.ResponseEntity
;
import
org.springframework.web.bind.annotation.*
;
...
...
@@ -30,22 +31,26 @@ public class WorkflowApi {
@RequestBody
@ApiParam
(
value
=
"Model to create"
,
required
=
true
)
String
query
)
throws
Exception
{
String
results
=
""
;
StringBuilder
results
=
new
StringBuilder
();
int
code
=
0
;
if
(
algo
.
equals
(
"glr"
))
{
results
=
sendPost
(
"https://mip.humanbrainproject.eu/services/request"
,
query
);
code
=
sendPost
(
"https://mip.humanbrainproject.eu/services/request"
,
query
,
results
);
if
(
code
!=
200
){
return
new
ResponseEntity
<>(
HttpStatus
.
valueOf
(
code
));
}
}
else
if
(
algo
.
equals
(
"anv"
))
{
results
=
""
;
results
.
append
(
"not implemented"
)
;
}
return
ResponseEntity
.
ok
(
results
);
return
ResponseEntity
.
ok
(
results
.
toString
()
);
}
private
static
Str
in
g
sendPost
(
String
url
,
String
query
)
throws
Exception
{
private
static
in
t
sendPost
(
String
url
,
String
query
,
StringBuilder
resp
)
throws
Exception
{
URL
obj
=
new
URL
(
url
);
HttpsURLConnection
con
=
(
HttpsURLConnection
)
obj
.
openConnection
();
...
...
@@ -62,18 +67,22 @@ public class WorkflowApi {
wr
.
flush
();
wr
.
close
();
con
.
getResponseCode
();
int
respCode
=
con
.
getResponseCode
();
BufferedReader
in
=
new
BufferedReader
(
new
InputStreamReader
(
con
.
getInputStream
()));
String
inputLine
;
StringBuilder
response
=
new
StringBuilder
();
while
((
inputLine
=
in
.
readLine
())
!=
null
)
{
response
.
append
(
inputLine
);
if
(
respCode
==
200
)
{
BufferedReader
in
=
new
BufferedReader
(
new
InputStreamReader
(
con
.
getInputStream
()));
String
inputLine
;
StringBuilder
response
=
new
StringBuilder
();
while
((
inputLine
=
in
.
readLine
())
!=
null
)
{
response
.
append
(
inputLine
);
}
in
.
close
();
resp
.
append
(
response
.
toString
());
}
in
.
close
();
return
resp
onse
.
toString
()
;
return
resp
Code
;
}
private
static
void
allowInsecureConnection
(
HttpsURLConnection
con
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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