Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
f3bc4ccf
Unverified
提交
f3bc4ccf
authored
6月 21, 2018
作者:
Evgenij Ryazanov
提交者:
GitHub
6月 21, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1221 from mysinmyc/xml_issue
Fix for issue #1220
上级
b03f027c
52dfdd99
隐藏空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
154 行增加
和
48 行删除
+154
-48
DefaultAuthenticator.java
h2/src/main/org/h2/security/auth/DefaultAuthenticator.java
+1
-3
H2AuthConfig.java
h2/src/main/org/h2/security/auth/H2AuthConfig.java
+1
-13
H2AuthConfigXml.java
h2/src/main/org/h2/security/auth/H2AuthConfigXml.java
+110
-0
HasConfigProperties.java
h2/src/main/org/h2/security/auth/HasConfigProperties.java
+12
-0
PropertyConfig.java
h2/src/main/org/h2/security/auth/PropertyConfig.java
+0
-7
RealmConfig.java
h2/src/main/org/h2/security/auth/RealmConfig.java
+1
-13
UserToRolesMapperConfig.java
...rc/main/org/h2/security/auth/UserToRolesMapperConfig.java
+1
-12
TestAuthentication.java
h2/src/test/org/h2/test/auth/TestAuthentication.java
+28
-0
没有找到文件。
h2/src/main/org/h2/security/auth/DefaultAuthenticator.java
浏览文件 @
f3bc4ccf
...
@@ -14,8 +14,6 @@ import java.util.List;
...
@@ -14,8 +14,6 @@ import java.util.List;
import
java.util.Map
;
import
java.util.Map
;
import
java.util.Set
;
import
java.util.Set
;
import
javax.xml.bind.JAXB
;
import
org.h2.api.CredentialsValidator
;
import
org.h2.api.CredentialsValidator
;
import
org.h2.api.UserToRolesMapper
;
import
org.h2.api.UserToRolesMapper
;
import
org.h2.engine.Database
;
import
org.h2.engine.Database
;
...
@@ -237,7 +235,7 @@ public class DefaultAuthenticator implements Authenticator {
...
@@ -237,7 +235,7 @@ public class DefaultAuthenticator implements Authenticator {
* @throws Exception
* @throws Exception
*/
*/
public
void
configureFromUrl
(
URL
configUrl
)
throws
Exception
{
public
void
configureFromUrl
(
URL
configUrl
)
throws
Exception
{
H2AuthConfig
config
=
JAXB
.
unmarshal
(
configUrl
,
H2AuthConfig
.
class
);
H2AuthConfig
config
=
H2AuthConfigXml
.
parseFrom
(
configUrl
);
configureFrom
(
config
);
configureFrom
(
config
);
}
}
...
...
h2/src/main/org/h2/security/auth/H2AuthConfig.java
浏览文件 @
f3bc4ccf
...
@@ -8,20 +8,11 @@ package org.h2.security.auth;
...
@@ -8,20 +8,11 @@ package org.h2.security.auth;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.List
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlAttribute
;
import
javax.xml.bind.annotation.XmlElement
;
import
javax.xml.bind.annotation.XmlRootElement
;
/**
/**
* Describe configuration of H2 DefaultAuthenticator
* Describe configuration of H2 DefaultAuthenticator
*/
*/
@XmlRootElement
(
name
=
"h2Auth"
)
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
public
class
H2AuthConfig
{
public
class
H2AuthConfig
{
@XmlAttribute
private
boolean
allowUserRegistration
=
true
;
private
boolean
allowUserRegistration
=
true
;
public
boolean
isAllowUserRegistration
()
{
public
boolean
isAllowUserRegistration
()
{
...
@@ -31,8 +22,7 @@ public class H2AuthConfig {
...
@@ -31,8 +22,7 @@ public class H2AuthConfig {
public
void
setAllowUserRegistration
(
boolean
allowUserRegistration
)
{
public
void
setAllowUserRegistration
(
boolean
allowUserRegistration
)
{
this
.
allowUserRegistration
=
allowUserRegistration
;
this
.
allowUserRegistration
=
allowUserRegistration
;
}
}
@XmlAttribute
boolean
createMissingRoles
=
true
;
boolean
createMissingRoles
=
true
;
public
boolean
isCreateMissingRoles
()
{
public
boolean
isCreateMissingRoles
()
{
...
@@ -43,7 +33,6 @@ public class H2AuthConfig {
...
@@ -43,7 +33,6 @@ public class H2AuthConfig {
this
.
createMissingRoles
=
createMissingRoles
;
this
.
createMissingRoles
=
createMissingRoles
;
}
}
@XmlElement
(
name
=
"realm"
)
List
<
RealmConfig
>
realms
;
List
<
RealmConfig
>
realms
;
public
List
<
RealmConfig
>
getRealms
()
{
public
List
<
RealmConfig
>
getRealms
()
{
...
@@ -57,7 +46,6 @@ public class H2AuthConfig {
...
@@ -57,7 +46,6 @@ public class H2AuthConfig {
this
.
realms
=
realms
;
this
.
realms
=
realms
;
}
}
@XmlElement
(
name
=
"userToRolesMapper"
)
List
<
UserToRolesMapperConfig
>
userToRolesMappers
;
List
<
UserToRolesMapperConfig
>
userToRolesMappers
;
public
List
<
UserToRolesMapperConfig
>
getUserToRolesMappers
()
{
public
List
<
UserToRolesMapperConfig
>
getUserToRolesMappers
()
{
...
...
h2/src/main/org/h2/security/auth/H2AuthConfigXml.java
0 → 100644
浏览文件 @
f3bc4ccf
/*
* Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0,
* and the EPL 1.0 (http://h2database.com/html/license.html).
* Initial Developer: Alessandro Ventura
*/
package
org
.
h2
.
security
.
auth
;
import
java.io.InputStream
;
import
java.net.URL
;
import
javax.xml.parsers.SAXParser
;
import
javax.xml.parsers.SAXParserFactory
;
import
org.xml.sax.Attributes
;
import
org.xml.sax.SAXException
;
import
org.xml.sax.helpers.DefaultHandler
;
/**
* Parser of external authentication XML configuration file
*/
public
class
H2AuthConfigXml
extends
DefaultHandler
{
H2AuthConfig
result
;
HasConfigProperties
lastConfigProperties
;
@Override
public
void
startElement
(
String
uri
,
String
localName
,
String
qName
,
Attributes
attributes
)
throws
SAXException
{
switch
(
qName
)
{
case
"h2Auth"
:
result
=
new
H2AuthConfig
();
result
.
setAllowUserRegistration
(
"true"
.
equals
(
getAttributeValueOr
(
"allowUserRegistration"
,
attributes
,
"false"
)));
result
.
setCreateMissingRoles
(
"true"
.
equals
(
getAttributeValueOr
(
"createMissingRoles"
,
attributes
,
"true"
)));
break
;
case
"realm"
:
RealmConfig
realmConfig
=
new
RealmConfig
();
realmConfig
.
setName
(
getMandatoryAttributeValue
(
"name"
,
attributes
));
realmConfig
.
setValidatorClass
(
getMandatoryAttributeValue
(
"validatorClass"
,
attributes
));
result
.
getRealms
().
add
(
realmConfig
);
lastConfigProperties
=
realmConfig
;
break
;
case
"userToRolesMapper"
:
UserToRolesMapperConfig
userToRolesMapperConfig
=
new
UserToRolesMapperConfig
();
userToRolesMapperConfig
.
setClassName
(
getMandatoryAttributeValue
(
"className"
,
attributes
));
result
.
getUserToRolesMappers
().
add
(
userToRolesMapperConfig
);
lastConfigProperties
=
userToRolesMapperConfig
;
break
;
case
"property"
:
if
(
lastConfigProperties
==
null
)
{
throw
new
SAXException
(
"property element in the wrong place"
);
}
lastConfigProperties
.
getProperties
().
add
(
new
PropertyConfig
(
getMandatoryAttributeValue
(
"name"
,
attributes
),
getMandatoryAttributeValue
(
"value"
,
attributes
)));
break
;
default
:
throw
new
SAXException
(
"unexpected element "
+
qName
);
}
}
@Override
public
void
endElement
(
String
uri
,
String
localName
,
String
qName
)
throws
SAXException
{
if
(
lastConfigProperties
!=
null
&&
qName
.
equals
(
"property"
)==
false
)
{
lastConfigProperties
=
null
;
}
}
static
String
getMandatoryAttributeValue
(
String
attributeName
,
Attributes
attributes
)
throws
SAXException
{
String
attributeValue
=
attributes
.
getValue
(
attributeName
);
if
(
attributeValue
==
null
||
attributeValue
.
trim
().
equals
(
""
))
{
throw
new
SAXException
(
"missing attribute "
+
attributeName
);
}
return
attributeValue
;
}
static
String
getAttributeValueOr
(
String
attributeName
,
Attributes
attributes
,
String
defaultValue
)
{
String
attributeValue
=
attributes
.
getValue
(
attributeName
);
if
(
attributeValue
==
null
||
attributeValue
.
trim
().
equals
(
""
))
{
return
defaultValue
;
}
return
attributeValue
;
}
public
H2AuthConfig
getResult
()
{
return
result
;
}
/**
* Parse the xml
* @param url
* @return
* @throws Exception
*/
public
static
H2AuthConfig
parseFrom
(
URL
url
)
throws
Exception
{
try
(
InputStream
inputStream
=
url
.
openStream
())
{
return
parseFrom
(
inputStream
);
}
}
public
static
H2AuthConfig
parseFrom
(
InputStream
inputStream
)
throws
Exception
{
SAXParser
saxParser
=
SAXParserFactory
.
newInstance
().
newSAXParser
();
H2AuthConfigXml
xmlHandler
=
new
H2AuthConfigXml
();
saxParser
.
parse
(
inputStream
,
xmlHandler
);
return
xmlHandler
.
getResult
();
}
}
h2/src/main/org/h2/security/auth/HasConfigProperties.java
0 → 100644
浏览文件 @
f3bc4ccf
/*
* Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0,
* and the EPL 1.0 (http://h2database.com/html/license.html).
* Initial Developer: Alessandro Ventura
*/
package
org
.
h2
.
security
.
auth
;
import
java.util.List
;
public
interface
HasConfigProperties
{
List
<
PropertyConfig
>
getProperties
();
}
h2/src/main/org/h2/security/auth/PropertyConfig.java
浏览文件 @
f3bc4ccf
...
@@ -5,20 +5,13 @@
...
@@ -5,20 +5,13 @@
*/
*/
package
org
.
h2
.
security
.
auth
;
package
org
.
h2
.
security
.
auth
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlAttribute
;
/**
/**
* Configuration property
* Configuration property
*/
*/
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
public
class
PropertyConfig
{
public
class
PropertyConfig
{
@XmlAttribute
(
required
=
true
)
private
String
name
;
private
String
name
;
@XmlAttribute
private
String
value
;
private
String
value
;
public
PropertyConfig
()
{
public
PropertyConfig
()
{
...
...
h2/src/main/org/h2/security/auth/RealmConfig.java
浏览文件 @
f3bc4ccf
...
@@ -8,18 +8,8 @@ package org.h2.security.auth;
...
@@ -8,18 +8,8 @@ package org.h2.security.auth;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.List
;
import
javax.xml.bind.annotation.XmlAccessType
;
public
class
RealmConfig
implements
HasConfigProperties
{
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlAttribute
;
import
javax.xml.bind.annotation.XmlElement
;
/**
* Configuration for authentication realm.
*/
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
public
class
RealmConfig
{
@XmlAttribute
(
required
=
true
)
private
String
name
;
private
String
name
;
public
String
getName
()
{
public
String
getName
()
{
...
@@ -30,7 +20,6 @@ public class RealmConfig {
...
@@ -30,7 +20,6 @@ public class RealmConfig {
this
.
name
=
name
;
this
.
name
=
name
;
}
}
@XmlAttribute
(
required
=
true
)
String
validatorClass
;
String
validatorClass
;
public
String
getValidatorClass
()
{
public
String
getValidatorClass
()
{
...
@@ -41,7 +30,6 @@ public class RealmConfig {
...
@@ -41,7 +30,6 @@ public class RealmConfig {
this
.
validatorClass
=
validatorClass
;
this
.
validatorClass
=
validatorClass
;
}
}
@XmlElement
(
name
=
"property"
)
List
<
PropertyConfig
>
properties
;
List
<
PropertyConfig
>
properties
;
public
List
<
PropertyConfig
>
getProperties
()
{
public
List
<
PropertyConfig
>
getProperties
()
{
...
...
h2/src/main/org/h2/security/auth/UserToRolesMapperConfig.java
浏览文件 @
f3bc4ccf
...
@@ -8,21 +8,10 @@ package org.h2.security.auth;
...
@@ -8,21 +8,10 @@ package org.h2.security.auth;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.List
;
import
javax.xml.bind.annotation.XmlAccessType
;
public
class
UserToRolesMapperConfig
implements
HasConfigProperties
{
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlAttribute
;
import
javax.xml.bind.annotation.XmlElement
;
/**
* Configuration for class that maps users to roles.
*/
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
public
class
UserToRolesMapperConfig
{
@XmlAttribute
(
required
=
true
,
name
=
"class"
)
private
String
className
;
private
String
className
;
@XmlElement
(
name
=
"property"
)
private
List
<
PropertyConfig
>
properties
;
private
List
<
PropertyConfig
>
properties
;
public
String
getClassName
()
{
public
String
getClassName
()
{
...
...
h2/src/test/org/h2/test/auth/TestAuthentication.java
浏览文件 @
f3bc4ccf
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
*/
*/
package
org
.
h2
.
test
.
auth
;
package
org
.
h2
.
test
.
auth
;
import
java.io.ByteArrayInputStream
;
import
java.sql.Connection
;
import
java.sql.Connection
;
import
java.sql.DriverManager
;
import
java.sql.DriverManager
;
import
java.sql.SQLException
;
import
java.sql.SQLException
;
...
@@ -25,6 +26,8 @@ import org.h2.engine.Session;
...
@@ -25,6 +26,8 @@ import org.h2.engine.Session;
import
org.h2.engine.User
;
import
org.h2.engine.User
;
import
org.h2.jdbcx.JdbcConnectionPool
;
import
org.h2.jdbcx.JdbcConnectionPool
;
import
org.h2.security.auth.DefaultAuthenticator
;
import
org.h2.security.auth.DefaultAuthenticator
;
import
org.h2.security.auth.H2AuthConfig
;
import
org.h2.security.auth.H2AuthConfigXml
;
import
org.h2.security.auth.impl.AssignRealmNameRole
;
import
org.h2.security.auth.impl.AssignRealmNameRole
;
import
org.h2.security.auth.impl.JaasCredentialsValidator
;
import
org.h2.security.auth.impl.JaasCredentialsValidator
;
import
org.h2.security.auth.impl.StaticRolesMapper
;
import
org.h2.security.auth.impl.StaticRolesMapper
;
...
@@ -134,6 +137,7 @@ public class TestAuthentication extends TestBase {
...
@@ -134,6 +137,7 @@ public class TestAuthentication extends TestBase {
testUserRegistration
();
testUserRegistration
();
testSet
();
testSet
();
testDatasource
();
testDatasource
();
testXmlConfig
();
}
}
protected
void
testInvalidPassword
()
throws
Exception
{
protected
void
testInvalidPassword
()
throws
Exception
{
...
@@ -274,4 +278,28 @@ public class TestAuthentication extends TestBase {
...
@@ -274,4 +278,28 @@ public class TestAuthentication extends TestBase {
}
}
testExternalUser
();
testExternalUser
();
}
}
static
final
String
TESTXML
=
"<h2Auth allowUserRegistration=\"true\" createMissingRoles=\"false\">"
+
"<realm name=\"ciao\" validatorClass=\"myclass\"/>"
+
"<realm name=\"miao\" validatorClass=\"myclass1\">"
+
"<property name=\"prop1\" value=\"value1\"/>"
+
"<userToRolesMapper className=\"class1\">"
+
"<property name=\"prop2\" value=\"value2\"/>"
+
"</userToRolesMapper>"
+
"</realm>"
+
"</h2Auth>"
;
protected
void
testXmlConfig
()
throws
Exception
{
ByteArrayInputStream
inputStream
=
new
ByteArrayInputStream
(
TESTXML
.
getBytes
());
H2AuthConfig
config
=
H2AuthConfigXml
.
parseFrom
(
inputStream
);
assertTrue
(
config
.
isAllowUserRegistration
());
assertFalse
(
config
.
isCreateMissingRoles
());
assertEquals
(
"ciao"
,
config
.
getRealms
().
get
(
0
).
getName
());
assertEquals
(
"myclass"
,
config
.
getRealms
().
get
(
0
).
getValidatorClass
());
assertEquals
(
"prop1"
,
config
.
getRealms
().
get
(
1
).
getProperties
().
get
(
0
).
getName
());
assertEquals
(
"value1"
,
config
.
getRealms
().
get
(
1
).
getProperties
().
get
(
0
).
getValue
());
assertEquals
(
"class1"
,
config
.
getUserToRolesMappers
().
get
(
0
).
getClassName
());
assertEquals
(
"prop2"
,
config
.
getUserToRolesMappers
().
get
(
0
).
getProperties
().
get
(
0
).
getName
());
assertEquals
(
"value2"
,
config
.
getUserToRolesMappers
().
get
(
0
).
getProperties
().
get
(
0
).
getValue
());
}
}
}
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论