package com.mojang.realmsclient.client; import com.google.gson.JsonArray; import com.google.gson.JsonElement; import com.mojang.logging.LogUtils; import com.mojang.realmsclient.RealmsMainScreen; import com.mojang.realmsclient.dto.BackupList; import com.mojang.realmsclient.dto.GuardedSerializer; import com.mojang.realmsclient.dto.Ops; import com.mojang.realmsclient.dto.PendingInvite; import com.mojang.realmsclient.dto.PendingInvitesList; import com.mojang.realmsclient.dto.PingResult; import com.mojang.realmsclient.dto.PlayerInfo; import com.mojang.realmsclient.dto.PreferredRegionsDto; import com.mojang.realmsclient.dto.RealmsConfigurationDto; import com.mojang.realmsclient.dto.RealmsDescriptionDto; import com.mojang.realmsclient.dto.RealmsJoinInformation; import com.mojang.realmsclient.dto.RealmsNews; import com.mojang.realmsclient.dto.RealmsNotification; import com.mojang.realmsclient.dto.RealmsRegion; import com.mojang.realmsclient.dto.RealmsServer; import com.mojang.realmsclient.dto.RealmsServerList; import com.mojang.realmsclient.dto.RealmsServerPlayerLists; import com.mojang.realmsclient.dto.RealmsSetting; import com.mojang.realmsclient.dto.RealmsSlotUpdateDto; import com.mojang.realmsclient.dto.RealmsWorldOptions; import com.mojang.realmsclient.dto.RealmsWorldResetDto; import com.mojang.realmsclient.dto.RegionDataDto; import com.mojang.realmsclient.dto.RegionSelectionPreference; import com.mojang.realmsclient.dto.RegionSelectionPreferenceDto; import com.mojang.realmsclient.dto.ServerActivityList; import com.mojang.realmsclient.dto.Subscription; import com.mojang.realmsclient.dto.UploadInfo; import com.mojang.realmsclient.dto.WorldDownload; import com.mojang.realmsclient.dto.WorldTemplatePaginatedList; import com.mojang.realmsclient.exception.RealmsHttpException; import com.mojang.realmsclient.exception.RealmsServiceException; import com.mojang.realmsclient.exception.RetryCallException; import com.mojang.realmsclient.util.UploadTokenCache; import com.mojang.util.UndashedUuid; import java.net.URI; import java.net.URISyntaxException; import java.util.List; import java.util.Locale; import java.util.Optional; import java.util.Set; import java.util.UUID; import java.util.concurrent.CompletableFuture; import java.util.stream.Collectors; import net.fabricmc.api.EnvType; import net.minecraft.SharedConstants; import net.minecraft.Util; import net.minecraft.client.Minecraft; import net.minecraft.client.User; import net.minecraft.util.LenientJsonParser; import org.jetbrains.annotations.Nullable; import org.slf4j.Logger; @net.fabricmc.api.Environment(EnvType.CLIENT) public class RealmsClient { public static final RealmsClient.Environment ENVIRONMENT = (RealmsClient.Environment)Optional.ofNullable(System.getenv("realms.environment")) .or(() -> Optional.ofNullable(System.getProperty("realms.environment"))) .flatMap(RealmsClient.Environment::byName) .orElse(RealmsClient.Environment.PRODUCTION); private static final Logger LOGGER = LogUtils.getLogger(); @Nullable private static volatile RealmsClient realmsClientInstance = null; private final CompletableFuture> featureFlags; private final String sessionId; private final String username; private final Minecraft minecraft; private static final String WORLDS_RESOURCE_PATH = "worlds"; private static final String INVITES_RESOURCE_PATH = "invites"; private static final String MCO_RESOURCE_PATH = "mco"; private static final String SUBSCRIPTION_RESOURCE = "subscriptions"; private static final String ACTIVITIES_RESOURCE = "activities"; private static final String OPS_RESOURCE = "ops"; private static final String REGIONS_RESOURCE = "regions/ping/stat"; private static final String PREFERRED_REGION_RESOURCE = "regions/preferredRegions"; private static final String TRIALS_RESOURCE = "trial"; private static final String NOTIFICATIONS_RESOURCE = "notifications"; private static final String FEATURE_FLAGS_RESOURCE = "feature/v1"; private static final String PATH_LIST_ALL_REALMS = "/listUserWorldsOfType/any"; private static final String PATH_CREATE_SNAPSHOT_REALM = "/$PARENT_WORLD_ID/createPrereleaseRealm"; private static final String PATH_SNAPSHOT_ELIGIBLE_REALMS = "/listPrereleaseEligibleWorlds"; private static final String PATH_INITIALIZE = "/$WORLD_ID/initialize"; private static final String PATH_GET_ACTIVTIES = "/$WORLD_ID"; private static final String PATH_GET_LIVESTATS = "/liveplayerlist"; private static final String PATH_GET_SUBSCRIPTION = "/$WORLD_ID"; private static final String PATH_OP = "/$WORLD_ID/$PROFILE_UUID"; private static final String PATH_PUT_INTO_MINIGAMES_MODE = "/minigames/$MINIGAME_ID/$WORLD_ID"; private static final String PATH_AVAILABLE = "/available"; private static final String PATH_TEMPLATES = "/templates/$WORLD_TYPE"; private static final String PATH_WORLD_JOIN = "/v1/$ID/join/pc"; private static final String PATH_WORLD_GET = "/$ID"; private static final String PATH_WORLD_INVITES = "/$WORLD_ID"; private static final String PATH_WORLD_UNINVITE = "/$WORLD_ID/invite/$UUID"; private static final String PATH_PENDING_INVITES_COUNT = "/count/pending"; private static final String PATH_PENDING_INVITES = "/pending"; private static final String PATH_ACCEPT_INVITE = "/accept/$INVITATION_ID"; private static final String PATH_REJECT_INVITE = "/reject/$INVITATION_ID"; private static final String PATH_UNINVITE_MYSELF = "/$WORLD_ID"; private static final String PATH_WORLD_CONFIGURE = "/$WORLD_ID/configuration"; private static final String PATH_SLOT = "/$WORLD_ID/slot/$SLOT_ID"; private static final String PATH_WORLD_OPEN = "/$WORLD_ID/open"; private static final String PATH_WORLD_CLOSE = "/$WORLD_ID/close"; private static final String PATH_WORLD_RESET = "/$WORLD_ID/reset"; private static final String PATH_DELETE_WORLD = "/$WORLD_ID"; private static final String PATH_WORLD_BACKUPS = "/$WORLD_ID/backups"; private static final String PATH_WORLD_DOWNLOAD = "/$WORLD_ID/slot/$SLOT_ID/download"; private static final String PATH_WORLD_UPLOAD = "/$WORLD_ID/backups/upload"; private static final String PATH_CLIENT_COMPATIBLE = "/client/compatible"; private static final String PATH_TOS_AGREED = "/tos/agreed"; private static final String PATH_NEWS = "/v1/news"; private static final String PATH_MARK_NOTIFICATIONS_SEEN = "/seen"; private static final String PATH_DISMISS_NOTIFICATIONS = "/dismiss"; private static final GuardedSerializer GSON = new GuardedSerializer(); public static RealmsClient getOrCreate() { Minecraft minecraft = Minecraft.getInstance(); return getOrCreate(minecraft); } public static RealmsClient getOrCreate(Minecraft minecraft) { String string = minecraft.getUser().getName(); String string2 = minecraft.getUser().getSessionId(); RealmsClient realmsClient = realmsClientInstance; if (realmsClient != null) { return realmsClient; } else { synchronized (RealmsClient.class) { RealmsClient realmsClient2 = realmsClientInstance; if (realmsClient2 != null) { return realmsClient2; } else { realmsClient2 = new RealmsClient(string2, string, minecraft); realmsClientInstance = realmsClient2; return realmsClient2; } } } } private RealmsClient(String sessionId, String username, Minecraft minecraft) { this.sessionId = sessionId; this.username = username; this.minecraft = minecraft; RealmsClientConfig.setProxy(minecraft.getProxy()); this.featureFlags = CompletableFuture.supplyAsync(this::fetchFeatureFlags, Util.nonCriticalIoPool()); } public Set getFeatureFlags() { return (Set)this.featureFlags.join(); } private Set fetchFeatureFlags() { User user = Minecraft.getInstance().getUser(); if (user.getType() != User.Type.MSA) { return Set.of(); } else { String string = url("feature/v1", null, false); try { String string2 = this.execute(Request.get(string, 5000, 10000)); JsonArray jsonArray = LenientJsonParser.parse(string2).getAsJsonArray(); Set set = (Set)jsonArray.asList().stream().map(JsonElement::getAsString).collect(Collectors.toSet()); LOGGER.debug("Fetched Realms feature flags: {}", set); return set; } catch (RealmsServiceException var6) { LOGGER.error("Failed to fetch Realms feature flags", (Throwable)var6); } catch (Exception var7) { LOGGER.error("Could not parse Realms feature flags", (Throwable)var7); } return Set.of(); } } public RealmsServerList listRealms() throws RealmsServiceException { String string = this.url("worlds"); if (RealmsMainScreen.isSnapshot()) { string = string + "/listUserWorldsOfType/any"; } String string2 = this.execute(Request.get(string)); return RealmsServerList.parse(GSON, string2); } public List listSnapshotEligibleRealms() throws RealmsServiceException { String string = this.url("worlds/listPrereleaseEligibleWorlds"); String string2 = this.execute(Request.get(string)); return RealmsServerList.parse(GSON, string2).servers; } public RealmsServer createSnapshotRealm(Long parentId) throws RealmsServiceException { String string = String.valueOf(parentId); String string2 = this.url("worlds" + "/$PARENT_WORLD_ID/createPrereleaseRealm".replace("$PARENT_WORLD_ID", string)); return RealmsServer.parse(GSON, this.execute(Request.post(string2, string))); } public List getNotifications() throws RealmsServiceException { String string = this.url("notifications"); String string2 = this.execute(Request.get(string)); return RealmsNotification.parseList(string2); } private static JsonArray uuidListToJsonArray(List uuidList) { JsonArray jsonArray = new JsonArray(); for (UUID uUID : uuidList) { if (uUID != null) { jsonArray.add(uUID.toString()); } } return jsonArray; } public void notificationsSeen(List uuidList) throws RealmsServiceException { String string = this.url("notifications/seen"); this.execute(Request.post(string, GSON.toJson(uuidListToJsonArray(uuidList)))); } public void notificationsDismiss(List uuidList) throws RealmsServiceException { String string = this.url("notifications/dismiss"); this.execute(Request.post(string, GSON.toJson(uuidListToJsonArray(uuidList)))); } public RealmsServer getOwnRealm(long id) throws RealmsServiceException { String string = this.url("worlds" + "/$ID".replace("$ID", String.valueOf(id))); String string2 = this.execute(Request.get(string)); return RealmsServer.parse(GSON, string2); } public PreferredRegionsDto getPreferredRegionSelections() throws RealmsServiceException { String string = this.url("regions/preferredRegions"); String string2 = this.execute(Request.get(string)); try { PreferredRegionsDto preferredRegionsDto = GSON.fromJson(string2, PreferredRegionsDto.class); if (preferredRegionsDto == null) { return PreferredRegionsDto.empty(); } else { Set set = (Set)preferredRegionsDto.regionData().stream().map(RegionDataDto::region).collect(Collectors.toSet()); for (RealmsRegion realmsRegion : RealmsRegion.values()) { if (realmsRegion != RealmsRegion.INVALID_REGION && !set.contains(realmsRegion)) { LOGGER.debug("No realms region matching {} in server response", realmsRegion); } } return preferredRegionsDto; } } catch (Exception var9) { LOGGER.error("Could not parse PreferredRegionSelections: {}", var9.getMessage()); return PreferredRegionsDto.empty(); } } public ServerActivityList getActivity(long worldId) throws RealmsServiceException { String string = this.url("activities" + "/$WORLD_ID".replace("$WORLD_ID", String.valueOf(worldId))); String string2 = this.execute(Request.get(string)); return ServerActivityList.parse(string2); } public RealmsServerPlayerLists getLiveStats() throws RealmsServiceException { String string = this.url("activities/liveplayerlist"); String string2 = this.execute(Request.get(string)); return RealmsServerPlayerLists.parse(string2); } public RealmsJoinInformation join(long worldId) throws RealmsServiceException { String string = this.url("worlds" + "/v1/$ID/join/pc".replace("$ID", worldId + "")); String string2 = this.execute(Request.get(string, 5000, 30000)); return RealmsJoinInformation.parse(GSON, string2); } public void initializeRealm(long worldId, String name, String description) throws RealmsServiceException { RealmsDescriptionDto realmsDescriptionDto = new RealmsDescriptionDto(name, description); String string = this.url("worlds" + "/$WORLD_ID/initialize".replace("$WORLD_ID", String.valueOf(worldId))); String string2 = GSON.toJson(realmsDescriptionDto); this.execute(Request.post(string, string2, 5000, 10000)); } public boolean hasParentalConsent() throws RealmsServiceException { String string = this.url("mco/available"); String string2 = this.execute(Request.get(string)); return Boolean.parseBoolean(string2); } public RealmsClient.CompatibleVersionResponse clientCompatible() throws RealmsServiceException { String string = this.url("mco/client/compatible"); String string2 = this.execute(Request.get(string)); try { return RealmsClient.CompatibleVersionResponse.valueOf(string2); } catch (IllegalArgumentException var5) { throw new RealmsServiceException(RealmsError.CustomError.unknownCompatibilityResponse(string2)); } } public void uninvite(long worldId, UUID playerUuid) throws RealmsServiceException { String string = this.url( "invites" + "/$WORLD_ID/invite/$UUID".replace("$WORLD_ID", String.valueOf(worldId)).replace("$UUID", UndashedUuid.toString(playerUuid)) ); this.execute(Request.delete(string)); } public void uninviteMyselfFrom(long worldId) throws RealmsServiceException { String string = this.url("invites" + "/$WORLD_ID".replace("$WORLD_ID", String.valueOf(worldId))); this.execute(Request.delete(string)); } public List invite(long worldId, String playerName) throws RealmsServiceException { PlayerInfo playerInfo = new PlayerInfo(); playerInfo.setName(playerName); String string = this.url("invites" + "/$WORLD_ID".replace("$WORLD_ID", String.valueOf(worldId))); String string2 = this.execute(Request.post(string, GSON.toJson(playerInfo))); return RealmsServer.parse(GSON, string2).players; } public BackupList backupsFor(long worldId) throws RealmsServiceException { String string = this.url("worlds" + "/$WORLD_ID/backups".replace("$WORLD_ID", String.valueOf(worldId))); String string2 = this.execute(Request.get(string)); return BackupList.parse(string2); } public void updateConfiguration( long worldId, String name, String description, @Nullable RegionSelectionPreferenceDto regionSettings, int slotId, RealmsWorldOptions options, List settings ) throws RealmsServiceException { RegionSelectionPreferenceDto regionSelectionPreferenceDto = regionSettings != null ? regionSettings : new RegionSelectionPreferenceDto(RegionSelectionPreference.DEFAULT_SELECTION, null); RealmsDescriptionDto realmsDescriptionDto = new RealmsDescriptionDto(name, description); RealmsSlotUpdateDto realmsSlotUpdateDto = new RealmsSlotUpdateDto(slotId, options, RealmsSetting.isHardcore(settings)); RealmsConfigurationDto realmsConfigurationDto = new RealmsConfigurationDto(realmsSlotUpdateDto, settings, regionSelectionPreferenceDto, realmsDescriptionDto); String string = this.url("worlds" + "/$WORLD_ID/configuration".replace("$WORLD_ID", String.valueOf(worldId))); this.execute(Request.post(string, GSON.toJson(realmsConfigurationDto))); } public void updateSlot(long worldId, int slotId, RealmsWorldOptions options, List settings) throws RealmsServiceException { String string = this.url("worlds" + "/$WORLD_ID/slot/$SLOT_ID".replace("$WORLD_ID", String.valueOf(worldId)).replace("$SLOT_ID", String.valueOf(slotId))); String string2 = GSON.toJson(new RealmsSlotUpdateDto(slotId, options, RealmsSetting.isHardcore(settings))); this.execute(Request.post(string, string2)); } public boolean switchSlot(long worldId, int slotId) throws RealmsServiceException { String string = this.url("worlds" + "/$WORLD_ID/slot/$SLOT_ID".replace("$WORLD_ID", String.valueOf(worldId)).replace("$SLOT_ID", String.valueOf(slotId))); String string2 = this.execute(Request.put(string, "")); return Boolean.valueOf(string2); } public void restoreWorld(long worldId, String backupId) throws RealmsServiceException { String string = this.url("worlds" + "/$WORLD_ID/backups".replace("$WORLD_ID", String.valueOf(worldId)), "backupId=" + backupId); this.execute(Request.put(string, "", 40000, 600000)); } public WorldTemplatePaginatedList fetchWorldTemplates(int page, int pageSize, RealmsServer.WorldType worldType) throws RealmsServiceException { String string = this.url( "worlds" + "/templates/$WORLD_TYPE".replace("$WORLD_TYPE", worldType.toString()), String.format(Locale.ROOT, "page=%d&pageSize=%d", page, pageSize) ); String string2 = this.execute(Request.get(string)); return WorldTemplatePaginatedList.parse(string2); } public Boolean putIntoMinigameMode(long worldId, String minigameId) throws RealmsServiceException { String string = "/minigames/$MINIGAME_ID/$WORLD_ID".replace("$MINIGAME_ID", minigameId).replace("$WORLD_ID", String.valueOf(worldId)); String string2 = this.url("worlds" + string); return Boolean.valueOf(this.execute(Request.put(string2, ""))); } public Ops op(long worldId, UUID profileUuid) throws RealmsServiceException { String string = "/$WORLD_ID/$PROFILE_UUID".replace("$WORLD_ID", String.valueOf(worldId)).replace("$PROFILE_UUID", UndashedUuid.toString(profileUuid)); String string2 = this.url("ops" + string); return Ops.parse(this.execute(Request.post(string2, ""))); } public Ops deop(long worldId, UUID profileUuid) throws RealmsServiceException { String string = "/$WORLD_ID/$PROFILE_UUID".replace("$WORLD_ID", String.valueOf(worldId)).replace("$PROFILE_UUID", UndashedUuid.toString(profileUuid)); String string2 = this.url("ops" + string); return Ops.parse(this.execute(Request.delete(string2))); } public Boolean open(long worldId) throws RealmsServiceException { String string = this.url("worlds" + "/$WORLD_ID/open".replace("$WORLD_ID", String.valueOf(worldId))); String string2 = this.execute(Request.put(string, "")); return Boolean.valueOf(string2); } public Boolean close(long worldId) throws RealmsServiceException { String string = this.url("worlds" + "/$WORLD_ID/close".replace("$WORLD_ID", String.valueOf(worldId))); String string2 = this.execute(Request.put(string, "")); return Boolean.valueOf(string2); } public Boolean resetWorldWithTemplate(long worldId, String worldTemplateId) throws RealmsServiceException { RealmsWorldResetDto realmsWorldResetDto = new RealmsWorldResetDto(null, Long.valueOf(worldTemplateId), -1, false, Set.of()); String string = this.url("worlds" + "/$WORLD_ID/reset".replace("$WORLD_ID", String.valueOf(worldId))); String string2 = this.execute(Request.post(string, GSON.toJson(realmsWorldResetDto), 30000, 80000)); return Boolean.valueOf(string2); } public Subscription subscriptionFor(long worldId) throws RealmsServiceException { String string = this.url("subscriptions" + "/$WORLD_ID".replace("$WORLD_ID", String.valueOf(worldId))); String string2 = this.execute(Request.get(string)); return Subscription.parse(string2); } public int pendingInvitesCount() throws RealmsServiceException { return this.pendingInvites().pendingInvites.size(); } public PendingInvitesList pendingInvites() throws RealmsServiceException { String string = this.url("invites/pending"); String string2 = this.execute(Request.get(string)); PendingInvitesList pendingInvitesList = PendingInvitesList.parse(string2); pendingInvitesList.pendingInvites.removeIf(this::isBlocked); return pendingInvitesList; } private boolean isBlocked(PendingInvite pendingInvite) { return this.minecraft.getPlayerSocialManager().isBlocked(pendingInvite.realmOwnerUuid); } public void acceptInvitation(String inviteId) throws RealmsServiceException { String string = this.url("invites" + "/accept/$INVITATION_ID".replace("$INVITATION_ID", inviteId)); this.execute(Request.put(string, "")); } public WorldDownload requestDownloadInfo(long worldId, int slotId) throws RealmsServiceException { String string = this.url( "worlds" + "/$WORLD_ID/slot/$SLOT_ID/download".replace("$WORLD_ID", String.valueOf(worldId)).replace("$SLOT_ID", String.valueOf(slotId)) ); String string2 = this.execute(Request.get(string)); return WorldDownload.parse(string2); } @Nullable public UploadInfo requestUploadInfo(long worldId) throws RealmsServiceException { String string = this.url("worlds" + "/$WORLD_ID/backups/upload".replace("$WORLD_ID", String.valueOf(worldId))); String string2 = UploadTokenCache.get(worldId); UploadInfo uploadInfo = UploadInfo.parse(this.execute(Request.put(string, UploadInfo.createRequest(string2)))); if (uploadInfo != null) { UploadTokenCache.put(worldId, uploadInfo.getToken()); } return uploadInfo; } public void rejectInvitation(String inviteId) throws RealmsServiceException { String string = this.url("invites" + "/reject/$INVITATION_ID".replace("$INVITATION_ID", inviteId)); this.execute(Request.put(string, "")); } public void agreeToTos() throws RealmsServiceException { String string = this.url("mco/tos/agreed"); this.execute(Request.post(string, "")); } public RealmsNews getNews() throws RealmsServiceException { String string = this.url("mco/v1/news"); String string2 = this.execute(Request.get(string, 5000, 10000)); return RealmsNews.parse(string2); } public void sendPingResults(PingResult pingResult) throws RealmsServiceException { String string = this.url("regions/ping/stat"); this.execute(Request.post(string, GSON.toJson(pingResult))); } public Boolean trialAvailable() throws RealmsServiceException { String string = this.url("trial"); String string2 = this.execute(Request.get(string)); return Boolean.valueOf(string2); } public void deleteRealm(long worldId) throws RealmsServiceException { String string = this.url("worlds" + "/$WORLD_ID".replace("$WORLD_ID", String.valueOf(worldId))); this.execute(Request.delete(string)); } private String url(String path) throws RealmsServiceException { return this.url(path, null); } private String url(String path, @Nullable String query) throws RealmsServiceException { return url(path, query, this.getFeatureFlags().contains("realms_in_aks")); } private static String url(String path, @Nullable String query, boolean useAlternativeUrl) { try { return new URI(ENVIRONMENT.protocol, useAlternativeUrl ? ENVIRONMENT.alternativeUrl : ENVIRONMENT.baseUrl, "/" + path, query, null).toASCIIString(); } catch (URISyntaxException var4) { throw new IllegalArgumentException(path, var4); } } private String execute(Request request) throws RealmsServiceException { request.cookie("sid", this.sessionId); request.cookie("user", this.username); request.cookie("version", SharedConstants.getCurrentVersion().name()); request.addSnapshotHeader(RealmsMainScreen.isSnapshot()); try { int i = request.responseCode(); if (i != 503 && i != 277) { String string = request.text(); if (i >= 200 && i < 300) { return string; } else if (i == 401) { String string2 = request.getHeader("WWW-Authenticate"); LOGGER.info("Could not authorize you against Realms server: {}", string2); throw new RealmsServiceException(new RealmsError.AuthenticationError(string2)); } else { String string2 = request.connection.getContentType(); if (string2 != null && string2.startsWith("text/html")) { throw new RealmsServiceException(RealmsError.CustomError.htmlPayload(i, string)); } else { RealmsError realmsError = RealmsError.parse(i, string); throw new RealmsServiceException(realmsError); } } } else { int j = request.getRetryAfterHeader(); throw new RetryCallException(j, i); } } catch (RealmsHttpException var6) { throw new RealmsServiceException(RealmsError.CustomError.connectivityError(var6)); } } @net.fabricmc.api.Environment(EnvType.CLIENT) public static enum CompatibleVersionResponse { COMPATIBLE, OUTDATED, OTHER; } @net.fabricmc.api.Environment(EnvType.CLIENT) public static enum Environment { PRODUCTION("pc.realms.minecraft.net", "java.frontendlegacy.realms.minecraft-services.net", "https"), STAGE("pc-stage.realms.minecraft.net", "java.frontendlegacy.stage-c2a40e62.realms.minecraft-services.net", "https"), LOCAL("localhost:8080", "localhost:8080", "http"); public final String baseUrl; public final String alternativeUrl; public final String protocol; private Environment(final String baseUrl, final String alternativeUrl, final String protocol) { this.baseUrl = baseUrl; this.alternativeUrl = alternativeUrl; this.protocol = protocol; } public static Optional byName(String name) { String var1 = name.toLowerCase(Locale.ROOT); return switch (var1) { case "production" -> Optional.of(PRODUCTION); case "local" -> Optional.of(LOCAL); case "stage", "staging" -> Optional.of(STAGE); default -> Optional.empty(); }; } } }