RebookServiceImpl.java
package rebook.service;
import edu.fudan.common.entity.Trip;
import edu.fudan.common.entity.TripAllDetail;
import edu.fudan.common.entity.TripAllDetailInfo;
import edu.fudan.common.entity.TripResponse;
import edu.fudan.common.util.JsonUtils;
import edu.fudan.common.util.Response;
import edu.fudan.common.util.StringUtils;
import org.apache.tomcat.jni.Time;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cloud.client.discovery.DiscoveryClient;
import org.springframework.core.ParameterizedTypeReference;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Service;
import org.springframework.web.client.RestTemplate;
import edu.fudan.common.entity.*;
import rebook.entity.*;
import java.math.BigDecimal;
import java.util.Calendar;
import java.util.Date;
import java.util.List;
/**
* @author fdse
*/
@Service
public class RebookServiceImpl implements RebookService {
@Autowired
private RestTemplate restTemplate;
@Autowired
private DiscoveryClient discoveryClient;
private static final Logger LOGGER = LoggerFactory.getLogger(RebookServiceImpl.class);
private String getServiceUrl(String serviceName) {
return "http://" + serviceName;
}
@Override
public Response rebook(RebookInfo info, HttpHeaders httpHeaders) {
Response<Order> queryOrderResult = getOrderByRebookInfo(info, httpHeaders);
if (queryOrderResult.getStatus() == 1) {
if (queryOrderResult.getData().getStatus() != 1) {
RebookServiceImpl.LOGGER.warn("[rebook][Rebook warn][Order not suitable to rebook][OrderId: {}]",info.getOrderId());
return new Response<>(0, "you order not suitable to rebook!", null);
}
} else {
RebookServiceImpl.LOGGER.warn("[rebook][Rebook warn][Order not found][OrderId: {}]",info.getOrderId());
return new Response(0, "order not found", null);
}
Order order = queryOrderResult.getData();
int status = order.getStatus();
if (status == OrderStatus.NOTPAID.getCode()) {
RebookServiceImpl.LOGGER.warn("[rebook][Rebook warn][Order not paid][OrderId: {}]",info.getOrderId());
return new Response<>(0, "You haven't paid the original ticket!", null);
} else if (status == OrderStatus.PAID.getCode()) {
// do nothing
} else if (status == OrderStatus.CHANGE.getCode()) {
RebookServiceImpl.LOGGER.warn("[rebook][Rebook warn][Order can't change twice][OrderId: {}]",info.getOrderId());
return new Response<>(0, "You have already changed your ticket and you can only change one time.", null);
} else if (status == OrderStatus.COLLECTED.getCode()) {
RebookServiceImpl.LOGGER.warn("[rebook][Rebook warn][Order already collected][OrderId: {}]",info.getOrderId());
return new Response<>(0, "You have already collected your ticket and you can change it now.", null);
} else {
RebookServiceImpl.LOGGER.warn("[rebook][Rebook warn][Order can't change][OrderId: {}]",info.getOrderId());
return new Response<>(0, "You can't change your ticket.", null);
}
//Check the current time and the bus time of the old order, and judge whether the ticket can be changed according to the time. The ticket cannot be changed after two hours.
if (!checkTime(order.getTravelDate(), order.getTravelTime())) {
RebookServiceImpl.LOGGER.warn("[rebook][Rebook warn][Order beyond change time][OrderId: {}]",info.getOrderId());
return new Response<>(0, "You can only change the ticket before the train start or within 2 hours after the train start.", null);
}
//The departure and destination cannot be changed, only the train number, seat and time can be changed
//Check the info of seat availability and trains
TripAllDetailInfo gtdi = new TripAllDetailInfo();
gtdi.setFrom(order.getFrom());
gtdi.setTo(order.getTo());
gtdi.setTravelDate(info.getDate());
gtdi.setTripId(info.getTripId());
Response<TripAllDetail> gtdr = getTripAllDetailInformation(gtdi, info.getTripId(), httpHeaders);
if (gtdr.getStatus() == 0) {
RebookServiceImpl.LOGGER.warn("[rebook][Rebook warn][Trip detail not found][OrderId: {}]",info.getOrderId());
return new Response<>(0, gtdr.getMsg(), null);
} else {
TripResponse tripResponse = gtdr.getData().getTripResponse();
if (info.getSeatType() == SeatClass.FIRSTCLASS.getCode()) {
if (tripResponse.getConfortClass() <= 0) {
RebookServiceImpl.LOGGER.warn("[rebook][Rebook warn][Seat Not Enough][OrderId: {},SeatType: {}]",info.getOrderId(),info.getSeatType());
return new Response<>(0, "Seat Not Enough", null);
}
} else {
if (tripResponse.getEconomyClass() == SeatClass.SECONDCLASS.getCode() && tripResponse.getConfortClass() <= 0) {
RebookServiceImpl.LOGGER.warn("[rebook][Rebook warn][Seat Not Enough][OrderId: {},SeatType: {}]",info.getOrderId(),info.getSeatType());
return new Response<>(0, "Seat Not Enough", null);
}
}
}
//Deal with the difference, more refund less compensation
//Return the original ticket so that someone else can book the corresponding seat
String ticketPrice = "0";
if (info.getSeatType() == SeatClass.FIRSTCLASS.getCode()) {
ticketPrice = ((TripAllDetail) gtdr.getData()).getTripResponse().getPriceForConfortClass();
} else if (info.getSeatType() == SeatClass.SECONDCLASS.getCode()) {
ticketPrice = ((TripAllDetail) gtdr.getData()).getTripResponse().getPriceForEconomyClass();
}
String oldPrice = order.getPrice();
BigDecimal priceOld = new BigDecimal(oldPrice);
BigDecimal priceNew = new BigDecimal(ticketPrice);
if (priceOld.compareTo(priceNew) > 0) {
//Refund the difference
String difference = priceOld.subtract(priceNew).toString();
if (!drawBackMoney(info.getLoginId(), difference, httpHeaders)) {
RebookServiceImpl.LOGGER.warn("[rebook][Rebook warn][Can't draw back the difference money][OrderId: {},LoginId: {},difference: {}]",info.getOrderId(),info.getLoginId(),difference);
return new Response<>(0, "Can't draw back the difference money, please try again!", null);
}
return updateOrder(order, info, (TripAllDetail) gtdr.getData(), ticketPrice, httpHeaders);
} else if (priceOld.compareTo(priceNew) == 0) {
//do nothing
return updateOrder(order, info, (TripAllDetail) gtdr.getData(), ticketPrice, httpHeaders);
} else {
//make up the difference
String difference = priceNew.subtract(priceOld).toString();
Order orderMoneyDifference = new Order();
orderMoneyDifference.setDifferenceMoney(difference);
return new Response<>(2, "Please pay the different money!", orderMoneyDifference);
}
}
@Override
public Response payDifference(RebookInfo info, HttpHeaders httpHeaders) {
Response queryOrderResult = getOrderByRebookInfo(info, httpHeaders);
if (queryOrderResult.getStatus() == 0) {
return new Response<>(0, queryOrderResult.getMsg(), null);
}
Order order = (Order) queryOrderResult.getData();
TripAllDetailInfo gtdi = new TripAllDetailInfo();
gtdi.setFrom(order.getFrom());
gtdi.setTo(order.getTo());
gtdi.setTravelDate(info.getDate());
gtdi.setTripId(info.getTripId());
// TripAllDetail
Response gtdrResposne = getTripAllDetailInformation(gtdi, info.getTripId(), httpHeaders);
TripAllDetail gtdr = (TripAllDetail) gtdrResposne.getData();
String ticketPrice = "0";
if (info.getSeatType() == SeatClass.FIRSTCLASS.getCode()) {
ticketPrice = gtdr.getTripResponse().getPriceForConfortClass();
} else if (info.getSeatType() == SeatClass.SECONDCLASS.getCode()) {
ticketPrice = gtdr.getTripResponse().getPriceForEconomyClass();
}
String oldPrice = order.getPrice();
BigDecimal priceOld = new BigDecimal(oldPrice);
BigDecimal priceNew = new BigDecimal(ticketPrice);
if (payDifferentMoney(info.getOrderId(), info.getTripId(), info.getLoginId(), priceNew.subtract(priceOld).toString(), httpHeaders)) {
return updateOrder(order, info, gtdr, ticketPrice, httpHeaders);
} else {
RebookServiceImpl.LOGGER.warn("[payDifference][Pay difference warn][Can't pay the difference money][OrderId: {},LoginId: {},TripId: {}]",info.getOrderId(),info.getLoginId(),info.getTripId());
return new Response<>(0, "Can't pay the difference,please try again", null);
}
}
private Response updateOrder(Order order, RebookInfo info, TripAllDetail gtdr, String ticketPrice, HttpHeaders httpHeaders) {
//4.Modify the original order and set the information of the order
Trip trip = gtdr.getTrip();
String oldTripId = order.getTrainNumber();
order.setTrainNumber(info.getTripId());
order.setBoughtDate(StringUtils.Date2String(new Date()));
order.setStatus(OrderStatus.CHANGE.getCode());
order.setPrice(ticketPrice);//Set ticket price
order.setSeatClass(info.getSeatType());
order.setTravelDate(info.getDate());
order.setTravelTime(trip.getStartTime());
Route route = getRouteByRouteId(trip.getRouteId(), httpHeaders);
TrainType trainType = queryTrainTypeByName(trip.getTrainTypeName(), httpHeaders);
List<String> stations = route.getStations();
int firstClassTotalNum = trainType.getConfortClass();
int secondClassTotalNum = trainType.getEconomyClass();
if (info.getSeatType() == SeatClass.FIRSTCLASS.getCode()) {//Dispatch the seat
Ticket ticket =
dipatchSeat(info.getDate(),
order.getTrainNumber(), order.getFrom(), order.getTo(),
SeatClass.FIRSTCLASS.getCode(), firstClassTotalNum, stations, httpHeaders);
order.setSeatClass(SeatClass.FIRSTCLASS.getCode());
order.setSeatNumber("" + ticket.getSeatNo());
} else {
Ticket ticket =
dipatchSeat(info.getDate(),
order.getTrainNumber(), order.getFrom(), order.getTo(),
SeatClass.SECONDCLASS.getCode(), secondClassTotalNum, stations, httpHeaders);
order.setSeatClass(SeatClass.SECONDCLASS.getCode());
order.setSeatNumber("" + ticket.getSeatNo());
}
//Update order information
//If the original order and the new order are located in the high-speed train and other orders respectively, the original order should be deleted and created on the other side with a new id.
if ((tripGD(oldTripId) && tripGD(info.getTripId())) || (!tripGD(oldTripId) && !tripGD(info.getTripId()))) {
Response changeOrderResult = updateOrder(order, info.getTripId(), httpHeaders);
if (changeOrderResult.getStatus() == 1) {
return new Response<>(1, "Success!", order);
} else {
RebookServiceImpl.LOGGER.error("[updateOrder][Update order error][OrderId: {},TripId: {}]",info.getOrderId(),info.getTripId());
return new Response<>(0, "Can't update Order!", null);
}
} else {
//Delete the original order
deleteOrder(order.getId().toString(), oldTripId, httpHeaders);
//Create a new order on the other side
createOrder(order, order.getTrainNumber(), httpHeaders);
return new Response<>(1, "Success", order);
}
}
public Ticket dipatchSeat(String date, String tripId, String startStationId, String endStataionId, int seatType, int tatalNum, List<String> stations, HttpHeaders httpHeaders) {
Seat seatRequest = new Seat();
seatRequest.setTravelDate(date);
seatRequest.setTrainNumber(tripId);
seatRequest.setSeatType(seatType);
seatRequest.setStartStation(startStationId);
seatRequest.setDestStation(endStataionId);
seatRequest.setTotalNum(tatalNum);
seatRequest.setStations(stations);
HttpHeaders newHeaders = getAuthorizationHeadersFrom(httpHeaders);
HttpEntity requestEntityTicket = new HttpEntity(seatRequest, newHeaders);
String seat_service_url = getServiceUrl("ts-seat-service");
ResponseEntity<Response<Ticket>> reTicket = restTemplate.exchange(
seat_service_url + "/api/v1/seatservice/seats",
HttpMethod.POST,
requestEntityTicket,
new ParameterizedTypeReference<Response<Ticket>>() {
});
return reTicket.getBody().getData();
}
private boolean tripGD(String tripId) {
return tripId.startsWith("G") || tripId.startsWith("D");
}
private boolean checkTime(String travelDate, String travelTime) {
boolean result = true;
Calendar calDateA = Calendar.getInstance();
Date today = new Date();
calDateA.setTime(today);
Calendar calDateB = Calendar.getInstance();
calDateB.setTime(StringUtils.String2Date(travelDate));
Calendar calDateC = Calendar.getInstance();
calDateC.setTime(StringUtils.String2Date(travelTime));
if (calDateA.get(Calendar.YEAR) > calDateB.get(Calendar.YEAR)) {
result = false;
} else if (calDateA.get(Calendar.YEAR) == calDateB.get(Calendar.YEAR)) {
if (calDateA.get(Calendar.MONTH) > calDateB.get(Calendar.MONTH)) {
result = false;
} else if (calDateA.get(Calendar.MONTH) == calDateB.get(Calendar.MONTH)) {
if (calDateA.get(Calendar.DAY_OF_MONTH) > calDateB.get(Calendar.DAY_OF_MONTH)) {
result = false;
} else if (calDateA.get(Calendar.DAY_OF_MONTH) == calDateB.get(Calendar.DAY_OF_MONTH)) {
if (calDateA.get(Calendar.HOUR_OF_DAY) > calDateC.get(Calendar.HOUR_OF_DAY) + 2) {
result = false;
} else if (calDateA.get(Calendar.HOUR_OF_DAY) == (calDateC.get(Calendar.HOUR_OF_DAY) + 2) && calDateA.get(Calendar.MINUTE) > calDateC.get(Calendar.MINUTE)) {
result = false;
}
}
}
}
return result;
}
private Response<TripAllDetail> getTripAllDetailInformation(TripAllDetailInfo gtdi, String tripId, HttpHeaders httpHeaders) {
Response<TripAllDetail> gtdr;
String requestUrl = "";
String travel_service_url = getServiceUrl("ts-travel-service");
String travel2_service_url = getServiceUrl("ts-travel2-service");
if (tripId.startsWith("G") || tripId.startsWith("D")) {
requestUrl = travel_service_url + "/api/v1/travelservice/trip_detail";
// ts-travel-service:12346/travel/getTripAllDetailInfo
} else {
requestUrl = travel2_service_url + "/api/v1/travel2service/trip_detail";
//ts-travel2-service:16346/travel2/getTripAllDetailInfo
}
HttpHeaders newHeaders = getAuthorizationHeadersFrom(httpHeaders);
HttpEntity requestGetTripAllDetailResult = new HttpEntity(gtdi, newHeaders);
ResponseEntity<Response<TripAllDetail>> reGetTripAllDetailResult = restTemplate.exchange(
requestUrl,
HttpMethod.POST,
requestGetTripAllDetailResult,
new ParameterizedTypeReference<Response<TripAllDetail>>() {
});
gtdr = reGetTripAllDetailResult.getBody();
return gtdr;
}
private Response createOrder(Order order, String tripId, HttpHeaders httpHeaders) {
String requestUrl = "";
String order_service_url = getServiceUrl("ts-order-service");
String order_other_service_url = getServiceUrl("ts-order-other-service");
if (tripId.startsWith("G") || tripId.startsWith("D")) {
// ts-order-service:12031/order/create
requestUrl = order_service_url + "/api/v1/orderservice/order";
} else {
//ts-order-other-service:12032/orderOther/create
requestUrl = order_other_service_url + "/api/v1/orderOtherService/orderOther";
}
HttpHeaders newHeaders = getAuthorizationHeadersFrom(httpHeaders);
HttpEntity requestCreateOrder = new HttpEntity(order, newHeaders);
ResponseEntity<Response> reCreateOrder = restTemplate.exchange(
requestUrl,
HttpMethod.POST,
requestCreateOrder,
Response.class);
return reCreateOrder.getBody();
}
private Response updateOrder(Order info, String tripId, HttpHeaders httpHeaders) {
String requestOrderUtl = "";
String order_service_url = getServiceUrl("ts-order-service");
String order_other_service_url = getServiceUrl("ts-order-other-service");
if (tripGD(tripId)) {
requestOrderUtl = order_service_url + "/api/v1/orderservice/order";
} else {
requestOrderUtl = order_other_service_url + "/api/v1/orderOtherService/orderOther";
}
HttpHeaders newHeaders = getAuthorizationHeadersFrom(httpHeaders);
HttpEntity requestUpdateOrder = new HttpEntity(info, newHeaders);
ResponseEntity<Response> reUpdateOrder = restTemplate.exchange(
requestOrderUtl,
HttpMethod.PUT,
requestUpdateOrder,
Response.class);
return reUpdateOrder.getBody();
}
private Response deleteOrder(String orderId, String tripId, HttpHeaders httpHeaders) {
String requestUrl = "";
String order_service_url = getServiceUrl("ts-order-service");
String order_other_service_url = getServiceUrl("ts-order-other-service");
if (tripGD(tripId)) {
requestUrl = order_service_url + "/api/v1/orderservice/order/" + orderId;
} else {
requestUrl = order_other_service_url + "/api/v1/orderOtherService/orderOther/" + orderId;
}
HttpHeaders newHeaders = getAuthorizationHeadersFrom(httpHeaders);
HttpEntity requestDeleteOrder = new HttpEntity(newHeaders);
ResponseEntity<Response> reDeleteOrder = restTemplate.exchange(
requestUrl,
HttpMethod.POST,
requestDeleteOrder,
Response.class);
return reDeleteOrder.getBody();
}
private Response<Order> getOrderByRebookInfo(RebookInfo info, HttpHeaders httpHeaders) {
Response<Order> queryOrderResult;
//Change can only be changed once, check the status of the order to determine whether it has been changed
String requestUrl = "";
String order_service_url = getServiceUrl("ts-order-service");
String order_other_service_url = getServiceUrl("ts-order-other-service");
if (info.getOldTripId().startsWith("G") || info.getOldTripId().startsWith("D")) {
requestUrl = order_service_url + "/api/v1/orderservice/order/" + info.getOrderId();
} else {
requestUrl = order_other_service_url + "/api/v1/orderOtherService/orderOther/" + info.getOrderId();
}
HttpHeaders newHeaders = getAuthorizationHeadersFrom(httpHeaders);
HttpEntity requestEntityGetOrderByRebookInfo = new HttpEntity(newHeaders);
ResponseEntity<Response<Order>> reGetOrderByRebookInfo = restTemplate.exchange(
requestUrl,
HttpMethod.GET,
requestEntityGetOrderByRebookInfo,
new ParameterizedTypeReference<Response<Order>>() {
});
queryOrderResult = reGetOrderByRebookInfo.getBody();
return queryOrderResult;
}
public TrainType queryTrainTypeByName(String trainTypeName, HttpHeaders headers) {
HttpEntity requestEntity = new HttpEntity(null);
String train_service_url=getServiceUrl("ts-train-service");
ResponseEntity<Response> re = restTemplate.exchange(
train_service_url + "/api/v1/trainservice/trains/byName/" + trainTypeName,
HttpMethod.GET,
requestEntity,
Response.class);
Response response = re.getBody();
return JsonUtils.conveterObject(response.getData(), TrainType.class);
}
private Route getRouteByRouteId(String routeId, HttpHeaders headers) {
HttpEntity requestEntity = new HttpEntity(null);
String route_service_url=getServiceUrl("ts-route-service");
ResponseEntity<Response> re = restTemplate.exchange(
route_service_url + "/api/v1/routeservice/routes/" + routeId,
HttpMethod.GET,
requestEntity,
Response.class);
Response result = re.getBody();
if ( result.getStatus() == 0) {
LOGGER.warn("[getRouteByRouteId][Get Route By Id Failed][Fail msg: {}]", result.getMsg());
return null;
} else {
LOGGER.info("[getRouteByRouteId][Get Route By Id][Success]");
return JsonUtils.conveterObject(result.getData(), Route.class);
}
}
private boolean payDifferentMoney(String orderId, String tripId, String userId, String money, HttpHeaders httpHeaders) {
PaymentDifferenceInfo info = new PaymentDifferenceInfo();
info.setOrderId(orderId);
info.setTripId(tripId);
info.setUserId(userId);
info.setPrice(money);
HttpHeaders newHeaders = getAuthorizationHeadersFrom(httpHeaders);
HttpEntity requestEntityPayDifferentMoney = new HttpEntity(info, newHeaders);
String inside_payment_service_url = getServiceUrl("ts-inside-payment-service");
ResponseEntity<Response> rePayDifferentMoney = restTemplate.exchange(
inside_payment_service_url + "/api/v1/inside_pay_service/inside_payment/difference",
HttpMethod.POST,
requestEntityPayDifferentMoney,
Response.class);
Response result = rePayDifferentMoney.getBody();
return result.getStatus() == 1;
}
private boolean drawBackMoney(String userId, String money, HttpHeaders httpHeaders) {
HttpHeaders newHeaders = getAuthorizationHeadersFrom(httpHeaders);
HttpEntity requestEntityDrawBackMoney = new HttpEntity(newHeaders);
String inside_payment_service_url = getServiceUrl("ts-inside-payment-service");
ResponseEntity<Response> reDrawBackMoney = restTemplate.exchange(
inside_payment_service_url + "/api/v1/inside_pay_service/inside_payment/drawback/" + userId + "/" + money,
HttpMethod.GET,
requestEntityDrawBackMoney,
Response.class);
Response result = reDrawBackMoney.getBody();
return result.getStatus() == 1;
}
public static HttpHeaders getAuthorizationHeadersFrom(HttpHeaders oldHeaders) {
HttpHeaders newHeaders = new HttpHeaders();
if (oldHeaders.containsKey(HttpHeaders.AUTHORIZATION)) {
newHeaders.add(HttpHeaders.AUTHORIZATION, oldHeaders.getFirst(HttpHeaders.AUTHORIZATION));
}
return newHeaders;
}
}