broke out authentication holder class into parts, no more serializable pieces in the database, closes #696
parent
6533875dee
commit
98e414b6df
|
@ -16,19 +16,33 @@
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.mitre.oauth2.model;
|
package org.mitre.oauth2.model;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
import javax.persistence.Basic;
|
import javax.persistence.Basic;
|
||||||
|
import javax.persistence.CollectionTable;
|
||||||
import javax.persistence.Column;
|
import javax.persistence.Column;
|
||||||
|
import javax.persistence.Convert;
|
||||||
|
import javax.persistence.ElementCollection;
|
||||||
import javax.persistence.Entity;
|
import javax.persistence.Entity;
|
||||||
import javax.persistence.FetchType;
|
import javax.persistence.FetchType;
|
||||||
import javax.persistence.GeneratedValue;
|
import javax.persistence.GeneratedValue;
|
||||||
import javax.persistence.GenerationType;
|
import javax.persistence.GenerationType;
|
||||||
import javax.persistence.Id;
|
import javax.persistence.Id;
|
||||||
import javax.persistence.Lob;
|
import javax.persistence.JoinColumn;
|
||||||
|
import javax.persistence.MapKeyColumn;
|
||||||
import javax.persistence.NamedQueries;
|
import javax.persistence.NamedQueries;
|
||||||
import javax.persistence.NamedQuery;
|
import javax.persistence.NamedQuery;
|
||||||
import javax.persistence.Table;
|
import javax.persistence.Table;
|
||||||
|
import javax.persistence.Transient;
|
||||||
|
|
||||||
|
import org.mitre.oauth2.model.convert.SerializableStringConverter;
|
||||||
|
import org.mitre.oauth2.model.convert.SimpleGrantedAuthorityStringConverter;
|
||||||
|
import org.springframework.security.core.GrantedAuthority;
|
||||||
import org.springframework.security.oauth2.provider.OAuth2Authentication;
|
import org.springframework.security.oauth2.provider.OAuth2Authentication;
|
||||||
|
import org.springframework.security.oauth2.provider.OAuth2Request;
|
||||||
|
|
||||||
@Entity
|
@Entity
|
||||||
@Table(name = "authentication_holder")
|
@Table(name = "authentication_holder")
|
||||||
|
@ -46,8 +60,26 @@ public class AuthenticationHolderEntity {
|
||||||
|
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
private OAuth2Authentication authentication;
|
private SavedUserAuthentication userAuth;
|
||||||
|
|
||||||
|
private Collection<? extends GrantedAuthority> authorities;
|
||||||
|
|
||||||
|
private Set<String> resourceIds;
|
||||||
|
|
||||||
|
private boolean approved;
|
||||||
|
|
||||||
|
private String redirectUri;
|
||||||
|
|
||||||
|
private Set<String> responseTypes;
|
||||||
|
|
||||||
|
private Map<String, Serializable> extensions;
|
||||||
|
|
||||||
|
private String clientId;
|
||||||
|
|
||||||
|
private Set<String> scope;
|
||||||
|
|
||||||
|
private Map<String, String> requestParameters;
|
||||||
|
|
||||||
public AuthenticationHolderEntity() {
|
public AuthenticationHolderEntity() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -63,15 +95,222 @@ public class AuthenticationHolderEntity {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Lob
|
@Transient
|
||||||
@Basic(fetch=FetchType.LAZY)
|
|
||||||
@Column(name = "authentication")
|
|
||||||
public OAuth2Authentication getAuthentication() {
|
public OAuth2Authentication getAuthentication() {
|
||||||
return authentication;
|
// TODO: memoize this
|
||||||
|
return new OAuth2Authentication(createOAuth2Request(), getUserAuth());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
private OAuth2Request createOAuth2Request() {
|
||||||
|
return new OAuth2Request(requestParameters, clientId, authorities, approved, scope, scope, redirectUri, responseTypes, extensions);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setAuthentication(OAuth2Authentication authentication) {
|
public void setAuthentication(OAuth2Authentication authentication) {
|
||||||
this.authentication = authentication;
|
|
||||||
|
// pull apart the request and save its bits
|
||||||
|
OAuth2Request o2Request = authentication.getOAuth2Request();
|
||||||
|
setAuthorities(o2Request.getAuthorities());
|
||||||
|
setClientId(o2Request.getClientId());
|
||||||
|
setExtensions(o2Request.getExtensions());
|
||||||
|
setRedirectUri(o2Request.getRedirectUri());
|
||||||
|
setRequestParameters(o2Request.getRequestParameters());
|
||||||
|
setResourceIds(o2Request.getResourceIds());
|
||||||
|
setResponseTypes(o2Request.getResponseTypes());
|
||||||
|
setScope(o2Request.getScope());
|
||||||
|
setApproved(o2Request.isApproved());
|
||||||
|
|
||||||
|
this.userAuth = new SavedUserAuthentication(authentication.getUserAuthentication());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the userAuth
|
||||||
|
*/
|
||||||
|
@Basic
|
||||||
|
@JoinColumn(name = "user_auth_id")
|
||||||
|
public SavedUserAuthentication getUserAuth() {
|
||||||
|
return userAuth;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param userAuth the userAuth to set
|
||||||
|
*/
|
||||||
|
public void setUserAuth(SavedUserAuthentication userAuth) {
|
||||||
|
this.userAuth = userAuth;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the authorities
|
||||||
|
*/
|
||||||
|
@ElementCollection(fetch = FetchType.EAGER)
|
||||||
|
@CollectionTable(
|
||||||
|
name="authentication_holder_authority",
|
||||||
|
joinColumns=@JoinColumn(name="owner_id")
|
||||||
|
)
|
||||||
|
@Convert(converter = SimpleGrantedAuthorityStringConverter.class)
|
||||||
|
@Column(name="authority")
|
||||||
|
public Collection<? extends GrantedAuthority> getAuthorities() {
|
||||||
|
return authorities;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param authorities the authorities to set
|
||||||
|
*/
|
||||||
|
public void setAuthorities(Collection<? extends GrantedAuthority> authorities) {
|
||||||
|
this.authorities = authorities;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the resourceIds
|
||||||
|
*/
|
||||||
|
@ElementCollection(fetch = FetchType.EAGER)
|
||||||
|
@CollectionTable(
|
||||||
|
name="authentication_holder_resource_id",
|
||||||
|
joinColumns=@JoinColumn(name="owner_id")
|
||||||
|
)
|
||||||
|
@Column(name="resource_id")
|
||||||
|
public Set<String> getResourceIds() {
|
||||||
|
return resourceIds;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param resourceIds the resourceIds to set
|
||||||
|
*/
|
||||||
|
public void setResourceIds(Set<String> resourceIds) {
|
||||||
|
this.resourceIds = resourceIds;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the approved
|
||||||
|
*/
|
||||||
|
@Basic
|
||||||
|
@Column(name="approved")
|
||||||
|
public boolean isApproved() {
|
||||||
|
return approved;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param approved the approved to set
|
||||||
|
*/
|
||||||
|
public void setApproved(boolean approved) {
|
||||||
|
this.approved = approved;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the redirectUri
|
||||||
|
*/
|
||||||
|
@Basic
|
||||||
|
@Column(name="redirect_uri")
|
||||||
|
public String getRedirectUri() {
|
||||||
|
return redirectUri;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param redirectUri the redirectUri to set
|
||||||
|
*/
|
||||||
|
public void setRedirectUri(String redirectUri) {
|
||||||
|
this.redirectUri = redirectUri;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the responseTypes
|
||||||
|
*/
|
||||||
|
@ElementCollection(fetch = FetchType.EAGER)
|
||||||
|
@CollectionTable(
|
||||||
|
name="authentication_holder_response_type",
|
||||||
|
joinColumns=@JoinColumn(name="owner_id")
|
||||||
|
)
|
||||||
|
@Column(name="response_type")
|
||||||
|
public Set<String> getResponseTypes() {
|
||||||
|
return responseTypes;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param responseTypes the responseTypes to set
|
||||||
|
*/
|
||||||
|
public void setResponseTypes(Set<String> responseTypes) {
|
||||||
|
this.responseTypes = responseTypes;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the extensions
|
||||||
|
*/
|
||||||
|
@ElementCollection(fetch = FetchType.EAGER)
|
||||||
|
@CollectionTable(
|
||||||
|
name="authentication_holder_extension",
|
||||||
|
joinColumns=@JoinColumn(name="owner_id")
|
||||||
|
)
|
||||||
|
@Column(name="val")
|
||||||
|
@MapKeyColumn(name="extension")
|
||||||
|
@Convert(converter=SerializableStringConverter.class)
|
||||||
|
public Map<String, Serializable> getExtensions() {
|
||||||
|
return extensions;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param extensions the extensions to set
|
||||||
|
*/
|
||||||
|
public void setExtensions(Map<String, Serializable> extensions) {
|
||||||
|
this.extensions = extensions;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the clientId
|
||||||
|
*/
|
||||||
|
@Basic
|
||||||
|
@Column(name="client_id")
|
||||||
|
public String getClientId() {
|
||||||
|
return clientId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param clientId the clientId to set
|
||||||
|
*/
|
||||||
|
public void setClientId(String clientId) {
|
||||||
|
this.clientId = clientId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the scope
|
||||||
|
*/
|
||||||
|
@ElementCollection(fetch = FetchType.EAGER)
|
||||||
|
@CollectionTable(
|
||||||
|
name="authentication_holder_scope",
|
||||||
|
joinColumns=@JoinColumn(name="owner_id")
|
||||||
|
)
|
||||||
|
@Column(name="scope")
|
||||||
|
public Set<String> getScope() {
|
||||||
|
return scope;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param scope the scope to set
|
||||||
|
*/
|
||||||
|
public void setScope(Set<String> scope) {
|
||||||
|
this.scope = scope;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the requestParameters
|
||||||
|
*/
|
||||||
|
@ElementCollection(fetch = FetchType.EAGER)
|
||||||
|
@CollectionTable(
|
||||||
|
name="authentication_holder_request_parameter",
|
||||||
|
joinColumns=@JoinColumn(name="owner_id")
|
||||||
|
)
|
||||||
|
@Column(name="val")
|
||||||
|
@MapKeyColumn(name="param")
|
||||||
|
public Map<String, String> getRequestParameters() {
|
||||||
|
return requestParameters;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param requestParameters the requestParameters to set
|
||||||
|
*/
|
||||||
|
public void setRequestParameters(Map<String, String> requestParameters) {
|
||||||
|
this.requestParameters = requestParameters;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -47,7 +47,12 @@ import javax.persistence.Temporal;
|
||||||
import javax.persistence.TemporalType;
|
import javax.persistence.TemporalType;
|
||||||
import javax.persistence.Transient;
|
import javax.persistence.Transient;
|
||||||
|
|
||||||
|
import org.mitre.oauth2.model.convert.JWEAlgorithmStringConverter;
|
||||||
|
import org.mitre.oauth2.model.convert.JWEEncryptionMethodStringConverter;
|
||||||
|
import org.mitre.oauth2.model.convert.JWSAlgorithmStringConverter;
|
||||||
|
import org.mitre.oauth2.model.convert.SimpleGrantedAuthorityStringConverter;
|
||||||
import org.springframework.security.core.GrantedAuthority;
|
import org.springframework.security.core.GrantedAuthority;
|
||||||
|
import org.springframework.security.core.authority.SimpleGrantedAuthority;
|
||||||
import org.springframework.security.oauth2.provider.ClientDetails;
|
import org.springframework.security.oauth2.provider.ClientDetails;
|
||||||
|
|
||||||
import com.nimbusds.jose.EncryptionMethod;
|
import com.nimbusds.jose.EncryptionMethod;
|
||||||
|
@ -461,6 +466,7 @@ public class ClientDetailsEntity implements ClientDetails {
|
||||||
joinColumns=@JoinColumn(name="owner_id")
|
joinColumns=@JoinColumn(name="owner_id")
|
||||||
)
|
)
|
||||||
@Override
|
@Override
|
||||||
|
@Convert(converter = SimpleGrantedAuthorityStringConverter.class)
|
||||||
@Column(name="authority")
|
@Column(name="authority")
|
||||||
public Set<GrantedAuthority> getAuthorities() {
|
public Set<GrantedAuthority> getAuthorities() {
|
||||||
return authorities;
|
return authorities;
|
||||||
|
|
|
@ -0,0 +1,174 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright 2015 The MITRE Corporation
|
||||||
|
* and the MIT Kerberos and Internet Trust Consortium
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
*
|
||||||
|
* http://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.mitre.oauth2.model;
|
||||||
|
|
||||||
|
import java.util.Collection;
|
||||||
|
|
||||||
|
import javax.persistence.Basic;
|
||||||
|
import javax.persistence.CollectionTable;
|
||||||
|
import javax.persistence.Column;
|
||||||
|
import javax.persistence.Convert;
|
||||||
|
import javax.persistence.ElementCollection;
|
||||||
|
import javax.persistence.Entity;
|
||||||
|
import javax.persistence.FetchType;
|
||||||
|
import javax.persistence.GeneratedValue;
|
||||||
|
import javax.persistence.GenerationType;
|
||||||
|
import javax.persistence.Id;
|
||||||
|
import javax.persistence.JoinColumn;
|
||||||
|
import javax.persistence.Transient;
|
||||||
|
|
||||||
|
import org.mitre.oauth2.model.convert.SimpleGrantedAuthorityStringConverter;
|
||||||
|
import org.springframework.security.core.Authentication;
|
||||||
|
import org.springframework.security.core.GrantedAuthority;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class stands in for an original Authentication object.
|
||||||
|
*
|
||||||
|
* @author jricher
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@Entity
|
||||||
|
public class SavedUserAuthentication implements Authentication {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -1804249963940323488L;
|
||||||
|
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
private Collection<? extends GrantedAuthority> authorities;
|
||||||
|
|
||||||
|
private boolean authenticated;
|
||||||
|
|
||||||
|
private String sourceClass;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a Saved Auth from an existing Auth token
|
||||||
|
*/
|
||||||
|
public SavedUserAuthentication(Authentication src) {
|
||||||
|
setName(src.getName());
|
||||||
|
setAuthorities(src.getAuthorities());
|
||||||
|
setAuthenticated(src.isAuthenticated());
|
||||||
|
setSourceClass(src.getClass().getName());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an empty saved auth
|
||||||
|
*/
|
||||||
|
public SavedUserAuthentication() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the id
|
||||||
|
*/
|
||||||
|
@Id
|
||||||
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||||
|
@Column(name = "id")
|
||||||
|
public Long getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param id the id to set
|
||||||
|
*/
|
||||||
|
public void setId(Long id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Basic
|
||||||
|
@Column(name="name")
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@ElementCollection(fetch = FetchType.EAGER)
|
||||||
|
@CollectionTable(
|
||||||
|
name="saved_user_auth_authority",
|
||||||
|
joinColumns=@JoinColumn(name="owner_id")
|
||||||
|
)
|
||||||
|
@Convert(converter = SimpleGrantedAuthorityStringConverter.class)
|
||||||
|
@Column(name="authority")
|
||||||
|
public Collection<? extends GrantedAuthority> getAuthorities() {
|
||||||
|
return authorities;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Transient
|
||||||
|
public Object getCredentials() {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Transient
|
||||||
|
public Object getDetails() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Transient
|
||||||
|
public Object getPrincipal() {
|
||||||
|
return getName();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Basic
|
||||||
|
@Column(name="authenticated")
|
||||||
|
public boolean isAuthenticated() {
|
||||||
|
return authenticated;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setAuthenticated(boolean isAuthenticated) throws IllegalArgumentException {
|
||||||
|
this.authenticated = isAuthenticated;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the sourceClass
|
||||||
|
*/
|
||||||
|
@Basic
|
||||||
|
@Column(name="source_class")
|
||||||
|
public String getSourceClass() {
|
||||||
|
return sourceClass;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param sourceClass the sourceClass to set
|
||||||
|
*/
|
||||||
|
public void setSourceClass(String sourceClass) {
|
||||||
|
this.sourceClass = sourceClass;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param name the name to set
|
||||||
|
*/
|
||||||
|
public void setName(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param authorities the authorities to set
|
||||||
|
*/
|
||||||
|
public void setAuthorities(Collection<? extends GrantedAuthority> authorities) {
|
||||||
|
this.authorities = authorities;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
|
@ -15,7 +15,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.mitre.oauth2.model;
|
package org.mitre.oauth2.model.convert;
|
||||||
|
|
||||||
import javax.persistence.AttributeConverter;
|
import javax.persistence.AttributeConverter;
|
||||||
import javax.persistence.Converter;
|
import javax.persistence.Converter;
|
|
@ -15,7 +15,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.mitre.oauth2.model;
|
package org.mitre.oauth2.model.convert;
|
||||||
|
|
||||||
import javax.persistence.AttributeConverter;
|
import javax.persistence.AttributeConverter;
|
||||||
import javax.persistence.Converter;
|
import javax.persistence.Converter;
|
|
@ -15,7 +15,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.mitre.oauth2.model;
|
package org.mitre.oauth2.model.convert;
|
||||||
|
|
||||||
import javax.persistence.AttributeConverter;
|
import javax.persistence.AttributeConverter;
|
||||||
import javax.persistence.Converter;
|
import javax.persistence.Converter;
|
|
@ -0,0 +1,65 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright 2015 The MITRE Corporation
|
||||||
|
* and the MIT Kerberos and Internet Trust Consortium
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
*
|
||||||
|
* http://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.mitre.oauth2.model.convert;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
import javax.persistence.AttributeConverter;
|
||||||
|
import javax.persistence.Converter;
|
||||||
|
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Translates a Serializable object of certain primitive types
|
||||||
|
* into a String for storage in the database, for use with the
|
||||||
|
* OAuth2Request extensions map.
|
||||||
|
*
|
||||||
|
* This class does allow some extension data to be lost.
|
||||||
|
*
|
||||||
|
* @author jricher
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@Converter
|
||||||
|
public class SerializableStringConverter implements AttributeConverter<Serializable, String> {
|
||||||
|
|
||||||
|
private static Logger logger = LoggerFactory.getLogger(SerializableStringConverter.class);
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String convertToDatabaseColumn(Serializable attribute) {
|
||||||
|
if (attribute == null) {
|
||||||
|
return null;
|
||||||
|
} else if (attribute instanceof String) {
|
||||||
|
return (String) attribute;
|
||||||
|
} else if (attribute instanceof Long) {
|
||||||
|
return attribute.toString();
|
||||||
|
} else if (attribute instanceof Date) {
|
||||||
|
return Long.toString(((Date)attribute).getTime());
|
||||||
|
} else {
|
||||||
|
logger.warn("Dropping data from request: " + attribute + " :: " + attribute.getClass());
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Serializable convertToEntityAttribute(String dbData) {
|
||||||
|
return dbData;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,50 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright 2015 The MITRE Corporation
|
||||||
|
* and the MIT Kerberos and Internet Trust Consortium
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
*
|
||||||
|
* http://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.mitre.oauth2.model.convert;
|
||||||
|
|
||||||
|
import javax.persistence.AttributeConverter;
|
||||||
|
import javax.persistence.Converter;
|
||||||
|
|
||||||
|
import org.springframework.security.core.authority.SimpleGrantedAuthority;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author jricher
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@Converter
|
||||||
|
public class SimpleGrantedAuthorityStringConverter implements AttributeConverter<SimpleGrantedAuthority, String> {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String convertToDatabaseColumn(SimpleGrantedAuthority attribute) {
|
||||||
|
if (attribute != null) {
|
||||||
|
return attribute.getAuthority();
|
||||||
|
} else {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public SimpleGrantedAuthority convertToEntityAttribute(String dbData) {
|
||||||
|
if (dbData != null) {
|
||||||
|
return new SimpleGrantedAuthority(dbData);
|
||||||
|
} else {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -44,11 +44,64 @@ CREATE TABLE IF NOT EXISTS approved_site_scope (
|
||||||
scope VARCHAR(256)
|
scope VARCHAR(256)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS authentication_holder (
|
CREATE TABLE IF NOT EXISTS authentication_holder (
|
||||||
id BIGINT GENERATED BY DEFAULT AS IDENTITY(START WITH 1) PRIMARY KEY,
|
id BIGINT GENERATED BY DEFAULT AS IDENTITY(START WITH 1) PRIMARY KEY,
|
||||||
authentication LONGVARBINARY
|
user_auth_id BIGINT,
|
||||||
|
approved BOOLEAN,
|
||||||
|
redirect_uri VARCHAR(2048),
|
||||||
|
client_id VARCHAR(256),
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS authentication_holder_authority (
|
||||||
|
owner_id BIGINT,
|
||||||
|
authority VARCHAR(256)
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS authentication_holder_resource_id (
|
||||||
|
owner_id BIGINT,
|
||||||
|
resource_id VARCHAR(2048)
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS authentication_holder_response_type (
|
||||||
|
owner_id BIGINT,
|
||||||
|
response_type VARCHAR(2048)
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS authentication_holder_extension (
|
||||||
|
owner_id BIGINT,
|
||||||
|
extension VARCHAR(2048),
|
||||||
|
val VARCHAR(2048)
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS authentication_holder_scope (
|
||||||
|
owner_id BIGINT,
|
||||||
|
scope VARCHAR(2048)
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS authentication_holder_request_parameter (
|
||||||
|
owner_id BIGINT,
|
||||||
|
param VARCHAR(2048),
|
||||||
|
val VARCHAR(2048)
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS saved_user_auth (
|
||||||
|
id BIGINT GENERATED BY DEFAULT AS IDENTITY(START WITH 1) PRIMARY KEY,
|
||||||
|
name VARCHAR(1024),
|
||||||
|
authenticated BOOLEAN,
|
||||||
|
source_class VARCHAR(2048)
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS saved_user_auth_authority (
|
||||||
|
owner_id BIGINT,
|
||||||
|
authority VARCHAR(256)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS client_authority (
|
CREATE TABLE IF NOT EXISTS client_authority (
|
||||||
owner_id BIGINT,
|
owner_id BIGINT,
|
||||||
authority VARCHAR(256)
|
authority VARCHAR(256)
|
||||||
|
|
Loading…
Reference in New Issue