Search in sources :

Example 16 with Authorisation

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

the class FlowStatusService method handleUpdate.

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

Example 17 with Authorisation

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

the class FlowStatusService method findByDescription.

/**
 * Retrieve all FlowStatus 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 FlowStatus objects wrapped as a MetadataHateoas object
 */
@Override
public MetadataHateoas findByDescription(String description) {
    MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) flowStatusRepository.findByDescription(description), FLOW_STATUS);
    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 18 with Authorisation

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

the class FormatService method handleUpdate.

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

Example 19 with Authorisation

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

the class FormatService method createNewFormat.

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

Example 20 with Authorisation

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

the class FormatService method find.

// find by systemId
/**
 * Retrieve a single Format object identified by systemId
 *
 * @param systemId systemId of the Format you wish to retrieve
 * @return single Format object wrapped as a MetadataHateoas object
 */
@Override
public MetadataHateoas find(String systemId) {
    MetadataHateoas metadataHateoas = new MetadataHateoas(formatRepository.save(formatRepository.findBySystemId(systemId)));
    metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
    return metadataHateoas;
}
Also used : Authorisation(nikita.webapp.security.Authorisation) MetadataHateoas(nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas)

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