Browse Source

придумал говно

master
gsd 2 years ago
parent
commit
252788642f
  1. 23
      src/main/java/app/annotations/impl/ShowClientIPAspect.java
  2. 11
      src/main/java/app/annotations/interfaces/ShowClientIP.java
  3. 2
      src/main/java/app/controllers/user/ProfileController.java

23
src/main/java/app/annotations/impl/ShowClientIPAspect.java

@ -0,0 +1,23 @@
package app.annotations.impl;
import jakarta.servlet.http.HttpServletRequest;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.Configuration;
@Aspect
@Configuration
public class ShowClientIPAspect {
private final Logger logger = LoggerFactory.getLogger(ShowClientIPAspect.class);
@Before("@annotation(app.annotations.interfaces.ShowClientIP) && args(request,..)")
public void before(HttpServletRequest request) {
String client_ip = request.getHeader("X-Forwarded-For");
if (client_ip != null) {
logger.info("Client IP: {}, Request: {}", client_ip, request.getRequestURI());
}
}
}

11
src/main/java/app/annotations/interfaces/ShowClientIP.java

@ -0,0 +1,11 @@
package app.annotations.interfaces;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface ShowClientIP {
}

2
src/main/java/app/controllers/user/ProfileController.java

@ -3,6 +3,7 @@ package app.controllers.user;
import app.annotations.enums.AuthMethod;
import app.annotations.interfaces.BurstUpdatePlayers;
import app.annotations.interfaces.CheckWebAccess;
import app.annotations.interfaces.ShowClientIP;
import app.annotations.interfaces.WaitAfterNext;
import app.entities.SocialAuth;
import app.services.ProfileService;
@ -41,6 +42,7 @@ public class ProfileController {
@CheckWebAccess
@BurstUpdatePlayers
@WaitAfterNext
@ShowClientIP
public ResponseEntity GetCurrentUser(HttpServletRequest request,
@CookieValue(value = "steam64", defaultValue = "") String steam64,
@RequestParam(value = "requests", defaultValue = "") String requests

Loading…
Cancel
Save