Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SMART
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
UNI-KLU
SMART
Commits
393ca926
Commit
393ca926
authored
Jun 23, 2021
by
Alexander Lercher
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/swagger-improvements' into 'develop'
Deletion security See merge request
!39
parents
5c630a95
dbf26968
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
98 additions
and
17 deletions
+98
-17
routes.yml
...on-hub/business-logic-microservice/app/configs/routes.yml
+68
-9
layer.py
...ation-hub/business-logic-microservice/app/routes/layer.py
+14
-4
tables.py
...tion-hub/business-logic-microservice/app/routes/tables.py
+9
-1
use_case.py
...on-hub/business-logic-microservice/app/routes/use_case.py
+5
-1
blockchain_trace.py
src/rest-gateway/app/routes/blockchain_trace.py
+1
-1
user.py
src/rest-gateway/app/routes/user.py
+1
-1
No files found.
src/participation-hub/business-logic-microservice/app/configs/routes.yml
View file @
393ca926
...
...
@@ -5,7 +5,7 @@ paths:
/use-cases
:
post
:
security
:
-
Jwt
Regular
:
[]
-
Jwt
Admin
:
[]
operationId
:
"
routes.use_case.add"
tags
:
-
"
Use-Cases"
...
...
@@ -46,9 +46,18 @@ paths:
-
"
Use-Cases"
summary
:
"
Delete
all
Use-Cases"
description
:
"
Delete
all
Use-Cases"
parameters
:
-
name
:
"
confirmation"
desciption
:
"
'yes'
to
confirm
deletion"
in
:
"
query"
required
:
true
schema
:
type
:
"
string"
responses
:
'
200'
:
description
:
"
Successful
Request"
'
403'
:
description
:
"
Confirmation
required"
#####
# TABLES
#####
...
...
@@ -66,15 +75,24 @@ paths:
description
:
"
Successful
Request"
delete
:
security
:
-
Jwt
Regular
:
[]
-
Jwt
Admin
:
[]
operationId
:
"
routes.tables.delete_all"
tags
:
-
"
Tables"
summary
:
"
Delete
all
Tables"
description
:
"
Delete
all
Tables"
parameters
:
-
name
:
"
confirmation"
desciption
:
"
'yes'
to
confirm
deletion"
in
:
"
query"
required
:
true
schema
:
type
:
"
string"
responses
:
'
200'
:
description
:
"
Successful
Request"
'
403'
:
description
:
"
Confirmation
required"
/use-cases/{use_case}/tables
:
get
:
security
:
...
...
@@ -95,7 +113,7 @@ paths:
description
:
"
Successful
Request"
post
:
security
:
-
Jwt
Regular
:
[]
-
Jwt
Admin
:
[]
operationId
:
"
routes.tables.add_complete"
tags
:
-
"
Tables"
...
...
@@ -131,15 +149,23 @@ paths:
description
:
"
Name
of
the
Use-Case
the
Table
belongs
to"
required
:
true
type
:
"
string"
-
name
:
"
confirmation"
desciption
:
"
'yes'
to
confirm
deletion"
in
:
"
query"
required
:
true
schema
:
type
:
"
string"
responses
:
'
200'
:
description
:
"
Successful
Request"
'
400'
:
description
:
"
Table
with
the
name
already
exists
or
missing
fields
in
the
request."
'
403'
:
description
:
"
Confirmation
required"
/use-cases/{use_case}/tables/{name}/mapping
:
put
:
security
:
-
Jwt
Regular
:
[]
-
Jwt
Admin
:
[]
operationId
:
"
routes.tables.put_mapping"
tags
:
-
"
Tables"
...
...
@@ -193,12 +219,21 @@ paths:
-
"
Layers"
summary
:
"
Delete
all
Layers
from
the
DB"
description
:
"
Delete
all
Layers
from
the
DB"
parameters
:
-
name
:
"
confirmation"
desciption
:
"
'yes'
to
confirm
deletion"
in
:
"
query"
required
:
true
schema
:
type
:
"
string"
responses
:
'
200'
:
description
:
"
Successful
Request"
'
403'
:
description
:
"
confirmation
required"
post
:
security
:
-
Jwt
Regular
:
[]
-
Jwt
Admin
:
[]
operationId
:
"
routes.layer.add_complete"
tags
:
-
"
Layers"
...
...
@@ -243,7 +278,7 @@ paths:
/use-cases/{use_case}/tables/{table}/layers/{name}/cluster-mapping
:
put
:
security
:
-
Jwt
Regular
:
[]
-
Jwt
Admin
:
[]
operationId
:
"
routes.layer.add_cluster_mapping"
tags
:
-
"
Layers"
...
...
@@ -284,7 +319,7 @@ paths:
description
:
"
Field
in
request
is
missing
or
attribute
does
not
exist
in
the
Layer"
delete
:
security
:
-
Jwt
Regular
:
[]
-
Jwt
Admin
:
[]
operationId
:
"
routes.layer.delete_cluster_mapping"
tags
:
-
"
Layers"
...
...
@@ -316,6 +351,12 @@ paths:
type
:
string
example
:
"
end_time"
description
:
"
Internal
name
of
the
attribute"
-
name
:
"
confirmation"
desciption
:
"
'yes'
to
confirm
deletion"
in
:
"
query"
required
:
true
schema
:
type
:
"
string"
responses
:
'
200'
:
description
:
"
Successful
Request"
...
...
@@ -323,6 +364,8 @@ paths:
description
:
"
Layer
does
not
exist"
'
400'
:
description
:
"
Field
in
request
is
missing
or
attribute
does
not
exist
in
the
Layer"
'
403'
:
description
:
"
Confirmation
required"
/use-cases/{use_case}/layers
:
get
:
security
:
...
...
@@ -375,7 +418,7 @@ paths:
description
:
"
Layer
does
not
exist"
delete
:
security
:
-
Jwt
Regular
:
[]
-
Jwt
Admin
:
[]
operationId
:
"
routes.layer.delete_one"
tags
:
-
"
Layers"
...
...
@@ -397,15 +440,23 @@ paths:
description
:
"
Name
of
the
Layer"
required
:
true
type
:
"
string"
-
name
:
"
confirmation"
desciption
:
"
'yes'
to
confirm
deletion"
in
:
"
query"
required
:
true
schema
:
type
:
"
string"
responses
:
'
200'
:
description
:
"
Successful
Request"
'
404'
:
description
:
"
Layer
does
not
exist"
'
403'
:
description
:
"
Confirmation
required"
/use-cases/{use_case}/layers/{name}/mapping
:
put
:
security
:
-
Jwt
Regular
:
[]
-
Jwt
Admin
:
[]
operationId
:
"
routes.layer.add_mapping"
tags
:
-
"
Layers"
...
...
@@ -458,6 +509,12 @@ paths:
required
:
true
schema
:
$ref
:
'
#/definitions/LayerMapping'
-
name
:
"
confirmation"
desciption
:
"
'yes'
to
confirm
deletion"
in
:
"
query"
required
:
true
schema
:
type
:
"
string"
responses
:
'
200'
:
description
:
"
Successful
Request"
...
...
@@ -465,6 +522,8 @@ paths:
description
:
"
Layer
does
not
exist"
'
400'
:
description
:
"
Field
in
request
is
missing"
'
403'
:
description
:
"
Confirmation
required"
definitions
:
LayerMapping
:
...
...
src/participation-hub/business-logic-microservice/app/routes/layer.py
View file @
393ca926
...
...
@@ -16,10 +16,16 @@ def all():
return
[
layer
.
to_serializable_dict
()
for
layer
in
layer_repository
.
all
()]
def
delete_all_layers
():
def
delete_all_layers
(
confirmation
:
str
):
'''
delete all layers from the DB
@params:
confirmation - Required : "yes" to confirm deletion
'''
if
confirmation
!=
"yes"
return
Response
(
status
=
403
)
layer_repository
.
delete_all
()
return
Response
(
status
=
200
)
...
...
@@ -142,7 +148,7 @@ def one(use_case: str, table: str, name: str):
return
Response
(
status
=
200
,
response
=
json
.
dumps
(
layer
.
to_serializable_dict
()))
def
delete_mapping
(
use_case
:
str
,
table
:
str
,
name
:
str
):
def
delete_mapping
(
use_case
:
str
,
table
:
str
,
name
:
str
,
confirmation
:
str
):
'''
delete a mapping from the layer identified by the internal representation
...
...
@@ -150,6 +156,7 @@ def delete_mapping(use_case: str, table: str, name: str):
use_case - Required : String-identifier for the Use-Case the Layer belongs to
table - Required : unique identifier of the Table the Layer belongs to
name - Required : unique identifier for the Layer
confirmation- Required : "yes" to confirm deletion
'''
use_case_repository
.
put
(
use_case
)
...
...
@@ -206,7 +213,7 @@ def add_mapping(name: str, table: str, use_case: str):
return
Response
(
status
=
200
)
def
delete_one
(
use_case
:
str
,
table
:
str
,
name
:
str
):
def
delete_one
(
use_case
:
str
,
table
:
str
,
name
:
str
,
confirmation
:
str
):
'''
delete a layer and all its mappings from the Db
...
...
@@ -214,7 +221,10 @@ def delete_one(use_case: str, table: str, name: str):
use_case - Required : String-identifier for the Use-Case the Layer belongs to
table - Required : unique identifier of the Table the Layer belongs to
name - Required : unique identifier for the Layer
confirmation- Required : "yes" to confirm deletion
'''
if
confirmation
!=
"yes"
return
Response
(
status
=
403
)
layer
=
layer_repository
.
one
(
name
,
use_case
,
table
)
...
...
src/participation-hub/business-logic-microservice/app/routes/tables.py
View file @
393ca926
...
...
@@ -51,10 +51,18 @@ def add_complete(use_case: str):
return
Response
(
status
=
200
)
def
delete_all_for_use_case
(
use_case
:
str
):
def
delete_all_for_use_case
(
use_case
:
str
,
confirmation
:
str
):
if
confirmation
!=
"yes"
return
Response
(
status
=
403
)
table_repository
.
delete_for_use_case
(
use_case
)
return
Response
(
status
=
200
)
def
delete_all
():
if
confirmation
!=
"yes"
return
Response
(
status
=
403
)
table_repository
.
delete_all
()
return
Response
(
status
=
200
)
\ No newline at end of file
src/participation-hub/business-logic-microservice/app/routes/use_case.py
View file @
393ca926
...
...
@@ -15,7 +15,11 @@ repository = Repository()
def
all
():
return
[
use_case
.
to_serializable_dict
()
for
use_case
in
use_case_repository
.
all
()]
def
delete_all
():
def
delete_all
(
confirmation
:
str
):
if
confirmation
!=
"yes"
return
Response
(
status
=
403
)
use_case_repository
.
delete_all
()
repository
.
delete_all
()
table_repository
.
delete_all
()
...
...
src/rest-gateway/app/routes/blockchain_trace.py
View file @
393ca926
...
...
@@ -17,4 +17,4 @@ def receive():
def
isBlockchainTraceValid
(
trace
)
->
bool
:
# different for every use case, no global schema
return
'ApplicationType'
in
trace
return
'ApplicationType'
in
trace
and
'docType'
in
trace
src/rest-gateway/app/routes/user.py
View file @
393ca926
...
...
@@ -52,7 +52,7 @@ def delete(username):
return
Response
(
status
=
204
)
except
ValueError
as
e
:
# return 400 if the user
already exists
# return 400 if the user
does not exist
return
Response
(
status
=
400
,
response
=
str
(
e
))
def
add
():
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment