Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
OLAT CI-CD Testing Project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lars Oliver Dam
OLAT CI-CD Testing Project
Commits
b6b58497
Commit
b6b58497
authored
6 years ago
by
srosse
Browse files
Options
Downloads
Patches
Plain Diff
no-jira: fallback in site security callback to admin only if the
callback doesn't exists (for backwards compatibility 13.0 to 12.5)
parent
1dd2512e
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
src/main/java/org/olat/core/gui/control/navigation/AbstractSiteDefinition.java
+14
-1
14 additions, 1 deletion
...t/core/gui/control/navigation/AbstractSiteDefinition.java
with
14 additions
and
1 deletion
src/main/java/org/olat/core/gui/control/navigation/AbstractSiteDefinition.java
+
14
−
1
View file @
b6b58497
...
...
@@ -30,6 +30,8 @@ import org.olat.core.CoreSpringFactory;
import
org.olat.core.configuration.AbstractConfigOnOff
;
import
org.olat.core.gui.UserRequest
;
import
org.olat.core.gui.control.WindowControl
;
import
org.olat.core.logging.OLog
;
import
org.olat.core.logging.Tracing
;
import
org.olat.core.util.StringHelper
;
/**
...
...
@@ -37,6 +39,8 @@ import org.olat.core.util.StringHelper;
*/
public
abstract
class
AbstractSiteDefinition
extends
AbstractConfigOnOff
implements
SiteDefinition
{
private
static
final
OLog
log
=
Tracing
.
createLoggerFor
(
AbstractSiteDefinition
.
class
);
private
int
order
;
private
String
defaultSiteSecurityCallbackBeanId
;
...
...
@@ -65,7 +69,7 @@ public abstract class AbstractSiteDefinition extends AbstractConfigOnOff impleme
String
secCallbackBeanId
=
config
.
getSecurityCallbackBeanId
();
if
(
StringHelper
.
containsNonWhitespace
(
secCallbackBeanId
))
{
Object
siteSecCallback
=
CoreSpringFactory
.
getBean
(
secCallbackBeanId
);
Object
siteSecCallback
=
getSiteSecurityCallback
(
secCallbackBeanId
);
if
(
siteSecCallback
instanceof
SiteViewSecurityCallback
)
{
if
(!((
SiteViewSecurityCallback
)
siteSecCallback
).
isAllowedToViewSite
(
ureq
))
{
return
null
;
...
...
@@ -77,6 +81,15 @@ public abstract class AbstractSiteDefinition extends AbstractConfigOnOff impleme
return
createSite
(
ureq
,
wControl
,
config
);
}
private
Object
getSiteSecurityCallback
(
String
secCallbackBeanId
)
{
try
{
return
CoreSpringFactory
.
getBean
(
secCallbackBeanId
);
}
catch
(
Exception
e
)
{
log
.
error
(
"Cannot find security callback: "
+
secCallbackBeanId
+
" return administrator only security callback"
);
return
CoreSpringFactory
.
getBean
(
"adminSiteSecurityCallback"
);
}
}
protected
abstract
SiteInstance
createSite
(
UserRequest
ureq
,
WindowControl
wControl
,
SiteConfiguration
config
);
protected
SiteConfiguration
getSiteConfiguration
()
{
...
...
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