Geyser/core/src/main/java/org/geysermc/connector/network/session/auth/AuthData.java

51 lines
2.0 KiB
Java
Raw Normal View History

/*
* Copyright (c) 2019-2021 GeyserMC. http://geysermc.org
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
* @author GeyserMC
* @link https://github.com/GeyserMC/Geyser
*/
2019-07-23 23:16:25 +00:00
package org.geysermc.connector.network.session.auth;
2021-02-12 21:22:45 +00:00
import com.fasterxml.jackson.databind.JsonNode;
2019-07-23 23:16:25 +00:00
import lombok.Getter;
2021-02-12 21:22:45 +00:00
import lombok.RequiredArgsConstructor;
import org.geysermc.connector.GeyserConnector;
2019-07-23 23:16:25 +00:00
import java.util.UUID;
2021-02-12 21:22:45 +00:00
@RequiredArgsConstructor
public class AuthData {
2021-02-12 21:22:45 +00:00
@Getter private final String name;
@Getter private final UUID UUID;
@Getter private final String xboxUUID;
2019-07-23 23:16:25 +00:00
2021-02-12 21:22:45 +00:00
private final JsonNode certChainData;
private final String clientData;
public void upload(GeyserConnector connector) {
// we can't upload the skin in LoginEncryptionUtil since the global server would return
// the skin too fast, that's why we upload it after we know for sure that the target server
// is ready to handle the result of the global server
connector.getSkinUploader().uploadSkin(certChainData, clientData);
}
2019-07-23 23:16:25 +00:00
}