Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
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
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Chenhao Ma
core
Commits
a59e117b
Commit
a59e117b
authored
8 years ago
by
Carlos Correa
Browse files
Options
Downloads
Patches
Plain Diff
Fix small issues with passing permissions for UID uploader.
parent
4341db07
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
api/dao/hierarchy.py
+3
-3
3 additions, 3 deletions
api/dao/hierarchy.py
with
3 additions
and
3 deletions
api/dao/hierarchy.py
+
3
−
3
View file @
a59e117b
...
...
@@ -350,7 +350,7 @@ def find_existing_hierarchy(metadata, user=None, site=None):
if
session_obj
is
None
:
raise
APINotFoundException
(
'
Session with uid {} does not exist
'
.
format
(
session_uid
))
if
user
and
not
has_access
(
user
,
session_obj
,
'
rw
'
):
if
user
and
not
has_access
(
user
,
session_obj
,
'
rw
'
,
site
):
raise
APIPermissionException
(
'
User {} does not have read-write access to session {}
'
.
format
(
user
,
session_uid
))
a
=
config
.
db
.
acquisitions
.
find_one
({
'
uid
'
:
acquisition_uid
},
[
'
_id
'
])
...
...
@@ -383,7 +383,7 @@ def upsert_bottom_up_hierarchy(metadata, user=None, site=None):
log
.
error
(
metadata
)
raise
APIStorageException
(
str
(
e
))
session_obj
=
config
.
db
.
sessions
.
find_one
({
'
uid
'
:
session_uid
}
,
[
'
project
'
]
)
session_obj
=
config
.
db
.
sessions
.
find_one
({
'
uid
'
:
session_uid
})
if
session_obj
:
# skip project creation, if session exists
if
user
and
not
has_access
(
user
,
session_obj
,
'
rw
'
,
site
):
...
...
@@ -398,7 +398,7 @@ def upsert_bottom_up_hierarchy(metadata, user=None, site=None):
)
return
target_containers
else
:
return
upsert_top_down_hierarchy
(
metadata
,
'
uid
'
,
user
=
user
,
site
=
Non
e
)
return
upsert_top_down_hierarchy
(
metadata
,
'
uid
'
,
user
=
user
,
site
=
sit
e
)
def
upsert_top_down_hierarchy
(
metadata
,
type_
=
'
label
'
,
user
=
None
,
site
=
None
):
...
...
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