org.eclipse.edc.query.IlikeOperatorPredicate Maven / Gradle / Ivy
/*
* Copyright (c) 2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
*
* Contributors:
* Bayerische Motoren Werke Aktiengesellschaft (BMW AG) - initial API and implementation
*
*/
package org.eclipse.edc.query;
import org.eclipse.edc.spi.query.OperatorPredicate;
import java.util.regex.Pattern;
public class IlikeOperatorPredicate implements OperatorPredicate {
@Override
public boolean test(Object property, Object operandRight) {
if (operandRight instanceof String stringOperand) {
var regexPattern = Pattern.quote(stringOperand.toLowerCase())
.replace("%", "\\E.*\\Q")
.replace("_", "\\E.\\Q");
return Pattern.compile("^" + regexPattern + "$")
.matcher(property.toString().toLowerCase())
.matches();
}
return false;
}
}