Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
App Blocks
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Genesys PGR
App Blocks
Commits
26c64dc0
Commit
26c64dc0
authored
Dec 25, 2018
by
Matija Obreza
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'acl-updates' into 'master'
Acl updates See merge request genesys-pgr/application-blocks!41
parents
a3588258
ce45ba76
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
116 additions
and
6 deletions
+116
-6
security/src/main/java/org/genesys/blocks/security/persistence/AclObjectIdentityPersistence.java
...ks/security/persistence/AclObjectIdentityPersistence.java
+4
-0
security/src/main/java/org/genesys/blocks/security/service/CustomAclService.java
...org/genesys/blocks/security/service/CustomAclService.java
+36
-0
security/src/main/java/org/genesys/blocks/security/service/impl/CustomAclServiceImpl.java
...ys/blocks/security/service/impl/CustomAclServiceImpl.java
+76
-6
No files found.
security/src/main/java/org/genesys/blocks/security/persistence/AclObjectIdentityPersistence.java
View file @
26c64dc0
...
...
@@ -15,6 +15,8 @@
*/
package
org.genesys.blocks.security.persistence
;
import
java.util.List
;
import
org.genesys.blocks.security.model.AclObjectIdentity
;
import
org.springframework.data.jpa.repository.JpaRepository
;
import
org.springframework.data.jpa.repository.Modifying
;
...
...
@@ -45,4 +47,6 @@ public interface AclObjectIdentityPersistence extends JpaRepository<AclObjectIde
@Modifying
@Query
(
"update AclObjectIdentity aoi set aoi.parentObject = null where aoi.parentObject = ?1"
)
void
resetChildrenOfOID
(
AclObjectIdentity
oID
);
List
<
AclObjectIdentity
>
findByParentObject
(
AclObjectIdentity
parentObject
);
}
security/src/main/java/org/genesys/blocks/security/service/CustomAclService.java
View file @
26c64dc0
...
...
@@ -15,6 +15,7 @@
*/
package
org.genesys.blocks.security.service
;
import
java.util.ArrayList
;
import
java.util.List
;
import
org.genesys.blocks.util.JsonSidConverter
;
...
...
@@ -23,10 +24,14 @@ import org.genesys.blocks.security.model.AclClass;
import
org.genesys.blocks.security.model.AclEntry
;
import
org.genesys.blocks.security.model.AclObjectIdentity
;
import
org.genesys.blocks.security.model.AclSid
;
import
org.genesys.blocks.security.serialization.AclEntriesToPermissions
;
import
org.genesys.blocks.security.serialization.Permissions
;
import
org.genesys.blocks.security.serialization.SidPermissions
;
import
org.springframework.security.acls.model.Permission
;
import
com.fasterxml.jackson.annotation.JsonUnwrapped
;
import
com.fasterxml.jackson.databind.annotation.JsonSerialize
;
/**
* The Interface CustomAclService.
*/
...
...
@@ -170,6 +175,15 @@ public interface CustomAclService extends JsonSidConverter.SidProvider {
*/
AclObjectIdentity
setPermissions
(
AclObjectIdentity
objectIdentity
,
AclSid
sid
,
final
Permissions
permissions
);
/**
* Removes the permissions for SID on ACL OID
*
* @param objectIdentity the object identity
* @param aclSid the acl sid
* @return the acl object identity
*/
AclObjectIdentity
removePermissions
(
AclObjectIdentity
objectIdentity
,
AclSid
aclSid
);
/**
* Gets the acl entries.
*
...
...
@@ -245,4 +259,26 @@ public interface CustomAclService extends JsonSidConverter.SidProvider {
* @return the sid name
*/
String
getSidName
(
long
id
);
/**
* Load object identity extended information
*
* @param objectIdentity the object identity
* @return the acl object identity ext
*/
AclObjectIdentityExt
loadObjectIdentityExt
(
AclObjectIdentity
objectIdentity
);
/**
* Wraps {@link AclObjectIdentity} and adds list of inherited permissions.
*/
public
static
class
AclObjectIdentityExt
{
@JsonUnwrapped
public
AclObjectIdentity
original
;
@JsonSerialize
(
converter
=
AclEntriesToPermissions
.
class
)
public
List
<
AclEntry
>
inherited
=
new
ArrayList
<>();
public
AclObjectIdentityExt
(
AclObjectIdentity
source
)
{
this
.
original
=
source
;
}
}
}
security/src/main/java/org/genesys/blocks/security/service/impl/CustomAclServiceImpl.java
View file @
26c64dc0
...
...
@@ -16,7 +16,9 @@
package
org.genesys.blocks.security.service.impl
;
import
java.util.ArrayList
;
import
java.util.HashSet
;
import
java.util.List
;
import
java.util.Set
;
import
javax.persistence.EntityManager
;
...
...
@@ -261,7 +263,7 @@ public class CustomAclServiceImpl implements CustomAclService {
* permissions granted to the SID are removed.
*/
@Override
@Transactional
(
propagation
=
Propagation
.
REQUIRED
)
@Transactional
(
propagation
=
Propagation
.
REQUIRED
,
isolation
=
Isolation
.
READ_UNCOMMITTED
)
public
void
removeAclAwareModel
(
final
AclAwareModel
target
)
{
LOG
.
debug
(
"Deleting ACL data for {}"
,
target
);
...
...
@@ -272,6 +274,11 @@ public class CustomAclServiceImpl implements CustomAclService {
final
AclObjectIdentity
aclObjectIdentity
=
getObjectIdentity
(
target
);
if
(
aclObjectIdentity
!=
null
)
{
LOG
.
debug
(
"OID {}#{} of {}"
,
aclObjectIdentity
.
getAclClass
().
getAclClass
(),
aclObjectIdentity
.
getObjectIdIdentity
(),
target
);
for
(
AclObjectIdentity
child
:
aclObjectIdentityPersistence
.
findByParentObject
(
aclObjectIdentity
))
{
LOG
.
debug
(
"Has child {}#{}"
,
child
.
getAclClass
().
getAclClass
(),
child
.
getObjectIdIdentity
());
}
LOG
.
info
(
"Deleting ACL data of {}"
,
target
);
final
List
<
AclEntry
>
aclEntries
=
aclEntryPersistence
.
findByObjectIdentity
(
aclObjectIdentity
);
if
(
aclEntries
!=
null
)
{
...
...
@@ -381,6 +388,38 @@ public class CustomAclServiceImpl implements CustomAclService {
return
aclClass
;
}
@Override
@Transactional
(
readOnly
=
true
)
public
AclObjectIdentityExt
loadObjectIdentityExt
(
AclObjectIdentity
objectIdentity
)
{
if
(
objectIdentity
!=
null
)
{
objectIdentity
=
getObjectIdentity
(
objectIdentity
.
getId
());
AclObjectIdentityExt
_aclObjectIdentity
=
new
AclObjectIdentityExt
(
objectIdentity
);
objectIdentity
.
getAclEntries
().
forEach
(
entry
->
entry
.
getAclSid
().
getId
());
List
<
AclEntry
>
inheritedEntries
=
inherited
(
objectIdentity
.
getParentObject
(),
new
ArrayList
<>(),
new
HashSet
<>());
_aclObjectIdentity
.
inherited
.
addAll
(
inheritedEntries
);
// lazy load for JSON
_aclObjectIdentity
.
inherited
.
forEach
(
entry
->
entry
.
getAclSid
().
getId
());
return
_aclObjectIdentity
;
}
return
null
;
}
private
List
<
AclEntry
>
inherited
(
AclObjectIdentity
objectIdentity
,
List
<
AclEntry
>
aclEntries
,
Set
<
AclObjectIdentity
>
handled
)
{
if
(
objectIdentity
==
null
||
handled
.
contains
(
objectIdentity
))
{
return
aclEntries
;
}
aclEntries
.
addAll
(
objectIdentity
.
getAclEntries
());
handled
.
add
(
objectIdentity
);
if
(
objectIdentity
.
getParentObject
()
!=
null
)
{
inherited
(
objectIdentity
.
getParentObject
(),
aclEntries
,
handled
);
}
return
aclEntries
;
}
/*
* (non-Javadoc)
* @see
...
...
@@ -488,7 +527,12 @@ public class CustomAclServiceImpl implements CustomAclService {
throw
new
NullPointerException
(
"Permissions must be provided, was null."
);
}
final
AclObjectIdentity
objectIdentity
=
getObjectIdentity
(
entity
);
String
className
=
entity
.
getClass
().
getName
();
if
(
entity
instanceof
ClassAclOid
<?>)
{
className
=
((
ClassAclOid
<?>)
entity
).
getClassName
();
}
final
AclObjectIdentity
objectIdentity
=
ensureObjectIdentity
(
entity
.
getId
(),
className
);
return
setPermissions
(
objectIdentity
,
sid
,
permissions
);
}
...
...
@@ -544,6 +588,32 @@ public class CustomAclServiceImpl implements CustomAclService {
}
}
/* (non-Javadoc)
* @see org.genesys.blocks.security.service.CustomAclService#removePermissions(org.genesys.blocks.security.model.AclObjectIdentity, org.genesys.blocks.security.model.AclSid)
*/
@Override
@Transactional
(
propagation
=
Propagation
.
REQUIRED
,
isolation
=
Isolation
.
READ_UNCOMMITTED
)
public
AclObjectIdentity
removePermissions
(
AclObjectIdentity
objectIdentity
,
AclSid
sid
)
{
if
(
objectIdentity
==
null
)
{
throw
new
NullPointerException
(
"AclObjectIdentity must be provided, was null."
);
}
if
(
sid
==
null
)
{
throw
new
NullPointerException
(
"AclSid must be provided, was null."
);
}
try
{
final
List
<
AclEntry
>
aclEntries
=
aclEntryPersistence
.
findBySidAndObjectIdentity
(
sid
,
objectIdentity
);
// delete ACL entries for sid
LOG
.
debug
(
"Deleting {} AclEntries for {}"
,
aclEntries
.
size
(),
sid
);
aclEntryPersistence
.
delete
(
aclEntries
);
return
getObjectIdentity
(
objectIdentity
.
getId
());
}
finally
{
clearAclCache
();
}
}
/*
* (non-Javadoc)
* @see org.genesys.blocks.security.service.CustomAclService#getAclEntries(org.
...
...
@@ -627,7 +697,7 @@ public class CustomAclServiceImpl implements CustomAclService {
* java.lang.String, long)
*/
@Override
@Transactional
(
propagation
=
Propagation
.
REQUIRED
)
@Transactional
(
propagation
=
Propagation
.
REQUIRED
,
isolation
=
Isolation
.
READ_UNCOMMITTED
)
public
AclObjectIdentity
ensureObjectIdentity
(
final
long
objectIdIdentity
,
final
String
className
)
{
AclObjectIdentity
aoi
=
aclObjectIdentityPersistence
.
findByObjectIdAndClassname
(
objectIdIdentity
,
className
);
if
(
aoi
==
null
)
{
...
...
@@ -661,7 +731,7 @@ public class CustomAclServiceImpl implements CustomAclService {
* .genesys.blocks.security.model.AclAwareModel, boolean)
*/
@Override
@Transactional
(
propagation
=
Propagation
.
REQUIRED
)
@Transactional
(
propagation
=
Propagation
.
REQUIRED
,
isolation
=
Isolation
.
READ_UNCOMMITTED
)
@PreAuthorize
(
"hasRole('ADMINISTRATOR') or hasPermission(#entity, 'ADMINISTRATION')"
)
public
void
makePubliclyReadable
(
AclAwareModel
entity
,
boolean
publiclyReadable
)
{
AclSid
roleEveryone
=
getAuthoritySid
(
"ROLE_EVERYONE"
);
...
...
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