Browse Source
Closes gh-18095 Signed-off-by: Marcus Hert da Coregio <marcusdacoregio@gmail.com>pull/18499/head
6 changed files with 179 additions and 0 deletions
@ -0,0 +1,56 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2004-present the original author or authors. |
||||||
|
* |
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
* you may not use this file except in compliance with the License. |
||||||
|
* You may obtain a copy of the License at |
||||||
|
* |
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
* |
||||||
|
* Unless required by applicable law or agreed to in writing, software |
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
* See the License for the specific language governing permissions and |
||||||
|
* limitations under the License. |
||||||
|
*/ |
||||||
|
|
||||||
|
package org.springframework.security.jackson; |
||||||
|
|
||||||
|
import java.util.Collection; |
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonAutoDetect; |
||||||
|
import com.fasterxml.jackson.annotation.JsonCreator; |
||||||
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; |
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty; |
||||||
|
import com.fasterxml.jackson.annotation.JsonTypeInfo; |
||||||
|
|
||||||
|
import org.springframework.security.core.GrantedAuthority; |
||||||
|
|
||||||
|
/** |
||||||
|
* Jackson Mixin class helps in serialize/deserialize |
||||||
|
* {@link org.springframework.security.authentication.ott.OneTimeTokenAuthentication}. |
||||||
|
* |
||||||
|
* <pre> |
||||||
|
* JsonMapper mapper = JsonMapper.builder() |
||||||
|
* .addModules(new CoreJacksonModule()) |
||||||
|
* .build(); |
||||||
|
* </pre> |
||||||
|
* |
||||||
|
* @author Marcus Da Coregio |
||||||
|
* @since 7.1 |
||||||
|
* @see CoreJacksonModule |
||||||
|
* @see SecurityJacksonModules |
||||||
|
* |
||||||
|
*/ |
||||||
|
@JsonTypeInfo(use = JsonTypeInfo.Id.CLASS, include = JsonTypeInfo.As.PROPERTY) |
||||||
|
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE, |
||||||
|
getterVisibility = JsonAutoDetect.Visibility.PUBLIC_ONLY, isGetterVisibility = JsonAutoDetect.Visibility.NONE) |
||||||
|
@JsonIgnoreProperties(ignoreUnknown = true) |
||||||
|
abstract class OneTimeTokenAuthenticationMixin { |
||||||
|
|
||||||
|
@JsonCreator |
||||||
|
OneTimeTokenAuthenticationMixin(@JsonProperty("principal") Object principal, |
||||||
|
@JsonProperty("authorities") Collection<? extends GrantedAuthority> authorities) { |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,55 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2004-present the original author or authors. |
||||||
|
* |
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
* you may not use this file except in compliance with the License. |
||||||
|
* You may obtain a copy of the License at |
||||||
|
* |
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
* |
||||||
|
* Unless required by applicable law or agreed to in writing, software |
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
* See the License for the specific language governing permissions and |
||||||
|
* limitations under the License. |
||||||
|
*/ |
||||||
|
|
||||||
|
package org.springframework.security.jackson2; |
||||||
|
|
||||||
|
import java.util.Collection; |
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonAutoDetect; |
||||||
|
import com.fasterxml.jackson.annotation.JsonCreator; |
||||||
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; |
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty; |
||||||
|
import com.fasterxml.jackson.annotation.JsonTypeInfo; |
||||||
|
|
||||||
|
import org.springframework.security.core.GrantedAuthority; |
||||||
|
|
||||||
|
/** |
||||||
|
* Jackson Mixin class helps in serialize/deserialize |
||||||
|
* {@link org.springframework.security.authentication.ott.OneTimeTokenAuthenticationToken}. |
||||||
|
* |
||||||
|
* <pre> |
||||||
|
* ObjectMapper mapper = new ObjectMapper(); |
||||||
|
* mapper.registerModule(new CoreJackson2Module()); |
||||||
|
* </pre> |
||||||
|
* |
||||||
|
* @author Marcus Da Coregio |
||||||
|
* @since 7.1 |
||||||
|
* @see CoreJackson2Module |
||||||
|
* @see SecurityJackson2Modules |
||||||
|
* |
||||||
|
*/ |
||||||
|
@JsonTypeInfo(use = JsonTypeInfo.Id.CLASS, include = JsonTypeInfo.As.PROPERTY) |
||||||
|
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE, |
||||||
|
getterVisibility = JsonAutoDetect.Visibility.PUBLIC_ONLY, isGetterVisibility = JsonAutoDetect.Visibility.NONE) |
||||||
|
@JsonIgnoreProperties(ignoreUnknown = true) |
||||||
|
abstract class OneTimeTokenAuthenticationTokenMixin { |
||||||
|
|
||||||
|
@JsonCreator |
||||||
|
OneTimeTokenAuthenticationTokenMixin(@JsonProperty("principal") Object principal, |
||||||
|
@JsonProperty("authorities") Collection<? extends GrantedAuthority> authorities) { |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,46 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2004-present the original author or authors. |
||||||
|
* |
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
* you may not use this file except in compliance with the License. |
||||||
|
* You may obtain a copy of the License at |
||||||
|
* |
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
* |
||||||
|
* Unless required by applicable law or agreed to in writing, software |
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
* See the License for the specific language governing permissions and |
||||||
|
* limitations under the License. |
||||||
|
*/ |
||||||
|
|
||||||
|
package org.springframework.security.authentication.ott; |
||||||
|
|
||||||
|
import java.io.IOException; |
||||||
|
|
||||||
|
import com.fasterxml.jackson.databind.ObjectMapper; |
||||||
|
import org.junit.jupiter.api.Test; |
||||||
|
|
||||||
|
import org.springframework.security.core.GrantedAuthority; |
||||||
|
import org.springframework.security.core.authority.AuthorityUtils; |
||||||
|
import org.springframework.security.jackson2.SecurityJackson2Modules; |
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat; |
||||||
|
|
||||||
|
class OneTimeTokenAuthenticationTokenTests { |
||||||
|
|
||||||
|
// gh-18095
|
||||||
|
@Test |
||||||
|
void shouldBeAbleToDeserializeFromJsonWithDefaultTypingActivated() throws IOException { |
||||||
|
ObjectMapper mapper = new ObjectMapper(); |
||||||
|
mapper.registerModules(SecurityJackson2Modules.getModules(getClass().getClassLoader())); |
||||||
|
OneTimeTokenAuthenticationToken oneTimeTokenAuthenticationToken = new OneTimeTokenAuthenticationToken( |
||||||
|
"principal", AuthorityUtils.createAuthorityList("ROLE_USER")); |
||||||
|
byte[] serialized = mapper.writeValueAsBytes(oneTimeTokenAuthenticationToken); |
||||||
|
OneTimeTokenAuthenticationToken deserialized = mapper.readValue(serialized, |
||||||
|
OneTimeTokenAuthenticationToken.class); |
||||||
|
assertThat(deserialized.getPrincipal()).isEqualTo(oneTimeTokenAuthenticationToken.getPrincipal()); |
||||||
|
assertThat(deserialized.getAuthorities()).extracting(GrantedAuthority::getAuthority).contains("ROLE_USER"); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
Loading…
Reference in new issue