forked from LuckPerms/LuckPerms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
66 changed files
with
3,053 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
name: Build Gradle and Publish Docker image | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
tags: | ||
- 'v*' | ||
pull_request: | ||
branches: | ||
- 'master' | ||
|
||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: ${{ github.repository }} | ||
|
||
jobs: | ||
build-gradle: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
|
||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
|
||
- name: Run build with Gradle wrapper | ||
run: ./gradlew build | ||
|
||
- name: Upload all artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: jars | ||
path: | | ||
bukkit/loader/build/libs/LuckPerms-Bukkit-*.jar | ||
bukkit-legacy/loader/build/libs/LuckPerms-Bukkit-Legacy-*.jar | ||
bungee/loader/build/libs/LuckPerms-Bungee-*.jar | ||
sponge/loader/build/libs/LuckPerms-Sponge-*.jar | ||
nukkit/loader/build/libs/LuckPerms-Nukkit-*.jar | ||
velocity/build/libs/LuckPerms-Velocity-*.jar | ||
fabric/build/libs/LuckPerms-Fabric-*.jar | ||
forge/loader/build/libs/LuckPerms-Forge-*.jar | ||
standalone/loader/build/libs/LuckPerms-Standalone-*.jar | ||
- name: Upload standalone artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: standalone-binary | ||
path: standalone/loader/build/libs/LuckPerms-Standalone-*.jar | ||
|
||
|
||
build-docker: | ||
needs: build-gradle | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Retrieve saved standalone jar artifact | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: standalone-binary | ||
path: standalone/docker/ | ||
|
||
- name: Display structure of downloaded files | ||
run: ls -R | ||
working-directory: standalone/docker/ | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v1 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
|
||
- name: Log in to the Container registry | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Extract metadata for Docker | ||
id: meta | ||
uses: docker/metadata-action@v3 | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
flavor: | | ||
latest=${{ github.ref == 'refs/heads/master' }} | ||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: standalone/docker/ | ||
platforms: linux/amd64,linux/arm64 | ||
push: ${{ github.event_name != 'pull_request' }} | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
125 changes: 125 additions & 0 deletions
125
common/src/main/java/me/lucko/luckperms/common/cacheddata/result/IntegerResult.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
/* | ||
* This file is part of LuckPerms, licensed under the MIT License. | ||
* | ||
* Copyright (c) lucko (Luck) <luck@lucko.me> | ||
* Copyright (c) contributors | ||
* | ||
* 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. | ||
*/ | ||
|
||
package me.lucko.luckperms.common.cacheddata.result; | ||
|
||
import net.luckperms.api.cacheddata.Result; | ||
import net.luckperms.api.node.Node; | ||
import net.luckperms.api.node.types.WeightNode; | ||
|
||
import org.checkerframework.checker.nullness.qual.NonNull; | ||
import org.checkerframework.checker.nullness.qual.Nullable; | ||
|
||
/** | ||
* Represents the result of an integer meta lookup | ||
* | ||
* @param <N> the node type | ||
*/ | ||
public final class IntegerResult<N extends Node> implements Result<Integer, N> { | ||
|
||
/** The result */ | ||
private final int result; | ||
/** The node that caused the result */ | ||
private final N node; | ||
/** A reference to another result that this one overrides */ | ||
private IntegerResult<N> overriddenResult; | ||
|
||
public IntegerResult(int result, N node, IntegerResult<N> overriddenResult) { | ||
this.result = result; | ||
this.node = node; | ||
this.overriddenResult = overriddenResult; | ||
} | ||
|
||
@Override | ||
@Deprecated // use intResult() | ||
public @NonNull Integer result() { | ||
return this.result; | ||
} | ||
|
||
public int intResult() { | ||
return this.result; | ||
} | ||
|
||
public StringResult<N> asStringResult() { | ||
if (isNull()) { | ||
return StringResult.nullResult(); | ||
} else { | ||
StringResult<N> result = StringResult.of(Integer.toString(this.result), this.node); | ||
if (this.overriddenResult != null) { | ||
result.setOverriddenResult(this.overriddenResult.asStringResult()); | ||
} | ||
return result; | ||
} | ||
} | ||
|
||
@Override | ||
public @Nullable N node() { | ||
return this.node; | ||
} | ||
|
||
public @Nullable IntegerResult<N> overriddenResult() { | ||
return this.overriddenResult; | ||
} | ||
|
||
public void setOverriddenResult(IntegerResult<N> overriddenResult) { | ||
this.overriddenResult = overriddenResult; | ||
} | ||
|
||
public boolean isNull() { | ||
return this == NULL_RESULT; | ||
} | ||
|
||
public IntegerResult<N> copy() { | ||
return new IntegerResult<>(this.result, this.node, this.overriddenResult); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "IntegerResult(" + | ||
"result=" + this.result + ", " + | ||
"node=" + this.node + ", " + | ||
"overriddenResult=" + this.overriddenResult + ')'; | ||
} | ||
|
||
private static final IntegerResult<?> NULL_RESULT = new IntegerResult<>(0, null, null); | ||
|
||
@SuppressWarnings("unchecked") | ||
public static <N extends Node> IntegerResult<N> nullResult() { | ||
return (IntegerResult<N>) NULL_RESULT; | ||
} | ||
|
||
public static <N extends Node> IntegerResult<N> of(int result) { | ||
return new IntegerResult<>(result, null, null); | ||
} | ||
|
||
public static <N extends Node> IntegerResult<N> of(int result, N node) { | ||
return new IntegerResult<>(result, node, null); | ||
} | ||
|
||
public static IntegerResult<WeightNode> of(WeightNode node) { | ||
return new IntegerResult<>(node.getWeight(), node, null); | ||
} | ||
|
||
} |
Oops, something went wrong.