add telemetry=false to PrivilegesFilter

This commit is contained in:
Haowei Wen 2021-06-12 00:12:14 +08:00
parent 90c4a649f6
commit 3e1b4eb4b3
No known key found for this signature in database
GPG key ID: 5BC167F73EA558E4

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2020 Haowei Wen <yushijinhun@gmail.com> and contributors * Copyright (C) 2021 Haowei Wen <yushijinhun@gmail.com> and contributors
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by * it under the terms of the GNU Affero General Public License as published by
@ -18,6 +18,8 @@ package moe.yushi.authlibinjector.httpd;
import static moe.yushi.authlibinjector.util.IOUtils.CONTENT_TYPE_JSON; import static moe.yushi.authlibinjector.util.IOUtils.CONTENT_TYPE_JSON;
import java.io.IOException; import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Optional; import java.util.Optional;
import moe.yushi.authlibinjector.internal.fi.iki.elonen.IHTTPSession; import moe.yushi.authlibinjector.internal.fi.iki.elonen.IHTTPSession;
import moe.yushi.authlibinjector.internal.fi.iki.elonen.Response; import moe.yushi.authlibinjector.internal.fi.iki.elonen.Response;
@ -26,7 +28,14 @@ import moe.yushi.authlibinjector.internal.org.json.simple.JSONObject;
public class PrivilegesFilter implements URLFilter { public class PrivilegesFilter implements URLFilter {
private static final String[] PRIVILEGES = { "onlineChat", "multiplayerServer", "multiplayerRealms" }; private final Map<String, Boolean> privileges = new LinkedHashMap<>();
public PrivilegesFilter() {
privileges.put("onlineChat", true);
privileges.put("multiplayerServer", true);
privileges.put("multiplayerRealms", true);
privileges.put("telemetry", false);
}
@Override @Override
public boolean canHandle(String domain) { public boolean canHandle(String domain) {
@ -37,13 +46,13 @@ public class PrivilegesFilter implements URLFilter {
public Optional<Response> handle(String domain, String path, IHTTPSession session) throws IOException { public Optional<Response> handle(String domain, String path, IHTTPSession session) throws IOException {
if (domain.equals("api.minecraftservices.com") && path.equals("/privileges") && session.getMethod().equals("GET")) { if (domain.equals("api.minecraftservices.com") && path.equals("/privileges") && session.getMethod().equals("GET")) {
JSONObject response = new JSONObject(); JSONObject response = new JSONObject();
JSONObject privileges = new JSONObject(); JSONObject privilegesJson = new JSONObject();
for (String privilegeName : PRIVILEGES) { privileges.forEach((name, enabled) -> {
JSONObject privilege = new JSONObject(); JSONObject privilegeJson = new JSONObject();
privilege.put("enabled", true); privilegeJson.put("enabled", enabled);
privileges.put(privilegeName, privilege); privilegesJson.put(name, privilegeJson);
} });
response.put("privileges", privileges); response.put("privileges", privilegesJson);
return Optional.of(Response.newFixedLength(Status.OK, CONTENT_TYPE_JSON, response.toJSONString())); return Optional.of(Response.newFixedLength(Status.OK, CONTENT_TYPE_JSON, response.toJSONString()));
} else { } else {
return Optional.empty(); return Optional.empty();