|
|
@ -3,7 +3,10 @@ package app.controllers.user; |
|
|
|
import app.annotations.enums.AuthMethod; |
|
|
|
import app.annotations.enums.CollectStages; |
|
|
|
import app.annotations.interfaces.*; |
|
|
|
import app.controllers.other.ExternalVIPController; |
|
|
|
import app.entities.SocialAuth; |
|
|
|
import app.entities.VipGiveMethod; |
|
|
|
import app.entities.VipPrice; |
|
|
|
import app.services.ProfileService; |
|
|
|
import app.services.ReportService; |
|
|
|
import app.services.db.FreeVIPService; |
|
|
@ -16,6 +19,9 @@ import org.springframework.http.HttpStatus; |
|
|
|
import org.springframework.http.ResponseEntity; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
import java.util.Arrays; |
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
@RestController |
|
|
|
@RequestMapping("api/profile/current") |
|
|
|
public class ProfileController { |
|
|
@ -23,12 +29,12 @@ public class ProfileController { |
|
|
|
private final FreeVIPService freeVIPService; |
|
|
|
private final ReportService reportService; |
|
|
|
private final VIPService vipService; |
|
|
|
private final ExternalVIPController externalVIPController; |
|
|
|
|
|
|
|
@Value("${backend.vip.buy.steam}") |
|
|
|
private String STEAM_TRADE; |
|
|
|
@Value("${backend.vip.buy.qiwi}") |
|
|
|
private String QIWI_LINK; |
|
|
|
|
|
|
|
@Value("${backend.vip.buy.donationalerts}") |
|
|
|
private String DONATIONALERTS_LINK; |
|
|
|
|
|
|
@ -36,11 +42,13 @@ public class ProfileController { |
|
|
|
public ProfileController(ProfileService profileService, |
|
|
|
FreeVIPService freeVIPService, |
|
|
|
ReportService reportService, |
|
|
|
VIPService vipService) { |
|
|
|
VIPService vipService, |
|
|
|
ExternalVIPController externalVIPController) { |
|
|
|
this.profileService = profileService; |
|
|
|
this.freeVIPService = freeVIPService; |
|
|
|
this.reportService = reportService; |
|
|
|
this.vipService = vipService; |
|
|
|
this.externalVIPController = externalVIPController; |
|
|
|
} |
|
|
|
|
|
|
|
@GetMapping |
|
|
@ -94,37 +102,105 @@ public class ProfileController { |
|
|
|
), HttpStatus.OK); |
|
|
|
} |
|
|
|
|
|
|
|
public String generateLink(String steam64, VipGiveMethod vipGiveMethod, String cost, boolean external) { |
|
|
|
StringBuilder stringBuilder = new StringBuilder(); |
|
|
|
stringBuilder.append("/api/profile/current/buyvip?"); |
|
|
|
stringBuilder.append("steam64=").append(steam64).append("&"); |
|
|
|
stringBuilder.append("buy_type=").append(vipGiveMethod.name().toUpperCase()).append("&"); |
|
|
|
stringBuilder.append("cost=").append(cost.replace(VipPrice.SYMBOL, "")); |
|
|
|
|
|
|
|
switch (vipGiveMethod) { |
|
|
|
case STEAM -> { |
|
|
|
return external ? STEAM_TRADE : stringBuilder.toString(); |
|
|
|
} |
|
|
|
case QIWI -> { |
|
|
|
String steam2 = profileService.GetProfile(steam64, "").getSteamids().steam2; |
|
|
|
return external ? String.valueOf(QIWI_LINK).replace("(AMOUNT)", String.valueOf(cost)).replace("(COMMENT)", steam2) : stringBuilder.toString(); |
|
|
|
} |
|
|
|
case DONATIONALERTS -> { |
|
|
|
return external ? DONATIONALERTS_LINK : stringBuilder.toString(); |
|
|
|
} |
|
|
|
default -> { |
|
|
|
return "http://www.consultant.ru/document/cons_doc_LAW_6300/4e3d0ddc5edee16d48ad06866de7851fa2a55b3e/"; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@GetMapping("/buyvip") |
|
|
|
@CollectStatistic(stage = CollectStages.COMBINED) |
|
|
|
public ResponseEntity BuyVIP(HttpServletRequest request, |
|
|
|
@RequestParam(value = "steam64", defaultValue = "") String steam64, |
|
|
|
@RequestParam String buy_type, |
|
|
|
@RequestParam(required = false, defaultValue = "") Integer cost) { |
|
|
|
@RequestParam(required = false, defaultValue = "") String cost) { |
|
|
|
VipGiveMethod buy_type_enum = VipGiveMethod.valueOf(buy_type.toUpperCase()); |
|
|
|
|
|
|
|
if (!vipService.getServices().getOrDefault(buy_type, true)) { |
|
|
|
return new ResponseEntity("Service " + buy_type.toUpperCase() + " is not active long time", HttpStatus.OK); |
|
|
|
return new ResponseEntity("Service " + buy_type_enum.name().toUpperCase() + " is not active long time", HttpStatus.OK); |
|
|
|
} |
|
|
|
|
|
|
|
switch (buy_type) { |
|
|
|
case "steam":{ |
|
|
|
return ResponseEntity.status(HttpStatus.FOUND) |
|
|
|
.header("Location", STEAM_TRADE) |
|
|
|
.build(); |
|
|
|
} |
|
|
|
case "qiwi": |
|
|
|
if (cost != null && cost < 0) return ResponseEntity.status(HttpStatus.NOT_ACCEPTABLE).build(); |
|
|
|
String steam2 = profileService.GetProfile(steam64, "").getSteamids().steam2; |
|
|
|
return ResponseEntity.status(HttpStatus.FOUND) |
|
|
|
.header("Location", String.valueOf(QIWI_LINK).replace("(AMOUNT)", String.valueOf(cost)).replace("(COMMENT)", steam2)) |
|
|
|
.build(); |
|
|
|
case "donationalerts":{ |
|
|
|
return ResponseEntity.status(HttpStatus.FOUND) |
|
|
|
.header("Location", DONATIONALERTS_LINK) |
|
|
|
.build(); |
|
|
|
} |
|
|
|
default: |
|
|
|
return ResponseEntity.status(HttpStatus.FOUND) |
|
|
|
.header("Location", "http://www.consultant.ru/document/cons_doc_LAW_6300/4e3d0ddc5edee16d48ad06866de7851fa2a55b3e/") |
|
|
|
.build(); |
|
|
|
return ResponseEntity.status(HttpStatus.FOUND) |
|
|
|
.header("Location", generateLink(steam64, buy_type_enum, cost, true)) |
|
|
|
.build(); |
|
|
|
} |
|
|
|
|
|
|
|
@GetMapping("/buyvip/list") |
|
|
|
public ResponseEntity<List<DayItem>> BuyVipList(HttpServletRequest request, @RequestParam(required = false, defaultValue = "") String steam64) { |
|
|
|
return new ResponseEntity<>(externalVIPController.getPrices().stream() |
|
|
|
.filter(p -> !p.isFree()) |
|
|
|
.map(p -> new DayItem(p.getHuman_duration(), |
|
|
|
Arrays.stream(VipGiveMethod.values()) |
|
|
|
.filter(VipGiveMethod::isBuyType) |
|
|
|
.filter(g -> vipService.getServices().getOrDefault(g.name().toLowerCase(), true)) |
|
|
|
.map(g -> new PayItem(steam64, g, p)) |
|
|
|
.toList())) |
|
|
|
.toList(), HttpStatus.OK); |
|
|
|
} |
|
|
|
|
|
|
|
public class DayItem { |
|
|
|
private final String name; |
|
|
|
private final List<PayItem> items; |
|
|
|
|
|
|
|
public DayItem(String name, List<PayItem> items) { |
|
|
|
this.name = name; |
|
|
|
this.items = items; |
|
|
|
} |
|
|
|
|
|
|
|
public String getName() { |
|
|
|
return name; |
|
|
|
} |
|
|
|
|
|
|
|
public List<PayItem> getItems() { |
|
|
|
return items; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public class PayItem { |
|
|
|
private final String service_name; |
|
|
|
private final String pay_value; |
|
|
|
private final String url; |
|
|
|
|
|
|
|
public PayItem(String service_name, String pay_value, String url) { |
|
|
|
this.service_name = service_name; |
|
|
|
this.pay_value = pay_value; |
|
|
|
this.url = url; |
|
|
|
} |
|
|
|
|
|
|
|
public PayItem(String steam64, VipGiveMethod vipGiveMethod, VipPrice vipPrice) { |
|
|
|
service_name = vipGiveMethod.name(); |
|
|
|
pay_value = vipPrice.grabPrice(vipGiveMethod); |
|
|
|
url = generateLink(steam64, vipGiveMethod, pay_value, false); |
|
|
|
} |
|
|
|
|
|
|
|
public String getName() { |
|
|
|
StringBuilder stringBuilder = new StringBuilder(); |
|
|
|
stringBuilder.append(service_name); |
|
|
|
stringBuilder.append(" - "); |
|
|
|
stringBuilder.append(pay_value); |
|
|
|
return stringBuilder.toString(); |
|
|
|
} |
|
|
|
|
|
|
|
public String getUrl() { |
|
|
|
return url; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|