Search in sources :

Example 1 with OBReadProduct2

use of uk.org.openbanking.datamodel.account.OBReadProduct2 in project openbanking-aspsp by OpenBankingToolkit.

the class ProductsApiController method getAccountProduct.

@Override
public ResponseEntity<OBReadProduct2> getAccountProduct(@ApiParam(value = "A unique identifier used to identify the account resource.", required = true) @PathVariable("AccountId") String accountId, @ApiParam(value = "Page number.", required = false, defaultValue = "0") @RequestParam(value = "page", defaultValue = "0") String page, @ApiParam(value = "The unique id of the ASPSP to which the request is issued. The unique id will be issued by OB.", required = true) @RequestHeader(value = "x-fapi-financial-id", required = true) String xFapiFinancialId, @ApiParam(value = "An Authorisation Token as per https://tools.ietf.org/html/rfc6750", required = true) @RequestHeader(value = "Authorization", required = true) String authorization, @ApiParam(value = "The time when the PSU last logged in with the TPP.  All dates in the HTTP headers are represented as RFC 7231 Full Dates. An example is below:  Sun, 10 Sep 2017 19:43:31 UTC") @RequestHeader(value = "x-fapi-customer-last-logged-time", required = false) @DateTimeFormat(pattern = HTTP_DATE_FORMAT) DateTime xFapiCustomerLastLoggedTime, @ApiParam(value = "The PSU's IP address if the PSU is currently logged in with the TPP.") @RequestHeader(value = "x-fapi-customer-ip-address", required = false) String xFapiCustomerIpAddress, @ApiParam(value = "An RFC4122 UID used as a correlation id.") @RequestHeader(value = "x-fapi-interaction-id", required = false) String xFapiInteractionId, @ApiParam(value = "Indicates the user-agent that the PSU is using.") @RequestHeader(value = "x-customer-user-agent", required = false) String xCustomerUserAgent, HttpServletRequest request, Principal principal) throws OBErrorResponseException {
    return RSEndpointWrapperService.<OBReadProduct2>accountAndTransactionEndpoint().authorization(authorization).xFapiFinancialId(xFapiFinancialId).principal(principal).accountId(accountId).minimumPermissions(FRExternalPermissionsCode.READPRODUCTS).execute((accountRequest, permissions, pageNumber) -> {
        LOGGER.info("Read product for account {} with minimumPermissions {}", accountId, permissions);
        HttpHeaders additionalHttpHeaders = new HttpHeaders();
        additionalHttpHeaders.addAll("x-ob-permissions", permissions.stream().map(FRExternalPermissionsCode::name).collect(Collectors.toList()));
        additionalHttpHeaders.add("x-ob-url", new ServletServerHttpRequest(request).getURI().toString());
        return rsStoreGateway.toRsStore(request, additionalHttpHeaders, OBReadProduct2.class);
    });
}
Also used : HttpHeaders(org.springframework.http.HttpHeaders) ServletServerHttpRequest(org.springframework.http.server.ServletServerHttpRequest) OBReadProduct2(uk.org.openbanking.datamodel.account.OBReadProduct2) FRExternalPermissionsCode(com.forgerock.openbanking.common.model.openbanking.domain.account.common.FRExternalPermissionsCode)

Example 2 with OBReadProduct2

use of uk.org.openbanking.datamodel.account.OBReadProduct2 in project openbanking-aspsp by OpenBankingToolkit.

the class ProductsApiController method getAccountProduct.

@Override
public ResponseEntity<OBReadProduct2> getAccountProduct(@ApiParam(value = "A unique identifier used to identify the account resource.", required = true) @PathVariable("AccountId") String accountId, @ApiParam(value = "Page number.", required = false, defaultValue = "0") @RequestParam(value = "page", defaultValue = "0") int page, @ApiParam(value = "The unique id of the ASPSP to which the request is issued. The unique id will be issued by OB.", required = true) @RequestHeader(value = "x-fapi-financial-id", required = true) String xFapiFinancialId, @ApiParam(value = "An Authorisation Token as per https://tools.ietf.org/html/rfc6750", required = true) @RequestHeader(value = "Authorization", required = true) String authorization, @ApiParam(value = "The time when the PSU last logged in with the TPP.  All dates in the HTTP headers are represented as RFC 7231 Full Dates. An example is below:  Sun, 10 Sep 2017 19:43:31 UTC") @RequestHeader(value = "x-fapi-customer-last-logged-time", required = false) @DateTimeFormat(pattern = HTTP_DATE_FORMAT) DateTime xFapiCustomerLastLoggedTime, @ApiParam(value = "The PSU's IP address if the PSU is currently logged in with the TPP.") @RequestHeader(value = "x-fapi-customer-ip-address", required = false) String xFapiCustomerIpAddress, @ApiParam(value = "An RFC4122 UID used as a correlation id.") @RequestHeader(value = "x-fapi-interaction-id", required = false) String xFapiInteractionId, @RequestHeader(value = "x-customer-user-agent", required = false) String xCustomerUserAgent, @RequestHeader(value = "x-ob-permissions", required = true) List<OBExternalPermissions1Code> permissions, @RequestHeader(value = "x-ob-url", required = true) String httpUrl) throws OBErrorResponseException {
    LOGGER.info("Read product for account {} with minimumPermissions {}", accountId, permissions);
    Page<FRProduct> products = frProductRepository.byAccountIdWithPermissions(accountId, toFRExternalPermissionsCodeList(permissions), PageRequest.of(page, PAGE_LIMIT_PRODUCTS));
    int totalPage = products.getTotalPages();
    return ResponseEntity.ok(new OBReadProduct2().data(new OBReadProduct2Data().product(products.getContent().stream().map(p -> accountDataInternalIdFilter.apply(p.getProduct())).collect(Collectors.toList()))).links(PaginationUtil.generateLinks(httpUrl, page, totalPage)).meta(PaginationUtil.generateMetaData(totalPage)));
}
Also used : OBReadProduct2Data(uk.org.openbanking.datamodel.account.OBReadProduct2Data) OBReadProduct2(uk.org.openbanking.datamodel.account.OBReadProduct2) FRProduct(com.forgerock.openbanking.common.model.openbanking.persistence.account.FRProduct)

Example 3 with OBReadProduct2

use of uk.org.openbanking.datamodel.account.OBReadProduct2 in project openbanking-aspsp by OpenBankingToolkit.

the class ProductsApiController method getProducts.

@Override
public ResponseEntity<OBReadProduct2> getProducts(@ApiParam(value = "The unique id of the ASPSP to which the request is issued. " + "The unique id will be issued by OB.", required = true) @RequestHeader(value = "x-fapi-financial-id", required = true) String xFapiFinancialId, @ApiParam(value = "Page number.", required = false, defaultValue = "0") @RequestParam(value = "page", defaultValue = "0") int page, @ApiParam(value = "An Authorisation Token as per https://tools.ietf.org/html/rfc6750", required = true) @RequestHeader(value = "Authorization", required = true) String authorization, @ApiParam(value = "The time when the PSU last logged in with the TPP.  All dates in the HTTP headers are " + "represented as RFC 7231 Full Dates. An example is below:  Sun, 10 Sep 2017 19:43:31 UTC") @RequestHeader(value = "x-fapi-customer-last-logged-time", required = false) @DateTimeFormat(pattern = HTTP_DATE_FORMAT) DateTime xFapiCustomerLastLoggedTime, @ApiParam(value = "The PSU's IP address if the PSU is currently logged in with the TPP.") @RequestHeader(value = "x-fapi-customer-ip-address", required = false) String xFapiCustomerIpAddress, @ApiParam(value = "An RFC4122 UID used as a correlation id.") @RequestHeader(value = "x-fapi-interaction-id", required = false) String xFapiInteractionId, @ApiParam(value = "Indicates the user-agent that the PSU is using.") @RequestHeader(value = "x-customer-user-agent", required = false) String xCustomerUserAgent, @ApiParam(value = "The OB account IDs") @RequestHeader(value = "x-ob-account-ids", required = true) List<String> accountIds, @ApiParam(value = "The OB permissions") @RequestHeader(value = "x-ob-permissions", required = true) List<OBExternalPermissions1Code> permissions, @ApiParam(value = "The origin http url") @RequestHeader(value = "x-ob-url", required = true) String httpUrl) throws OBErrorResponseException {
    LOGGER.info("Reading products from account ids {}", accountIds);
    Page<FRProduct> products = frProductRepository.byAccountIdInWithPermissions(accountIds, toFRExternalPermissionsCodeList(permissions), PageRequest.of(page, PAGE_LIMIT_PRODUCTS));
    int totalPage = products.getTotalPages();
    return ResponseEntity.ok(new OBReadProduct2().data(new OBReadProduct2Data().product(products.getContent().stream().map(p -> accountDataInternalIdFilter.apply(p.getProduct())).collect(Collectors.toList()))).links(PaginationUtil.generateLinks(httpUrl, page, totalPage)).meta(PaginationUtil.generateMetaData(totalPage)));
}
Also used : OBReadProduct2Data(uk.org.openbanking.datamodel.account.OBReadProduct2Data) OBReadProduct2(uk.org.openbanking.datamodel.account.OBReadProduct2) FRProduct(com.forgerock.openbanking.common.model.openbanking.persistence.account.FRProduct)

Aggregations

OBReadProduct2 (uk.org.openbanking.datamodel.account.OBReadProduct2)3 FRProduct (com.forgerock.openbanking.common.model.openbanking.persistence.account.FRProduct)2 OBReadProduct2Data (uk.org.openbanking.datamodel.account.OBReadProduct2Data)2 FRExternalPermissionsCode (com.forgerock.openbanking.common.model.openbanking.domain.account.common.FRExternalPermissionsCode)1 HttpHeaders (org.springframework.http.HttpHeaders)1 ServletServerHttpRequest (org.springframework.http.server.ServletServerHttpRequest)1