All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.nem.symbol.sdk.infrastructure.vertx.NamespaceRepositoryVertxImpl Maven / Gradle / Ivy

/*
 * Copyright 2020 NEM
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package io.nem.symbol.sdk.infrastructure.vertx;

import static io.nem.symbol.core.utils.MapperUtils.toNamespaceId;

import io.nem.symbol.core.utils.MapperUtils;
import io.nem.symbol.sdk.api.NamespaceRepository;
import io.nem.symbol.sdk.api.NamespaceSearchCriteria;
import io.nem.symbol.sdk.api.Page;
import io.nem.symbol.sdk.model.account.AccountNames;
import io.nem.symbol.sdk.model.account.Address;
import io.nem.symbol.sdk.model.mosaic.MosaicId;
import io.nem.symbol.sdk.model.mosaic.MosaicNames;
import io.nem.symbol.sdk.model.namespace.AddressAlias;
import io.nem.symbol.sdk.model.namespace.Alias;
import io.nem.symbol.sdk.model.namespace.AliasType;
import io.nem.symbol.sdk.model.namespace.EmptyAlias;
import io.nem.symbol.sdk.model.namespace.MosaicAlias;
import io.nem.symbol.sdk.model.namespace.NamespaceId;
import io.nem.symbol.sdk.model.namespace.NamespaceInfo;
import io.nem.symbol.sdk.model.namespace.NamespaceName;
import io.nem.symbol.sdk.model.namespace.NamespaceRegistrationType;
import io.nem.symbol.sdk.openapi.vertx.api.NamespaceRoutesApi;
import io.nem.symbol.sdk.openapi.vertx.api.NamespaceRoutesApiImpl;
import io.nem.symbol.sdk.openapi.vertx.invoker.ApiClient;
import io.nem.symbol.sdk.openapi.vertx.model.AccountNamesDTO;
import io.nem.symbol.sdk.openapi.vertx.model.AccountsNamesDTO;
import io.nem.symbol.sdk.openapi.vertx.model.Addresses;
import io.nem.symbol.sdk.openapi.vertx.model.AliasTypeEnum;
import io.nem.symbol.sdk.openapi.vertx.model.MosaicIds;
import io.nem.symbol.sdk.openapi.vertx.model.MosaicNamesDTO;
import io.nem.symbol.sdk.openapi.vertx.model.MosaicsNamesDTO;
import io.nem.symbol.sdk.openapi.vertx.model.NamespaceDTO;
import io.nem.symbol.sdk.openapi.vertx.model.NamespaceIds;
import io.nem.symbol.sdk.openapi.vertx.model.NamespaceInfoDTO;
import io.nem.symbol.sdk.openapi.vertx.model.NamespaceNameDTO;
import io.nem.symbol.sdk.openapi.vertx.model.NamespacePage;
import io.nem.symbol.sdk.openapi.vertx.model.NamespaceRegistrationTypeEnum;
import io.nem.symbol.sdk.openapi.vertx.model.Order;
import io.reactivex.Observable;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
import java.util.function.Consumer;
import java.util.stream.Collectors;

/**
 * Namespace http repository.
 *
 * @since 1.0
 */
public class NamespaceRepositoryVertxImpl extends AbstractRepositoryVertxImpl
    implements NamespaceRepository {

  private final NamespaceRoutesApi client;

  public NamespaceRepositoryVertxImpl(ApiClient apiClient) {
    super(apiClient);
    this.client = new NamespaceRoutesApiImpl(apiClient);
  }

  public NamespaceRoutesApi getClient() {
    return client;
  }

  @Override
  public Observable getNamespace(NamespaceId namespaceId) {
    Consumer>> callback =
        handler -> getClient().getNamespace(namespaceId.getIdAsHex(), handler);
    return exceptionHandling(call(callback).map(this::toNamespaceInfo));
  }

  @Override
  public Observable> search(NamespaceSearchCriteria criteria) {

    String ownerAddress = toDto(criteria.getOwnerAddress());
    NamespaceRegistrationTypeEnum registrationType =
        criteria.getRegistrationType() == null
            ? null
            : NamespaceRegistrationTypeEnum.fromValue(criteria.getRegistrationType().getValue());
    String level0 = criteria.getLevel0();
    AliasTypeEnum aliasType =
        criteria.getAliasType() == null
            ? null
            : AliasTypeEnum.fromValue(criteria.getAliasType().getValue());
    Integer pageSize = criteria.getPageSize();
    Integer pageNumber = criteria.getPageNumber();
    String offset = criteria.getOffset();
    Order order = toDto(criteria.getOrder());

    Consumer>> callback =
        handler ->
            getClient()
                .searchNamespaces(
                    ownerAddress,
                    registrationType,
                    level0,
                    aliasType,
                    pageSize,
                    pageNumber,
                    offset,
                    order,
                    handler);

    return exceptionHandling(
        call(callback)
            .map(
                page ->
                    this.toPage(
                        page.getPagination(),
                        page.getData().stream()
                            .map(this::toNamespaceInfo)
                            .collect(Collectors.toList()))));
  }

  @Override
  public Observable> getNamespaceNames(List namespaceIds) {

    NamespaceIds ids =
        new NamespaceIds()
            .namespaceIds(
                namespaceIds.stream().map(NamespaceId::getIdAsHex).collect(Collectors.toList()));

    Consumer>>> callback =
        handler -> client.getNamespacesNames(ids, handler);

    return exceptionHandling(
        call(callback)
            .flatMapIterable(item -> item)
            .map(this::toNamespaceName)
            .toList()
            .toObservable());
  }

  @Override
  public Observable> getMosaicsNames(List ids) {
    MosaicIds mosaicIds = new MosaicIds();
    mosaicIds.mosaicIds(ids.stream().map(MosaicId::getIdAsHex).collect(Collectors.toList()));
    Consumer>> callback =
        handler -> getClient().getMosaicsNames(mosaicIds, handler);
    return exceptionHandling(
        call(callback)
            .map(MosaicsNamesDTO::getMosaicNames)
            .flatMapIterable(item -> item)
            .map(this::toMosaicNames)
            .toList()
            .toObservable());
  }

  /**
   * Converts a {@link MosaicNamesDTO} into a {@link MosaicNames}
   *
   * @param dto {@link MosaicNamesDTO}
   * @return {@link MosaicNames}
   */
  private MosaicNames toMosaicNames(MosaicNamesDTO dto) {
    return new MosaicNames(
        MapperUtils.toMosaicId(dto.getMosaicId()),
        dto.getNames().stream().map(NamespaceName::new).collect(Collectors.toList()));
  }

  /**
   * Gets the MosaicId from a MosaicAlias
   *
   * @param namespaceId - the namespaceId of the namespace
   * @return Observable of {@link MosaicId}
   */
  @Override
  public Observable getLinkedMosaicId(NamespaceId namespaceId) {
    Consumer>> callback =
        handler -> getClient().getNamespace(namespaceId.getIdAsHex(), handler);
    return exceptionHandling(
        call(callback).map(namespaceInfoDTO -> this.toMosaicId(namespaceInfoDTO.getNamespace())));
  }

  /**
   * Gets the Address from a AddressAlias
   *
   * @param namespaceId - the namespaceId of the namespace
   * @return Observable of {@link MosaicId}
   */
  @Override
  public Observable
getLinkedAddress(NamespaceId namespaceId) { Consumer>> callback = handler -> getClient().getNamespace(namespaceId.getIdAsHex(), handler); return exceptionHandling( call(callback).map(namespaceInfoDTO -> this.toAddress(namespaceInfoDTO.getNamespace()))); } private NamespaceName toNamespaceName(NamespaceNameDTO dto) { return new NamespaceName( toNamespaceId(dto.getId()), dto.getName(), Optional.ofNullable(toNamespaceId(dto.getParentId()))); } /** * Create a NamespaceInfo from a NamespaceInfoDTO and a NetworkType * * @param namespaceInfoDTO namespaceInfo */ private NamespaceInfo toNamespaceInfo(NamespaceInfoDTO namespaceInfoDTO) { return new NamespaceInfo( namespaceInfoDTO.getId(), namespaceInfoDTO.getMeta().getActive(), namespaceInfoDTO.getMeta().getIndex(), namespaceInfoDTO.getMeta().getId(), NamespaceRegistrationType.rawValueOf( namespaceInfoDTO.getNamespace().getRegistrationType().getValue()), namespaceInfoDTO.getNamespace().getDepth(), this.extractLevels(namespaceInfoDTO), toNamespaceId(namespaceInfoDTO.getNamespace().getParentId()), MapperUtils.toUnresolvedAddress(namespaceInfoDTO.getNamespace().getOwnerAddress()), namespaceInfoDTO.getNamespace().getStartHeight(), namespaceInfoDTO.getNamespace().getEndHeight(), this.extractAlias(namespaceInfoDTO.getNamespace())); } /** Create a MosaicId from a NamespaceDTO */ private MosaicId toMosaicId(NamespaceDTO namespaceDTO) { MosaicId mosaicId = null; if (namespaceDTO.getAlias() != null && AliasType.MOSAIC.getValue().equals(namespaceDTO.getAlias().getType().getValue())) { mosaicId = MapperUtils.toMosaicId(namespaceDTO.getAlias().getMosaicId()); } return mosaicId; } /** Create a Address from a NamespaceDTO */ private Address toAddress(NamespaceDTO namespaceDTO) { Address address = null; if (namespaceDTO.getAlias() != null && AliasType.ADDRESS.getValue().equals(namespaceDTO.getAlias().getType().getValue())) { String encodedAddress = namespaceDTO.getAlias().getAddress(); if (encodedAddress != null) { address = MapperUtils.toAddress(encodedAddress); } } return address; } @Override public Observable> getAccountsNames(List
addresses) { Addresses accountIds = new Addresses() .addresses(addresses.stream().map(Address::plain).collect(Collectors.toList())); return getAccountsNames(accountIds); } private Observable> getAccountsNames(Addresses accountIds) { Consumer>> callback = handler -> getClient().getAccountsNames(accountIds, handler); return exceptionHandling( call(callback) .map(AccountsNamesDTO::getAccountNames) .flatMapIterable(item -> item) .map(this::toAccountNames) .toList() .toObservable()); } /** * Converts a {@link AccountNamesDTO} into a {@link AccountNames} * * @param dto {@link AccountNamesDTO} * @return {@link AccountNames} */ private AccountNames toAccountNames(AccountNamesDTO dto) { return new AccountNames( MapperUtils.toAddress(dto.getAddress()), dto.getNames().stream().map(NamespaceName::new).collect(Collectors.toList())); } /** Extract a list of NamespaceId levels from a NamespaceInfoDTO */ private List extractLevels(NamespaceInfoDTO namespaceInfoDTO) { List levels = new ArrayList<>(); if (namespaceInfoDTO.getNamespace().getLevel0() != null) { levels.add(toNamespaceId(namespaceInfoDTO.getNamespace().getLevel0())); } if (namespaceInfoDTO.getNamespace().getLevel1() != null) { levels.add(toNamespaceId(namespaceInfoDTO.getNamespace().getLevel1())); } if (namespaceInfoDTO.getNamespace().getLevel2() != null) { levels.add(toNamespaceId(namespaceInfoDTO.getNamespace().getLevel2())); } return levels; } /** * Extract the alias from a NamespaceDTO * * @param namespaceDTO the dto * @return the address, mosaic or empty alias. */ private Alias extractAlias(NamespaceDTO namespaceDTO) { Alias alias = new EmptyAlias(); if (namespaceDTO.getAlias() != null) { if (namespaceDTO.getAlias().getType().getValue().equals(AliasType.MOSAIC.getValue())) { return new MosaicAlias(toMosaicId(namespaceDTO)); } else if (namespaceDTO .getAlias() .getType() .getValue() .equals(AliasType.ADDRESS.getValue())) { return new AddressAlias(toAddress(namespaceDTO)); } } return alias; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy