|
|
@ -1,6 +1,7 @@ |
|
|
|
package app.annotations.impl; |
|
|
|
|
|
|
|
import app.annotations.exceptions.InvalidCookie; |
|
|
|
import app.annotations.exceptions.InvalidSecretKey; |
|
|
|
import app.annotations.exceptions.NeedCookie; |
|
|
|
import app.utils.SaltedCookie; |
|
|
|
import jakarta.servlet.http.HttpServletRequest; |
|
|
@ -11,17 +12,17 @@ import org.springframework.context.annotation.Configuration; |
|
|
|
|
|
|
|
@Aspect |
|
|
|
@Configuration |
|
|
|
public class CookieAspect { |
|
|
|
public class WebAccessAspect { |
|
|
|
SaltedCookie saltedCookie; |
|
|
|
|
|
|
|
@Autowired |
|
|
|
public CookieAspect(SaltedCookie saltedCookie) { |
|
|
|
public WebAccessAspect(SaltedCookie saltedCookie) { |
|
|
|
this.saltedCookie = saltedCookie; |
|
|
|
} |
|
|
|
|
|
|
|
@Before("@annotation(app.annotations.interfaces.NeedValidCookie) && args(request,..)") |
|
|
|
@Before("@annotation(app.annotations.interfaces.CheckWebAccess) && args(request,..)") |
|
|
|
public void before(HttpServletRequest request){ |
|
|
|
System.out.println("check cookie"); |
|
|
|
System.out.println("check web access"); |
|
|
|
if(!(request instanceof HttpServletRequest)) { |
|
|
|
throw new RuntimeException("cannot read cookie from invalid request"); |
|
|
|
} |
|
|
@ -32,9 +33,10 @@ public class CookieAspect { |
|
|
|
String[] rawCookieParams = request.getHeader("Cookie").split(";"); |
|
|
|
String steam64 = ""; |
|
|
|
String steam64_secured = ""; |
|
|
|
String secret_key = ""; |
|
|
|
|
|
|
|
for(String rawCookie: rawCookieParams) { |
|
|
|
if(!steam64.isEmpty() && !steam64_secured.isEmpty()) { |
|
|
|
if((!steam64.isEmpty() && !steam64_secured.isEmpty() || (!steam64.isEmpty() && !secret_key.isEmpty()))) { |
|
|
|
break; |
|
|
|
} |
|
|
|
if(rawCookie.contains("steam64=")) { |
|
|
@ -45,6 +47,19 @@ public class CookieAspect { |
|
|
|
steam64_secured = rawCookie.split("=")[1]; |
|
|
|
continue; |
|
|
|
} |
|
|
|
if(rawCookie.contains("secretkey=")) { |
|
|
|
secret_key = rawCookie.split("=")[1]; |
|
|
|
continue; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if (!secret_key.isEmpty() && !steam64.isEmpty()) { |
|
|
|
if (saltedCookie.ValidateSecretKey(secret_key)) { |
|
|
|
System.out.println("used secret key"); |
|
|
|
return; |
|
|
|
} else { |
|
|
|
throw new InvalidSecretKey(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if (steam64.isEmpty() || steam64_secured.isEmpty()) { |