|
|
@ -1,12 +1,16 @@ |
|
|
|
package app.annotations.impl; |
|
|
|
|
|
|
|
import app.annotations.enums.AuthMethod; |
|
|
|
import app.annotations.exceptions.InvalidCookie; |
|
|
|
import app.annotations.exceptions.InvalidSecretKey; |
|
|
|
import app.annotations.exceptions.NeedCookie; |
|
|
|
import app.annotations.interfaces.CheckWebAccess; |
|
|
|
import app.utils.SaltedCookie; |
|
|
|
import jakarta.servlet.http.HttpServletRequest; |
|
|
|
import org.aspectj.lang.JoinPoint; |
|
|
|
import org.aspectj.lang.annotation.Aspect; |
|
|
|
import org.aspectj.lang.annotation.Before; |
|
|
|
import org.aspectj.lang.reflect.MethodSignature; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.context.annotation.Configuration; |
|
|
|
|
|
|
@ -21,7 +25,8 @@ public class WebAccessAspect { |
|
|
|
} |
|
|
|
|
|
|
|
@Before("@annotation(app.annotations.interfaces.CheckWebAccess) && args(request,..)") |
|
|
|
public void before(HttpServletRequest request){ |
|
|
|
public void before(JoinPoint joinPoint, HttpServletRequest request){ |
|
|
|
AuthMethod auth_method = ((MethodSignature) joinPoint.getSignature()).getMethod().getAnnotation(CheckWebAccess.class).auth_method(); |
|
|
|
System.out.println("check web access"); |
|
|
|
if(!(request instanceof HttpServletRequest)) { |
|
|
|
throw new RuntimeException("cannot read cookie from invalid request"); |
|
|
@ -53,20 +58,39 @@ public class WebAccessAspect { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
switch (auth_method){ |
|
|
|
case COMBINED -> { |
|
|
|
if (!secret_key.isEmpty() && !steam64.isEmpty()) { |
|
|
|
if (saltedCookie.ValidateSecretKey(secret_key)) { |
|
|
|
System.out.println("used secret key"); |
|
|
|
System.out.println("used secret key with steamid"); |
|
|
|
return; |
|
|
|
} else { |
|
|
|
throw new InvalidSecretKey(); |
|
|
|
} |
|
|
|
} |
|
|
|
CheckSteamID(steam64, steam64_secured); |
|
|
|
} |
|
|
|
case SECRET_KEY -> { |
|
|
|
if (secret_key.isEmpty()) throw new InvalidSecretKey(); |
|
|
|
if (saltedCookie.ValidateSecretKey(secret_key)) { |
|
|
|
System.out.println("used secret key without steamid"); |
|
|
|
return; |
|
|
|
} else { |
|
|
|
throw new InvalidSecretKey(); |
|
|
|
} |
|
|
|
} |
|
|
|
case STEAM64 -> { |
|
|
|
CheckSteamID(steam64, steam64_secured); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void CheckSteamID(String steam64, String steam64_secured) { |
|
|
|
if (steam64.isEmpty() || steam64_secured.isEmpty()) { |
|
|
|
throw new NeedCookie(); |
|
|
|
} |
|
|
|
|
|
|
|
if(!saltedCookie.Validate(steam64, steam64_secured)) { |
|
|
|
if (!saltedCookie.Validate(steam64, steam64_secured)) { |
|
|
|
throw new InvalidCookie(); |
|
|
|
} |
|
|
|
} |
|
|
|