Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
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 GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
0b4cc91a
Commit
0b4cc91a
authored
7 years ago
by
Atte Keinänen
Browse files
Options
Downloads
Patches
Plain Diff
Fix Flow types
parent
9f261d95
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
frontend/interfaces/underscore.js
+3
-0
3 additions, 0 deletions
frontend/interfaces/underscore.js
frontend/src/metabase/lib/permissions.js
+7
-3
7 additions, 3 deletions
frontend/src/metabase/lib/permissions.js
with
10 additions
and
3 deletions
frontend/interfaces/underscore.js
+
3
−
0
View file @
0b4cc91a
...
...
@@ -62,4 +62,7 @@ declare module "underscore" {
declare
function
chain
<
S
>
(
obj
:
S
):
any
;
declare
function
constant
<
S
>
(
obj
:
S
):
()
=>
S
;
declare
function
isMatch
(
object
:
Object
,
properties
:
Object
):
boolean
;
declare
function
identity
<
T
>
(
o
:
T
):
T
;
}
This diff is collapsed.
Click to expand it.
frontend/src/metabase/lib/permissions.js
+
7
−
3
View file @
0b4cc91a
...
...
@@ -109,6 +109,7 @@ export function downgradeNativePermissionsIfNeeded(permissions: GroupsPermission
}
}
// $FlowFixMe
const
metadataTableToTableEntityId
=
(
table
:
Table
):
TableEntityId
=>
({
databaseId
:
table
.
db_id
,
schemaName
:
table
.
schema
,
tableId
:
table
.
id
});
const
entityIdToMetadataTableFields
=
(
entityId
:
EntityId
)
=>
({
...(
entityId
.
databaseId
?
{
db_id
:
entityId
.
databaseId
}
:
{}),
...
...
@@ -116,10 +117,11 @@ const entityIdToMetadataTableFields = (entityId: EntityId) => ({
...(
entityId
.
tableId
?
{
tableId
:
entityId
.
tableId
}
:
{})
})
function
inferEntityPermissionValueFromChildTables
(
permissions
:
GroupsPermissions
,
groupId
:
GroupId
,
entityId
:
Table
EntityId
,
metadata
:
Metadata
)
{
function
inferEntityPermissionValueFromChildTables
(
permissions
:
GroupsPermissions
,
groupId
:
GroupId
,
entityId
:
DatabaseEntityId
|
Schema
EntityId
,
metadata
:
Metadata
)
{
const
{
databaseId
}
=
entityId
;
const
database
=
metadata
&&
metadata
.
database
(
databaseId
);
// $FlowFixMe
const
entityIdsForDescedantTables
:
TableEntityId
[]
=
_
.
chain
(
database
.
tables
())
.
filter
((
t
)
=>
_
.
isMatch
(
t
,
entityIdToMetadataTableFields
(
entityId
)))
.
map
(
metadataTableToTableEntityId
)
...
...
@@ -143,11 +145,13 @@ function inferEntityPermissionValueFromChildTables(permissions: GroupsPermission
// Checks the child tables of a given entityId and updates the shared table and/or schema permission values according to table permissions
// This method was added for keeping the UI in sync when modifying child permissions
export
function
inferAndUpdateEntityPermissions
(
permissions
:
GroupsPermissions
,
groupId
:
GroupId
,
entityId
:
TableEntityId
,
metadata
:
Metadata
)
{
export
function
inferAndUpdateEntityPermissions
(
permissions
:
GroupsPermissions
,
groupId
:
GroupId
,
entityId
:
DatabaseEntityId
|
SchemaEntityId
,
metadata
:
Metadata
)
{
// $FlowFixMe
const
{
databaseId
,
schemaName
}
=
entityId
;
if
(
schemaName
)
{
// Check all tables for current schema if their shared schema-level permission value should be updated
// $FlowFixMe
const
tablesPermissionValue
=
inferEntityPermissionValueFromChildTables
(
permissions
,
groupId
,
{
databaseId
,
schemaName
},
metadata
);
permissions
=
updateTablesPermission
(
permissions
,
groupId
,
{
databaseId
,
schemaName
},
tablesPermissionValue
,
metadata
);
}
...
...
@@ -171,7 +175,7 @@ export function updateFieldsPermission(permissions: GroupsPermissions, groupId:
return
permissions
;
}
export
function
updateTablesPermission
(
permissions
:
GroupsPermissions
,
groupId
:
GroupId
,
{
databaseId
,
schemaName
}:
SchemaEntityId
,
value
:
string
,
metadata
:
Metadata
,
inferAncestorPermissions
=
false
):
GroupsPermissions
{
export
function
updateTablesPermission
(
permissions
:
GroupsPermissions
,
groupId
:
GroupId
,
{
databaseId
,
schemaName
}:
SchemaEntityId
,
value
:
string
,
metadata
:
Metadata
):
GroupsPermissions
{
const
database
=
metadata
&&
metadata
.
database
(
databaseId
);
const
tableIds
:
?
number
[]
=
database
&&
database
.
tables
().
filter
(
t
=>
t
.
schema
===
schemaName
).
map
(
t
=>
t
.
id
);
...
...
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