1 | package edu.ucsb.cs156.spring.backenddemo.services; | |
2 | ||
3 | ||
4 | import java.util.List; | |
5 | import java.util.Map; | |
6 | ||
7 | import org.springframework.boot.web.client.RestTemplateBuilder; | |
8 | import org.springframework.http.HttpEntity; | |
9 | import org.springframework.http.HttpHeaders; | |
10 | import org.springframework.http.HttpMethod; | |
11 | import org.springframework.http.MediaType; | |
12 | import org.springframework.http.ResponseEntity; | |
13 | import org.springframework.stereotype.Service; | |
14 | import org.springframework.web.client.HttpClientErrorException; | |
15 | import org.springframework.web.client.RestTemplate; | |
16 | import lombok.extern.slf4j.Slf4j; | |
17 | ||
18 | @Slf4j | |
19 | @Service | |
20 | public class LocationQueryService { | |
21 | ||
22 | private final RestTemplate restTemplate; | |
23 | ||
24 | public LocationQueryService(RestTemplateBuilder restTemplateBuilder) { | |
25 | restTemplate = restTemplateBuilder.build(); | |
26 | } | |
27 | ||
28 | public static final String ENDPOINT = "https://nominatim.openstreetmap.org/search.php?q={location}&format=jsonv2"; | |
29 | ||
30 | public String getJSON(String location) throws HttpClientErrorException { | |
31 | log.info("location={}", location); | |
32 | HttpHeaders headers = new HttpHeaders(); | |
33 |
1
1. getJSON : removed call to org/springframework/http/HttpHeaders::setAccept → KILLED |
headers.setAccept(List.of(MediaType.APPLICATION_JSON)); |
34 |
1
1. getJSON : removed call to org/springframework/http/HttpHeaders::setContentType → KILLED |
headers.setContentType(MediaType.APPLICATION_JSON); |
35 | ||
36 | HttpEntity<String> entity = new HttpEntity<>("body", headers); | |
37 | ||
38 | Map<String, String> uriVariables = Map.of("location", location); | |
39 | ||
40 | ResponseEntity<String> re = restTemplate.exchange(ENDPOINT, HttpMethod.GET, entity, String.class, | |
41 | uriVariables); | |
42 |
1
1. getJSON : replaced return value with "" for edu/ucsb/cs156/spring/backenddemo/services/LocationQueryService::getJSON → KILLED |
return re.getBody(); |
43 | } | |
44 | } | |
Mutations | ||
33 |
1.1 |
|
34 |
1.1 |
|
42 |
1.1 |