11 changed files with 198 additions and 17 deletions
@ -0,0 +1,4 @@ |
|||||
|
package app.annotations.exceptions; |
||||
|
|
||||
|
public class InvalidCookie extends RuntimeException{ |
||||
|
} |
@ -0,0 +1,4 @@ |
|||||
|
package app.annotations.exceptions; |
||||
|
|
||||
|
public class LowPermition extends RuntimeException{ |
||||
|
} |
@ -0,0 +1,4 @@ |
|||||
|
package app.annotations.exceptions; |
||||
|
|
||||
|
public class NeedCookie extends RuntimeException{ |
||||
|
} |
@ -0,0 +1,58 @@ |
|||||
|
package app.annotations.impl; |
||||
|
|
||||
|
import app.annotations.exceptions.InvalidCookie; |
||||
|
import app.annotations.exceptions.NeedCookie; |
||||
|
import app.utils.SaltedCookie; |
||||
|
import jakarta.servlet.http.HttpServletRequest; |
||||
|
import org.aspectj.lang.annotation.Aspect; |
||||
|
import org.aspectj.lang.annotation.Before; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.context.annotation.Configuration; |
||||
|
|
||||
|
@Aspect |
||||
|
@Configuration |
||||
|
public class CookieAspect { |
||||
|
SaltedCookie saltedCookie; |
||||
|
|
||||
|
@Autowired |
||||
|
public CookieAspect(SaltedCookie saltedCookie) { |
||||
|
this.saltedCookie = saltedCookie; |
||||
|
} |
||||
|
|
||||
|
@Before("@annotation(app.annotations.interfaces.NeedValidCookie) && args(request,..)") |
||||
|
public void before(HttpServletRequest request){ |
||||
|
System.out.println("check cookie"); |
||||
|
if(!(request instanceof HttpServletRequest)) { |
||||
|
throw new RuntimeException("cannot read cookie from invalid request"); |
||||
|
} |
||||
|
|
||||
|
if(request.getHeader("Cookie") == null) { |
||||
|
throw new NeedCookie(); |
||||
|
} |
||||
|
String[] rawCookieParams = request.getHeader("Cookie").split(";"); |
||||
|
String steam64 = ""; |
||||
|
String steam64_secured = ""; |
||||
|
|
||||
|
for(String rawCookie: rawCookieParams) { |
||||
|
if(!steam64.isEmpty() && !steam64_secured.isEmpty()) { |
||||
|
break; |
||||
|
} |
||||
|
if(rawCookie.contains("steam64=")) { |
||||
|
steam64 = rawCookie.split("=")[1]; |
||||
|
continue; |
||||
|
} |
||||
|
if(rawCookie.contains("steam64_secured=")) { |
||||
|
steam64_secured = rawCookie.split("=")[1]; |
||||
|
continue; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
if (steam64.isEmpty() || steam64_secured.isEmpty()) { |
||||
|
throw new NeedCookie(); |
||||
|
} |
||||
|
|
||||
|
if(!saltedCookie.Validate(steam64, steam64_secured)) { |
||||
|
throw new InvalidCookie(); |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,57 @@ |
|||||
|
package app.annotations.impl; |
||||
|
|
||||
|
import app.annotations.exceptions.InvalidCookie; |
||||
|
import app.annotations.exceptions.LowPermition; |
||||
|
import app.annotations.exceptions.NeedCookie; |
||||
|
import app.entities.db.Permition; |
||||
|
import app.services.ProfileService; |
||||
|
import jakarta.servlet.http.HttpServletRequest; |
||||
|
import org.aspectj.lang.annotation.Aspect; |
||||
|
import org.aspectj.lang.annotation.Before; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.context.annotation.Configuration; |
||||
|
|
||||
|
import java.util.Arrays; |
||||
|
import java.util.List; |
||||
|
|
||||
|
@Aspect |
||||
|
@Configuration |
||||
|
public class PermitionFlagAspect { |
||||
|
ProfileService profileService; |
||||
|
|
||||
|
@Autowired |
||||
|
public PermitionFlagAspect(ProfileService profileService) { |
||||
|
this.profileService = profileService; |
||||
|
} |
||||
|
|
||||
|
public boolean ValidateAdmin(String steam64, String flag) { |
||||
|
Permition permition = profileService.GetProfile(steam64, List.of("permition")).getPermition(); |
||||
|
if (permition == null) return false; |
||||
|
return permition.getFlags().contains(flag); |
||||
|
} |
||||
|
|
||||
|
@Before("@annotation(app.annotations.interfaces.CheckPermitionFlag) && args(request,..)") |
||||
|
public void before(HttpServletRequest request){ |
||||
|
System.out.println("check permition flag"); |
||||
|
if(!(request instanceof HttpServletRequest)) { |
||||
|
throw new RuntimeException("invalid request"); |
||||
|
} |
||||
|
|
||||
|
if(request.getHeader("Cookie") == null) { |
||||
|
throw new NeedCookie(); |
||||
|
} |
||||
|
|
||||
|
String steam64 = Arrays.stream(request.getHeader("Cookie").split(";")) |
||||
|
.filter(raw_cookie -> raw_cookie.contains("steam64=")) |
||||
|
.map(raw_cookie -> raw_cookie.split("=")[1]) |
||||
|
.findFirst().orElse(null); |
||||
|
|
||||
|
if (steam64 == null) { |
||||
|
throw new InvalidCookie(); |
||||
|
} |
||||
|
|
||||
|
if(!ValidateAdmin(steam64, "z")){ |
||||
|
throw new LowPermition(); |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,13 @@ |
|||||
|
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 CheckPermitionFlag { |
||||
|
public String flag() default "z"; |
||||
|
} |
@ -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 NeedValidCookie { |
||||
|
} |
@ -0,0 +1,27 @@ |
|||||
|
package app.exceptions.handler; |
||||
|
|
||||
|
import app.annotations.exceptions.InvalidCookie; |
||||
|
import app.annotations.exceptions.LowPermition; |
||||
|
import app.annotations.exceptions.NeedCookie; |
||||
|
import org.springframework.http.HttpStatus; |
||||
|
import org.springframework.http.ResponseEntity; |
||||
|
import org.springframework.web.bind.annotation.ControllerAdvice; |
||||
|
import org.springframework.web.bind.annotation.ExceptionHandler; |
||||
|
|
||||
|
@ControllerAdvice |
||||
|
public class GlobalExceptionAdvice { |
||||
|
@ExceptionHandler(NeedCookie.class) |
||||
|
public ResponseEntity handNeedCookie() { |
||||
|
return new ResponseEntity(HttpStatus.UNAUTHORIZED); |
||||
|
} |
||||
|
|
||||
|
@ExceptionHandler(InvalidCookie.class) |
||||
|
public ResponseEntity handInvalidCookie() { |
||||
|
return new ResponseEntity(HttpStatus.UNAUTHORIZED); |
||||
|
} |
||||
|
|
||||
|
@ExceptionHandler(LowPermition.class) |
||||
|
public ResponseEntity handLowPermition(){ |
||||
|
return new ResponseEntity<>(HttpStatus.FORBIDDEN); |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue