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

io.evitadb.api.requestResponse.data.structure.predicate.ReferenceAttributeValueSerializablePredicate Maven / Gradle / Ivy

The newest version!
/*
 *
 *                         _ _        ____  ____
 *               _____   _(_) |_ __ _|  _ \| __ )
 *              / _ \ \ / / | __/ _` | | | |  _ \
 *             |  __/\ V /| | || (_| | |_| | |_) |
 *              \___| \_/ |_|\__\__,_|____/|____/
 *
 *   Copyright (c) 2023
 *
 *   Licensed under the Business Source License, Version 1.1 (the "License");
 *   you may not use this file except in compliance with the License.
 *   You may obtain a copy of the License at
 *
 *   https://github.com/FgForrest/evitaDB/blob/master/LICENSE
 *
 *   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.evitadb.api.requestResponse.data.structure.predicate;

import io.evitadb.api.exception.ContextMissingException;
import io.evitadb.api.requestResponse.EvitaRequest.AttributeRequest;
import io.evitadb.api.requestResponse.data.AttributesContract.AttributeKey;
import io.evitadb.api.requestResponse.data.AttributesContract.AttributeValue;
import io.evitadb.api.requestResponse.data.structure.SerializablePredicate;
import lombok.Getter;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.io.Serial;
import java.util.Locale;
import java.util.Objects;
import java.util.Optional;
import java.util.Set;
import java.util.stream.Stream;

/**
 * This predicate allows limiting number of attributes visible to the client based on query constraints.
 *
 * @author Jan Novotný ([email protected]), FG Forrest a.s. (c) 2021
 */
public class ReferenceAttributeValueSerializablePredicate implements SerializablePredicate {
	@Serial private static final long serialVersionUID = 2628834850476260927L;
	/**
	 * Contains information about single locale defined for the entity.
	 */
	@Nullable @Getter private final Locale locale;
	/**
	 * Contains information about implicitly derived locale during entity fetch.
	 */
	@Nullable @Getter private final Locale implicitLocale;
	/**
	 * Contains information about all attribute locales that has been fetched / requested for the entity.
	 */
	@Nullable private final Set locales;
	/**
	 * Contains information about all attribute names that has been requested for the entity reference.
	 */
	@Nonnull @Getter private final AttributeRequest referenceAttributes;

	ReferenceAttributeValueSerializablePredicate(
		@Nullable Locale implicitLocale,
		@Nullable Set locales,
		@Nonnull AttributeRequest referenceAttributes
	) {
		this.locale = Optional.ofNullable(implicitLocale)
			.orElseGet(() -> locales != null && locales.size() == 1 ? locales.iterator().next() : null);
		this.implicitLocale = implicitLocale;
		this.locales = locales;
		this.referenceAttributes = referenceAttributes;
	}

	/**
	 * Returns true if the attributes were fetched along with the entity.
	 */
	public boolean wasFetched() {
		return referenceAttributes.isRequiresEntityAttributes();
	}

	/**
	 * Returns true if the attributes in specified locale were fetched along with the entity.
	 */
	public boolean wasFetched(@Nonnull Locale locale) {
		return this.locales != null && this.locales.isEmpty() || this.locales.contains(locale);
	}

	/**
	 * Returns true if the attribute of particular name was fetched along with the entity.
	 */
	public boolean wasFetched(@Nonnull String attributeName) {
		return referenceAttributes.isRequiresEntityAttributes() && (referenceAttributes.attributeSet().isEmpty() || referenceAttributes.attributeSet().contains(attributeName));
	}

	/**
	 * Returns true if the attribute of particular name was in specified locale were fetched along with the entity.
	 */
	public boolean wasFetched(@Nonnull String attributeName, @Nonnull Locale locale) {
		return (referenceAttributes.isRequiresEntityAttributes() && (referenceAttributes.attributeSet().isEmpty() || referenceAttributes.attributeSet().contains(attributeName))) &&
			(this.locales != null && this.locales.isEmpty() || this.locales.contains(locale));
	}

	/**
	 * Method verifies that the requested attribute was fetched with the entity.
	 */
	public void checkFetched() throws ContextMissingException {
		if (!referenceAttributes.isRequiresEntityAttributes()) {
			throw ContextMissingException.referenceAttributeContextMissing();
		}
	}

	/**
	 * Method verifies that the requested attribute was fetched with the entity.
	 */
	public void checkFetched(@Nonnull AttributeKey attributeKey) throws ContextMissingException {
		if (!(referenceAttributes.isRequiresEntityAttributes() && (referenceAttributes.attributeSet().isEmpty() || referenceAttributes.attributeSet().contains(attributeKey.attributeName())))) {
			throw ContextMissingException.referenceAttributeContextMissing(attributeKey.attributeName());
		}
		if (attributeKey.localized() && !(Objects.equals(locale, attributeKey.locale()) || this.locales != null && this.locales.isEmpty() || this.locales.contains(attributeKey.locale()))) {
			throw ContextMissingException.attributeLocalizationContextMissing(
				attributeKey.attributeName(),
				attributeKey.locale(),
				Stream.concat(
					this.locale == null ? Stream.empty() : Stream.of(this.locale),
					this.locales.stream()
				).distinct()
			);
		}
	}

	public boolean isLocaleSet() {
		return this.locale != null || this.implicitLocale != null || this.locales != null;
	}

	@Override
	public boolean test(AttributeValue attributeValue) {
		if (referenceAttributes.isRequiresEntityAttributes()) {
			final AttributeKey key = attributeValue.key();
			final Locale attributeLocale = attributeValue.key().locale();
			final Set attributeSet = referenceAttributes.attributeSet();
			return attributeValue.exists() &&
			(
				!key.localized() ||
					(this.locales != null && (this.locales.isEmpty() || this.locales.contains(attributeLocale))) ||
					(this.implicitLocale != null && Objects.equals(this.implicitLocale, attributeLocale))
				) &&
				(attributeSet.isEmpty() || attributeSet.contains(key.attributeName()));
		} else {
			return false;
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy