Skip to content

Commit 8d802d0

Browse files
committedFeb 10, 2025·
fixes #73 ChainLP: Deleting project does not remove rows for all associations
1 parent 5d485f3 commit 8d802d0

File tree

5 files changed

+42
-1
lines changed

5 files changed

+42
-1
lines changed
 

‎chainlp/backend/chainlp/src/main/java/com/aventstack/chainlp/api/build/BuildRepository.java

+2
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,6 @@ public interface BuildRepository extends
1313

1414
Optional<Build> findFirstByProjectIdOrderByIdDesc(final Integer projectId);
1515

16+
void deleteByProjectId(final Integer projectId);
17+
1618
}

‎chainlp/backend/chainlp/src/main/java/com/aventstack/chainlp/api/build/BuildService.java

+13-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
import org.springframework.data.domain.Pageable;
2424
import org.springframework.stereotype.Service;
2525
import org.springframework.transaction.annotation.Isolation;
26+
import org.springframework.transaction.annotation.Propagation;
2627
import org.springframework.transaction.annotation.Transactional;
2728

2829
import java.util.HashMap;
@@ -46,7 +47,7 @@ public class BuildService {
4647
private final TestService testService;
4748

4849
public BuildService(final BuildRepository repository,
49-
final ProjectService projectService,
50+
@Lazy final ProjectService projectService,
5051
final BuildStatsService buildStatsService,
5152
final TagStatsService tagStatsService,
5253
final TestRepository testRepository,
@@ -221,4 +222,15 @@ public void delete(final long id) {
221222
log.info("Build id: {} was deleted successfully", id);
222223
}
223224

225+
@Transactional(propagation = Propagation.MANDATORY)
226+
@Caching(evict = {
227+
@CacheEvict(value = "builds", allEntries = true, condition = "#id > 0"),
228+
@CacheEvict(value = "build", allEntries = true)
229+
})
230+
public void deleteForProject(final Integer id) {
231+
log.debug("Deleting all builds for project with id {}", id);
232+
repository.deleteByProjectId(id);
233+
log.info("Builds for project with id {} were deleted", id);
234+
}
235+
224236
}

‎chainlp/backend/chainlp/src/main/java/com/aventstack/chainlp/api/project/ProjectService.java

+14
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
package com.aventstack.chainlp.api.project;
22

3+
import com.aventstack.chainlp.api.build.BuildService;
4+
import com.aventstack.chainlp.api.test.TestService;
5+
import jakarta.transaction.Transactional;
36
import lombok.extern.slf4j.Slf4j;
47
import org.springframework.beans.factory.annotation.Autowired;
58
import org.springframework.cache.annotation.CacheEvict;
69
import org.springframework.cache.annotation.CachePut;
710
import org.springframework.cache.annotation.Cacheable;
811
import org.springframework.cache.annotation.Caching;
12+
import org.springframework.context.annotation.Lazy;
913
import org.springframework.data.domain.Page;
1014
import org.springframework.data.domain.Pageable;
1115
import org.springframework.stereotype.Service;
@@ -19,6 +23,13 @@ public class ProjectService {
1923
@Autowired
2024
private ProjectRepository repository;
2125

26+
@Autowired
27+
private BuildService buildService;
28+
29+
@Autowired
30+
@Lazy
31+
private TestService testService;
32+
2233
@Cacheable(value = "projects", unless = "#result == null || #result.size == 0")
2334
public Page<Project> findAll(final Pageable pageable) {
2435
return repository.findAll(pageable);
@@ -53,11 +64,14 @@ public Project update(final Project project) {
5364
return project;
5465
}
5566

67+
@Transactional
5668
@Caching(evict = {
5769
@CacheEvict(value = "projects", allEntries = true, condition = "#id > 0"),
5870
@CacheEvict(value = "project", key = "#id", condition="#id > 0")
5971
})
6072
public void delete(final Integer id) {
73+
buildService.deleteForProject(id);
74+
testService.deleteForProject(id);
6175
log.info("Deleting project with id {}", id);
6276
repository.deleteById(id);
6377
log.info("Project id: {} was deleted successfully", id);

‎chainlp/backend/chainlp/src/main/java/com/aventstack/chainlp/api/test/TestRepository.java

+2
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,6 @@ public interface TestRepository extends
1515

1616
void deleteByBuildId(final long buildId);
1717

18+
void deleteByProjectId(final Integer projectId);
19+
1820
}

‎chainlp/backend/chainlp/src/main/java/com/aventstack/chainlp/api/test/TestService.java

+11
Original file line numberDiff line numberDiff line change
@@ -205,4 +205,15 @@ public void clearParentRefs(final Test test) {
205205
}
206206
}
207207

208+
@Transactional(propagation = Propagation.MANDATORY)
209+
@Caching(evict = {
210+
@CacheEvict(value = "tests", allEntries = true, condition = "#id > 0"),
211+
@CacheEvict(value = "test", allEntries = true)
212+
})
213+
public void deleteForProject(final Integer id) {
214+
log.debug("Deleting all tests for project with id {}", id);
215+
repository.deleteByProjectId(id);
216+
log.info("Builds for tests with id {} were deleted", id);
217+
}
218+
208219
}

0 commit comments

Comments
 (0)
Please sign in to comment.