Search in sources :

Example 31 with Authorisation

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

the class RegistryEntryTypeService method createNewRegistryEntryType.

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

Example 32 with Authorisation

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

the class SignOffMethodService method handleUpdate.

/**
 * Update a SignOffMethod identified by its systemId
 * <p>
 * Copy the values you are allowed to change, code and description
 *
 * @param SignOffMethod
 * @return the updated SignOffMethod
 */
@Override
public MetadataHateoas handleUpdate(String systemId, Long version, SignOffMethod SignOffMethod) {
    SignOffMethod existingSignOffMethod = getSignOffMethodOrThrow(systemId);
    // Copy all the values you are allowed to copy ....
    if (null != existingSignOffMethod.getCode()) {
        existingSignOffMethod.setCode(existingSignOffMethod.getCode());
    }
    if (null != existingSignOffMethod.getDescription()) {
        existingSignOffMethod.setDescription(existingSignOffMethod.getDescription());
    }
    // Note this can potentially result in a NoarkConcurrencyException
    // exception
    existingSignOffMethod.setVersion(version);
    MetadataHateoas SignOffMethodHateoas = new MetadataHateoas(SignOffMethodRepository.save(existingSignOffMethod));
    metadataHateoasHandler.addLinks(SignOffMethodHateoas, new Authorisation());
    applicationEventPublisher.publishEvent(new AfterNoarkEntityUpdatedEvent(this, existingSignOffMethod));
    return SignOffMethodHateoas;
}
Also used : SignOffMethod(nikita.common.model.noark5.v4.metadata.SignOffMethod) Authorisation(nikita.webapp.security.Authorisation) MetadataHateoas(nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas) AfterNoarkEntityUpdatedEvent(nikita.webapp.web.events.AfterNoarkEntityUpdatedEvent)

Example 33 with Authorisation

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

the class SignOffMethodService method findByCode.

/**
 * retrieve all SignOffMethod that have a particular code.
 * <br>
 * Note, this will be replaced by OData search.
 *
 * @param code
 * @return A list of SignOffMethod objects wrapped as a MetadataHateoas
 * object
 */
@Override
public MetadataHateoas findByCode(String code) {
    MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) SignOffMethodRepository.findByCode(code), SIGN_OFF_METHOD);
    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 34 with Authorisation

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

the class VariantFormatService method find.

// find by systemId
/**
 * Retrieve a single VariantFormat object identified by systemId
 *
 * @param systemId systemId of the VariantFormat you wish to retrieve
 * @return single VariantFormat object wrapped as a MetadataHateoas object
 */
@Override
public MetadataHateoas find(String systemId) {
    MetadataHateoas metadataHateoas = new MetadataHateoas(variantFormatRepository.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)

Example 35 with Authorisation

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

the class VariantFormatService method findAll.

// All READ operations
/**
 * Retrieve a list of all VariantFormat objects
 *
 * @return list of VariantFormat objects wrapped as a
 * MetadataHateoas object
 */
@Override
public MetadataHateoas findAll() {
    MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) variantFormatRepository.findAll(), VARIANT_FORMAT);
    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)

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