use of org.wso2.charon3.core.attributes.ComplexAttribute in project charon by wso2.
the class AbstractValidator method validateReturnedAttributes.
/*
* This method is to remove any defined and requested attributes and include
* requested attributes if not they have been removed.
*
* @param scimObject
* @param requestedAttributes
* @param requestedExcludingAttributes
*/
public static void validateReturnedAttributes(AbstractSCIMObject scimObject, String requestedAttributes, String requestedExcludingAttributes) throws CharonException {
List<String> requestedAttributesList = null;
List<String> requestedExcludingAttributesList = null;
if (requestedAttributes != null) {
// make a list from the comma separated requestedAttributes
requestedAttributesList = Arrays.asList(requestedAttributes.split(","));
}
if (requestedExcludingAttributes != null) {
// make a list from the comma separated requestedExcludingAttributes
requestedExcludingAttributesList = Arrays.asList(requestedExcludingAttributes.split(","));
}
Map<String, Attribute> attributeList = scimObject.getAttributeList();
ArrayList<Attribute> attributeTemporyList = new ArrayList<Attribute>();
for (Attribute attribute : attributeList.values()) {
attributeTemporyList.add(attribute);
}
for (Attribute attribute : attributeTemporyList) {
// check for never/request attributes.
if (attribute.getReturned().equals(SCIMDefinitions.Returned.NEVER)) {
scimObject.deleteAttribute(attribute.getName());
}
// If so return it.
if (requestedAttributes == null && requestedExcludingAttributes == null) {
if (attribute.getReturned().equals(SCIMDefinitions.Returned.REQUEST)) {
scimObject.deleteAttribute(attribute.getName());
}
} else {
// A request should only contains either attributes or exclude attribute params. Not both
if (requestedAttributes != null) {
// and add only the requested attributes
if ((attribute.getReturned().equals(SCIMDefinitions.Returned.DEFAULT) || attribute.getReturned().equals(SCIMDefinitions.Returned.REQUEST)) && (!requestedAttributesList.contains(attribute.getName()) && !isSubAttributeExistsInList(requestedAttributesList, attribute))) {
scimObject.deleteAttribute(attribute.getName());
}
} else if (requestedExcludingAttributes != null) {
// removing attributes which has returned as request. This is because no request is made
if (attribute.getReturned().equals(SCIMDefinitions.Returned.REQUEST)) {
scimObject.deleteAttribute(attribute.getName());
}
// removed from the default set of attributes
if ((attribute.getReturned().equals(SCIMDefinitions.Returned.DEFAULT)) && requestedExcludingAttributesList.contains(attribute.getName())) {
scimObject.deleteAttribute(attribute.getName());
}
}
}
// check the same for sub attributes
if (attribute.getType().equals(SCIMDefinitions.DataType.COMPLEX)) {
if (attribute.getMultiValued()) {
List<Attribute> valuesList = ((MultiValuedAttribute) attribute).getAttributeValues();
for (Attribute subAttribute : valuesList) {
Map<String, Attribute> valuesSubAttributeList = ((ComplexAttribute) subAttribute).getSubAttributesList();
ArrayList<Attribute> valuesSubAttributeTemporyList = new ArrayList<Attribute>();
// hence need to traverse on a copy
for (Attribute subSimpleAttribute : valuesSubAttributeList.values()) {
valuesSubAttributeTemporyList.add(subSimpleAttribute);
}
for (Attribute subSimpleAttribute : valuesSubAttributeTemporyList) {
removeValuesSubAttributeOnReturn(subSimpleAttribute, subAttribute, attribute, requestedAttributes, requestedExcludingAttributes, requestedAttributesList, requestedExcludingAttributesList, scimObject);
}
}
} else {
Map<String, Attribute> subAttributeList = ((ComplexAttribute) attribute).getSubAttributesList();
ArrayList<Attribute> subAttributeTemporyList = new ArrayList<Attribute>();
for (Attribute subAttribute : subAttributeList.values()) {
subAttributeTemporyList.add(subAttribute);
}
for (Attribute subAttribute : subAttributeTemporyList) {
if (subAttribute.getType().equals(SCIMDefinitions.DataType.COMPLEX)) {
// this applicable for extension schema only
if (subAttribute.getMultiValued()) {
List<Attribute> valuesList = ((MultiValuedAttribute) subAttribute).getAttributeValues();
for (Attribute subSubValue : valuesList) {
Map<String, Attribute> subValuesSubAttributeList = ((ComplexAttribute) subSubValue).getSubAttributesList();
ArrayList<Attribute> valuesSubSubAttributeTemporyList = new ArrayList<Attribute>();
// hence need to traverse on a copy
for (Attribute subSubSimpleAttribute : subValuesSubAttributeList.values()) {
valuesSubSubAttributeTemporyList.add(subSubSimpleAttribute);
}
for (Attribute subSubSimpleAttribute : valuesSubSubAttributeTemporyList) {
removeValuesSubSubAttributeOnReturn(attribute, subAttribute, subSubValue, subSubSimpleAttribute, requestedAttributes, requestedExcludingAttributes, requestedAttributesList, requestedExcludingAttributesList, scimObject);
}
}
} else {
ArrayList<Attribute> subSubAttributeTemporyList = new ArrayList<Attribute>();
Map<String, Attribute> subSubAttributeList = ((ComplexAttribute) subAttribute).getSubAttributesList();
for (Attribute subSubAttribute : subSubAttributeList.values()) {
subSubAttributeTemporyList.add(subSubAttribute);
}
for (Attribute subSubAttribute : subSubAttributeTemporyList) {
removeSubSubAttributesOnReturn(attribute, subAttribute, subSubAttribute, requestedAttributes, requestedExcludingAttributes, requestedAttributesList, requestedExcludingAttributesList, scimObject);
}
}
removeSubAttributesOnReturn(subAttribute, attribute, requestedAttributes, requestedExcludingAttributes, requestedAttributesList, requestedExcludingAttributesList, scimObject);
} else {
removeSubAttributesOnReturn(subAttribute, attribute, requestedAttributes, requestedExcludingAttributes, requestedAttributesList, requestedExcludingAttributesList, scimObject);
}
}
}
}
}
}
use of org.wso2.charon3.core.attributes.ComplexAttribute in project charon by wso2.
the class AbstractValidator method validateSCIMObjectForRequiredSubAttributes.
/*
* Validate SCIMObject for required sub attributes given the object and the corresponding schema.
*
* @param attribute
* @param attributeSchema
* @throws CharonException
* @throws BadRequestException
*/
private static void validateSCIMObjectForRequiredSubAttributes(AbstractAttribute attribute, AttributeSchema attributeSchema) throws CharonException, BadRequestException {
if (attribute != null) {
List<SCIMAttributeSchema> subAttributesSchemaList = ((SCIMAttributeSchema) attributeSchema).getSubAttributeSchemas();
if (subAttributesSchemaList != null) {
for (SCIMAttributeSchema subAttributeSchema : subAttributesSchemaList) {
if (subAttributeSchema.getRequired()) {
if (attribute instanceof ComplexAttribute) {
if (attribute.getSubAttribute(subAttributeSchema.getName()) == null) {
String error = "Required sub attribute: " + subAttributeSchema.getName() + " is missing in the SCIM Attribute: " + attribute.getName();
throw new BadRequestException(error, ResponseCodeConstants.INVALID_VALUE);
}
} else if (attribute instanceof MultiValuedAttribute) {
List<Attribute> values = ((MultiValuedAttribute) attribute).getAttributeValues();
for (Attribute value : values) {
if (value instanceof ComplexAttribute) {
if (value.getSubAttribute(subAttributeSchema.getName()) == null) {
String error = "Required sub attribute: " + subAttributeSchema.getName() + ", is missing in the SCIM Attribute: " + attribute.getName();
throw new BadRequestException(error, ResponseCodeConstants.INVALID_VALUE);
}
}
}
}
}
// Following is only applicable for extension schema validation.
AbstractAttribute subAttribute = null;
if (attribute instanceof ComplexAttribute) {
subAttribute = (AbstractAttribute) ((ComplexAttribute) attribute).getSubAttribute(subAttributeSchema.getName());
} else if (attribute instanceof MultiValuedAttribute) {
List<Attribute> subAttributeList = ((MultiValuedAttribute) attribute).getAttributeValues();
for (Attribute subAttrbte : subAttributeList) {
if (subAttrbte.getName().equals(subAttributeSchema.getName())) {
subAttribute = (AbstractAttribute) subAttrbte;
}
}
}
List<SCIMAttributeSchema> subSubAttributesSchemaList = ((SCIMAttributeSchema) subAttributeSchema).getSubAttributeSchemas();
if (subSubAttributesSchemaList != null) {
validateSCIMObjectForRequiredSubAttributes(subAttribute, subAttributeSchema);
}
}
}
}
}
use of org.wso2.charon3.core.attributes.ComplexAttribute in project charon by wso2.
the class AbstractValidator method removeAnyReadOnlySubAttributes.
/*
* Check for readonlySubAttributes and remove them if they have been modified. - (create method)
*
* @param attribute
* @param attributeSchema
* @throws CharonException
*/
private static void removeAnyReadOnlySubAttributes(Attribute attribute, AttributeSchema attributeSchema) throws CharonException {
if (attribute != null) {
List<SCIMAttributeSchema> subAttributesSchemaList = ((SCIMAttributeSchema) attributeSchema).getSubAttributeSchemas();
if (subAttributesSchemaList != null && !subAttributesSchemaList.isEmpty()) {
for (SCIMAttributeSchema subAttributeSchema : subAttributesSchemaList) {
if (subAttributeSchema.getMutability() == SCIMDefinitions.Mutability.READ_ONLY) {
if (attribute instanceof ComplexAttribute) {
if (attribute.getSubAttribute(subAttributeSchema.getName()) != null) {
String error = "Readonly sub attribute: " + subAttributeSchema.getName() + " is set in the SCIM Attribute: " + attribute.getName() + ". Removing it.";
logger.debug(error);
((ComplexAttribute) attribute).removeSubAttribute(subAttributeSchema.getName());
}
} else if (attribute instanceof MultiValuedAttribute) {
List<Attribute> values = ((MultiValuedAttribute) attribute).getAttributeValues();
for (Attribute value : values) {
if (value instanceof ComplexAttribute) {
if (value.getSubAttribute(subAttributeSchema.getName()) != null) {
String error = "Readonly sub attribute: " + subAttributeSchema.getName() + " is set in the SCIM Attribute: " + attribute.getName() + ". Removing it.";
logger.debug(error);
((ComplexAttribute) value).removeSubAttribute(subAttributeSchema.getName());
}
}
}
}
}
// Otherwise no complex attribute can complex sub attributes.
if (subAttributeSchema.getType().equals(SCIMDefinitions.DataType.COMPLEX)) {
// check for readonly sub-sub attributes in extension.
// get attributes from schema.
Map<String, Attribute> subAttributeList = ((ComplexAttribute) attribute).getSubAttributesList();
for (Attribute subSubAttribute : subAttributeList.values()) {
removeAnyReadOnlySubAttributes(subSubAttribute, subAttributeSchema);
}
}
}
}
}
}
use of org.wso2.charon3.core.attributes.ComplexAttribute in project charon by wso2.
the class AbstractSCIMObject method setLocation.
/*
* set the location of the meta attribute
*
* @param location
*/
public void setLocation(String location) throws CharonException, BadRequestException {
// create the location attribute as defined in schema.
SimpleAttribute locationAttribute = (SimpleAttribute) DefaultAttributeFactory.createAttribute(SCIMSchemaDefinitions.LOCATION, new SimpleAttribute(SCIMConstants.CommonSchemaConstants.LOCATION, location));
// check meta complex attribute already exist.
if (getMetaAttribute() != null) {
ComplexAttribute metaAttribute = getMetaAttribute();
// check version attribute already exist
if (metaAttribute.isSubAttributeExist(locationAttribute.getName())) {
String error = "Read only attribute is tried to modify";
throw new CharonException(error);
} else {
metaAttribute.setSubAttribute(locationAttribute);
}
} else {
// create meta attribute and set the sub attribute.
createMetaAttribute();
getMetaAttribute().setSubAttribute(locationAttribute);
}
}
use of org.wso2.charon3.core.attributes.ComplexAttribute in project charon by wso2.
the class Group method getMembers.
/*
* get the members of the group
* @return
*/
public List<Object> getMembers() {
List<Object> memberList = new ArrayList<>();
if (this.isAttributeExist(SCIMConstants.GroupSchemaConstants.MEMBERS)) {
MultiValuedAttribute members = (MultiValuedAttribute) this.attributeList.get(SCIMConstants.GroupSchemaConstants.MEMBERS);
List<Attribute> subValuesList = members.getAttributeValues();
for (Attribute subValue : subValuesList) {
ComplexAttribute complexAttribute = (ComplexAttribute) subValue;
Map<String, Attribute> subAttributesList = complexAttribute.getSubAttributesList();
if (subAttributesList != null && subAttributesList.containsKey(SCIMConstants.CommonSchemaConstants.VALUE)) {
memberList.add(((SimpleAttribute) (subAttributesList.get(SCIMConstants.CommonSchemaConstants.VALUE))).getValue());
}
}
return memberList;
} else {
return null;
}
}
Aggregations