在我的 grails 应用程序中使用简单的过滤器进行登录和安全。现在我需要根据登录的用户角色使用不同的登录凭据连接到 db - test1。如果管理员登录获得写入权限,那么登录和如果用户角色登录则只读。如何用过滤器实现它?
数据源.groovy
environments {
development {
/*IF LOGIN 'ADMIN' - SHOULD CONNECT USING THIS
dataSource {
username = 'admin'
password = 'Guard1an'
url = "jdbc:jtds:sqlserver://test1:1433;
MVCC=TRUE"
dbCreate = 'update'
}
/*IF LOGIN 'USER' - SHOULD CONNECT USING THIS*/
dataSource {
dbCreate = "update" // one of 'create', 'create-drop','update'
username = 'user'
password = 'tesoyear'
url = "jdbc:jtds:sqlserver://test1:1433;
}
dataSource_wldb1 {
username = 'gdx'
password = 'pinoil'
url = "jdbc:jtds:sqlserver://wldb:1433/IVR_GUARDIAN"
dbCreate = 'update'
}
}
安全过滤器.groovy
class SecurityFilters {
def filters = {
loginCheck(controller: 'load', action: '*') {
before = {
if (!session.user && !actionName.equals('login')) {
flash.message = "User is not Logged in.Please login "
redirect(controller:'user', action: 'index')
return false
}
}
}
}
}