Search in sources :

Example 1 with CharonException

use of org.wso2.charon.core.exceptions.CharonException in project charon by wso2.

the class AbstractSCIMObject method setLastModified.

/*
     * set the last modified date and time of the resource
     *
     * @param lastModifiedDate
     */
public void setLastModified(Date lastModifiedDate) throws CharonException, BadRequestException {
    // create the lastModified date attribute as defined in schema.
    SimpleAttribute lastModifiedAttribute = (SimpleAttribute) DefaultAttributeFactory.createAttribute(SCIMSchemaDefinitions.LAST_MODIFIED, new SimpleAttribute(SCIMConstants.CommonSchemaConstants.LAST_MODIFIED, lastModifiedDate));
    // check meta complex attribute already exist.
    if (getMetaAttribute() != null) {
        ComplexAttribute metaAttribute = getMetaAttribute();
        // check last modified attribute already exist
        if (metaAttribute.isSubAttributeExist(lastModifiedAttribute.getName())) {
            metaAttribute.removeSubAttribute(lastModifiedAttribute.getName());
            metaAttribute.setSubAttribute(lastModifiedAttribute);
        } else {
            metaAttribute.setSubAttribute(lastModifiedAttribute);
        }
    } else {
        // create meta attribute and set the sub attribute.
        createMetaAttribute();
        getMetaAttribute().setSubAttribute(lastModifiedAttribute);
    }
}
Also used : SimpleAttribute(org.wso2.charon3.core.attributes.SimpleAttribute) ComplexAttribute(org.wso2.charon3.core.attributes.ComplexAttribute)

Example 2 with CharonException

use of org.wso2.charon.core.exceptions.CharonException in project charon by wso2.

the class PatchOperationUtil method updateAttributeOnResourceWithPathWithoutFiltersForLevelTwo.

/**
 * Update the attribute on resource with path without filters for level two case.
 *
 * @param schema         SCIM resource schema.
 * @param decoder        JSON decoder.
 * @param operation      Operation to be performed.
 * @param attributeParts Attribute parts array which length is two, considered as a level two case.
 * @param attribute      Attribute.
 * @throws CharonException
 * @throws BadRequestException
 * @throws InternalErrorException
 */
private static void updateAttributeOnResourceWithPathWithoutFiltersForLevelTwo(SCIMResourceTypeSchema schema, JSONDecoder decoder, PatchOperation operation, String[] attributeParts, Attribute attribute) throws CharonException, BadRequestException, InternalErrorException {
    if (attributeParts.length != 2) {
        throw new CharonException("attributeParts length should be three.");
    }
    if (attribute.getMultiValued()) {
        if (log.isDebugEnabled()) {
            log.debug(String.format("Attribute: %s is a complex multi-valued attribute ", attribute.getName()));
        }
        if (attribute instanceof MultiValuedAttribute) {
            List<Attribute> subValues = ((MultiValuedAttribute) attribute).getAttributeValues();
            for (Attribute subValue : subValues) {
                Attribute subAttribute = subValue.getSubAttribute(attributeParts[1]);
                if (subAttribute != null) {
                    checkMutability(subAttribute);
                    if (subAttribute.getMultiValued()) {
                        if (log.isDebugEnabled()) {
                            log.debug(String.format("Sub attribute: %s is a complex multi-valued attribute ", subAttribute.getName()));
                        }
                        JSONArray jsonArray = getJsonArray(operation);
                        addPrimitiveMultiValuedAttributeToResource(subAttribute, jsonArray);
                    } else {
                        if (log.isDebugEnabled()) {
                            log.debug(String.format("Sub attribute: %s is a simple attribute ", subAttribute.getName()));
                        }
                        if (subAttribute instanceof SimpleAttribute) {
                            ((SimpleAttribute) subAttribute).setValue(operation.getValues());
                        } else {
                            throw new BadRequestException("Sub attribute: " + subAttribute.getName() + " is not a instance of " + "SimpleAttribute.", ResponseCodeConstants.INVALID_SYNTAX);
                        }
                    }
                } else {
                    // Sub attribute is null so add it.
                    if (log.isDebugEnabled()) {
                        log.debug(String.format("Sub attribute: %s is not found, so create and add it.", subValue.getName()));
                    }
                    createSubAttributeOnResourceWithPathWithoutFiltersForLevelTwo(schema, decoder, operation, attributeParts, subValue);
                }
            }
        } else {
            throw new BadRequestException("Attribute: " + attribute.getName() + " is not a instance of MultiValuedAttribute.", ResponseCodeConstants.INVALID_SYNTAX);
        }
    } else {
        // attributeParts[0] is Complex but not multi valued.
        if (log.isDebugEnabled()) {
            log.debug(String.format("Attribute: %s is a complex but not multi-valued attribute ", attribute.getName()));
        }
        Attribute subAttribute = attribute.getSubAttribute(attributeParts[1]);
        AttributeSchema subAttributeSchema = SchemaUtil.getAttributeSchema(attributeParts[0] + "." + attributeParts[1], schema);
        if (subAttributeSchema != null) {
            updateSubAttributeOnResourceWithPathWithoutFiltersForLevelTwo(schema, decoder, operation, attributeParts, attribute, subAttribute, subAttributeSchema);
        } else {
            throw new BadRequestException("No such attribute with the name : " + attributeParts[1], ResponseCodeConstants.NO_TARGET);
        }
    }
}
Also used : MultiValuedAttribute(org.wso2.charon3.core.attributes.MultiValuedAttribute) SimpleAttribute(org.wso2.charon3.core.attributes.SimpleAttribute) ComplexAttribute(org.wso2.charon3.core.attributes.ComplexAttribute) Attribute(org.wso2.charon3.core.attributes.Attribute) SimpleAttribute(org.wso2.charon3.core.attributes.SimpleAttribute) JSONArray(org.json.JSONArray) AttributeSchema(org.wso2.charon3.core.schema.AttributeSchema) BadRequestException(org.wso2.charon3.core.exceptions.BadRequestException) CharonException(org.wso2.charon3.core.exceptions.CharonException) MultiValuedAttribute(org.wso2.charon3.core.attributes.MultiValuedAttribute)

Example 3 with CharonException

use of org.wso2.charon.core.exceptions.CharonException in project charon by wso2.

the class PatchOperationUtil method createSubAttributeOnResourceWithPathWithoutFiltersForLevelThree.

/**
 * Create sub attribute on resource with path without filters for level three case.
 *
 * @param schema         SCIM resource schema.
 * @param operation      Operation to be performed.
 * @param attributeParts Attribute parts array.
 * @param attribute      Attribute.
 * @throws CharonException
 * @throws BadRequestException
 */
private static void createSubAttributeOnResourceWithPathWithoutFiltersForLevelThree(SCIMResourceTypeSchema schema, PatchOperation operation, String[] attributeParts, ComplexAttribute attribute) throws CharonException, BadRequestException {
    AttributeSchema subAttributeSchena = SchemaUtil.getAttributeSchema(attributeParts[0] + "." + attributeParts[1], schema);
    if (subAttributeSchena != null) {
        if (subAttributeSchena.getMultiValued()) {
            MultiValuedAttribute multiValuedAttribute = new MultiValuedAttribute(subAttributeSchena.getName());
            DefaultAttributeFactory.createAttribute(subAttributeSchena, multiValuedAttribute);
            String complexAttributeName = subAttributeSchena.getName() + "_" + operation.getValues() + "_" + SCIMConstants.DEFAULT;
            ComplexAttribute complexAttribute = new ComplexAttribute(complexAttributeName);
            DefaultAttributeFactory.createAttribute(subAttributeSchena, complexAttribute);
            AttributeSchema subSubAttributeSchema = SchemaUtil.getAttributeSchema(attributeParts[0] + "." + attributeParts[1] + "." + attributeParts[2], schema);
            if (subSubAttributeSchema != null) {
                if (subSubAttributeSchema.getMultiValued()) {
                    MultiValuedAttribute multiValuedSubAttribute = new MultiValuedAttribute(subSubAttributeSchema.getName());
                    DefaultAttributeFactory.createAttribute(subSubAttributeSchema, multiValuedSubAttribute);
                    JSONArray jsonArray = null;
                    try {
                        jsonArray = new JSONArray(operation.getValues());
                    } catch (JSONException e) {
                        throw new BadRequestException(ResponseCodeConstants.INVALID_SYNTAX);
                    }
                    for (int i = 0; i < jsonArray.length(); i++) {
                        try {
                            multiValuedSubAttribute.setAttributePrimitiveValue(jsonArray.get(i));
                        } catch (JSONException e) {
                            throw new BadRequestException(ResponseCodeConstants.INVALID_SYNTAX);
                        }
                    }
                    complexAttribute.setSubAttribute(multiValuedSubAttribute);
                } else {
                    SimpleAttribute simpleAttribute = new SimpleAttribute(subSubAttributeSchema.getName(), operation.getValues());
                    DefaultAttributeFactory.createAttribute(subSubAttributeSchema, simpleAttribute);
                    complexAttribute.setSubAttribute(simpleAttribute);
                }
                multiValuedAttribute.setAttributeValue(complexAttribute);
                attribute.setSubAttribute(multiValuedAttribute);
            } else {
                throw new BadRequestException("No such attribute with the name : " + attributeParts[2], ResponseCodeConstants.NO_TARGET);
            }
        } else {
            ComplexAttribute complexAttribute = new ComplexAttribute(subAttributeSchena.getName());
            DefaultAttributeFactory.createAttribute(subAttributeSchena, complexAttribute);
            AttributeSchema subSubAttributeSchema = SchemaUtil.getAttributeSchema(attributeParts[0] + "." + attributeParts[1] + "." + attributeParts[2], schema);
            if (subSubAttributeSchema != null) {
                if (subSubAttributeSchema.getMultiValued()) {
                    MultiValuedAttribute multiValuedAttribute = new MultiValuedAttribute(subSubAttributeSchema.getName());
                    DefaultAttributeFactory.createAttribute(subSubAttributeSchema, multiValuedAttribute);
                    JSONArray jsonArray = null;
                    try {
                        jsonArray = new JSONArray(operation.getValues());
                    } catch (JSONException e) {
                        throw new BadRequestException(ResponseCodeConstants.INVALID_SYNTAX);
                    }
                    for (int i = 0; i < jsonArray.length(); i++) {
                        try {
                            multiValuedAttribute.setAttributePrimitiveValue(jsonArray.get(i));
                        } catch (JSONException e) {
                            throw new BadRequestException(ResponseCodeConstants.INVALID_SYNTAX);
                        }
                    }
                    complexAttribute.setSubAttribute(multiValuedAttribute);
                } else {
                    SimpleAttribute simpleAttribute = new SimpleAttribute(subSubAttributeSchema.getName(), operation.getValues());
                    DefaultAttributeFactory.createAttribute(subSubAttributeSchema, simpleAttribute);
                    complexAttribute.setSubAttribute(simpleAttribute);
                }
                attribute.setSubAttribute(complexAttribute);
            } else {
                throw new BadRequestException("No such attribute with the name : " + attributeParts[2], ResponseCodeConstants.NO_TARGET);
            }
        }
    } else {
        throw new BadRequestException("No such attribute with the name : " + attributeParts[1], ResponseCodeConstants.NO_TARGET);
    }
}
Also used : SimpleAttribute(org.wso2.charon3.core.attributes.SimpleAttribute) AttributeSchema(org.wso2.charon3.core.schema.AttributeSchema) ComplexAttribute(org.wso2.charon3.core.attributes.ComplexAttribute) JSONArray(org.json.JSONArray) JSONException(org.json.JSONException) BadRequestException(org.wso2.charon3.core.exceptions.BadRequestException) MultiValuedAttribute(org.wso2.charon3.core.attributes.MultiValuedAttribute)

Example 4 with CharonException

use of org.wso2.charon.core.exceptions.CharonException in project charon by wso2.

the class PatchOperationUtil method doPatchReplaceWithFiltersForLevelTwo.

/*
     * This method is to do patch replace for level two attributes with a filter present.
     * @param oldResource
     * @param attributeParts
     * @param expressionNode
     * @param operation
     * @param schema
     * @param decoder
     * @return
     * @throws CharonException
     * @throws BadRequestException
     * @throws JSONException
     * @throws InternalErrorException
     */
private static AbstractSCIMObject doPatchReplaceWithFiltersForLevelTwo(AbstractSCIMObject oldResource, String[] attributeParts, ExpressionNode expressionNode, PatchOperation operation, SCIMResourceTypeSchema schema, JSONDecoder decoder) throws CharonException, BadRequestException, JSONException, InternalErrorException {
    Attribute attribute = oldResource.getAttribute(attributeParts[0]);
    boolean isValueFound = false;
    if (attribute != null) {
        if (attribute.getMultiValued()) {
            List<Attribute> subValues = ((MultiValuedAttribute) attribute).getAttributeValues();
            if (subValues != null) {
                for (Attribute subValue : subValues) {
                    Map<String, Attribute> subAttributes = ((ComplexAttribute) subValue).getSubAttributesList();
                    // this map is to avoid concurrent modification exception.
                    Map<String, Attribute> tempSubAttributes = (Map<String, Attribute>) CopyUtil.deepCopy(subAttributes);
                    for (Iterator<Attribute> iterator = tempSubAttributes.values().iterator(); iterator.hasNext(); ) {
                        Attribute subAttribute = iterator.next();
                        if (subAttribute.getName().equals(expressionNode.getAttributeValue())) {
                            if (((SimpleAttribute) subAttribute).getValue().equals(expressionNode.getValue())) {
                                Attribute replacingAttribute = subAttributes.get(attributeParts[1]);
                                if (replacingAttribute == null) {
                                    // add the attribute
                                    AttributeSchema replacingAttributeSchema = SchemaUtil.getAttributeSchema(attributeParts[0] + "." + attributeParts[1], schema);
                                    if (replacingAttributeSchema.getMultiValued()) {
                                        MultiValuedAttribute multiValuedAttribute = new MultiValuedAttribute(replacingAttributeSchema.getName());
                                        DefaultAttributeFactory.createAttribute(replacingAttributeSchema, multiValuedAttribute);
                                        multiValuedAttribute.setAttributePrimitiveValue(operation.getValues());
                                        ((ComplexAttribute) subValue).setSubAttribute(multiValuedAttribute);
                                        break;
                                    } else {
                                        SimpleAttribute simpleAttribute = new SimpleAttribute(replacingAttributeSchema.getName(), operation.getValues());
                                        DefaultAttributeFactory.createAttribute(replacingAttributeSchema, simpleAttribute);
                                        ((ComplexAttribute) subValue).setSubAttribute(simpleAttribute);
                                        break;
                                    }
                                }
                                if (replacingAttribute.getMutability().equals(SCIMDefinitions.Mutability.READ_ONLY) || replacingAttribute.getMutability().equals(SCIMDefinitions.Mutability.IMMUTABLE)) {
                                    throw new BadRequestException("Can not remove a immutable attribute or a read-only attribute", ResponseCodeConstants.MUTABILITY);
                                } else {
                                    if (replacingAttribute.getMultiValued()) {
                                        ((MultiValuedAttribute) replacingAttribute).getAttributePrimitiveValues().remove(expressionNode.getValue());
                                        ((MultiValuedAttribute) replacingAttribute).setAttributePrimitiveValue(operation.getValues());
                                    } else {
                                        ((SimpleAttribute) (replacingAttribute)).setValue(operation.getValues());
                                    }
                                    isValueFound = true;
                                }
                            }
                        }
                    }
                }
                if (!isValueFound) {
                    throw new BadRequestException("No matching filter value found.", ResponseCodeConstants.NO_TARGET);
                }
            }
        } else if (attribute.getType().equals(SCIMDefinitions.DataType.COMPLEX)) {
            // this is only valid for extension
            Attribute subAttribute = attribute.getSubAttribute(attributeParts[1]);
            if (subAttribute == null) {
                // add the attribute
                AttributeSchema subAttributeSchema = SchemaUtil.getAttributeSchema(attributeParts[0] + "." + attributeParts[1], schema);
                if (subAttributeSchema != null) {
                    if (subAttributeSchema.getMultiValued()) {
                        MultiValuedAttribute multiValuedAttribute = new MultiValuedAttribute(subAttributeSchema.getName());
                        DefaultAttributeFactory.createAttribute(subAttributeSchema, multiValuedAttribute);
                        multiValuedAttribute.setAttributeValue(decoder.buildComplexAttribute(subAttributeSchema, (JSONObject) operation.getValues()));
                        ((ComplexAttribute) (attribute)).setSubAttribute(multiValuedAttribute);
                    } else {
                        throw new BadRequestException("Attribute : " + attributeParts[1] + "is not a multi valued attribute.", ResponseCodeConstants.INVALID_PATH);
                    }
                } else {
                    throw new BadRequestException("Attribute : " + attributeParts[0] + "." + attributeParts[1] + "does not exists.", ResponseCodeConstants.INVALID_PATH);
                }
            } else {
                List<Attribute> subValues = ((MultiValuedAttribute) (subAttribute)).getAttributeValues();
                if (subValues != null) {
                    for (Iterator<Attribute> subValueIterator = subValues.iterator(); subValueIterator.hasNext(); ) {
                        Attribute subValue = subValueIterator.next();
                        Map<String, Attribute> subValuesSubAttribute = ((ComplexAttribute) subValue).getSubAttributesList();
                        for (Iterator<Attribute> iterator = subValuesSubAttribute.values().iterator(); iterator.hasNext(); ) {
                            Attribute subSubAttribute = iterator.next();
                            if (subSubAttribute.getName().equals(expressionNode.getAttributeValue())) {
                                if (((SimpleAttribute) (subSubAttribute)).getValue().equals(expressionNode.getValue())) {
                                    if (subValue.getMutability().equals(SCIMDefinitions.Mutability.READ_ONLY) || subValue.getMutability().equals(SCIMDefinitions.Mutability.IMMUTABLE)) {
                                        throw new BadRequestException("Can not remove a immutable attribute or a read-only attribute", ResponseCodeConstants.MUTABILITY);
                                    } else {
                                        subValueIterator.remove();
                                        isValueFound = true;
                                    }
                                }
                            }
                        }
                    }
                    AttributeSchema attributeSchema = SchemaUtil.getAttributeSchema(attributeParts[0] + "." + attributeParts[1], schema);
                    subValues.add(decoder.buildComplexAttribute(attributeSchema, (JSONObject) operation.getValues()));
                    if (!isValueFound) {
                        throw new BadRequestException("No matching filter value found.", ResponseCodeConstants.NO_TARGET);
                    }
                }
            }
        } else {
            throw new BadRequestException("Attribute : " + expressionNode.getAttributeValue() + " " + "is not a multivalued attribute.", ResponseCodeConstants.INVALID_PATH);
        }
    } else {
        // add the attribute
        AttributeSchema attributeSchema = SchemaUtil.getAttributeSchema(attributeParts[0], schema);
        if (attributeSchema != null) {
            if (attributeSchema.getMultiValued()) {
                MultiValuedAttribute multiValuedAttribute = new MultiValuedAttribute(attributeSchema.getName());
                DefaultAttributeFactory.createAttribute(attributeSchema, multiValuedAttribute);
                String complexName = attributeSchema.getName() + "_" + SCIMConstants.DEFAULT + "_" + SCIMConstants.DEFAULT;
                ComplexAttribute complexAttribute = new ComplexAttribute(complexName);
                DefaultAttributeFactory.createAttribute(attributeSchema, complexAttribute);
                AttributeSchema subAttributeSchema = SchemaUtil.getAttributeSchema(attributeParts[0] + "." + attributeParts[1], schema);
                if (subAttributeSchema != null) {
                    if (subAttributeSchema.getMultiValued()) {
                        MultiValuedAttribute multiValuedSubAttribute = new MultiValuedAttribute(subAttributeSchema.getName());
                        DefaultAttributeFactory.createAttribute(subAttributeSchema, multiValuedSubAttribute);
                        multiValuedAttribute.setAttributePrimitiveValue(operation.getValues());
                        complexAttribute.setSubAttribute(multiValuedSubAttribute);
                        multiValuedAttribute.setAttributeValue(complexAttribute);
                        oldResource.setAttribute(multiValuedAttribute);
                    } else {
                        SimpleAttribute simpleAttribute = new SimpleAttribute(subAttributeSchema.getName(), operation.getValues());
                        DefaultAttributeFactory.createAttribute(subAttributeSchema, simpleAttribute);
                        complexAttribute.setSubAttribute(simpleAttribute);
                        multiValuedAttribute.setAttributeValue(complexAttribute);
                        oldResource.setAttribute(multiValuedAttribute);
                    }
                } else {
                    throw new BadRequestException("Attribute : " + attributeParts[0] + "." + attributeParts[1] + "does not exists.", ResponseCodeConstants.INVALID_PATH);
                }
            } else {
                ComplexAttribute extensionComplexAttribute = new ComplexAttribute(attributeSchema.getName());
                DefaultAttributeFactory.createAttribute(attributeSchema, extensionComplexAttribute);
                AttributeSchema subAttributeSchema = SchemaUtil.getAttributeSchema(attributeParts[0] + "." + attributeParts[1], schema);
                if (subAttributeSchema != null) {
                    if (subAttributeSchema.getMultiValued()) {
                        MultiValuedAttribute multiValuedAttribute = new MultiValuedAttribute(subAttributeSchema.getName());
                        DefaultAttributeFactory.createAttribute(subAttributeSchema, multiValuedAttribute);
                        multiValuedAttribute.setAttributeValue(decoder.buildComplexAttribute(subAttributeSchema, (JSONObject) operation.getValues()));
                        oldResource.setAttribute(multiValuedAttribute);
                    } else {
                        throw new BadRequestException("Attribute : " + attributeParts[1] + "is not a multi valued attribute.", ResponseCodeConstants.INVALID_PATH);
                    }
                } else {
                    throw new BadRequestException("Attribute : " + attributeParts[0] + "." + attributeParts[1] + "does not exists.", ResponseCodeConstants.INVALID_PATH);
                }
            }
        } else {
            throw new BadRequestException("No such attribute with the name : " + attributeParts[0], ResponseCodeConstants.INVALID_PATH);
        }
    }
    return oldResource;
}
Also used : MultiValuedAttribute(org.wso2.charon3.core.attributes.MultiValuedAttribute) SimpleAttribute(org.wso2.charon3.core.attributes.SimpleAttribute) ComplexAttribute(org.wso2.charon3.core.attributes.ComplexAttribute) Attribute(org.wso2.charon3.core.attributes.Attribute) SimpleAttribute(org.wso2.charon3.core.attributes.SimpleAttribute) ComplexAttribute(org.wso2.charon3.core.attributes.ComplexAttribute) MultiValuedAttribute(org.wso2.charon3.core.attributes.MultiValuedAttribute) JSONObject(org.json.JSONObject) AttributeSchema(org.wso2.charon3.core.schema.AttributeSchema) Iterator(java.util.Iterator) BadRequestException(org.wso2.charon3.core.exceptions.BadRequestException) ArrayList(java.util.ArrayList) List(java.util.List) Map(java.util.Map)

Example 5 with CharonException

use of org.wso2.charon.core.exceptions.CharonException in project charon by wso2.

the class PatchOperationUtil method doPatchReplaceOnPathWithoutFiltersForLevelThree.

/*
     * This performs patch on resource based on the path value.No filter is specified here.
     * And this is for level three attributes.
     * @param oldResource
     * @param schema
     * @param decoder
     * @param operation
     * @param attributeParts
     * @throws BadRequestException
     * @throws CharonException
     * @throws JSONException
     */
private static void doPatchReplaceOnPathWithoutFiltersForLevelThree(AbstractSCIMObject oldResource, SCIMResourceTypeSchema schema, JSONDecoder decoder, PatchOperation operation, String[] attributeParts) throws BadRequestException, CharonException {
    Attribute attribute = oldResource.getAttribute(attributeParts[0]);
    if (attribute != null) {
        Attribute subAttribute = ((ComplexAttribute) attribute).getSubAttribute(attributeParts[1]);
        if (subAttribute != null) {
            if (subAttribute.getMultiValued()) {
                List<Attribute> subValues = ((MultiValuedAttribute) subAttribute).getAttributeValues();
                if (subValues != null) {
                    for (Attribute subValue : subValues) {
                        Attribute subSubAttribute = subValue.getSubAttribute(attributeParts[2]);
                        if (subSubAttribute != null) {
                            AttributeSchema subSubAttributeSchema = SchemaUtil.getAttributeSchema(attributeParts[0] + "." + attributeParts[1] + "." + attributeParts[2], schema);
                            if (subSubAttributeSchema != null) {
                                if (subSubAttribute.getMutability().equals(SCIMDefinitions.Mutability.READ_ONLY) || subSubAttribute.getMutability().equals(SCIMDefinitions.Mutability.IMMUTABLE)) {
                                    throw new BadRequestException("Can not replace a immutable attribute or a read-only attribute", ResponseCodeConstants.MUTABILITY);
                                } else {
                                    if (subSubAttribute.getMultiValued()) {
                                        JSONArray jsonArray = null;
                                        try {
                                            jsonArray = new JSONArray(new JSONTokener(operation.getValues().toString()));
                                        } catch (JSONException e) {
                                            throw new BadRequestException(ResponseCodeConstants.INVALID_SYNTAX);
                                        }
                                        MultiValuedAttribute multiValuedAttribute = decoder.buildPrimitiveMultiValuedAttribute(subSubAttributeSchema, jsonArray);
                                        ((ComplexAttribute) subValue).removeSubAttribute(attributeParts[2]);
                                        ((ComplexAttribute) subValue).setSubAttribute(multiValuedAttribute);
                                    } else {
                                        SimpleAttribute simpleAttribute = decoder.buildSimpleAttribute(subSubAttributeSchema, operation.getValues());
                                        ((ComplexAttribute) subValue).removeSubAttribute(attributeParts[2]);
                                        ((ComplexAttribute) subValue).setSubAttribute(simpleAttribute);
                                    }
                                }
                            } else {
                                throw new BadRequestException("No such attribute with the name : " + attributeParts[2], ResponseCodeConstants.NO_TARGET);
                            }
                        } else {
                            createSubSubAttributeOnResourceWithPathWithoutFiltersForLevelThree(schema, decoder, operation, attributeParts, (ComplexAttribute) subValue);
                        }
                    }
                }
            } else {
                Attribute subSubAttribute = ((ComplexAttribute) subAttribute).getSubAttribute(attributeParts[2]);
                if (subSubAttribute != null) {
                    ((SimpleAttribute) subSubAttribute).setValue(operation.getValues());
                } else {
                    createSubSubAttributeOnResourceWithPathWithoutFiltersForLevelThree(schema, decoder, operation, attributeParts, (ComplexAttribute) subAttribute);
                }
            }
        } else {
            createSubAttributeOnResourceWithPathWithoutFiltersForLevelThree(schema, operation, attributeParts, (ComplexAttribute) attribute);
        }
    } else {
        createAttributeOnResourceWithPathWithoutFiltersForLevelThree(oldResource, schema, operation, attributeParts);
    }
}
Also used : JSONTokener(org.json.JSONTokener) MultiValuedAttribute(org.wso2.charon3.core.attributes.MultiValuedAttribute) SimpleAttribute(org.wso2.charon3.core.attributes.SimpleAttribute) ComplexAttribute(org.wso2.charon3.core.attributes.ComplexAttribute) Attribute(org.wso2.charon3.core.attributes.Attribute) SimpleAttribute(org.wso2.charon3.core.attributes.SimpleAttribute) ComplexAttribute(org.wso2.charon3.core.attributes.ComplexAttribute) AttributeSchema(org.wso2.charon3.core.schema.AttributeSchema) JSONArray(org.json.JSONArray) BadRequestException(org.wso2.charon3.core.exceptions.BadRequestException) JSONException(org.json.JSONException) MultiValuedAttribute(org.wso2.charon3.core.attributes.MultiValuedAttribute)

Aggregations

CharonException (org.wso2.charon3.core.exceptions.CharonException)153 SCIMResponse (org.wso2.charon3.core.protocol.SCIMResponse)137 SCIMResourceTypeSchema (org.wso2.charon3.core.schema.SCIMResourceTypeSchema)120 User (org.wso2.charon3.core.objects.User)114 BadRequestException (org.wso2.charon3.core.exceptions.BadRequestException)109 Test (org.testng.annotations.Test)106 JSONObject (org.json.JSONObject)88 SimpleAttribute (org.wso2.charon3.core.attributes.SimpleAttribute)80 ComplexAttribute (org.wso2.charon3.core.attributes.ComplexAttribute)73 MultiValuedAttribute (org.wso2.charon3.core.attributes.MultiValuedAttribute)63 JSONDecoder (org.wso2.charon3.core.encoder.JSONDecoder)59 HashMap (java.util.HashMap)55 Group (org.wso2.charon3.core.objects.Group)55 AbstractSCIMObject (org.wso2.charon3.core.objects.AbstractSCIMObject)52 DataProvider (org.testng.annotations.DataProvider)51 InternalErrorException (org.wso2.charon3.core.exceptions.InternalErrorException)49 Attribute (org.wso2.charon3.core.attributes.Attribute)46 NotFoundException (org.wso2.charon3.core.exceptions.NotFoundException)46 NotImplementedException (org.wso2.charon3.core.exceptions.NotImplementedException)42 ArrayList (java.util.ArrayList)37