001/*
002 * #%L
003 * HAPI FHIR JPA Server
004 * %%
005 * Copyright (C) 2014 - 2024 Smile CDR, Inc.
006 * %%
007 * Licensed under the Apache License, Version 2.0 (the "License");
008 * you may not use this file except in compliance with the License.
009 * You may obtain a copy of the License at
010 *
011 *      http://www.apache.org/licenses/LICENSE-2.0
012 *
013 * Unless required by applicable law or agreed to in writing, software
014 * distributed under the License is distributed on an "AS IS" BASIS,
015 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
016 * See the License for the specific language governing permissions and
017 * limitations under the License.
018 * #L%
019 */
020package ca.uhn.fhir.jpa.dao.data;
021
022import ca.uhn.fhir.jpa.entity.TermConceptMap;
023import org.springframework.data.domain.Pageable;
024import org.springframework.data.jpa.repository.JpaRepository;
025import org.springframework.data.jpa.repository.Modifying;
026import org.springframework.data.jpa.repository.Query;
027import org.springframework.data.repository.query.Param;
028
029import java.util.List;
030import java.util.Optional;
031
032public interface ITermConceptMapDao extends JpaRepository<TermConceptMap, Long>, IHapiFhirJpaRepository {
033        @Query("DELETE FROM TermConceptMap cm WHERE cm.myId = :pid")
034        @Modifying
035        void deleteTermConceptMapById(@Param("pid") Long theId);
036
037        @Query("SELECT cm FROM TermConceptMap cm WHERE cm.myResourcePid = :resource_pid")
038        Optional<TermConceptMap> findTermConceptMapByResourcePid(@Param("resource_pid") Long theResourcePid);
039
040        // Keep backwards compatibility, recommend to use findTermConceptMapByUrlAndNullVersion instead
041        @Deprecated
042        @Query("SELECT cm FROM TermConceptMap cm WHERE cm.myUrl = :url and cm.myVersion is null")
043        Optional<TermConceptMap> findTermConceptMapByUrl(@Param("url") String theUrl);
044
045        @Query("SELECT cm FROM TermConceptMap cm WHERE cm.myUrl = :url and cm.myVersion is null")
046        Optional<TermConceptMap> findTermConceptMapByUrlAndNullVersion(@Param("url") String theUrl);
047
048        // Note that last updated version is considered current version.
049        @Query(
050                        value =
051                                        "SELECT cm FROM TermConceptMap cm INNER JOIN ResourceTable r ON r.myId = cm.myResourcePid WHERE cm.myUrl = :url ORDER BY r.myUpdated DESC")
052        List<TermConceptMap> getTermConceptMapEntitiesByUrlOrderByMostRecentUpdate(
053                        Pageable thePage, @Param("url") String theUrl);
054
055        @Query("SELECT cm FROM TermConceptMap cm WHERE cm.myUrl = :url AND cm.myVersion = :version")
056        Optional<TermConceptMap> findTermConceptMapByUrlAndVersion(
057                        @Param("url") String theUrl, @Param("version") String theVersion);
058}