Search in sources :

Example 56 with Authorisation

use of nikita.webapp.security.Authorisation in project nikita-noark5-core by HiOA-ABI.

the class CaseStatusService method createNewCaseStatus.

// All CREATE operations
/**
 * Persists a new CaseStatus object to the database.
 *
 * @param caseStatus CaseStatus object with values set
 * @return the newly persisted CaseStatus object wrapped as a
 * MetadataHateoas object
 */
@Override
public MetadataHateoas createNewCaseStatus(CaseStatus caseStatus) {
    caseStatus.setDeleted(false);
    caseStatus.setOwnedBy(SecurityContextHolder.getContext().getAuthentication().getName());
    MetadataHateoas metadataHateoas = new MetadataHateoas(caseStatusRepository.save(caseStatus));
    metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
    return metadataHateoas;
}
Also used : Authorisation(nikita.webapp.security.Authorisation) MetadataHateoas(nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas)

Example 57 with Authorisation

use of nikita.webapp.security.Authorisation in project nikita-noark5-core by HiOA-ABI.

the class CaseStatusService method handleUpdate.

/**
 * Update a CaseStatus identified by its systemId
 * <p>
 * Copy the values you are allowed to change, code and description
 *
 * @param systemId   The systemId of the caseStatus object you wish to
 *                   update
 * @param caseStatus The updated caseStatus object. Note the values
 *                   you are allowed to change are copied from this
 *                   object. This object is not persisted.
 * @return the updated caseStatus
 */
@Override
public MetadataHateoas handleUpdate(String systemId, Long version, CaseStatus caseStatus) {
    CaseStatus existingCaseStatus = getCaseStatusOrThrow(systemId);
    // Copy all the values you are allowed to copy ....
    if (null != existingCaseStatus.getCode()) {
        existingCaseStatus.setCode(existingCaseStatus.getCode());
    }
    if (null != existingCaseStatus.getDescription()) {
        existingCaseStatus.setDescription(existingCaseStatus.getDescription());
    }
    // Note this can potentially result in a NoarkConcurrencyException
    // exception
    existingCaseStatus.setVersion(version);
    MetadataHateoas caseStatusHateoas = new MetadataHateoas(caseStatusRepository.save(existingCaseStatus));
    metadataHateoasHandler.addLinks(caseStatusHateoas, new Authorisation());
    applicationEventPublisher.publishEvent(new AfterNoarkEntityUpdatedEvent(this, existingCaseStatus));
    return caseStatusHateoas;
}
Also used : CaseStatus(nikita.common.model.noark5.v4.metadata.CaseStatus) Authorisation(nikita.webapp.security.Authorisation) MetadataHateoas(nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas) AfterNoarkEntityUpdatedEvent(nikita.webapp.web.events.AfterNoarkEntityUpdatedEvent)

Example 58 with Authorisation

use of nikita.webapp.security.Authorisation in project nikita-noark5-core by HiOA-ABI.

the class ClassificationTypeService method findByDescription.

/**
 * Retrieve all ClassificationType that have a given description.
 * <br>
 * Note, this will be replaced by OData search.
 *
 * @param description Description of object you wish to retrieve. The
 *                    whole text, this is an exact search.
 * @return A list of ClassificationType objects wrapped as a MetadataHateoas
 * object
 */
@Override
public MetadataHateoas findByDescription(String description) {
    MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) classificationTypeRepository.findByDescription(description), CLASSIFICATION_TYPE);
    metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
    return metadataHateoas;
}
Also used : INikitaEntity(nikita.common.model.noark5.v4.interfaces.entities.INikitaEntity) Authorisation(nikita.webapp.security.Authorisation) List(java.util.List) MetadataHateoas(nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas)

Example 59 with Authorisation

use of nikita.webapp.security.Authorisation in project nikita-noark5-core by HiOA-ABI.

the class ClassificationTypeService method createNewClassificationType.

// All CREATE operations
/**
 * Persists a new ClassificationType object to the database.
 *
 * @param classificationType ClassificationType object with values set
 * @return the newly persisted ClassificationType object wrapped as a
 * MetadataHateoas object
 */
@Override
public MetadataHateoas createNewClassificationType(ClassificationType classificationType) {
    classificationType.setDeleted(false);
    classificationType.setOwnedBy(SecurityContextHolder.getContext().getAuthentication().getName());
    MetadataHateoas metadataHateoas = new MetadataHateoas(classificationTypeRepository.save(classificationType));
    metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
    return metadataHateoas;
}
Also used : Authorisation(nikita.webapp.security.Authorisation) MetadataHateoas(nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas)

Example 60 with Authorisation

use of nikita.webapp.security.Authorisation in project nikita-noark5-core by HiOA-ABI.

the class CommentTypeService method handleUpdate.

/**
 * Update a CommentType identified by its systemId
 * <p>
 * Copy the values you are allowed to change, code and description
 *
 * @param systemId    The systemId of the commentType object you wish to
 *                    update
 * @param commentType The updated commentType object. Note the values
 *                    you are allowed to change are copied from this
 *                    object. This object is not persisted.
 * @return the updated commentType
 */
@Override
public MetadataHateoas handleUpdate(String systemId, Long version, CommentType commentType) {
    CommentType existingCommentType = getCommentTypeOrThrow(systemId);
    // Copy all the values you are allowed to copy ....
    if (null != existingCommentType.getCode()) {
        existingCommentType.setCode(existingCommentType.getCode());
    }
    if (null != existingCommentType.getDescription()) {
        existingCommentType.setDescription(existingCommentType.getDescription());
    }
    // Note this can potentially result in a NoarkConcurrencyException
    // exception
    existingCommentType.setVersion(version);
    MetadataHateoas commentTypeHateoas = new MetadataHateoas(commentTypeRepository.save(existingCommentType));
    metadataHateoasHandler.addLinks(commentTypeHateoas, new Authorisation());
    applicationEventPublisher.publishEvent(new AfterNoarkEntityUpdatedEvent(this, existingCommentType));
    return commentTypeHateoas;
}
Also used : CommentType(nikita.common.model.noark5.v4.metadata.CommentType) Authorisation(nikita.webapp.security.Authorisation) MetadataHateoas(nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas) AfterNoarkEntityUpdatedEvent(nikita.webapp.web.events.AfterNoarkEntityUpdatedEvent)

Aggregations

Authorisation (nikita.webapp.security.Authorisation)212 MetadataHateoas (nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas)121 Counted (com.codahale.metrics.annotation.Counted)98 ApiOperation (io.swagger.annotations.ApiOperation)87 ApiResponses (io.swagger.annotations.ApiResponses)87 List (java.util.List)76 INikitaEntity (nikita.common.model.noark5.v4.interfaces.entities.INikitaEntity)75 AfterNoarkEntityUpdatedEvent (nikita.webapp.web.events.AfterNoarkEntityUpdatedEvent)34 CaseFileHateoas (nikita.common.model.noark5.v4.hateoas.casehandling.CaseFileHateoas)13 NoarkEntityNotFoundException (nikita.common.util.exceptions.NoarkEntityNotFoundException)13 AfterNoarkEntityCreatedEvent (nikita.webapp.web.events.AfterNoarkEntityCreatedEvent)13 Class (nikita.common.model.noark5.v4.Class)8 Fonds (nikita.common.model.noark5.v4.Fonds)8 CaseFile (nikita.common.model.noark5.v4.casehandling.CaseFile)8 NikitaException (nikita.common.util.exceptions.NikitaException)8 DocumentDescription (nikita.common.model.noark5.v4.DocumentDescription)7 DocumentObject (nikita.common.model.noark5.v4.DocumentObject)7 ClassHateoas (nikita.common.model.noark5.v4.hateoas.ClassHateoas)7 DocumentObjectHateoas (nikita.common.model.noark5.v4.hateoas.DocumentObjectHateoas)7 FondsCreatorHateoas (nikita.common.model.noark5.v4.hateoas.FondsCreatorHateoas)7