findContactByEmailAddress -> findContactByEmailAddressRegEx with validation

This commit is contained in:
Michael Hoennig 2024-12-13 06:14:36 +01:00
parent 025ebac846
commit 804ff2a5ee
5 changed files with 50 additions and 11 deletions

View File

@ -40,12 +40,12 @@ public class HsOfficeContactController implements HsOfficeContactsApi {
final String currentSubject,
final String assumedRoles,
final String caption,
final String emailAddress) {
final String emailAddressRegEx) {
context.define(currentSubject, assumedRoles);
validate("caption, emailAddress").atMaxOne(caption, emailAddress);
final var entities = emailAddress != null
? contactRepo.findContactByEmailAddress(emailAddress)
validate("caption, emailAddress").atMaxOne(caption, emailAddressRegEx);
final var entities = emailAddressRegEx != null
? contactRepo.findContactByEmailAddressRegEx(emailAddressRegEx)
: contactRepo.findContactByOptionalCaptionLike(caption);

View File

@ -4,6 +4,7 @@ import io.micrometer.core.annotation.Timed;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.Repository;
import jakarta.validation.ValidationException;
import jakarta.validation.constraints.NotNull;
import java.util.List;
import java.util.Optional;
@ -23,14 +24,22 @@ public interface HsOfficeContactRbacRepository extends Repository<HsOfficeContac
List<HsOfficeContactRbacEntity> findContactByOptionalCaptionLike(String caption);
@Query(value = """
SELECT c.* FROM hs_office.contact_rv c
WHERE jsonb_path_exists(c.emailaddresses, cast(:emailAddressExpression as jsonpath))
select c.* from hs_office.contact_rv c
where jsonb_path_exists(c.emailaddresses, cast(:emailAddressExpression as jsonpath))
""", nativeQuery = true)
@Timed("app.office.contacts.repo.findContactByEmailAddressImpl.rbac")
List<HsOfficeContactRbacEntity> findContactByEmailAddressImpl(final String emailAddressExpression);
default List<HsOfficeContactRbacEntity> findContactByEmailAddress(@NotNull final String emailAddress) {
return findContactByEmailAddressImpl("$.** ? (@ like_regex \"" + emailAddress.replace("%", ".*") + "\")");
default List<HsOfficeContactRbacEntity> findContactByEmailAddressRegEx(@NotNull final String emailAddress) {
return findContactByEmailAddressImpl("$.** ? (@ like_regex \"" + emailRegEx(emailAddress) + "\")");
}
static String emailRegEx(@NotNull String emailAddress) {
if (emailAddress.contains("'") || emailAddress.endsWith("\\") ) {
throw new ValidationException(
"emailAddress contains invalid characters: " + emailAddress);
}
return emailAddress.replace("%", ".*"); // the JSON-matcher in PostgreSQL needs a wildcard
}
@Timed("app.office.contacts.repo.save.rbac")

View File

@ -13,12 +13,13 @@ get:
schema:
type: string
description: Beginning of caption to filter the results.
- name: emailAddress
- name: emailAddressRegEx
in: query
required: false
schema:
type: string
description: Beginning of email-address to filter the results, use '%' as wildcard.
description:
Regular-expression for an email-address to filter the results.
responses:
"200":
description: OK

View File

@ -193,7 +193,7 @@ class HsOfficeContactRbacRepositoryIntegrationTest extends ContextBasedTestWithC
context("superuser-alex@hostsharing.net", null);
// when
final var result = contactRepo.findContactByEmailAddress("%@secondcontact.example.com");
final var result = contactRepo.findContactByEmailAddressRegEx("@secondcontact.example.com");
// then
exactlyTheseContactsAreReturned(result, "second contact");

View File

@ -0,0 +1,29 @@
package net.hostsharing.hsadminng.hs.office.contact;
import org.junit.jupiter.api.Test;
import jakarta.validation.ValidationException;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.catchThrowable;
class HsOfficeContactRbacRepositoryUnitTest {
@Test
void rejectsSingleQuoteInEmailAddressRegEx() {
final var throwable = catchThrowable( () ->
HsOfficeContactRbacRepository.emailRegEx("target@'example.org")
);
assertThat(throwable).isInstanceOf(ValidationException.class);
}
@Test
void rejectsTrailingBackslashInEmailAddressRegEx() {
final var throwable = catchThrowable( () ->
HsOfficeContactRbacRepository.emailRegEx("target@example.org\\")
);
assertThat(throwable).isInstanceOf(ValidationException.class);
}
}