4 changed files with 124 additions and 4 deletions
@ -0,0 +1,113 @@ |
|||
package app.websocket; |
|||
|
|||
import app.entities.VipGiveMethod; |
|||
import app.services.db.VIPService; |
|||
import app.utils.SaltedCookie; |
|||
import app.utils.SteamIDConverter; |
|||
import com.fasterxml.jackson.databind.ObjectMapper; |
|||
import lombok.Data; |
|||
import lombok.NoArgsConstructor; |
|||
import org.slf4j.Logger; |
|||
import org.slf4j.LoggerFactory; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.context.annotation.Scope; |
|||
import org.springframework.stereotype.Component; |
|||
import org.springframework.web.socket.CloseStatus; |
|||
import org.springframework.web.socket.TextMessage; |
|||
import org.springframework.web.socket.WebSocketSession; |
|||
import org.springframework.web.socket.handler.TextWebSocketHandler; |
|||
|
|||
import java.io.IOException; |
|||
import java.time.Instant; |
|||
import java.util.HashSet; |
|||
|
|||
@Component |
|||
@Scope(value = "singleton") |
|||
public class IntegrationWebSockerHandler extends TextWebSocketHandler { |
|||
private final Logger logger = LoggerFactory.getLogger(getClass()); |
|||
private ObjectMapper objectMapper = new ObjectMapper(); |
|||
private SaltedCookie saltedCookie; |
|||
private VIPService vipService; |
|||
private HashSet<String> unique_set; |
|||
|
|||
@Autowired |
|||
public IntegrationWebSockerHandler(SaltedCookie saltedCookie, VIPService vipService) { |
|||
super(); |
|||
this.saltedCookie = saltedCookie; |
|||
this.vipService = vipService; |
|||
this.unique_set = new HashSet(); |
|||
} |
|||
|
|||
@Override |
|||
public void afterConnectionEstablished(WebSocketSession session) throws Exception { |
|||
logger.info("Session {} open", session.getId()); |
|||
super.afterConnectionEstablished(session); |
|||
} |
|||
|
|||
@Override |
|||
public void handleTextMessage(WebSocketSession session, TextMessage message) throws IOException { |
|||
IntegrationPayload payload = objectMapper.readValue(message.getPayload(), IntegrationPayload.class); |
|||
if (payload.test) { |
|||
session.sendMessage(new TextMessage("%d".formatted(Instant.now().getEpochSecond()))); |
|||
return; |
|||
} |
|||
if (payload.isVip()) { |
|||
if (!saltedCookie.ValidateSecretKey(payload.getSecret_key())) { |
|||
logger.warn("Cannot add vip without secret key"); |
|||
return; |
|||
} |
|||
|
|||
if (!payload.vip.isFilled()) { |
|||
logger.warn("Can try add VIP but, payload is not full filled!"); |
|||
return; |
|||
} |
|||
|
|||
if (!payload.vip.unique.isEmpty()) { |
|||
if (unique_set.contains(payload.vip.unique)) { |
|||
logger.warn("VIP uniq payload value already exist! " + payload.vip.unique); |
|||
return; |
|||
} else unique_set.add(payload.vip.unique); |
|||
} |
|||
|
|||
Integer result = vipService.addVIP( |
|||
SteamIDConverter.getSteamID(payload.vip.getSteam()), |
|||
payload.vip.getAmount(), |
|||
VipGiveMethod.valueOf(payload.vip.service.toUpperCase()), |
|||
payload.vip.getExtra()); |
|||
logger.info("Success add VIP to {}, result: {}", payload.vip.getSteam(), result); |
|||
return; |
|||
} |
|||
} |
|||
|
|||
@Override |
|||
public void afterConnectionClosed(WebSocketSession session, CloseStatus status) throws Exception { |
|||
logger.info("Session {} close", session.getId()); |
|||
super.afterConnectionClosed(session, status); |
|||
} |
|||
|
|||
@Data |
|||
@NoArgsConstructor |
|||
public static class IntegrationPayload { |
|||
String secret_key = null; |
|||
ExternalVIP vip = null; |
|||
Boolean test = false; |
|||
|
|||
public boolean isVip() { |
|||
return vip != null && secret_key != null; |
|||
} |
|||
} |
|||
|
|||
@Data |
|||
@NoArgsConstructor |
|||
public static class ExternalVIP { |
|||
String steam; |
|||
Integer amount; |
|||
String service; |
|||
String extra = ""; |
|||
String unique = ""; |
|||
|
|||
public boolean isFilled() { |
|||
return steam != null && amount != null && service != null; |
|||
} |
|||
} |
|||
} |
Loading…
Reference in new issue