Commit 002a2fe3 authored by shishir suman's avatar shishir suman
Browse files

bug fixes

Showing with 103 additions and 94 deletions
+103 -94
......@@ -6,6 +6,7 @@ import com.google.auth.oauth2.ServiceAccountCredentials;
import com.google.cloud.storage.*;
import lombok.extern.slf4j.Slf4j;
import org.apache.tika.Tika;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Service;
......@@ -57,6 +58,9 @@ public class AttachmentServiceImpl implements AttachmentService {
@Value("${gcp.sub.folder.path}")
private String subFolderPath;
@Autowired
private ObjectMapper mapper;
@Override
public ResponseEntity<String> uploadObject(MultipartFile file) {
Path filePath = null;
......@@ -81,7 +85,6 @@ public class AttachmentServiceImpl implements AttachmentService {
URL url = blob.signUrl(30, TimeUnit.DAYS);
log.info("URL - {}", url);
String urlString = url.toURI().toString();
ObjectMapper mapper = new ObjectMapper();
ObjectNode urlNode = mapper.createObjectNode();
urlNode.put("url", urlString);
ObjectNode node = mapper.createObjectNode();
......
......@@ -23,6 +23,9 @@ public class OtpServiceImpl implements OtpService {
@Autowired
private JavaMailSender mailSender;
@Autowired
private ObjectMapper objectMapper;
@Value("${otp.expiration.minutes}")
private int otpExpirationMinutes;
......@@ -67,7 +70,6 @@ public class OtpServiceImpl implements OtpService {
private String toJson(Object obj) {
try {
ObjectMapper objectMapper = new ObjectMapper();
return objectMapper.writeValueAsString(obj);
} catch (JsonProcessingException e) {
// Handle the exception
......@@ -77,7 +79,6 @@ public class OtpServiceImpl implements OtpService {
private <T> T fromJson(String json, Class<T> valueType) {
try {
ObjectMapper objectMapper = new ObjectMapper();
return objectMapper.readValue(json, valueType);
} catch (JsonProcessingException e) {
// Handle the exception
......
......@@ -62,6 +62,9 @@ public class TicketServiceImpl implements TicketService {
@Autowired
private EmailService emailService;
@Autowired
private ObjectMapper mapper;
/**
*
* @param ticket
......@@ -281,8 +284,7 @@ public class TicketServiceImpl implements TicketService {
*/
private org.upsmf.grievance.model.es.Ticket convertToESTicketObj(Ticket ticket) {
DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern(DateUtil.DEFAULT_DATE_FORMAT);
ObjectMapper mapper = new ObjectMapper();
// TODO get user details based on ID
// get user details based on ID
return org.upsmf.grievance.model.es.Ticket.builder()
.ticketId(ticket.getId())
.firstName(ticket.getFirstName())
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment