1.18 fuckery part 1

This commit is contained in:
Agatha Lovelace 2021-12-22 21:50:53 +02:00
parent 2d798cf9d1
commit e83e47b3b1
25 changed files with 266 additions and 178 deletions

View File

@ -1,6 +1,6 @@
buildscript { buildscript {
repositories { repositories {
maven { url "https://maven.shedaniel.me/" } maven { url "https://maven.architectury.dev/" }
} }
dependencies { dependencies {
@ -8,13 +8,11 @@ buildscript {
} }
} }
plugins { plugins {
id "architectury-plugin" version "3.2.112" id "architectury-plugin" version "3.4-SNAPSHOT"
id "dev.architectury.loom" version "0.9.0.131" apply false id "dev.architectury.loom" version "0.10.0-SNAPSHOT" apply false
} }
architectury { architectury {
minecraft = rootProject.minecraft_version minecraft = rootProject.minecraft_version
} }
@ -36,12 +34,15 @@ allprojects {
version = rootProject.mod_version version = rootProject.mod_version
group = rootProject.maven_group group = rootProject.maven_group
tasks.withType(JavaCompile).configureEach { tasks.withType(JavaCompile) {
it.options.encoding = "UTF-8" options.encoding = "UTF-8"
it.options.release = 8 options.release = 17
} }
java { java {
withSourcesJar() withSourcesJar()
} }
} }
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17

View File

@ -5,7 +5,7 @@ repositories {
} }
loom { loom {
accessWidener("src/main/resources/simpleauth.accesswidener") accessWidenerPath = file("src/main/resources/simpleauth.accesswidener")
} }
dependencies { dependencies {
@ -13,7 +13,7 @@ dependencies {
// Do NOT use other classes from fabric loader // Do NOT use other classes from fabric loader
modImplementation "net.fabricmc:fabric-loader:${rootProject.loader_version}" modImplementation "net.fabricmc:fabric-loader:${rootProject.loader_version}"
modImplementation ("me.shedaniel:architectury:${rootProject.architectury_version}") { modImplementation ("dev.architectury:architectury:${rootProject.architectury_version}") {
exclude(module: "fabric-api") exclude(module: "fabric-api")
} }
@ -35,5 +35,8 @@ dependencies {
} }
architectury { architectury {
common(false) common()
} }
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17

View File

@ -71,10 +71,14 @@ public class AccountCommand {
// Different thread to avoid lag spikes // Different thread to avoid lag spikes
THREADPOOL.submit(() -> { THREADPOOL.submit(() -> {
if (AuthHelper.checkPassword(((PlayerAuth) player).getFakeUuid(), pass.toCharArray()) == AuthHelper.PasswordOptions.CORRECT) { String uuid = ((PlayerAuth) player).getFakeUuid();
DB.deleteUserData(((PlayerAuth) player).getFakeUuid());
if (AuthHelper.checkPassword(uuid, pass.toCharArray()) == AuthHelper.PasswordOptions.CORRECT) {
DB.deleteUserData(uuid);
player.sendMessage(new LiteralText(config.lang.accountDeleted), false); player.sendMessage(new LiteralText(config.lang.accountDeleted), false);
((PlayerAuth) player).setAuthenticated(false); ((PlayerAuth) player).setAuthenticated(false);
player.networkHandler.disconnect(new LiteralText(config.lang.accountDeleted));
playerCacheMap.remove(uuid);
return; return;
} }
player.sendMessage( player.sendMessage(

View File

@ -187,7 +187,7 @@ public class AuthCommand {
Entity sender = source.getEntity(); Entity sender = source.getEntity();
THREADPOOL.submit(() -> { THREADPOOL.submit(() -> {
DB.deleteUserData(uuid); DB.deleteUserData(uuid);
playerCacheMap.put(uuid, null); playerCacheMap.remove(uuid);
}); });
if(sender != null) if(sender != null)

View File

@ -26,6 +26,8 @@ import static org.samo_lego.simpleauth.SimpleAuth.playerCacheMap;
*/ */
public class AuthEventHandler { public class AuthEventHandler {
public static long lastAcceptedPacket = 0;
/** /**
* Player pre-join. * Player pre-join.
* Returns text as a reason for disconnect or null to pass * Returns text as a reason for disconnect or null to pass
@ -83,6 +85,7 @@ public class AuthEventHandler {
} }
if ( if (
playerCache != null &&
playerCache.isAuthenticated && playerCache.isAuthenticated &&
playerCache.validUntil >= System.currentTimeMillis() && playerCache.validUntil >= System.currentTimeMillis() &&
player.getIp().equals(playerCache.lastIp) player.getIp().equals(playerCache.lastIp)
@ -152,6 +155,10 @@ public class AuthEventHandler {
boolean auth = ((PlayerAuth) player).isAuthenticated(); boolean auth = ((PlayerAuth) player).isAuthenticated();
// Otherwise movement should be disabled // Otherwise movement should be disabled
if(!auth && !config.experimental.allowMovement) { if(!auth && !config.experimental.allowMovement) {
if (System.nanoTime() >= lastAcceptedPacket + config.experimental.teleportationTimeoutInMs * 1000000) {
player.networkHandler.requestTeleport(player.getX(), player.getY(), player.getZ(), player.getYaw(), player.getPitch());
lastAcceptedPacket = System.nanoTime();
}
if(!player.isInvulnerable()) if(!player.isInvulnerable())
player.setInvulnerable(true); player.setInvulnerable(true);
return ActionResult.FAIL; return ActionResult.FAIL;

View File

@ -67,8 +67,6 @@ public abstract class MixinServerPlayNetworkHandler {
private void onPlayerMove(PlayerMoveC2SPacket playerMoveC2SPacket, CallbackInfo ci) { private void onPlayerMove(PlayerMoveC2SPacket playerMoveC2SPacket, CallbackInfo ci) {
ActionResult result = AuthEventHandler.onPlayerMove(player); ActionResult result = AuthEventHandler.onPlayerMove(player);
if (result == ActionResult.FAIL) { if (result == ActionResult.FAIL) {
// A bit ugly, I know. (we need to update player position)
player.networkHandler.requestTeleport(player.getX(), player.getY(), player.getZ(), player.getYaw(), player.getPitch());
ci.cancel(); ci.cancel();
} }
} }

View File

@ -53,7 +53,7 @@ public class MixinServerPlayerEntity implements PlayerAuth {
logInfo("Teleporting " + player.getName().asString() + (hide ? " to spawn." : " to original position.")); logInfo("Teleporting " + player.getName().asString() + (hide ? " to spawn." : " to original position."));
if (hide) { if (hide) {
// Saving position // Saving position
cache.lastLocation.dimension = player.getServerWorld(); cache.lastLocation.dimension = player.getWorld();
cache.lastLocation.position = player.getPos(); cache.lastLocation.position = player.getPos();
cache.lastLocation.yaw = player.getYaw(); cache.lastLocation.yaw = player.getYaw();
cache.lastLocation.pitch = player.getPitch(); cache.lastLocation.pitch = player.getPitch();
@ -192,6 +192,9 @@ public class MixinServerPlayerEntity implements PlayerAuth {
if(kickTimer <= 0 && player.networkHandler.getConnection().isOpen()) { if(kickTimer <= 0 && player.networkHandler.getConnection().isOpen()) {
player.networkHandler.disconnect(new LiteralText(config.lang.timeExpired)); player.networkHandler.disconnect(new LiteralText(config.lang.timeExpired));
} }
else if (!playerCacheMap.containsKey(((PlayerAuth) player).getFakeUuid())) {
player.networkHandler.disconnect(new LiteralText(config.lang.accountDeleted));
}
else { else {
// Sending authentication prompt every 10 seconds // Sending authentication prompt every 10 seconds
if(kickTimer % 200 == 0) if(kickTimer % 200 == 0)

View File

@ -24,7 +24,6 @@ import java.io.*;
import java.nio.charset.StandardCharsets; import java.nio.charset.StandardCharsets;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays; import java.util.Arrays;
import java.util.List;
import static org.samo_lego.simpleauth.SimpleAuth.serverProp; import static org.samo_lego.simpleauth.SimpleAuth.serverProp;
import static org.samo_lego.simpleauth.utils.SimpleLogger.logError; import static org.samo_lego.simpleauth.utils.SimpleLogger.logError;
@ -273,6 +272,16 @@ public class AuthConfig {
* their stuff, unless you migrate it manually. * their stuff, unless you migrate it manually.
*/ */
public boolean forceoOfflineUuids = false; public boolean forceoOfflineUuids = false;
/**
* Cancellation of packets with player's movement and
* teleportation back leads to an increase number of that packets.
* That settings limits players teleportation.
* This settings is server-wide so maximum rate would be
* (1000/teleportationTimeoutInMs) per seconds for every unauthorised players.
* Value 0 would effectively disable this settings
* so players will be teleported after each packet.
*/
public long teleportationTimeoutInMs = 5;
} }
public MainConfig main = new MainConfig(); public MainConfig main = new MainConfig();

View File

@ -92,7 +92,7 @@ public class PlayerCache {
playerCache = new PlayerCache(); playerCache = new PlayerCache();
if(player != null) { if(player != null) {
// Setting position cache // Setting position cache
playerCache.lastLocation.dimension = player.getServerWorld(); playerCache.lastLocation.dimension = player.getWorld();
playerCache.lastLocation.position = player.getPos(); playerCache.lastLocation.position = player.getPos();
playerCache.lastLocation.yaw = player.getYaw(); playerCache.lastLocation.yaw = player.getYaw();
playerCache.lastLocation.pitch = player.getPitch(); playerCache.lastLocation.pitch = player.getPitch();

View File

@ -1,6 +1,6 @@
package org.samo_lego.simpleauth.utils; package org.samo_lego.simpleauth.utils;
import me.shedaniel.architectury.ExpectPlatform; import dev.architectury.injectables.annotations.ExpectPlatform;
import net.minecraft.entity.player.PlayerEntity; import net.minecraft.entity.player.PlayerEntity;
public class PlatformSpecific { public class PlatformSpecific {

View File

@ -14,7 +14,7 @@
}, },
"license": "MIT", "license": "MIT",
"environment": "*", "environment": "server",
"entrypoints": { "entrypoints": {
"main": [ "main": [
"org.samo_lego.simpleauth.SimpleAuthFabric" "org.samo_lego.simpleauth.SimpleAuthFabric"

View File

@ -1,7 +1,7 @@
{ {
"required": true, "required": true,
"package": "org.samo_lego.simpleauth.mixin", "package": "org.samo_lego.simpleauth.mixin",
"compatibilityLevel": "JAVA_16", "compatibilityLevel": "JAVA_17",
"mixins": [ "mixins": [
"MixinPlayerAdvancementTracker", "MixinPlayerAdvancementTracker",
"MixinPlayerManager", "MixinPlayerManager",

View File

@ -1,5 +1,5 @@
plugins { plugins {
id "com.github.johnrengelman.shadow" version "5.0.0" id "com.github.johnrengelman.shadow" version "7.1.0"
} }
repositories { repositories {
@ -40,7 +40,7 @@ dependencies {
// from masa's maven // from masa's maven
//modImplementation "carpet:fabric-carpet:${project.minecraft_version}-${project.carpet_core_version}" //modImplementation "carpet:fabric-carpet:${project.minecraft_version}-${project.carpet_core_version}"
// jitpack for quicker updating // jitpack for quicker updating
modImplementation "com.github.gnembon:fabric-carpet:${project.carpet_branch}-SNAPSHOT" modImplementation "carpet:fabric-carpet:1.18-${project.carpet_core_version}"
// Password hashing // Password hashing
// Argon2 // Argon2

View File

@ -14,7 +14,7 @@
}, },
"license": "MIT", "license": "MIT",
"environment": "*", "environment": "server",
"entrypoints": { "entrypoints": {
"main": [ "main": [
"org.samo_lego.simpleauth.SimpleAuthFabric" "org.samo_lego.simpleauth.SimpleAuthFabric"

View File

@ -1,9 +1,5 @@
plugins { plugins {
id "com.github.johnrengelman.shadow" version "5.0.0" id "com.github.johnrengelman.shadow" version "7.1.0"
}
configurations {
shadow
} }
architectury { architectury {
@ -12,24 +8,25 @@ architectury {
} }
loom { loom {
// Enable this for yarn to work forge {
//useFabricMixin = true mixinConfig "mixins.simpleauth.json"
mixinConfigs = ["mixins.simpleauth.json"] }
useFabricMixin = true }
configurations {
common
shadowCommon // Don't use shadow from the shadow plugin because we don't want IDEA to index this.
compileClasspath.extendsFrom common
runtimeClasspath.extendsFrom common
developmentForge.extendsFrom common
} }
dependencies { dependencies {
forge("net.minecraftforge:forge:${rootProject.minecraft_version}-${rootProject.forge_version}") forge "net.minecraftforge:forge:${rootProject.minecraft_version}-${rootProject.forge_version}"
modApi "dev.architectury:architectury-forge:${rootProject.architectury_version}"
implementation(project(path: ":common")) { common(project(path: ":common", configuration: "namedElements")) { transitive = false }
transitive = false shadowCommon(project(path: ":common", configuration: "transformProductionForge")) { transitive = false }
}
developmentForge(project(path: ":common")) {
transitive = false
}
shadow(project(path: ":common", configuration: "transformProductionForge")) {
transitive = false
}
// Password hashing // Password hashing
// Argon2 // Argon2
@ -51,20 +48,33 @@ dependencies {
shadowJar { shadowJar {
exclude "fabric.mod.json" exclude "fabric.mod.json"
configurations = [project.configurations.shadow] configurations = [project.configurations.shadowCommon]
classifier "shadow" classifier "dev-shadow"
} }
remapJar { remapJar {
dependsOn(shadowJar) input.set shadowJar.archiveFile
input.set(shadowJar.archivePath) dependsOn shadowJar
archiveClassifier = "forge" archiveClassifier = "forge"
} }
jar { jar {
classifier "dev"
manifest { manifest {
attributes([ attributes([
"MixinConfigs": "mixins.simpleauth.json", "MixinConfigs": "mixins.simpleauth.json",
]) ])
} }
}
sourcesJar {
def commonSources = project(":common").sourcesJar
dependsOn commonSources
from commonSources.archiveFile.map { zipTree(it) }
}
components.java {
withVariantsFromConfiguration(project.configurations.shadowRuntimeElements) {
skip()
}
} }

View File

@ -1 +1 @@
loom.forge = true loom.platform = forge

View File

@ -1,4 +1,4 @@
package org.samo_lego.simpleauth; package org.samo_lego.simpleauth.forge;
import com.mojang.brigadier.CommandDispatcher; import com.mojang.brigadier.CommandDispatcher;
import net.minecraft.server.command.ServerCommandSource; import net.minecraft.server.command.ServerCommandSource;
@ -6,8 +6,10 @@ import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.RegisterCommandsEvent; import net.minecraftforge.event.RegisterCommandsEvent;
import net.minecraftforge.eventbus.api.SubscribeEvent; import net.minecraftforge.eventbus.api.SubscribeEvent;
import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.event.server.FMLServerStoppedEvent; import net.minecraftforge.event.server.ServerStoppedEvent;
import net.minecraftforge.fml.loading.FMLPaths; import net.minecraftforge.fml.loading.FMLPaths;
import org.samo_lego.simpleauth.SimpleAuth;
import org.samo_lego.simpleauth.commands.*; import org.samo_lego.simpleauth.commands.*;
@Mod(SimpleAuth.MOD_ID) @Mod(SimpleAuth.MOD_ID)
@ -30,7 +32,7 @@ public class SimpleAuthForge {
@SubscribeEvent @SubscribeEvent
public void onStopServer(FMLServerStoppedEvent event) { public void onStopServer(ServerStoppedEvent event) {
SimpleAuth.stop(); SimpleAuth.stop();
} }
} }

View File

@ -1,4 +1,4 @@
package org.samo_lego.simpleauth.event; package org.samo_lego.simpleauth.forge.event;
import net.minecraft.entity.player.PlayerEntity; import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.util.ActionResult; import net.minecraft.util.ActionResult;
@ -11,6 +11,8 @@ import net.minecraftforge.fml.common.Mod;
import static net.minecraftforge.eventbus.api.EventPriority.HIGHEST; import static net.minecraftforge.eventbus.api.EventPriority.HIGHEST;
import static org.samo_lego.simpleauth.SimpleAuth.MOD_ID; import static org.samo_lego.simpleauth.SimpleAuth.MOD_ID;
import org.samo_lego.simpleauth.event.AuthEventHandler;
/** /**
* This class will take care of actions players try to do, * This class will take care of actions players try to do,
* and cancel them if they aren't authenticated * and cancel them if they aren't authenticated

View File

@ -1,4 +1,4 @@
package org.samo_lego.simpleauth.utils.forge; package org.samo_lego.simpleauth.forge.utils.forge;
import net.minecraft.entity.player.PlayerEntity; import net.minecraft.entity.player.PlayerEntity;

View File

@ -1,6 +1,6 @@
modLoader="javafml" #mandatory modLoader="javafml" #mandatory
# A version range to match for said mod loader - for regular FML @Mod it will be the forge version # A version range to match for said mod loader - for regular FML @Mod it will be the forge version
loaderVersion="[34,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. loaderVersion="[38,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions.
license="MIT" license="MIT"

View File

@ -1,6 +1,6 @@
{ {
"pack": { "pack": {
"description": "SimpleAuth", "description": "SimpleAuth",
"pack_format": 6 "pack_format": 8
} }
} }

View File

@ -2,21 +2,21 @@
org.gradle.jvmargs=-Xmx1G org.gradle.jvmargs=-Xmx1G
# Fabric properties # Fabric properties
minecraft_version=1.17.1-pre2 minecraft_version=1.18.1
yarn_mappings=1.17.1-pre2+build.1 yarn_mappings=1.18.1+build.2
loader_version=0.11.6 loader_version=0.12.11
#Fabric api #Fabric api
fabric_version=0.36.0+1.17 fabric_version=0.44.0+1.18
# Forge # Forge
forge_version=36.0.4 forge_version=39.0.8
# Architectury # Architectury
architectury_version=1.14.156 architectury_version=3.2.57
# Mod Properties # Mod Properties
mod_version = 1.8.3 mod_version = 1.8.4-agatha
maven_group = org.samo_lego maven_group = org.samo_lego
archives_base_name = simpleauth archives_base_name = simpleauth
@ -27,5 +27,5 @@ bytes_version = 1.3.0
# Carpet for debugging # Carpet for debugging
carpet_core_version = 1.4.40+v210608 carpet_core_version = 1.4.56+v211130
carpet_branch = master carpet_branch = master

View File

@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists

269
gradlew vendored Normal file → Executable file
View File

@ -1,7 +1,7 @@
#!/usr/bin/env sh #!/bin/sh
# #
# Copyright 2015 the original author or authors. # Copyright © 2015-2021 the original authors.
# #
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License. # you may not use this file except in compliance with the License.
@ -17,67 +17,101 @@
# #
############################################################################## ##############################################################################
## #
## Gradle start up script for UN*X # Gradle start up script for POSIX generated by Gradle.
## #
# Important for running:
#
# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
# noncompliant, but you have some other compliant shell such as ksh or
# bash, then to run this script, type that shell name before the whole
# command line, like:
#
# ksh Gradle
#
# Busybox and similar reduced shells will NOT work, because this script
# requires all of these POSIX shell features:
# * functions;
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
# * compound commands having a testable exit status, especially «case»;
# * various built-in commands including «command», «set», and «ulimit».
#
# Important for patching:
#
# (2) This script targets any POSIX shell, so it avoids extensions provided
# by Bash, Ksh, etc; in particular arrays are avoided.
#
# The "traditional" practice of packing multiple parameters into a
# space-separated string is a well documented source of bugs and security
# problems, so this is (mostly) avoided, by progressively accumulating
# options in "$@", and eventually passing that to Java.
#
# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
# see the in-line comments for details.
#
# There are tweaks for specific operating systems such as AIX, CygWin,
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
#
############################################################################## ##############################################################################
# Attempt to set APP_HOME # Attempt to set APP_HOME
# Resolve links: $0 may be a link # Resolve links: $0 may be a link
PRG="$0" app_path=$0
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do # Need this for daisy-chained symlinks.
ls=`ls -ld "$PRG"` while
link=`expr "$ls" : '.*-> \(.*\)$'` APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
if expr "$link" : '/.*' > /dev/null; then [ -h "$app_path" ]
PRG="$link" do
else ls=$( ls -ld "$app_path" )
PRG=`dirname "$PRG"`"/$link" link=${ls#*' -> '}
fi case $link in #(
/*) app_path=$link ;; #(
*) app_path=$APP_HOME$link ;;
esac
done done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null
APP_NAME="Gradle" APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"` APP_BASE_NAME=${0##*/}
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Use the maximum available, or set MAX_FD != -1 to use that value. # Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum" MAX_FD=maximum
warn () { warn () {
echo "$*" echo "$*"
} } >&2
die () { die () {
echo echo
echo "$*" echo "$*"
echo echo
exit 1 exit 1
} } >&2
# OS specific support (must be 'true' or 'false'). # OS specific support (must be 'true' or 'false').
cygwin=false cygwin=false
msys=false msys=false
darwin=false darwin=false
nonstop=false nonstop=false
case "`uname`" in case "$( uname )" in #(
CYGWIN* ) CYGWIN* ) cygwin=true ;; #(
cygwin=true Darwin* ) darwin=true ;; #(
;; MSYS* | MINGW* ) msys=true ;; #(
Darwin* ) NONSTOP* ) nonstop=true ;;
darwin=true
;;
MSYS* | MINGW* )
msys=true
;;
NONSTOP* )
nonstop=true
;;
esac esac
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
@ -87,9 +121,9 @@ CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
if [ -n "$JAVA_HOME" ] ; then if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables # IBM's JDK on AIX uses strange locations for the executables
JAVACMD="$JAVA_HOME/jre/sh/java" JAVACMD=$JAVA_HOME/jre/sh/java
else else
JAVACMD="$JAVA_HOME/bin/java" JAVACMD=$JAVA_HOME/bin/java
fi fi
if [ ! -x "$JAVACMD" ] ; then if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
@ -98,7 +132,7 @@ Please set the JAVA_HOME variable in your environment to match the
location of your Java installation." location of your Java installation."
fi fi
else else
JAVACMD="java" JAVACMD=java
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the Please set the JAVA_HOME variable in your environment to match the
@ -106,80 +140,95 @@ location of your Java installation."
fi fi
# Increase the maximum file descriptors if we can. # Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
MAX_FD_LIMIT=`ulimit -H -n` case $MAX_FD in #(
if [ $? -eq 0 ] ; then max*)
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then MAX_FD=$( ulimit -H -n ) ||
MAX_FD="$MAX_FD_LIMIT" warn "Could not query maximum file descriptor limit"
fi esac
ulimit -n $MAX_FD case $MAX_FD in #(
if [ $? -ne 0 ] ; then '' | soft) :;; #(
warn "Could not set maximum file descriptor limit: $MAX_FD" *)
fi ulimit -n "$MAX_FD" ||
else warn "Could not set maximum file descriptor limit to $MAX_FD"
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
fi
fi
# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi
# For Cygwin or MSYS, switch paths to Windows format before running java
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
JAVACMD=`cygpath --unix "$JAVACMD"`
# We build the pattern for arguments to be converted via cygpath
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
SEP=""
for dir in $ROOTDIRSRAW ; do
ROOTDIRS="$ROOTDIRS$SEP$dir"
SEP="|"
done
OURCYGPATTERN="(^($ROOTDIRS))"
# Add a user-defined pattern to the cygpath arguments
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
fi
# Now convert the arguments - kludge to limit ourselves to /bin/sh
i=0
for arg in "$@" ; do
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
else
eval `echo args$i`="\"$arg\""
fi
i=`expr $i + 1`
done
case $i in
0) set -- ;;
1) set -- "$args0" ;;
2) set -- "$args0" "$args1" ;;
3) set -- "$args0" "$args1" "$args2" ;;
4) set -- "$args0" "$args1" "$args2" "$args3" ;;
5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
esac esac
fi fi
# Escape application args # Collect all arguments for the java command, stacking in reverse order:
save () { # * args from the command line
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done # * the main class name
echo " " # * -classpath
} # * -D...appname settings
APP_ARGS=`save "$@"` # * --module-path (only if needed)
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
# Collect all arguments for the java command, following the shell quoting and substitution rules # For Cygwin or MSYS, switch paths to Windows format before running java
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" if "$cygwin" || "$msys" ; then
APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
JAVACMD=$( cygpath --unix "$JAVACMD" )
# Now convert the arguments - kludge to limit ourselves to /bin/sh
for arg do
if
case $arg in #(
-*) false ;; # don't mess with options #(
/?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
[ -e "$t" ] ;; #(
*) false ;;
esac
then
arg=$( cygpath --path --ignore --mixed "$arg" )
fi
# Roll the args list around exactly as many times as the number of
# args, so each arg winds up back in the position where it started, but
# possibly modified.
#
# NB: a `for` loop captures its iteration list before it begins, so
# changing the positional parameters here affects neither the number of
# iterations, nor the values presented in `arg`.
shift # remove old arg
set -- "$@" "$arg" # push replacement arg
done
fi
# Collect all arguments for the java command;
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
# shell script including quotes and variable substitutions, so put them in
# double quotes to make sure that they get re-expanded; and
# * put everything else in single quotes, so that it's not re-expanded.
set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \
-classpath "$CLASSPATH" \
org.gradle.wrapper.GradleWrapperMain \
"$@"
# Use "xargs" to parse quoted args.
#
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
#
# In Bash we could simply go:
#
# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
# set -- "${ARGS[@]}" "$@"
#
# but POSIX shell has neither arrays nor command substitution, so instead we
# post-process each arg (as a line of input to sed) to backslash-escape any
# character that might be a shell metacharacter, then use eval to reverse
# that process (while maintaining the separation between arguments), and wrap
# the whole thing up as a single "set" statement.
#
# This will of course break if any of these variables contains a newline or
# an unmatched quote.
#
eval "set -- $(
printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
xargs -n1 |
sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
tr '\n' ' '
)" '"$@"'
exec "$JAVACMD" "$@" exec "$JAVACMD" "$@"

View File

@ -5,7 +5,7 @@ pluginManagement {
name = 'Fabric' name = 'Fabric'
url = 'https://maven.fabricmc.net/' url = 'https://maven.fabricmc.net/'
} }
maven { url "https://maven.shedaniel.me/" } maven { url "https://maven.architectury.dev/" }
maven { url "https://files.minecraftforge.net/maven/" } maven { url "https://files.minecraftforge.net/maven/" }
gradlePluginPortal() gradlePluginPortal()
} }
@ -13,6 +13,6 @@ pluginManagement {
include("common") include("common")
include("fabric") include("fabric")
//include("forge") include("forge")
rootProject.name = "simpleauth" rootProject.name = "simpleauth"