Skip to content

MineCraft服务器通用用户键值调取、查询接口。

License

Notifications You must be signed in to change notification settings

CarmJos/MineUser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

   __  ____          __  __
  /  |/  (_)__  ___ / / / /__ ___ _______
 / /|_/ / / _ \/ -_) /_/ (_-</ -_) __(_-<
/_/  /_/_/_//_/\__/\____/___/\__/_/ /___/

MineUser

version License workflow CodeSize

MineCraft服务器通用用户键值调取、查询接口。

开发

本插件/依赖库提供了一个通用的用户键记录,其格式如下

record UserKey(
        long id, @NotNull UUID uuid,
        @NotNull String name
)

而通过 MineUserAPI 入口类,您可以快速操作以下方法:

  • @Nullable UserKey key(UserKeyType type, Object param)
  • @Nullable UserKey key(long id)
  • @Nullable UserKey key(@NotNull UUID uuid)
  • @Nullable UserKey key(@NotNull String username)
  • @Nullable Long uid(@NotNull String username)
  • @Nullable Long uid(@NotNull UUID userUUID)
  • @Nullable String username(long id)
  • @Nullable String username(@NotNull UUID userUUID)
  • @Nullable UUID uuid(long id)
  • @Nullable UUID uuid(@NotNull String username)

对键值对的获取有基于Redis的预先缓存,但仍然建议您在使用时进行异步操作。

依赖方式

Maven 依赖

远程库配置
<project>
    <repositories>
        <repository>
            <!--采用github依赖库,实时更新,但需要配置 (推荐) -->
            <id>MineUser</id>
            <name>GitHub Packages</name>
            <url>https://maven.pkg.github.com/CarmJos/MineUser</url>
        </repository>
        <repository>
            <!--采用我的私人依赖库,简单方便,但可能因为变故而无法使用-->
            <id>carm-repo</id>
            <name>Carm's Repo</name>
            <url>https://repo.carm.cc/repository/maven-public/</url>
        </repository>
    </repositories>
</project>
通用原生依赖
<project>
    <dependencies>
        <dependency>
            <groupId>cc.carm.lib</groupId>
            <artifactId>mineuser-api</artifactId>
            <version>[LATEST RELEASE]</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>
</project>

Gradle 依赖

远程库配置
repositories {
    
    // 采用github依赖库,实时更新,但需要配置 (推荐)
    maven { url 'https://maven.pkg.github.com/CarmJos/MineUser' }

    // 采用我的私人依赖库,简单方便,但可能因为变故而无法使用
    maven { url 'https://repo.carm.cc/repository/maven-public/' }
}
通用原生依赖
dependencies {
    api "cc.carm.lib:mineuser-api:[LATEST RELEASE]"
}

支持与捐赠

若您觉得本插件做的不错,您可以通过捐赠支持我! 感谢您对开源项目的支持!

开源协议

本项目源码采用 GNU LESSER GENERAL PUBLIC LICENSE 开源协议。

About

MineCraft服务器通用用户键值调取、查询接口。

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages