Compare commits
74 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8ee60e6780 | |||
| fc011dcbaf | |||
| c9624712da | |||
| 536af46b2b | |||
| f81a020cba | |||
| 5e4ccf3a1e | |||
| fca9ad8bb3 | |||
| 132769ba04 | |||
| 5177a10dd3 | |||
| 1f74f87213 | |||
| da78858e59 | |||
| 449719ca5d | |||
| 65c4d5fe71 | |||
| 49acd70662 | |||
| d4f94a6211 | |||
| 2f92c653f8 | |||
| 19f2deef32 | |||
| 568bc50a14 | |||
| a0ef72aee8 | |||
| f5d5c848c6 | |||
| 183547bd6e | |||
| 66fb820b99 | |||
| 8ebe461273 | |||
| a424408802 | |||
| b391df1e94 | |||
| 107be9ab08 | |||
| 8dec88d780 | |||
| e06445be64 | |||
| 793efeda42 | |||
| e33a274405 | |||
| 3ca87cd127 | |||
| e69016aba5 | |||
| 6eec2c8634 | |||
| 64742707c6 | |||
| 02e28052d5 | |||
| b1f565a92a | |||
| 3da21bc4f4 | |||
| c880298e5d | |||
| 14af43db86 | |||
| 90be2af901 | |||
| 1b69abd09e | |||
| f56a23f4b7 | |||
| a57382f269 | |||
| 9380efdd3d | |||
| ad64370bf1 | |||
| 54bae76d27 | |||
| 93f1385c7a | |||
| d5dbc7e5c7 | |||
| 72bbb4ebaa | |||
| caf0d3f8ed | |||
| 95726cc7f9 | |||
| 9b93e0e4b6 | |||
| 65a272d6cb | |||
| 2de4a60f3a | |||
| 79309c3c05 | |||
| 80c1c2edac | |||
| f098cc0762 | |||
| a1b4ccb736 | |||
| 550b3a1b69 | |||
| 7bfb79f4dd | |||
| 44b255512d | |||
| 7a76050cc7 | |||
| e11f36412f | |||
| abcd2640bb | |||
| 974e6780a5 | |||
| b6bf9dabcc | |||
| 642ff72ee0 | |||
| f24d6c5b5f | |||
| df6931d4b1 | |||
| 793ab1d75b | |||
| db04fd2a5b | |||
| 2e3448ab58 | |||
| c4d1c41059 | |||
| ca6e301d46 |
@@ -1 +1 @@
|
|||||||
blank_issues_enabled: false
|
blank_issues_enabled: false
|
||||||
|
|||||||
@@ -9,4 +9,6 @@ updates:
|
|||||||
- dependency-name: com.google.code.gson:gson
|
- dependency-name: com.google.code.gson:gson
|
||||||
- dependency-name: com.google.guava:guava
|
- dependency-name: com.google.guava:guava
|
||||||
- dependency-name: org.apache.logging.log4j:log4j-core
|
- dependency-name: org.apache.logging.log4j:log4j-core
|
||||||
- dependency-name: com.zaxxer:HikariCP
|
- dependency-name: "org.mockito:mockito-core"
|
||||||
|
versions: ">= 5"
|
||||||
|
- dependency-name: ch.jalu:configme
|
||||||
|
|||||||
+11
-16
@@ -7,22 +7,17 @@ on:
|
|||||||
- master
|
- master
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Build:
|
build_and_test:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
jdkversion: [ 11 ]
|
jdkversion: [17, 21]
|
||||||
runs-on: windows-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: actions/setup-java@v3
|
- uses: actions/setup-java@v3
|
||||||
with:
|
with:
|
||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
java-version: ${{ matrix.jdkversion }}
|
java-version: ${{ matrix.jdkversion }}
|
||||||
cache: 'maven'
|
cache: 'maven'
|
||||||
- name: Build
|
- name: Build with Maven
|
||||||
run: mvn -V -B clean package --file pom.xml
|
run: mvn -V -B clean package --file pom.xml
|
||||||
- name: Upload Artifacts
|
|
||||||
uses: actions/upload-artifact@v3.1.2
|
|
||||||
with:
|
|
||||||
name: Download
|
|
||||||
path: ./target/AuthMe-5.6.0-FORK-Spigot-Universal.jar
|
|
||||||
|
|||||||
+1
-2
@@ -21,10 +21,9 @@ hs_err_pid*
|
|||||||
|
|
||||||
# Ignore IDEA directory
|
# Ignore IDEA directory
|
||||||
.idea/*
|
.idea/*
|
||||||
.idea/
|
|
||||||
|
|
||||||
|
|
||||||
# Include the project's code style settings file
|
# Include the project's code style settings file
|
||||||
|
!.idea/codeStyleSettings.xml
|
||||||
|
|
||||||
# File-based project format:
|
# File-based project format:
|
||||||
*.ipr
|
*.ipr
|
||||||
|
|||||||
Generated
-3
@@ -1,3 +0,0 @@
|
|||||||
# 默认忽略的文件
|
|
||||||
/shelf/
|
|
||||||
/workspace.xml
|
|
||||||
@@ -4,12 +4,8 @@ language: java
|
|||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- env:
|
|
||||||
- JDK_VERSION=8
|
|
||||||
- env:
|
- env:
|
||||||
- JDK_VERSION=11
|
- JDK_VERSION=11
|
||||||
- env:
|
|
||||||
- JDK_VERSION=17
|
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- "[[ -d $HOME/.sdkman/ ]] && [[ -d $HOME/.sdkman/bin/ ]] || rm -rf $HOME/.sdkman/"
|
- "[[ -d $HOME/.sdkman/ ]] && [[ -d $HOME/.sdkman/bin/ ]] || rm -rf $HOME/.sdkman/"
|
||||||
|
|||||||
@@ -1,32 +1,141 @@
|
|||||||
# AuthMeReReloaded
|
# AuthMeReloaded
|
||||||
**"A fork of the best authentication plugin for the Bukkit modding API!"**
|
**"The best authentication plugin for the Bukkit modding API!"**
|
||||||
MCBBS Link: [Click Here](https://www.mcbbs.net/forum.php?mod=viewthread&tid=1471495)
|
|
||||||

|
|
||||||
<p align="center">
|
|
||||||
<img src="https://img.shields.io/github/languages/code-size/HaHaWTH/AuthMeReReloaded.svg" alt="Code size"/>
|
|
||||||
<img src="https://img.shields.io/github/repo-size/HaHaWTH/AuthMeReReloaded.svg" alt="GitHub repo size"/>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
**Detailed Changes:**
|
<img src="wallpaper.png?raw=true" alt="AuthMeLogo"/>
|
||||||
1. Improved mail sending logic & support more emails
|
|
||||||
2. Shutdown mail sending(When server is closed, email you)
|
|
||||||
3. Old bug fixes
|
|
||||||
4. Anti Ghost Player(Doubled login bug)
|
|
||||||
5. Use the best performance method by server brand
|
|
||||||
6. Bedrock Compatibility(Floodgate needed)(based on UUID)
|
|
||||||
7. Update checker
|
|
||||||
8. Integrated GUI Captcha feature(Bedrock compatibility & ProtocolLib needed)(70% Asynchronous)
|
|
||||||
9. Improved listeners
|
|
||||||
10. Player login logic improvement to reduce lag
|
|
||||||
11. Automatically purge bot data
|
|
||||||
12. Folia
|
|
||||||
compatibility [Here](https://github.com/HaHaWTH/AuthMeReReloaded/releases/download/b20/AuthMe-5.6.0-FORK-Folia.jar)
|
|
||||||
13. Offhand Menu compatibility(Thats amazing)
|
|
||||||
14. Automatically fix portal stuck issue
|
|
||||||
15. More......
|
|
||||||
|
|
||||||
**Download links:**
|
| Type | Badges |
|
||||||
[Releases](https://github.com/HaHaWTH/AuthMeReReloaded/releases/latest)
|
|-------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
[Actions(Dev builds, use at your own risk!)](https://github.com/HaHaWTH/AuthMeReReloaded/actions/workflows/maven.yml)
|
| **Code quality:** | [](https://codeclimate.com/github/AuthMe/AuthMeReloaded) [](https://coveralls.io/github/AuthMe-Team/AuthMeReloaded?branch=master) |
|
||||||
|
| **Jenkins CI:** | [](https://ci.codemc.org/) [](https://ci.codemc.org/job/AuthMe/job/AuthMeReloaded)  |
|
||||||
|
| **Other CIs:** | [](https://www.travis-ci.com/AuthMe/AuthMeReloaded) |
|
||||||
|
|
||||||
**Pull Requests and suggestions are welcome!**
|
## Description
|
||||||
|
|
||||||
|
Prevent username stealing on your server!<br>
|
||||||
|
Use it to secure your Offline mode server or to increase your Online mode server's protection!
|
||||||
|
|
||||||
|
AuthMeReloaded disallows players who aren't authenticated to do actions like placing blocks, moving,<br>
|
||||||
|
typing commands or using the inventory. It can also kick players with uncommonly long or short player names or kick players from banned countries.
|
||||||
|
|
||||||
|
With the Session Login feature you don't have to execute the authentication command every time you connect to the server!
|
||||||
|
Each command and every feature can be enabled or disabled from our well structured configuration file.
|
||||||
|
|
||||||
|
You can also create your own translation file and, if you want, you can share it with us! :)
|
||||||
|
|
||||||
|
#### Features:
|
||||||
|
<ul>
|
||||||
|
<li><strong>E-Mail Recovery System!</strong></li>
|
||||||
|
<li>Username spoofing protection.</li>
|
||||||
|
<li>Countries Whitelist/Blacklist! <a href="https://dev.maxmind.com/geoip/legacy/codes/iso3166/">(country codes)</a></li>
|
||||||
|
<li><strong>Built-in AntiBot System!</strong></li>
|
||||||
|
<li><strong>ForceLogin Feature: Admins can login with all account via console command!</strong></li>
|
||||||
|
<li><strong>Avoid the "Logged in from another location" message!</strong></li>
|
||||||
|
<li>Two-factor (2FA) support!</li>
|
||||||
|
<li>Session Login!</li>
|
||||||
|
<li>Editable translations and messages!</li>
|
||||||
|
<li><strong>MySQL and SQLite Backend support!</strong></li>
|
||||||
|
<li>Supported password encryption algorithms: SHA256, ARGON2, BCRYPT, PBKDF2, <a href="https://github.com/CypherX/xAuth/wiki/Password-Hashing">xAuth</a></li>
|
||||||
|
<li>Supported alternative registration methods:<br>
|
||||||
|
<ul>
|
||||||
|
<li>PHPBB, VBulletin: PHPBB - MD5VB</li>
|
||||||
|
<li>Xenforo: XFBCRYPT</li>
|
||||||
|
<li>MyBB: MYBB</li>
|
||||||
|
<li>IPB3: IPB3</li>
|
||||||
|
<li>IPB4: IPB4</li>
|
||||||
|
<li>PhpFusion: PHPFUSION</li>
|
||||||
|
<li>Joomla: JOOMLA</li>
|
||||||
|
<li>WBB3: WBB3*</li>
|
||||||
|
<li>SHA512: SALTEDSHA512</li>
|
||||||
|
<li>DoubleSaltedMD5: SALTED2MD5</li>
|
||||||
|
<li>WordPress: WORDPRESS</li>
|
||||||
|
<li><a href="https://github.com/AuthMe/AuthMeReloaded/blob/master/docs/hash_algorithms.md">List of all supported hashes</a></li>
|
||||||
|
</ul></li>
|
||||||
|
<li>Custom MySQL tables/columns names (useful with forum databases)</li>
|
||||||
|
<li><strong>Cached database queries!</strong></li>
|
||||||
|
<li><strong>Fully compatible with Citizens2, CombatTag, CombatTagPlus!</strong></li>
|
||||||
|
<li>Compatible with Minecraft mods like <strong>BuildCraft or RedstoneCraft</strong></li>
|
||||||
|
<li>Restricted users (associate a username with an IP)</li>
|
||||||
|
<li>Protect player's inventory until correct authentication (requires ProtocolLib)</li>
|
||||||
|
<li>Saves the quit location of the player</li>
|
||||||
|
<li>Automatic database backup</li>
|
||||||
|
<li>Available languages: <a href="https://github.com/AuthMe/AuthMeReloaded/blob/master/docs/translations.md">translations</a></li>
|
||||||
|
<li>Built-in Deprecated FlatFile (auths.db) to SQL (authme.sql) converter!</li>
|
||||||
|
<li><strong>Import your old database from other plugins like Rakamak, xAuth, CrazyLogin, RoyalAuth and vAuth!</strong></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
#### Configuration
|
||||||
|
[How to configure AuthMe](https://github.com/AuthMe/AuthMeReloaded/blob/master/docs/config.md)
|
||||||
|
#### Commands
|
||||||
|
[Command list and usage](https://github.com/AuthMe/AuthMeReloaded/blob/master/docs/commands.md)
|
||||||
|
#### Permissions
|
||||||
|
- authme.player.* - for all user commands
|
||||||
|
- authme.admin.* - for all admin commands
|
||||||
|
- [List of all permission nodes](http://github.com/AuthMe/AuthMeReloaded/blob/master/docs/permission_nodes.md)
|
||||||
|
|
||||||
|
#### How To
|
||||||
|
- [How to use the converter](https://github.com/AuthMe/AuthMeReloaded/wiki/Converters)
|
||||||
|
- [How to import database from xAuth](https://dev.bukkit.org/projects/authme-reloaded/pages/how-to-import-database-from-xauth)
|
||||||
|
- [Website integration](https://github.com/AuthMe/AuthMeReloaded/tree/master/samples/website_integration)
|
||||||
|
- [How to convert from Rakamak](https://dev.bukkit.org/projects/authme-reloaded/pages/how-to-import-database-from-rakamak)
|
||||||
|
- Convert between database types (e.g. SQLite to MySQL): /authme converter
|
||||||
|
|
||||||
|
|
||||||
|
## Links and Contacts
|
||||||
|
|
||||||
|
- **Support:**
|
||||||
|
- [GitHub issue tracker](https://github.com/AuthMe/AuthMeReloaded/issues)
|
||||||
|
- [Discord](https://discord.gg/Vn9eCyE)
|
||||||
|
- [BukkitDev page](https://dev.bukkit.org/projects/authme-reloaded)
|
||||||
|
- [Spigot page](https://www.spigotmc.org/resources/authmereloaded.6269/)
|
||||||
|
|
||||||
|
- **Dev resources:**
|
||||||
|
- <a href="https://ci.codemc.org/job/AuthMe/job/AuthMeReloaded/javadoc/">JavaDocs</a>
|
||||||
|
- <a href="http://repo.codemc.org/repository/maven-public/">Maven Repository</a>
|
||||||
|
```xml
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>codemc-repo</id>
|
||||||
|
<url>https://repo.codemc.org/repository/maven-public/</url>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>fr.xephi</groupId>
|
||||||
|
<artifactId>authme</artifactId>
|
||||||
|
<version>5.6.1-SNAPSHOT</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
```
|
||||||
|
|
||||||
|
- **Statistics:**
|
||||||
|

|
||||||
|
|
||||||
|
## Requirements
|
||||||
|
|
||||||
|
##### Compiling requirements:
|
||||||
|
>- JDK 17+
|
||||||
|
>- Maven (3.8.8+)
|
||||||
|
>- Git/GitHub (Optional)
|
||||||
|
|
||||||
|
##### How to compile the project:
|
||||||
|
>- Clone the project with Git/GitHub
|
||||||
|
>- Execute command "mvn clean package"
|
||||||
|
|
||||||
|
##### Running requirements:
|
||||||
|
>- Java 17+
|
||||||
|
>- Paper or Spigot (1.16.5 and up)
|
||||||
|
>- ProtocolLib (optional, required by some features)
|
||||||
|
|
||||||
|
## Credits
|
||||||
|
|
||||||
|
##### Contributors:
|
||||||
|
Team members: <a href="https://github.com/AuthMe/AuthMeReloaded/wiki/Development-team">developers</a>, <a href="https://github.com/AuthMe/AuthMeReloaded/wiki/Translators">translators</a>
|
||||||
|
|
||||||
|
Credits for the old version of the plugin: d4rkwarriors, fabe1337, Whoami2 and pomo4ka
|
||||||
|
|
||||||
|
Thanks also to: AS1LV3RN1NJA, Hoeze and eprimex
|
||||||
|
|
||||||
|
##### GeoIP License:
|
||||||
|
This product uses data from the GeoLite API created by MaxMind, available at https://www.maxmind.com
|
||||||
|
|||||||
@@ -304,6 +304,13 @@ settings:
|
|||||||
forceKickAfterRegister: false
|
forceKickAfterRegister: false
|
||||||
# Does AuthMe need to enforce a /login after a successful registration?
|
# Does AuthMe need to enforce a /login after a successful registration?
|
||||||
forceLoginAfterRegister: false
|
forceLoginAfterRegister: false
|
||||||
|
# Enable to display the welcome message (welcome.txt) after a login
|
||||||
|
# You can use colors in this welcome.txt + some replaced strings:
|
||||||
|
# {PLAYER}: player name, {ONLINE}: display number of online players,
|
||||||
|
# {MAXPLAYERS}: display server slots, {IP}: player ip, {LOGINS}: number of players logged,
|
||||||
|
# {WORLD}: player current world, {SERVER}: server name
|
||||||
|
# {VERSION}: get current bukkit version, {COUNTRY}: player country
|
||||||
|
useWelcomeMessage: true
|
||||||
# Broadcast the welcome message to the server or only to the player?
|
# Broadcast the welcome message to the server or only to the player?
|
||||||
# set true for server or false for player
|
# set true for server or false for player
|
||||||
broadcastWelcomeMessage: false
|
broadcastWelcomeMessage: false
|
||||||
@@ -396,6 +403,8 @@ Protection:
|
|||||||
# Apply the protection also to registered usernames
|
# Apply the protection also to registered usernames
|
||||||
enableProtectionRegistered: true
|
enableProtectionRegistered: true
|
||||||
geoIpDatabase:
|
geoIpDatabase:
|
||||||
|
# Enable GeoIp database
|
||||||
|
enabled: true
|
||||||
# The MaxMind clientId used to download the GeoIp database,
|
# The MaxMind clientId used to download the GeoIp database,
|
||||||
# get one at https://www.maxmind.com/en/accounts/current/license-key
|
# get one at https://www.maxmind.com/en/accounts/current/license-key
|
||||||
# The EssentialsX project has a very useful tutorial on how to generate
|
# The EssentialsX project has a very useful tutorial on how to generate
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<!-- AUTO-GENERATED FILE! Do not edit this directly -->
|
<!-- AUTO-GENERATED FILE! Do not edit this directly -->
|
||||||
<!-- File auto-generated on Sun Apr 04 21:31:44 CEST 2021. See docs/translations/translations.tpl.md -->
|
<!-- File auto-generated on Wed Jun 21 12:14:29 CEST 2023. See docs/translations/translations.tpl.md -->
|
||||||
|
|
||||||
# AuthMe Translations
|
# AuthMe Translations
|
||||||
The following translations are available in AuthMe. Set `messagesLanguage` to the language code
|
The following translations are available in AuthMe. Set `messagesLanguage` to the language code
|
||||||
@@ -22,10 +22,11 @@ Code | Language | Translated |
|
|||||||
[hu](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_hu.yml) | Hungarian | 99% | <img src="https://via.placeholder.com/99x7/66ee55?text=%20" alt="99" />
|
[hu](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_hu.yml) | Hungarian | 99% | <img src="https://via.placeholder.com/99x7/66ee55?text=%20" alt="99" />
|
||||||
[id](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_id.yml) | Indonesian | 93% | <img src="https://via.placeholder.com/93x7/77dd44?text=%20" alt="93" />
|
[id](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_id.yml) | Indonesian | 93% | <img src="https://via.placeholder.com/93x7/77dd44?text=%20" alt="93" />
|
||||||
[it](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_it.yml) | Italian | 100% | <img src="https://via.placeholder.com/100x7/66ff66?text=%20" alt="100" />
|
[it](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_it.yml) | Italian | 100% | <img src="https://via.placeholder.com/100x7/66ff66?text=%20" alt="100" />
|
||||||
|
[ja](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_ja.yml) | Japanese | 100% | <img src="https://via.placeholder.com/100x7/66ff66?text=%20" alt="100" />
|
||||||
[ko](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_ko.yml) | Korean | 99% | <img src="https://via.placeholder.com/99x7/66ee55?text=%20" alt="99" />
|
[ko](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_ko.yml) | Korean | 99% | <img src="https://via.placeholder.com/99x7/66ee55?text=%20" alt="99" />
|
||||||
[lt](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_lt.yml) | Lithuanian | 36% | <img src="https://via.placeholder.com/36x7/aa4400?text=%20" alt="36" />
|
[lt](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_lt.yml) | Lithuanian | 100% | <img src="https://via.placeholder.com/100x7/66ff66?text=%20" alt="100" />
|
||||||
[nl](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_nl.yml) | Dutch | 100% | <img src="https://via.placeholder.com/100x7/66ff66?text=%20" alt="100" />
|
[nl](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_nl.yml) | Dutch | 100% | <img src="https://via.placeholder.com/100x7/66ff66?text=%20" alt="100" />
|
||||||
[pl](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_pl.yml) | Polish | 99% | <img src="https://via.placeholder.com/99x7/66ee55?text=%20" alt="99" />
|
[pl](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_pl.yml) | Polish | 100% | <img src="https://via.placeholder.com/100x7/66ff66?text=%20" alt="100" />
|
||||||
[pt](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_pt.yml) | Portuguese | 100% | <img src="https://via.placeholder.com/100x7/66ff66?text=%20" alt="100" />
|
[pt](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_pt.yml) | Portuguese | 100% | <img src="https://via.placeholder.com/100x7/66ff66?text=%20" alt="100" />
|
||||||
[ro](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_ro.yml) | Romanian | 100% | <img src="https://via.placeholder.com/100x7/66ff66?text=%20" alt="100" />
|
[ro](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_ro.yml) | Romanian | 100% | <img src="https://via.placeholder.com/100x7/66ff66?text=%20" alt="100" />
|
||||||
[ru](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_ru.yml) | Russian | 100% | <img src="https://via.placeholder.com/100x7/66ff66?text=%20" alt="100" />
|
[ru](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_ru.yml) | Russian | 100% | <img src="https://via.placeholder.com/100x7/66ff66?text=%20" alt="100" />
|
||||||
@@ -34,13 +35,13 @@ Code | Language | Translated |
|
|||||||
[sr](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_sr.yml) | Serbian | 99% | <img src="https://via.placeholder.com/99x7/66ee55?text=%20" alt="99" />
|
[sr](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_sr.yml) | Serbian | 99% | <img src="https://via.placeholder.com/99x7/66ee55?text=%20" alt="99" />
|
||||||
[tr](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_tr.yml) | Turkish | 100% | <img src="https://via.placeholder.com/100x7/66ff66?text=%20" alt="100" />
|
[tr](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_tr.yml) | Turkish | 100% | <img src="https://via.placeholder.com/100x7/66ff66?text=%20" alt="100" />
|
||||||
[uk](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_uk.yml) | Ukrainian | 100% | <img src="https://via.placeholder.com/100x7/66ff66?text=%20" alt="100" />
|
[uk](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_uk.yml) | Ukrainian | 100% | <img src="https://via.placeholder.com/100x7/66ff66?text=%20" alt="100" />
|
||||||
[vn](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_vn.yml) | Vietnamese | 77% | <img src="https://via.placeholder.com/77x7/bb9900?text=%20" alt="77" />
|
[vn](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_vn.yml) | Vietnamese | 100% | <img src="https://via.placeholder.com/100x7/66ff66?text=%20" alt="100" />
|
||||||
[zhcn](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_zhcn.yml) | Chinese (China) | 100% | <img src="https://via.placeholder.com/100x7/66ff66?text=%20" alt="100" />
|
[zhcn](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_zhcn.yml) | Chinese (China) | 100% | <img src="https://via.placeholder.com/100x7/66ff66?text=%20" alt="100" />
|
||||||
[zhhk](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_zhhk.yml) | Chinese (Hong Kong) | 99% | <img src="https://via.placeholder.com/99x7/66ee55?text=%20" alt="99" />
|
[zhhk](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_zhhk.yml) | Chinese (Hong Kong) | 99% | <img src="https://via.placeholder.com/99x7/66ee55?text=%20" alt="99" />
|
||||||
[zhmc](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_zhmc.yml) | Chinese (Macau) | 64% | <img src="https://via.placeholder.com/64x7/bb7700?text=%20" alt="64" />
|
[zhmc](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_zhmc.yml) | Chinese (Macau) | 64% | <img src="https://via.placeholder.com/64x7/bb7700?text=%20" alt="64" />
|
||||||
[zhtw](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_zhtw.yml) | Chinese (Taiwan) | 86% | <img src="https://via.placeholder.com/86x7/99bb22?text=%20" alt="86" />
|
[zhtw](https://github.com/AuthMe/AuthMeReloaded/blob/master/src/main/resources/messages/messages_zhtw.yml) | Chinese (Taiwan) | 100% | <img src="https://via.placeholder.com/100x7/66ff66?text=%20" alt="100" />
|
||||||
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
This page was automatically generated on the [AuthMe/AuthMeReloaded repository](https://github.com/AuthMe/AuthMeReloaded/tree/master/docs/) on Sun Apr 04 21:31:44 CEST 2021
|
This page was automatically generated on the [AuthMe/AuthMeReloaded repository](https://github.com/AuthMe/AuthMeReloaded/tree/master/docs/) on Wed Jun 21 12:14:29 CEST 2023
|
||||||
|
|||||||
@@ -6,10 +6,10 @@
|
|||||||
|
|
||||||
<groupId>fr.xephi</groupId>
|
<groupId>fr.xephi</groupId>
|
||||||
<artifactId>authme</artifactId>
|
<artifactId>authme</artifactId>
|
||||||
<version>5.6.0-FORK</version>
|
<version>5.7.0-SNAPSHOT</version>
|
||||||
|
|
||||||
<name>AuthMeReReloaded</name>
|
<name>AuthMeReloaded</name>
|
||||||
<description>Fork of the first authentication plugin for the Bukkit API!</description>
|
<description>The first authentication plugin for the Bukkit API!</description>
|
||||||
<inceptionYear>2013</inceptionYear>
|
<inceptionYear>2013</inceptionYear>
|
||||||
<url>https://github.com/AuthMe/AuthMeReloaded</url>
|
<url>https://github.com/AuthMe/AuthMeReloaded</url>
|
||||||
|
|
||||||
@@ -47,7 +47,7 @@
|
|||||||
|
|
||||||
<licenses>
|
<licenses>
|
||||||
<license>
|
<license>
|
||||||
<name>The GNU Public Licence version 3 (GPLv3)</name>
|
<name>The GNU General Public Licence version 3 (GPLv3)</name>
|
||||||
<url>https://www.gnu.org/licenses/gpl-3.0.html</url>
|
<url>https://www.gnu.org/licenses/gpl-3.0.html</url>
|
||||||
<distribution>repo</distribution>
|
<distribution>repo</distribution>
|
||||||
</license>
|
</license>
|
||||||
@@ -60,18 +60,15 @@
|
|||||||
<!-- Environment properties -->
|
<!-- Environment properties -->
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
<java.source>1.8</java.source>
|
<java.source>17</java.source>
|
||||||
<java.target>1.8</java.target>
|
<java.target>17</java.target>
|
||||||
<java.apiVersion>8</java.apiVersion>
|
<java.apiVersion>17</java.apiVersion>
|
||||||
<java.compiler.minimumVersion>11</java.compiler.minimumVersion>
|
<java.compiler.minimumVersion>17</java.compiler.minimumVersion>
|
||||||
<maven.minimumVersion>3.6.3</maven.minimumVersion>
|
<maven.minimumVersion>3.8.8</maven.minimumVersion>
|
||||||
|
|
||||||
<!-- Dependencies versions -->
|
|
||||||
<spigot.version>1.20.2-R0.1-SNAPSHOT</spigot.version>
|
|
||||||
|
|
||||||
<!-- Versioning properties -->
|
<!-- Versioning properties -->
|
||||||
<project.outputName>AuthMe</project.outputName>
|
<project.outputName>AuthMe</project.outputName>
|
||||||
<project.buildNumber>28</project.buildNumber>
|
<project.buildNumber>CUSTOM</project.buildNumber>
|
||||||
<project.versionCode>${project.version}-b${project.buildNumber}</project.versionCode>
|
<project.versionCode>${project.version}-b${project.buildNumber}</project.versionCode>
|
||||||
<project.finalNameBase>${project.outputName}-${project.version}</project.finalNameBase>
|
<project.finalNameBase>${project.outputName}-${project.version}</project.finalNameBase>
|
||||||
|
|
||||||
@@ -79,7 +76,30 @@
|
|||||||
<pluginDescription.name>${project.outputName}</pluginDescription.name>
|
<pluginDescription.name>${project.outputName}</pluginDescription.name>
|
||||||
<pluginDescription.version>${project.versionCode}</pluginDescription.version>
|
<pluginDescription.version>${project.versionCode}</pluginDescription.version>
|
||||||
<pluginDescription.main>${project.groupId}.${project.artifactId}.${pluginDescription.name}</pluginDescription.main>
|
<pluginDescription.main>${project.groupId}.${project.artifactId}.${pluginDescription.name}</pluginDescription.main>
|
||||||
<pluginDescription.authors>sgdc3, ljacqu, games647, Hex3l, krusic22</pluginDescription.authors>
|
<pluginDescription.authors>sgdc3, games647, Hex3l, krusic22</pluginDescription.authors>
|
||||||
|
|
||||||
|
<!-- Java libraries -->
|
||||||
|
<dependencies.injector.version>1.0</dependencies.injector.version>
|
||||||
|
<dependencies.string-similarity.version>1.0.0</dependencies.string-similarity.version>
|
||||||
|
<dependencies.geoip2.version>4.2.0</dependencies.geoip2.version>
|
||||||
|
<dependencies.javatar.version>2.5</dependencies.javatar.version>
|
||||||
|
<dependencies.commons-email.version>1.6.0</dependencies.commons-email.version>
|
||||||
|
<dependencies.hikaricp.version>5.1.0</dependencies.hikaricp.version>
|
||||||
|
<dependencies.slf4j.version>2.0.13</dependencies.slf4j.version>
|
||||||
|
<dependencies.datasourcecolumns.version>0.1.2</dependencies.datasourcecolumns.version>
|
||||||
|
<dependencies.mysql-connector-j.version>8.4.0</dependencies.mysql-connector-j.version>
|
||||||
|
<dependencies.mariadb-java-client.version>3.4.0</dependencies.mariadb-java-client.version>
|
||||||
|
<dependencies.postgresql.version>42.7.3</dependencies.postgresql.version>
|
||||||
|
<dependencies.pbkdf2.version>1.1.4</dependencies.pbkdf2.version>
|
||||||
|
<dependencies.argon2-jvm-nolibs.version>2.11</dependencies.argon2-jvm-nolibs.version>
|
||||||
|
<dependencies.bcrypt.version>0.10.2</dependencies.bcrypt.version>
|
||||||
|
<dependencies.googleauth.version>1.5.0</dependencies.googleauth.version>
|
||||||
|
<dependencies.configme.version>1.3.1</dependencies.configme.version>
|
||||||
|
<!-- Spigot -->
|
||||||
|
<dependencies.spigot.version>1.16.5-R0.1-SNAPSHOT</dependencies.spigot.version>
|
||||||
|
<dependencies.log4j-core.version>2.8.1</dependencies.log4j-core.version> <!-- version bundled 1.16.5 -->
|
||||||
|
<!-- Spigot libraries -->
|
||||||
|
<dependencies.bstats.version>3.0.2</dependencies.bstats.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<!-- Jenkins profile -->
|
<!-- Jenkins profile -->
|
||||||
@@ -127,8 +147,10 @@
|
|||||||
|
|
||||||
<build>
|
<build>
|
||||||
<defaultGoal>clean package</defaultGoal>
|
<defaultGoal>clean package</defaultGoal>
|
||||||
<!-- Little hack to make the shade plugin output a file with the right name -->
|
<!-- Little hack to make the shade plugin output a file with the right name
|
||||||
|
Disable, we aren't using shading atm
|
||||||
<finalName>${project.finalNameBase}-noshade</finalName>
|
<finalName>${project.finalNameBase}-noshade</finalName>
|
||||||
|
-->
|
||||||
|
|
||||||
<resources>
|
<resources>
|
||||||
<resource>
|
<resource>
|
||||||
@@ -154,7 +176,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
<version>3.4.1</version>
|
<version>3.7.0</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</pluginManagement>
|
</pluginManagement>
|
||||||
@@ -164,7 +186,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-enforcer-plugin</artifactId>
|
<artifactId>maven-enforcer-plugin</artifactId>
|
||||||
<version>3.1.0</version>
|
<version>3.5.0</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>enforce-environment</id>
|
<id>enforce-environment</id>
|
||||||
@@ -177,7 +199,7 @@
|
|||||||
<version>${maven.minimumVersion}</version>
|
<version>${maven.minimumVersion}</version>
|
||||||
</requireMavenVersion>
|
</requireMavenVersion>
|
||||||
<requireJavaVersion>
|
<requireJavaVersion>
|
||||||
<version>[11,)</version>
|
<version>[${java.compiler.minimumVersion},)</version>
|
||||||
</requireJavaVersion>
|
</requireJavaVersion>
|
||||||
</rules>
|
</rules>
|
||||||
<fail>true</fail>
|
<fail>true</fail>
|
||||||
@@ -189,24 +211,19 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-clean-plugin</artifactId>
|
<artifactId>maven-clean-plugin</artifactId>
|
||||||
<version>3.2.0</version>
|
<version>3.4.0</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<!-- Include resource files -->
|
<!-- Include resource files -->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-resources-plugin</artifactId>
|
<artifactId>maven-resources-plugin</artifactId>
|
||||||
<version>3.3.0</version>
|
<version>3.3.1</version>
|
||||||
<configuration>
|
|
||||||
<nonFilteredFileExtensions>
|
|
||||||
<nonFilteredFileExtension>mmdb</nonFilteredFileExtension>
|
|
||||||
</nonFilteredFileExtensions>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
</plugin>
|
||||||
<!-- Compile and include classes -->
|
<!-- Compile and include classes -->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<version>3.10.1</version>
|
<version>3.13.0</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<source>${java.source}</source>
|
<source>${java.source}</source>
|
||||||
<target>${java.target}</target>
|
<target>${java.target}</target>
|
||||||
@@ -217,7 +234,13 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.jacoco</groupId>
|
<groupId>org.jacoco</groupId>
|
||||||
<artifactId>jacoco-maven-plugin</artifactId>
|
<artifactId>jacoco-maven-plugin</artifactId>
|
||||||
<version>0.8.8</version>
|
<version>0.8.12</version>
|
||||||
|
<configuration>
|
||||||
|
<includes>
|
||||||
|
<include>fr/xephi/authme/*</include>
|
||||||
|
<include>fr/xephi/authme/**/*</include>
|
||||||
|
</includes>
|
||||||
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>pre-unit-test</id>
|
<id>pre-unit-test</id>
|
||||||
@@ -237,11 +260,12 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
<version>2.22.2</version>
|
<version>3.3.0</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
|
<!-- Fix java.base opens for new JDK versions -->
|
||||||
<!-- Force the right file encoding during unit testing -->
|
<!-- Force the right file encoding during unit testing -->
|
||||||
<!-- Set language to English in order to get consistent results for localized time formatting -->
|
<!-- Set language to English in order to get consistent results for localized time formatting -->
|
||||||
<argLine>-Dfile.encoding=${project.build.sourceEncoding} -Duser.language=en @{argLine}</argLine>
|
<argLine>--add-opens=java.base/java.lang=ALL-UNNAMED -Dfile.encoding=${project.build.sourceEncoding} -Duser.language=en @{argLine}</argLine>
|
||||||
<systemPropertyVariables>
|
<systemPropertyVariables>
|
||||||
<project.skipExtendedHashTests>${project.skipExtendedHashTests}</project.skipExtendedHashTests>
|
<project.skipExtendedHashTests>${project.skipExtendedHashTests}</project.skipExtendedHashTests>
|
||||||
</systemPropertyVariables>
|
</systemPropertyVariables>
|
||||||
@@ -253,7 +277,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
<version>3.3.0</version>
|
<version>3.4.2</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<!-- Generate a jar containing the source javadoc -->
|
<!-- Generate a jar containing the source javadoc -->
|
||||||
<plugin>
|
<plugin>
|
||||||
@@ -262,7 +286,7 @@
|
|||||||
<configuration>
|
<configuration>
|
||||||
<finalName>${project.finalNameBase}</finalName>
|
<finalName>${project.finalNameBase}</finalName>
|
||||||
<!-- In sync with the source/target properties of the maven-compiler-plugin -->
|
<!-- In sync with the source/target properties of the maven-compiler-plugin -->
|
||||||
<source>8</source>
|
<source>${java.source}</source>
|
||||||
</configuration>
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
@@ -277,7 +301,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-source-plugin</artifactId>
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
<version>3.2.1</version>
|
<version>3.3.1</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<finalName>${project.finalNameBase}</finalName>
|
<finalName>${project.finalNameBase}</finalName>
|
||||||
</configuration>
|
</configuration>
|
||||||
@@ -294,61 +318,17 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-shade-plugin</artifactId>
|
<artifactId>maven-shade-plugin</artifactId>
|
||||||
<version>3.4.0</version>
|
<version>3.6.0</version>
|
||||||
<executions>
|
<executions>
|
||||||
|
<!-- Disable, we aren't using shading atm
|
||||||
<execution>
|
<execution>
|
||||||
<id>shaded-jar</id>
|
<id>shaded-jar</id>
|
||||||
<phase>package</phase>
|
<phase>package</phase>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>shade</goal>
|
<goal>shade</goal>
|
||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
|
||||||
<artifactSet>
|
|
||||||
<excludes>
|
|
||||||
<!-- Guava -->
|
|
||||||
<exclude>com.google.guava:guava</exclude>
|
|
||||||
<exclude>com.google.guava:failureaccess</exclude>
|
|
||||||
<exclude>com.google.guava:listenablefuture</exclude>
|
|
||||||
<exclude>com.google.errorprone:error_prone_annotations</exclude>
|
|
||||||
<exclude>com.google.j2objc:j2objc-annotations</exclude>
|
|
||||||
<!-- Gson -->
|
|
||||||
<exclude>com.google.code.gson:gson</exclude>
|
|
||||||
</excludes>
|
|
||||||
</artifactSet>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
<execution>
|
|
||||||
<id>shaded-jar-legacy</id>
|
|
||||||
<phase>package</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>shade</goal>
|
|
||||||
</goals>
|
|
||||||
<configuration>
|
|
||||||
<finalName>${project.finalNameBase}-Spigot-Universal</finalName>
|
|
||||||
<relocations>
|
|
||||||
<relocation>
|
|
||||||
<pattern>com.google.common</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.com.google.common</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>com.google.thirdparty</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.com.google.thirdparty</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>com.google.j2objc</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.com.google.j2objc</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>com.google.errorprone</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.com.google.errorprone</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>com.google.gson</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.com.google.gson</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
</relocations>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
</execution>
|
||||||
|
-->
|
||||||
</executions>
|
</executions>
|
||||||
<configuration>
|
<configuration>
|
||||||
<!-- Don't create the reduced pom file, as we don't deploy the shaded jar -->
|
<!-- Don't create the reduced pom file, as we don't deploy the shaded jar -->
|
||||||
@@ -358,89 +338,14 @@
|
|||||||
<!-- Use the base jar name, to help server owners download the right jar -->
|
<!-- Use the base jar name, to help server owners download the right jar -->
|
||||||
<finalName>${project.finalNameBase}</finalName>
|
<finalName>${project.finalNameBase}</finalName>
|
||||||
|
|
||||||
<!--
|
<!-- Disable, no relocations atm
|
||||||
Relocate all lib we use in order to fix class loading errors if we use different versions
|
<relocations>
|
||||||
than already loaded libs
|
|
||||||
-->
|
|
||||||
<relocations combine.children="append">
|
|
||||||
<relocation>
|
<relocation>
|
||||||
<pattern>ch.jalu</pattern>
|
<pattern></pattern>
|
||||||
<shadedPattern>fr.xephi.authme.libs.ch.jalu</shadedPattern>
|
<shadedPattern>fr.xephi.authme.libs.</shadedPattern>
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>com.zaxxer.hikari</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.com.zaxxer.hikari</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>org.slf4j</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.org.slf4j</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>com.maxmind.db</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.com.maxmind.db</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>com.ice.tar</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.com.icetar.tar</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>net.ricecode.similarity</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.ricecode.net.ricecode.similarity</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>de.rtner</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.de.rtner</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>org.picketbox</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.org.picketbox</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>org.jboss.crypto</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.org.jboss.crypto</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>org.jboss.security</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.org.jboss.security</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>de.mkammerer</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.de.mkammerer</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>com.warrenstrange</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.com.warrenstrange</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>javax.inject</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.javax.inject</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>at.favre.lib</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.at.favre.lib</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>org.postgresql</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.org.postgresql</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<!-- bStats metrics class -->
|
|
||||||
<relocation>
|
|
||||||
<pattern>org.bstats</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.org.bstats</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>org.mariadb.jdbc</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.org.mariadb.jdbc</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>com.mysql</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.com.mysql</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>com.google.protobuf</pattern>
|
|
||||||
<shadedPattern>fr.xephi.authme.libs.com.google.protobuf</shadedPattern>
|
|
||||||
</relocation>
|
</relocation>
|
||||||
</relocations>
|
</relocations>
|
||||||
|
-->
|
||||||
|
|
||||||
<filters>
|
<filters>
|
||||||
<!-- Ignore manifest signatures for shading the project into an uber-jar to fix -->
|
<!-- Ignore manifest signatures for shading the project into an uber-jar to fix -->
|
||||||
@@ -472,13 +377,13 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-install-plugin</artifactId>
|
<artifactId>maven-install-plugin</artifactId>
|
||||||
<version>3.0.1</version>
|
<version>3.1.2</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<!-- Deploy the jars as artifacts into the remote repository -->
|
<!-- Deploy the jars as artifacts into the remote repository -->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-deploy-plugin</artifactId>
|
<artifactId>maven-deploy-plugin</artifactId>
|
||||||
<version>3.0.0</version>
|
<version>3.1.2</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<!-- Handle documentation generation, required by other plugins -->
|
<!-- Handle documentation generation, required by other plugins -->
|
||||||
<plugin>
|
<plugin>
|
||||||
@@ -598,93 +503,48 @@
|
|||||||
<enabled>true</enabled>
|
<enabled>true</enabled>
|
||||||
</snapshots>
|
</snapshots>
|
||||||
</repository>
|
</repository>
|
||||||
<!-- FoliaLib -->
|
|
||||||
<repository>
|
|
||||||
<id>devmart-other</id>
|
|
||||||
<url>https://nexuslite.gcnt.net/repos/other/</url>
|
|
||||||
</repository>
|
|
||||||
<repository>
|
|
||||||
<id>opencollab-snapshot</id>
|
|
||||||
<url>https://repo.opencollab.dev/maven-snapshots/</url>
|
|
||||||
<releases>
|
|
||||||
<enabled>false</enabled>
|
|
||||||
</releases>
|
|
||||||
<snapshots>
|
|
||||||
<enabled>true</enabled>
|
|
||||||
</snapshots>
|
|
||||||
</repository>
|
|
||||||
<repository>
|
|
||||||
<id>jitpack</id>
|
|
||||||
<url>https://jitpack.io/</url>
|
|
||||||
<releases>
|
|
||||||
<enabled>true</enabled>
|
|
||||||
</releases>
|
|
||||||
<snapshots>
|
|
||||||
<enabled>false</enabled>
|
|
||||||
</snapshots>
|
|
||||||
</repository>
|
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<!-- Java Libraries -->
|
<!-- Java Libraries -->
|
||||||
<dependency>
|
|
||||||
<groupId>org.geysermc.floodgate</groupId>
|
|
||||||
<artifactId>api</artifactId>
|
|
||||||
<version>2.2.0-SNAPSHOT</version>
|
|
||||||
<scope>provided</scope>
|
|
||||||
</dependency>
|
|
||||||
<!-- Jalu Injector -->
|
<!-- Jalu Injector -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>ch.jalu</groupId>
|
<groupId>ch.jalu</groupId>
|
||||||
<artifactId>injector</artifactId>
|
<artifactId>injector</artifactId>
|
||||||
<version>1.0</version>
|
<version>${dependencies.injector.version}</version>
|
||||||
<optional>true</optional>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- String comparison library. Used for dynamic help system. -->
|
<!-- String comparison library. Used for dynamic help system. -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.ricecode</groupId>
|
<groupId>net.ricecode</groupId>
|
||||||
<artifactId>string-similarity</artifactId>
|
<artifactId>string-similarity</artifactId>
|
||||||
<version>1.0.0</version>
|
<version>${dependencies.string-similarity.version}</version>
|
||||||
<optional>true</optional>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- MaxMind GEO IP with our modifications to use GSON in replacement of the big Jackson dependency -->
|
<!-- MaxMind GEO IP -->
|
||||||
<!-- GSON is already included and therefore it reduces the file size in comparison to the original version -->
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.maxmind.db</groupId>
|
<groupId>com.maxmind.geoip2</groupId>
|
||||||
<artifactId>maxmind-db-gson</artifactId>
|
<artifactId>geoip2</artifactId>
|
||||||
<version>2.0.3</version>
|
<version>${dependencies.geoip2.version}</version>
|
||||||
<optional>true</optional>
|
<scope>provided</scope>
|
||||||
<exclusions>
|
|
||||||
<exclusion>
|
|
||||||
<groupId>com.google.code.gson</groupId>
|
|
||||||
<artifactId>gson</artifactId>
|
|
||||||
</exclusion>
|
|
||||||
</exclusions>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- Library for tar archives -->
|
<!-- Library for tar archives -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>javatar</groupId>
|
<groupId>javatar</groupId>
|
||||||
<artifactId>javatar</artifactId>
|
<artifactId>javatar</artifactId>
|
||||||
<version>2.5</version>
|
<version>${dependencies.javatar.version}</version>
|
||||||
<optional>true</optional>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- Java Email Library -->
|
<!-- Java Email Library -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.commons</groupId>
|
<groupId>org.apache.commons</groupId>
|
||||||
<artifactId>commons-email</artifactId>
|
<artifactId>commons-email</artifactId>
|
||||||
<version>1.6-SNAPSHOT</version>
|
<version>${dependencies.commons-email.version}</version>
|
||||||
<optional>true</optional>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<!-- Log4J Logger (required by the console filter) -->
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.apache.logging.log4j</groupId>
|
|
||||||
<artifactId>log4j-core</artifactId>
|
|
||||||
<version>2.20.0</version> <!-- Log4J version bundled in 1.12.2 -->
|
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
@@ -692,88 +552,62 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.zaxxer</groupId>
|
<groupId>com.zaxxer</groupId>
|
||||||
<artifactId>HikariCP</artifactId>
|
<artifactId>HikariCP</artifactId>
|
||||||
<version>4.0.3</version> <!-- Latest java 8 release -->
|
<version>${dependencies.hikaricp.version}</version>
|
||||||
<optional>true</optional>
|
|
||||||
<exclusions>
|
|
||||||
<exclusion>
|
|
||||||
<artifactId>slf4j-api</artifactId>
|
|
||||||
<groupId>org.slf4j</groupId>
|
|
||||||
</exclusion>
|
|
||||||
</exclusions>
|
|
||||||
</dependency>
|
|
||||||
<!-- HikariCP Logger -->
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.slf4j</groupId>
|
|
||||||
<artifactId>slf4j-simple</artifactId>
|
|
||||||
<version>1.7.36</version> <!-- We can't update to 2.x as long as we use HikariCP for java 8 -->
|
|
||||||
<optional>true</optional>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<!-- PBKDF2 implementation -->
|
|
||||||
<dependency>
|
|
||||||
<groupId>de.rtner</groupId>
|
|
||||||
<artifactId>PBKDF2</artifactId>
|
|
||||||
<version>1.1.4</version>
|
|
||||||
<optional>true</optional>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<!-- MySQL connector, shaded into the legacy jar -->
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.mysql</groupId>
|
|
||||||
<artifactId>mysql-connector-j</artifactId>
|
|
||||||
<version>8.0.33</version>
|
|
||||||
<optional>true</optional>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.mariadb.jdbc</groupId>
|
|
||||||
<artifactId>mariadb-java-client</artifactId>
|
|
||||||
<version>3.1.2</version>
|
|
||||||
<optional>true</optional>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<!-- Argon2 implementation -->
|
|
||||||
<dependency>
|
|
||||||
<groupId>de.mkammerer</groupId>
|
|
||||||
<artifactId>argon2-jvm-nolibs</artifactId>
|
|
||||||
<version>2.11</version>
|
|
||||||
<optional>true</optional>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<!-- TOTP client -->
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.warrenstrange</groupId>
|
|
||||||
<artifactId>googleauth</artifactId>
|
|
||||||
<version>1.5.0</version>
|
|
||||||
<optional>true</optional>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<!-- Spigot API, https://www.spigotmc.org/ -->
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.spigotmc</groupId>
|
|
||||||
<artifactId>spigot-api</artifactId>
|
|
||||||
<version>${spigot.version}</version>
|
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<artifactId>junit</artifactId>
|
<groupId>org.slf4j</groupId>
|
||||||
<groupId>junit</groupId>
|
<artifactId>slf4j-api</artifactId>
|
||||||
</exclusion>
|
|
||||||
<exclusion>
|
|
||||||
<artifactId>bungeecord-chat</artifactId>
|
|
||||||
<groupId>net.md-5</groupId>
|
|
||||||
</exclusion>
|
|
||||||
<exclusion>
|
|
||||||
<groupId>com.googlecode.json-simple</groupId>
|
|
||||||
<artifactId>json-simple</artifactId>
|
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- Keep in sync with spigot 1.19 -->
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.google.guava</groupId>
|
<groupId>org.slf4j</groupId>
|
||||||
<artifactId>guava</artifactId>
|
<artifactId>slf4j-simple</artifactId>
|
||||||
<version>31.1-jre</version>
|
<version>${dependencies.slf4j.version}</version>
|
||||||
<optional>true</optional>
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- Data source columns -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>ch.jalu</groupId>
|
||||||
|
<artifactId>datasourcecolumns</artifactId>
|
||||||
|
<version>${dependencies.datasourcecolumns.version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- MySQL connector -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.mysql</groupId>
|
||||||
|
<artifactId>mysql-connector-j</artifactId>
|
||||||
|
<version>${dependencies.mysql-connector-j.version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- MariaDB connector -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.mariadb.jdbc</groupId>
|
||||||
|
<artifactId>mariadb-java-client</artifactId>
|
||||||
|
<version>${dependencies.mariadb-java-client.version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.checkerframework</groupId>
|
||||||
|
<artifactId>checker-qual</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>com.google.errorprone</groupId>
|
||||||
|
<artifactId>error_prone_annotations</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- PostgreSQL -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.postgresql</groupId>
|
||||||
|
<artifactId>postgresql</artifactId>
|
||||||
|
<version>${dependencies.postgresql.version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>org.checkerframework</groupId>
|
<groupId>org.checkerframework</groupId>
|
||||||
@@ -781,20 +615,45 @@
|
|||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- Keep in sync with spigot 1.19 -->
|
|
||||||
|
<!-- PBKDF2 implementation -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.google.code.gson</groupId>
|
<groupId>de.rtner</groupId>
|
||||||
<artifactId>gson</artifactId>
|
<artifactId>PBKDF2</artifactId>
|
||||||
<version>2.10.1</version>
|
<version>${dependencies.pbkdf2.version}</version>
|
||||||
<optional>true</optional>
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- Argon2 implementation -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>de.mkammerer</groupId>
|
||||||
|
<artifactId>argon2-jvm-nolibs</artifactId>
|
||||||
|
<version>${dependencies.argon2-jvm-nolibs.version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- BCrypt implementation -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>at.favre.lib</groupId>
|
||||||
|
<artifactId>bcrypt</artifactId>
|
||||||
|
<version>${dependencies.bcrypt.version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- TOTP client -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.warrenstrange</groupId>
|
||||||
|
<artifactId>googleauth</artifactId>
|
||||||
|
<version>${dependencies.googleauth.version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- ConfigMe -->
|
<!-- ConfigMe -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>ch.jalu</groupId>
|
<groupId>ch.jalu</groupId>
|
||||||
<artifactId>configme</artifactId>
|
<artifactId>configme</artifactId>
|
||||||
<version>1.3.1</version>
|
<version>${dependencies.configme.version}</version>
|
||||||
<optional>true</optional>
|
<scope>provided</scope>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>org.yaml</groupId>
|
<groupId>org.yaml</groupId>
|
||||||
@@ -803,14 +662,42 @@
|
|||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- bStats metrics -->
|
<!-- Spigot API, https://www.spigotmc.org/ -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.spigotmc</groupId>
|
||||||
|
<artifactId>spigot-api</artifactId>
|
||||||
|
<version>${dependencies.spigot.version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.joml</groupId>
|
||||||
|
<artifactId>joml</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>net.md-5</groupId>
|
||||||
|
<artifactId>bungeecord-chat</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.logging.log4j</groupId>
|
||||||
|
<artifactId>log4j-core</artifactId>
|
||||||
|
<version>${dependencies.log4j-core.version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- Bukkit Libraries -->
|
||||||
|
|
||||||
|
<!-- bStats metrics -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.bstats</groupId>
|
<groupId>org.bstats</groupId>
|
||||||
<artifactId>bstats-bukkit</artifactId>
|
<artifactId>bstats-bukkit</artifactId>
|
||||||
<version>3.0.1</version>
|
<version>${dependencies.bstats.version}</version>
|
||||||
<optional>true</optional>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- Plugin Hooks -->
|
||||||
|
|
||||||
<!-- ProtocolLib -->
|
<!-- ProtocolLib -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.comphenix.protocol</groupId>
|
<groupId>com.comphenix.protocol</groupId>
|
||||||
@@ -1004,14 +891,6 @@
|
|||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- BCrypt implementation -->
|
|
||||||
<dependency>
|
|
||||||
<groupId>at.favre.lib</groupId>
|
|
||||||
<artifactId>bcrypt</artifactId>
|
|
||||||
<version>0.10.2</version>
|
|
||||||
<optional>true</optional>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<!-- XAuth, another authentication plugin, required by the database converter -->
|
<!-- XAuth, another authentication plugin, required by the database converter -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>de.luricos.bukkit</groupId>
|
<groupId>de.luricos.bukkit</groupId>
|
||||||
@@ -1020,60 +899,42 @@
|
|||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>ch.jalu</groupId>
|
|
||||||
<artifactId>datasourcecolumns</artifactId>
|
|
||||||
<version>0.1.1-SNAPSHOT</version>
|
|
||||||
<optional>true</optional>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.postgresql</groupId>
|
|
||||||
<artifactId>postgresql</artifactId>
|
|
||||||
<version>42.5.4</version>
|
|
||||||
<optional>true</optional>
|
|
||||||
<exclusions>
|
|
||||||
<exclusion>
|
|
||||||
<groupId>org.checkerframework</groupId>
|
|
||||||
<artifactId>checker-qual</artifactId>
|
|
||||||
</exclusion>
|
|
||||||
</exclusions>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<!-- Unit Testing Libraries -->
|
<!-- Unit Testing Libraries -->
|
||||||
|
|
||||||
|
<!-- TODO: update to junit 5 -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
<artifactId>junit</artifactId>
|
<artifactId>junit</artifactId>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
<version>4.13.2</version>
|
<version>4.13.2</version>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.hamcrest</groupId>
|
||||||
|
<artifactId>hamcrest-core</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.hamcrest</groupId>
|
<groupId>org.hamcrest</groupId>
|
||||||
<artifactId>java-hamcrest</artifactId>
|
<artifactId>hamcrest</artifactId>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
<version>2.0.0.0</version>
|
<version>2.2</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- TODO: update to mockito 5 -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.mockito</groupId>
|
<groupId>org.mockito</groupId>
|
||||||
<artifactId>mockito-core</artifactId>
|
<artifactId>mockito-core</artifactId>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
<version>5.2.0</version>
|
<version>4.11.0</version>
|
||||||
<exclusions>
|
|
||||||
<exclusion>
|
|
||||||
<artifactId>hamcrest-core</artifactId>
|
|
||||||
<groupId>org.hamcrest</groupId>
|
|
||||||
</exclusion>
|
|
||||||
</exclusions>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- Required to mock the LuckPerms API-->
|
<!-- Required to mock the LuckPerms API-->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.checkerframework</groupId>
|
<groupId>org.checkerframework</groupId>
|
||||||
<artifactId>checker-qual</artifactId>
|
<artifactId>checker-qual</artifactId>
|
||||||
<version>3.40.0</version>
|
<version>3.44.0</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
@@ -1081,13 +942,19 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.xerial</groupId>
|
<groupId>org.xerial</groupId>
|
||||||
<artifactId>sqlite-jdbc</artifactId>
|
<artifactId>sqlite-jdbc</artifactId>
|
||||||
<version>3.44.0.0</version>
|
<version>3.46.0.0</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.slf4j</groupId>
|
||||||
|
<artifactId>slf4j-api</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.h2database</groupId>
|
<groupId>com.h2database</groupId>
|
||||||
<artifactId>h2</artifactId>
|
<artifactId>h2</artifactId>
|
||||||
<version>2.1.214</version>
|
<version>2.2.224</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
|||||||
@@ -1,564 +0,0 @@
|
|||||||
# =======================================================================================================
|
|
||||||
# _____ __ .__ _____ __________ .__ .___ .___
|
|
||||||
# / _ \ __ ___/ |_| |__ / \ ____\______ \ ____ | | _________ __| _/____ __| _/
|
|
||||||
# / /_\ \| | \ __| | \ / \ / \_/ __ \| __/ __ \| | / _ \__ \ / __ _/ __ \ / __ |
|
|
||||||
# / | | | /| | | Y / Y \ ___/| | \ ___/| |_( <_> / __ \/ /_/ \ ___// /_/ |
|
|
||||||
# \____|__ |____/ |__| |___| \____|__ /\___ |____|_ /\___ |____/\____(____ \____ |\___ \____ |
|
|
||||||
# \/ \/ \/ \/ \/ \/ \/ \/ \/ \/
|
|
||||||
#
|
|
||||||
# =======================================================================================================
|
|
||||||
#
|
|
||||||
# Authme Main Configuration File.
|
|
||||||
#
|
|
||||||
# =======================================================================================================
|
|
||||||
|
|
||||||
# Plugin infos (overwritten on start, just a simple way to find out your plugin version).
|
|
||||||
authors: ${pluginAuthors}
|
|
||||||
version: ${project.version}
|
|
||||||
buildNumber: ${buildNumber}
|
|
||||||
|
|
||||||
# Set this setting to true when you have configured the plugin,
|
|
||||||
# when false the server will be stopped with a warning message.
|
|
||||||
enabled: false
|
|
||||||
|
|
||||||
# Database settings.
|
|
||||||
data_source:
|
|
||||||
# ===========================
|
|
||||||
# Database general settings.
|
|
||||||
# ===========================
|
|
||||||
|
|
||||||
# Database backend (sqlite, mysql).
|
|
||||||
backend: sqlite
|
|
||||||
# Enable database queries caching, should improve performance.
|
|
||||||
caching: true
|
|
||||||
|
|
||||||
# ===========================
|
|
||||||
# SqLite db parameters.
|
|
||||||
# ===========================
|
|
||||||
|
|
||||||
sqlite:
|
|
||||||
# The name of the database storage file.
|
|
||||||
filename: 'authme.db'
|
|
||||||
|
|
||||||
# ===========================
|
|
||||||
# MySql db parameters.
|
|
||||||
# ===========================
|
|
||||||
|
|
||||||
mysql:
|
|
||||||
# Connection parameters.
|
|
||||||
host: '127.0.0.1'
|
|
||||||
port: 3306
|
|
||||||
username: 'change_me'
|
|
||||||
password: 'change_me'
|
|
||||||
database: 'my_minecraft_server'
|
|
||||||
tablename: 'authme'
|
|
||||||
|
|
||||||
# Column names.
|
|
||||||
column_names:
|
|
||||||
id: id
|
|
||||||
# Column for storing nicknames (ignore case nickname).
|
|
||||||
name: username
|
|
||||||
# Column for storing the realname (case sensitive nickname).
|
|
||||||
real_name: realname
|
|
||||||
# Column for storing passwords.
|
|
||||||
password: password
|
|
||||||
# Column for storing email addresses.
|
|
||||||
email: email
|
|
||||||
# Column for storing the authentication status (logged or not).
|
|
||||||
login_status: isLogged
|
|
||||||
# Column for storing player IPs.
|
|
||||||
ip: ip
|
|
||||||
# Column for storing lastlogins date and time.
|
|
||||||
last_login_timestamp: lastlogin
|
|
||||||
# Latest logout location of the players.
|
|
||||||
last_location:
|
|
||||||
world: world
|
|
||||||
x: x
|
|
||||||
y: y
|
|
||||||
z: z
|
|
||||||
# Enabled only if the bungeecord integration is activated.
|
|
||||||
server: world
|
|
||||||
|
|
||||||
# Support for registrations via WebInterfaces/CSM.
|
|
||||||
# Disable some backend caching parameters.
|
|
||||||
disableAggressiveCaching: false
|
|
||||||
|
|
||||||
# Main settings
|
|
||||||
settings:
|
|
||||||
|
|
||||||
# ===========================
|
|
||||||
# Bungeecord integration
|
|
||||||
# ===========================
|
|
||||||
|
|
||||||
bungeecord:
|
|
||||||
# Enable bungeecord integration features
|
|
||||||
enabled: true
|
|
||||||
|
|
||||||
# Server name (must be unique, please use the name in the bungeecord configuration).
|
|
||||||
# Use 'auto' for auto configuration (requires the bungeecord module).
|
|
||||||
serverName: LoginLobby1
|
|
||||||
# Keep the auth status when the player moves between servers.
|
|
||||||
# Required if you're using the bungeecord module.
|
|
||||||
keepAuthBetweenServers: true
|
|
||||||
|
|
||||||
# Target server after login
|
|
||||||
send_after_login:
|
|
||||||
enabled: false
|
|
||||||
message: ''
|
|
||||||
delay: 5
|
|
||||||
# Server name ("ServerName") or group ("G:GroupName")
|
|
||||||
# Groups are avariable only when the bungeecord module is avariable.
|
|
||||||
# If the server change fails the player will be kicked.
|
|
||||||
target: Lobby1
|
|
||||||
failKickMessage: 'Failed to connect to the lobby! Please try to join the server again!'
|
|
||||||
# Target server after logout
|
|
||||||
send_after_logout:
|
|
||||||
enabled: false
|
|
||||||
message: ''
|
|
||||||
delay: 5
|
|
||||||
# Server name ("ServerName") or group ("G:GroupName")
|
|
||||||
# Groups are avariable only when the bungeecord module is avariable.
|
|
||||||
# If the server change fails the player will be kicked.
|
|
||||||
target: LoginLobby1
|
|
||||||
failKickMessage: 'Failed to connect to the lobby! Please try to join the server again!'
|
|
||||||
|
|
||||||
# Variables:
|
|
||||||
# %p playername
|
|
||||||
bungee_commands:
|
|
||||||
player_command_after_register:
|
|
||||||
enabled: false
|
|
||||||
cmd: ''
|
|
||||||
console_command_after_register:
|
|
||||||
enabled: false
|
|
||||||
cmd: 'alert %p joined for the first time the network!'
|
|
||||||
player_command_after_login:
|
|
||||||
enabled: false
|
|
||||||
cmd: 'glist'
|
|
||||||
console_command_after_login:
|
|
||||||
enabled: false
|
|
||||||
cmd: 'alert %p logged in correctly!'
|
|
||||||
player_command_after_join:
|
|
||||||
enabled: false
|
|
||||||
cmd: ''
|
|
||||||
console_command_after_join:
|
|
||||||
enabled: false
|
|
||||||
cmd: 'alert %p joined the network!'
|
|
||||||
player_command_first_join:
|
|
||||||
enabled: false
|
|
||||||
cmd: ''
|
|
||||||
console_command_first_join:
|
|
||||||
enabled: false
|
|
||||||
cmd: 'alert %p joined for the first time the network!'
|
|
||||||
|
|
||||||
# ===========================
|
|
||||||
# Sessions configuration.
|
|
||||||
# ===========================
|
|
||||||
|
|
||||||
sessions:
|
|
||||||
# Enable sessions.
|
|
||||||
# When a player is authenticated, his IP and his nickname is saved.
|
|
||||||
# The next time the player will join the server, if his IP is the same
|
|
||||||
# of the last time, and the timeout time hasn't expired, he will be
|
|
||||||
# automatically authenticated.
|
|
||||||
enabled: false
|
|
||||||
# Session timeout.
|
|
||||||
# 0 for unlimited time (Very dangerous, use it at your own risk!)
|
|
||||||
# Consider that if player's ip has changed but the timeout hasn't
|
|
||||||
# expired, player will be kicked out of the sever!
|
|
||||||
timeout: 10
|
|
||||||
# When enabled a player's session will expire if someone tries to
|
|
||||||
# login with a different IP Address.
|
|
||||||
expire_on_ip_change: true
|
|
||||||
|
|
||||||
# ===========================
|
|
||||||
# Registration settings.
|
|
||||||
# ===========================
|
|
||||||
|
|
||||||
registration:
|
|
||||||
# After how many time unregistered players should be kicked?
|
|
||||||
# Set to 0 to disable. (default: 30)
|
|
||||||
timeout: 30
|
|
||||||
|
|
||||||
nickname:
|
|
||||||
min_length: 4
|
|
||||||
max_lenght: 16
|
|
||||||
# Regex syntax.
|
|
||||||
allowed_characters: '[a-zA-Z0-9_]*'
|
|
||||||
|
|
||||||
password:
|
|
||||||
# Enable double check of password on registration:
|
|
||||||
# /register <password> <confirmPassword>
|
|
||||||
double_check: true
|
|
||||||
# Minimum password lenght.
|
|
||||||
min_length: 5
|
|
||||||
# Regex syntax.
|
|
||||||
allowed_characters: '[\x21-\x7E]*'
|
|
||||||
# Denied unsafe passwords.
|
|
||||||
unsafePasswords:
|
|
||||||
- '123456'
|
|
||||||
- 'password'
|
|
||||||
- 'qwerty'
|
|
||||||
- '12345'
|
|
||||||
- '54321'
|
|
||||||
|
|
||||||
# ===========================
|
|
||||||
# Login settings.
|
|
||||||
# ===========================
|
|
||||||
|
|
||||||
login:
|
|
||||||
# After how many time unlogged players should be kicked?
|
|
||||||
# Set to 0 to disable. (default: 30)
|
|
||||||
timeout: 30
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ===========================
|
|
||||||
# Encryption parameters.
|
|
||||||
# ===========================
|
|
||||||
|
|
||||||
password_encryption:
|
|
||||||
# The hashing algorithm.
|
|
||||||
# Possible values: MD5, SHA1, SHA256, WHIRLPOOL, XAUTH, MD5VB, PHPBB, MYBB, IPB3,
|
|
||||||
# PHPFUSION, SMF, XENFORO, SALTED2MD5, JOOMLA, BCRYPT, WBB3, SHA512, DOUBLEMD5,
|
|
||||||
# PBKDF2, PBKDF2DJANGO, WORDPRESS, ROYALAUTH, CUSTOM (developpers only).
|
|
||||||
encryption_algorithm: SHA256
|
|
||||||
# The salt length for the SALTED2MD5 and MD5(MD5(password)+salt) algorithms.
|
|
||||||
md5_salt_length: 8
|
|
||||||
# If password check fails try all the other hash algorithm.
|
|
||||||
# AuthMe will update the password to the new passwordHash.
|
|
||||||
enable_convertion: false
|
|
||||||
|
|
||||||
# ===========================
|
|
||||||
# Unlogged user restrictions.
|
|
||||||
# ===========================
|
|
||||||
|
|
||||||
unlogged_restrictions:
|
|
||||||
# Deny chat messages send for unlogged users.
|
|
||||||
deny_chat: true
|
|
||||||
# Hide chat to unlogged users.
|
|
||||||
# Only player messages, plugins will be able to send messages to the player anyway.
|
|
||||||
hide_chat: false
|
|
||||||
|
|
||||||
# Deny any command message not in the whitelist below.
|
|
||||||
deny_commands: true
|
|
||||||
command_whitelist:
|
|
||||||
- /login
|
|
||||||
- /register
|
|
||||||
- /l
|
|
||||||
- /reg
|
|
||||||
- /email
|
|
||||||
- /captcha
|
|
||||||
|
|
||||||
movements:
|
|
||||||
# Restrict player movements.
|
|
||||||
restrict: true
|
|
||||||
# Allowed radius.
|
|
||||||
allowed_radius: 0
|
|
||||||
# Should unlogged players have speed = 0?
|
|
||||||
# After the login the walking/flying speeed will be reset to the default value.
|
|
||||||
removeSpeed: true
|
|
||||||
|
|
||||||
# End is there atm xD
|
|
||||||
|
|
||||||
# This option will save the quit location of the players.
|
|
||||||
SaveQuitLocation: false
|
|
||||||
# Should not logged in players be teleported to the spawn?
|
|
||||||
# After the authentication, if SaveQuitLocation is enabled,
|
|
||||||
# they will be teleported back to their normal position.
|
|
||||||
teleportUnAuthedToSpawn: false
|
|
||||||
|
|
||||||
# If enabled, after the login, if the ForceSpawnOnTheseWorlds setting contains
|
|
||||||
# the player's world, he will be teleported to the world spawnpoint.
|
|
||||||
# The quit location of the player will be overwritten.
|
|
||||||
# This is different from "teleportUnAuthedToSpawn" that teleports player
|
|
||||||
# back to his quit location after the authentication.
|
|
||||||
ForceSpawnLocOnJoinEnabled: false
|
|
||||||
# WorldNames where we need to force the spawn location
|
|
||||||
# Warning: This setting is Case Sensitive!
|
|
||||||
ForceSpawnOnTheseWorlds:
|
|
||||||
- world
|
|
||||||
- world_nether
|
|
||||||
- world_the_end
|
|
||||||
|
|
||||||
# this is very important options,
|
|
||||||
# every time player join the server,
|
|
||||||
# if they are registered, AuthMe will switch him
|
|
||||||
# to unLoggedInGroup, this
|
|
||||||
# should prevent all major exploit.
|
|
||||||
# So you can set up on your Permission Plugin
|
|
||||||
# this special group with 0 permissions, or permissions to chat,
|
|
||||||
# or permission to
|
|
||||||
# send private message or all other perms that you want,
|
|
||||||
# the better way is to set up
|
|
||||||
# this group with few permissions,
|
|
||||||
# so if player try to exploit some account,
|
|
||||||
# they can
|
|
||||||
# do anything except what you set in perm Group.
|
|
||||||
# After a correct logged-in player will be
|
|
||||||
# moved to his correct permissions group!
|
|
||||||
# Pay attention group name is case sensitive,
|
|
||||||
# so Admin is different from admin,
|
|
||||||
# otherwise your group will be wiped,
|
|
||||||
# and player join in default group []!
|
|
||||||
# Example unLoggedinGroup: NotLogged
|
|
||||||
unLoggedinGroup: unLoggedinGroup
|
|
||||||
|
|
||||||
# ===========================
|
|
||||||
# Address restrictions
|
|
||||||
# ===========================
|
|
||||||
|
|
||||||
# Max number of registrations per IP (default: 1)
|
|
||||||
maxRegPerIp: 1
|
|
||||||
# Maximum allowed number of Logins per IP, 0 to disable (default: 0)
|
|
||||||
maxLoginPerIp: 0
|
|
||||||
# Maximum allowed number of Joins per IP, 0 to disable (default: 0)
|
|
||||||
maxJoinPerIp: 0
|
|
||||||
|
|
||||||
# When this setting is enabled, online players can't be kicked out
|
|
||||||
# due to "Logged in from another Location"
|
|
||||||
# This setting will prevent potential security exploits.
|
|
||||||
ForceSingleSession: true
|
|
||||||
|
|
||||||
# To activate the restricted user feature you need
|
|
||||||
# to enable this option and configure the
|
|
||||||
# AllowedRestrictedUser field.
|
|
||||||
AllowRestrictedUser: false
|
|
||||||
# The restricted user feature will kick players listed below
|
|
||||||
# if they dont match of the defined ip address.
|
|
||||||
# Example:
|
|
||||||
# AllowedRestrictedUser:
|
|
||||||
# - playername;127.0.0.1
|
|
||||||
AllowedRestrictedUser:
|
|
||||||
- playername;127.0.0.
|
|
||||||
# Ban ip when the ip is not the ip registered in database
|
|
||||||
banUnsafedIP: false
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ===============================
|
|
||||||
# Other restrictions
|
|
||||||
# ===============================
|
|
||||||
|
|
||||||
# Should we protect the player inventory before logging in?
|
|
||||||
# Warning: Requires the latest version of ProtocolLib!
|
|
||||||
ProtectInventoryBeforeLogIn: true
|
|
||||||
|
|
||||||
# Should unregistered players be kicked immediately?
|
|
||||||
kickNonRegistered: false
|
|
||||||
# Should players be kicked on wrong password?
|
|
||||||
kickOnWrongPassword: false
|
|
||||||
|
|
||||||
# Should we display all other accounts of a player when he joins?
|
|
||||||
# Required permission: authme.admin.accounts
|
|
||||||
displayOtherAccounts: true
|
|
||||||
|
|
||||||
# ===============================
|
|
||||||
# Restrictions compatibility
|
|
||||||
# ===============================
|
|
||||||
|
|
||||||
# Spawn Priority. Avariable values : authme, essentials, multiverse, default
|
|
||||||
spawnPriority: authme,essentials,multiverse,default
|
|
||||||
# AuthMe will NEVER teleport players!
|
|
||||||
noTeleport: false
|
|
||||||
|
|
||||||
GameMode:
|
|
||||||
# Do you want to set player's gamemode to survival when he joins?
|
|
||||||
# This enables also the settings below.
|
|
||||||
ForceSurvivalMode: false
|
|
||||||
# Do you want to reset player's inventory if player joins with creative mode?
|
|
||||||
ResetInventoryIfCreative: false
|
|
||||||
# Do you want to force the survival mode ONLY after the /login process?
|
|
||||||
ForceOnlyAfterLogin: false
|
|
||||||
|
|
||||||
# sgdc3: Ok, our configuration is shit.... xD Today I will stop there
|
|
||||||
|
|
||||||
|
|
||||||
registration:
|
|
||||||
# enable registration on the server?
|
|
||||||
enabled: true
|
|
||||||
# Send every X seconds a message to a player to
|
|
||||||
# remind him that he has to login/register
|
|
||||||
messageInterval: 5
|
|
||||||
# Only registered and logged in players can play.
|
|
||||||
# See restrictions for exceptions
|
|
||||||
force: true
|
|
||||||
# Does we replace password registration by an Email registration method ?
|
|
||||||
enableEmailRegistrationSystem: false
|
|
||||||
# Enable double check of email when you register
|
|
||||||
# when it's true, registration require that kind of command:
|
|
||||||
# /register <email> <confirmEmail>
|
|
||||||
doubleEmailCheck: false
|
|
||||||
# Do we force kicking player after a successful registration ?
|
|
||||||
# Do not use with login feature below
|
|
||||||
forceKickAfterRegister: false
|
|
||||||
# Does AuthMe need to enforce a /login after a successful registration ?
|
|
||||||
forceLoginAfterRegister: false
|
|
||||||
unrestrictions:
|
|
||||||
# below you can list all your account name, that
|
|
||||||
# AuthMe will ignore for registration or login, configure it
|
|
||||||
# at your own risk!! Remember that if you are going to add
|
|
||||||
# nickname with [], you have to delimit name with ' '.
|
|
||||||
# this option add compatibility with BuildCraft and some
|
|
||||||
# other mods.
|
|
||||||
# It is CaseSensitive!
|
|
||||||
UnrestrictedName: []
|
|
||||||
# Message language, available : en, de, br, cz, pl, fr, ru, hu, sk, es, zhtw, fi, zhcn, lt, it, ko, pt
|
|
||||||
messagesLanguage: en
|
|
||||||
# Force these commands after /login, without any '/', use %p for replace with player name
|
|
||||||
forceCommands: []
|
|
||||||
# Force these commands after /login as a server console, without any '/', use %p for replace with player name
|
|
||||||
forceCommandsAsConsole: []
|
|
||||||
# Force these commands after /register, without any '/', use %p for replace with player name
|
|
||||||
forceRegisterCommands: []
|
|
||||||
# Force these commands after /register as a server console, without any '/', use %p for replace with player name
|
|
||||||
forceRegisterCommandsAsConsole: []
|
|
||||||
# Do we need to broadcast the welcome message to all server or only to the player? set true for server or false for player
|
|
||||||
broadcastWelcomeMessage: false
|
|
||||||
# Do we need to delay the join/leave message to be displayed only when the player is authenticated ?
|
|
||||||
delayJoinMessage: false
|
|
||||||
removeJoinMessage: false
|
|
||||||
removeLeaveMessage: false
|
|
||||||
# Do we need to add potion effect Blinding before login/register ?
|
|
||||||
applyBlindEffect: false
|
|
||||||
ExternalBoardOptions:
|
|
||||||
# MySQL column for the salt , needed for some forum/cms support
|
|
||||||
mySQLColumnSalt: ''
|
|
||||||
# MySQL column for the group, needed for some forum/cms support
|
|
||||||
mySQLColumnGroup: ''
|
|
||||||
# -1 mean disabled. If u want that only
|
|
||||||
# activated player can login in your server
|
|
||||||
# u can put in this options the group number
|
|
||||||
# of unactivated user, needed for some forum/cms support
|
|
||||||
nonActivedUserGroup: -1
|
|
||||||
# Other MySQL columns where we need to put the Username (case sensitive)
|
|
||||||
mySQLOtherUsernameColumns: []
|
|
||||||
# How much Log to Round needed in BCrypt(do not change it if you do not know what's your doing)
|
|
||||||
bCryptLog2Round: 10
|
|
||||||
# phpBB prefix defined during phpbb installation process
|
|
||||||
phpbbTablePrefix: 'phpbb_'
|
|
||||||
# phpBB activated group id , 2 is default registered group defined by phpbb
|
|
||||||
phpbbActivatedGroupId: 2
|
|
||||||
# WordPress prefix defined during WordPress installation process
|
|
||||||
wordpressTablePrefix: 'wp_'
|
|
||||||
permission:
|
|
||||||
# Take care with this options, if you dont want
|
|
||||||
# to use Vault and Group Switching of
|
|
||||||
# AuthMe for unloggedIn players put true
|
|
||||||
# below, default is false.
|
|
||||||
EnablePermissionCheck: false
|
|
||||||
BackupSystem:
|
|
||||||
# Enable or Disable Automatic Backup
|
|
||||||
ActivateBackup: false
|
|
||||||
# set Backup at every start of Server
|
|
||||||
OnServerStart: false
|
|
||||||
# set Backup at every stop of Server
|
|
||||||
OnServerStop: true
|
|
||||||
# Windows only mysql installation Path
|
|
||||||
MysqlWindowsPath: 'C:\\Program Files\\MySQL\\MySQL Server 5.1\\'
|
|
||||||
Security:
|
|
||||||
SQLProblem:
|
|
||||||
# Stop the server if we can't contact the sql database
|
|
||||||
# Take care with this, if you set that to false,
|
|
||||||
# AuthMe automatically disable and the server is not protected!
|
|
||||||
stopServer: true
|
|
||||||
ReloadCommand:
|
|
||||||
# /reload support
|
|
||||||
useReloadCommandSupport: true
|
|
||||||
console:
|
|
||||||
# Remove spam console
|
|
||||||
noConsoleSpam: false
|
|
||||||
captcha:
|
|
||||||
# Player need to put a captcha when he fails too lot the password
|
|
||||||
useCaptcha: false
|
|
||||||
# Max allowed tries before request a captcha
|
|
||||||
maxLoginTry: 5
|
|
||||||
# Captcha length
|
|
||||||
captchaLength: 5
|
|
||||||
Converter:
|
|
||||||
Rakamak:
|
|
||||||
# Rakamak file name
|
|
||||||
fileName: users.rak
|
|
||||||
# Rakamak use ip ?
|
|
||||||
useIP: false
|
|
||||||
# IP file name for rakamak
|
|
||||||
ipFileName: UsersIp.rak
|
|
||||||
CrazyLogin:
|
|
||||||
# CrazyLogin database file
|
|
||||||
fileName: accounts.db
|
|
||||||
Email:
|
|
||||||
# Email SMTP server host
|
|
||||||
mailSMTP: smtp.gmail.com
|
|
||||||
# Email SMTP server port
|
|
||||||
mailPort: 465
|
|
||||||
# Email account that send the mail
|
|
||||||
mailAccount: ''
|
|
||||||
# Email account password
|
|
||||||
mailPassword: ''
|
|
||||||
# Custom SenderName, that replace the mailAccount name in the email
|
|
||||||
mailSenderName: ''
|
|
||||||
# Random password length
|
|
||||||
RecoveryPasswordLength: 8
|
|
||||||
# Email subject of password get
|
|
||||||
mailSubject: 'Your new AuthMe Password'
|
|
||||||
# Email text here
|
|
||||||
mailText: 'Dear <playername>, <br /><br /> This is your new AuthMe password for the server <br /><br /> <servername> : <br /><br /> <generatedpass><br /><br />Do not forget to change password after login! <br /> /changepassword <generatedpass> newPassword'
|
|
||||||
# Like maxRegPerIp but with email
|
|
||||||
maxRegPerEmail: 1
|
|
||||||
# Recall players to add an email ?
|
|
||||||
recallPlayers: false
|
|
||||||
# Delay in minute for the recall scheduler
|
|
||||||
delayRecall: 5
|
|
||||||
# Blacklist these domains for emails
|
|
||||||
emailBlacklisted:
|
|
||||||
- 10minutemail.com
|
|
||||||
# WhiteList only these domains for emails
|
|
||||||
emailWhitelisted: []
|
|
||||||
# Do we need to send new password draw in an image ?
|
|
||||||
generateImage: false
|
|
||||||
Hooks:
|
|
||||||
# Do we need to hook with multiverse for spawn checking?
|
|
||||||
multiverse: true
|
|
||||||
# Do we need to hook with BungeeCord for get the real Player ip ?
|
|
||||||
bungeecord: false
|
|
||||||
# Do we need to disable Essentials SocialSpy on join ?
|
|
||||||
disableSocialSpy: true
|
|
||||||
# Do we need to force /motd Essentials command on join ?
|
|
||||||
useEssentialsMotd: false
|
|
||||||
# Do we need to cache custom Attributes ?
|
|
||||||
customAttributes: false
|
|
||||||
Purge:
|
|
||||||
# On Enable , does AuthMe need to purge automatically old accounts unused ?
|
|
||||||
useAutoPurge: false
|
|
||||||
# Number of Days an account become Unused
|
|
||||||
daysBeforeRemovePlayer: 60
|
|
||||||
# Do we need to remove the player.dat file during purge process ?
|
|
||||||
removePlayerDat: false
|
|
||||||
# Do we need to remove the Essentials/users/player.yml file during purge process ?
|
|
||||||
removeEssentialsFile: false
|
|
||||||
# World where are players.dat stores
|
|
||||||
defaultWorld: 'world'
|
|
||||||
# Do we need to remove LimitedCreative/inventories/player.yml , player_creative.yml files during purge process ?
|
|
||||||
removeLimitedCreativesInventories: false
|
|
||||||
# Do we need to remove the AntiXRayData/PlayerData/player file during purge process ?
|
|
||||||
removeAntiXRayFile: false
|
|
||||||
# Do we need to remove permissions ?
|
|
||||||
removePermissions: false
|
|
||||||
Protection:
|
|
||||||
# Enable some servers protection ( country based login, antibot )
|
|
||||||
enableProtection: false
|
|
||||||
# Countries allowed to join the server and register, see http://dev.bukkit.org/bukkit-plugins/authme-reloaded/pages/countries-codes/ for countries' codes
|
|
||||||
countries:
|
|
||||||
- US
|
|
||||||
- GB
|
|
||||||
# Countries blacklisted automatically ( without any needed to enable protection )
|
|
||||||
countriesBlacklist:
|
|
||||||
- A1
|
|
||||||
# Do we need to enable automatic antibot system?
|
|
||||||
enableAntiBot: false
|
|
||||||
# Max number of player allowed to login in 5 secs before enable AntiBot system automatically
|
|
||||||
antiBotSensibility: 5
|
|
||||||
# Duration in minutes of the antibot automatic system
|
|
||||||
antiBotDuration: 10
|
|
||||||
VeryGames:
|
|
||||||
# These features are only available on VeryGames Server Provider
|
|
||||||
enableIpCheck: false
|
|
||||||
@@ -1,199 +0,0 @@
|
|||||||
name: ${pluginName}
|
|
||||||
authors: [${pluginAuthors}]
|
|
||||||
website: ${project.url}
|
|
||||||
description: ${project.description}
|
|
||||||
main: ${mainClass}
|
|
||||||
version: ${project.version}-b${buildNumber}
|
|
||||||
softdepend:
|
|
||||||
- Vault
|
|
||||||
- PermissionsBukkit
|
|
||||||
- PermissionsEX
|
|
||||||
- EssentialsGroupManager
|
|
||||||
- Multiverse-Core
|
|
||||||
- Essentials
|
|
||||||
- EssentialsSpawn
|
|
||||||
- ProtocolLib
|
|
||||||
commands:
|
|
||||||
authme:
|
|
||||||
description: AuthMe admin commands
|
|
||||||
usage: '/authme reload|register playername password|changepassword playername password|unregister playername|version|converter datatype'
|
|
||||||
permission: authme.admin
|
|
||||||
register:
|
|
||||||
description: Register an account
|
|
||||||
usage: /register password confirmpassword
|
|
||||||
aliases: [reg]
|
|
||||||
permission: authme.player.register
|
|
||||||
login:
|
|
||||||
description: Login into a account
|
|
||||||
usage: /login password
|
|
||||||
aliases: [l,log]
|
|
||||||
permission: authme.player.login
|
|
||||||
changepassword:
|
|
||||||
description: Change password of a account
|
|
||||||
usage: /changepassword oldPassword newPassword
|
|
||||||
permission: authme.player.changepassword
|
|
||||||
logout:
|
|
||||||
description: Logout from the server
|
|
||||||
usage: /logout
|
|
||||||
permission: authme.player.logout
|
|
||||||
unregister:
|
|
||||||
description: unregister your account
|
|
||||||
usage: /unregister password
|
|
||||||
permission: authme.player.unregister
|
|
||||||
email:
|
|
||||||
description: Add Email or recover password
|
|
||||||
usage: '/email add your@email.com your@email.com|change oldEmail newEmail|recovery your@email.com'
|
|
||||||
permission: authme.player.email
|
|
||||||
captcha:
|
|
||||||
description: Captcha command
|
|
||||||
usage: /captcha theCaptcha
|
|
||||||
permission: authme.player.captcha
|
|
||||||
permissions:
|
|
||||||
authme.canbeforced:
|
|
||||||
description: Allow the user to be forced-logged via API
|
|
||||||
default: true
|
|
||||||
authme.player:
|
|
||||||
description: Gives access to all authme player commands
|
|
||||||
default: true
|
|
||||||
children:
|
|
||||||
authme.player.login: true
|
|
||||||
authme.player.logout: true
|
|
||||||
authme.player.register: true
|
|
||||||
authme.player.unregister: true
|
|
||||||
authme.player.changepassword: true
|
|
||||||
authme.player.captcha: true
|
|
||||||
authme.player.email: true
|
|
||||||
authme.player.register:
|
|
||||||
description: Register your account
|
|
||||||
default: false
|
|
||||||
authme.player.unregister:
|
|
||||||
description: Unregister your account
|
|
||||||
default: false
|
|
||||||
authme.player.login:
|
|
||||||
description: Login into your account
|
|
||||||
default: false
|
|
||||||
authme.player.logout:
|
|
||||||
description: Logout from your account
|
|
||||||
default: false
|
|
||||||
authme.player.changepassword:
|
|
||||||
description: Change password of your account
|
|
||||||
default: false
|
|
||||||
authme.player.email:
|
|
||||||
description: Gives access to player's email commands
|
|
||||||
default: false
|
|
||||||
children:
|
|
||||||
authme.player.email.add: true
|
|
||||||
authme.player.email.change: true
|
|
||||||
authme.player.email.recover: true
|
|
||||||
authme.player.email.add:
|
|
||||||
description: Add an email to your account
|
|
||||||
default: false
|
|
||||||
authme.player.email.change:
|
|
||||||
description: Change email of your account
|
|
||||||
default: false
|
|
||||||
authme.player.email.recover:
|
|
||||||
description: Recover your account
|
|
||||||
default: false
|
|
||||||
authme.player.captcha:
|
|
||||||
description: Captcha command
|
|
||||||
default: false
|
|
||||||
authme.admin:
|
|
||||||
description: Gives access to all authme admin commands
|
|
||||||
default: op
|
|
||||||
children:
|
|
||||||
authme.admin.forcelogin: true
|
|
||||||
authme.admin.forcelogout: true
|
|
||||||
authme.admin.register: true
|
|
||||||
authme.admin.unregister: true
|
|
||||||
authme.admin.changemail: true
|
|
||||||
authme.admin.changepassword: true
|
|
||||||
authme.admin.lastlogin: true
|
|
||||||
authme.admin.accounts: true
|
|
||||||
authme.admin.getemail: true
|
|
||||||
authme.admin.getip: true
|
|
||||||
authme.admin.setspawn: true
|
|
||||||
authme.admin.spawn: true
|
|
||||||
authme.admin.setfirstspawn: true
|
|
||||||
authme.admin.firstspawn: true
|
|
||||||
authme.admin.purge: true
|
|
||||||
authme.admin.purgebannedplayers: true
|
|
||||||
authme.admin.purgelastpos: true
|
|
||||||
authme.admin.converter: true
|
|
||||||
authme.admin.reload: true
|
|
||||||
authme.admin.switchantibot: true
|
|
||||||
authme.admin.seeotheraccounts: true
|
|
||||||
authme.admin.register:
|
|
||||||
description: Register an account
|
|
||||||
default: false
|
|
||||||
authme.admin.unregister:
|
|
||||||
description: Unregister an account
|
|
||||||
default: false
|
|
||||||
authme.admin.forcelogin:
|
|
||||||
description: Force login for that player
|
|
||||||
default: false
|
|
||||||
authme.admin.forcelogout:
|
|
||||||
description: Force logout for that player
|
|
||||||
default: false
|
|
||||||
authme.admin.changepassword:
|
|
||||||
description: Change the password of an account
|
|
||||||
default: false
|
|
||||||
authme.admin.getemail:
|
|
||||||
description: Get last email about a player
|
|
||||||
default: false
|
|
||||||
authme.admin.changeemail:
|
|
||||||
description: Change a player email
|
|
||||||
default: false
|
|
||||||
authme.admin.accounts:
|
|
||||||
description: Display Players Accounts
|
|
||||||
default: false
|
|
||||||
authme.admin.seeotheraccounts:
|
|
||||||
description: Display other accounts about a player when he logs in
|
|
||||||
default: false
|
|
||||||
authme.admin.lastlogin:
|
|
||||||
description: Get last login date about a player
|
|
||||||
default: false
|
|
||||||
authme.admin.getip:
|
|
||||||
description: Get IP from a player (fake and real)
|
|
||||||
default: false
|
|
||||||
authme.admin.setspawn:
|
|
||||||
description: Set the AuthMe spawn point
|
|
||||||
default: false
|
|
||||||
authme.admin.spawn:
|
|
||||||
description: Teleport to AuthMe spawn point
|
|
||||||
default: false
|
|
||||||
authme.admin.setfirstspawn:
|
|
||||||
description: Set the AuthMe First Spawn Point
|
|
||||||
default: false
|
|
||||||
authme.admin.firstspawn:
|
|
||||||
description: Teleport to AuthMe First Spawn Point
|
|
||||||
default: false
|
|
||||||
authme.admin.switchantibot:
|
|
||||||
description: Switch AntiBot mode on/off
|
|
||||||
default: false
|
|
||||||
authme.admin.purge:
|
|
||||||
description: Database purge command
|
|
||||||
default: false
|
|
||||||
authme.admin.purgebannedplayers:
|
|
||||||
description: Purge banned players
|
|
||||||
default: false
|
|
||||||
authme.admin.purgelastpos:
|
|
||||||
description: Purge last position of a player/players
|
|
||||||
default: false
|
|
||||||
authme.admin.converter:
|
|
||||||
description: Allow the /authme converter command
|
|
||||||
default: false
|
|
||||||
authme.admin.reload:
|
|
||||||
description: Reload the plugin
|
|
||||||
default: false
|
|
||||||
authme.vip:
|
|
||||||
description: Allow vip slot when the server is full
|
|
||||||
default: false
|
|
||||||
authme.bypassantibot:
|
|
||||||
description: Bypass the AntiBot check
|
|
||||||
default: false
|
|
||||||
authme.allowmultipleaccounts:
|
|
||||||
description: Allow more accounts for same ip
|
|
||||||
default: false
|
|
||||||
authme.bypassforcesurvival:
|
|
||||||
description: Bypass all ForceSurvival features
|
|
||||||
default: false
|
|
||||||
@@ -2,6 +2,7 @@ package fr.xephi.authme;
|
|||||||
|
|
||||||
import ch.jalu.injector.Injector;
|
import ch.jalu.injector.Injector;
|
||||||
import ch.jalu.injector.InjectorBuilder;
|
import ch.jalu.injector.InjectorBuilder;
|
||||||
|
import com.google.common.annotations.VisibleForTesting;
|
||||||
import fr.xephi.authme.api.v3.AuthMeApi;
|
import fr.xephi.authme.api.v3.AuthMeApi;
|
||||||
import fr.xephi.authme.command.CommandHandler;
|
import fr.xephi.authme.command.CommandHandler;
|
||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
@@ -11,19 +12,13 @@ import fr.xephi.authme.initialization.OnShutdownPlayerSaver;
|
|||||||
import fr.xephi.authme.initialization.OnStartupTasks;
|
import fr.xephi.authme.initialization.OnStartupTasks;
|
||||||
import fr.xephi.authme.initialization.SettingsProvider;
|
import fr.xephi.authme.initialization.SettingsProvider;
|
||||||
import fr.xephi.authme.initialization.TaskCloser;
|
import fr.xephi.authme.initialization.TaskCloser;
|
||||||
import fr.xephi.authme.listener.BedrockAutoLoginListener;
|
|
||||||
import fr.xephi.authme.listener.BlockListener;
|
import fr.xephi.authme.listener.BlockListener;
|
||||||
import fr.xephi.authme.listener.DoubleLoginFixListener;
|
|
||||||
import fr.xephi.authme.listener.EntityListener;
|
import fr.xephi.authme.listener.EntityListener;
|
||||||
import fr.xephi.authme.listener.GuiCaptchaHandler;
|
|
||||||
import fr.xephi.authme.listener.LoginLocationFixListener;
|
|
||||||
import fr.xephi.authme.listener.PlayerListener;
|
import fr.xephi.authme.listener.PlayerListener;
|
||||||
import fr.xephi.authme.listener.PlayerListener111;
|
import fr.xephi.authme.listener.PlayerListener111;
|
||||||
import fr.xephi.authme.listener.PlayerListener19;
|
import fr.xephi.authme.listener.PlayerListener19;
|
||||||
import fr.xephi.authme.listener.PlayerListener19Spigot;
|
import fr.xephi.authme.listener.PlayerListener19Spigot;
|
||||||
import fr.xephi.authme.listener.PlayerListenerHigherThan18;
|
|
||||||
import fr.xephi.authme.listener.ServerListener;
|
import fr.xephi.authme.listener.ServerListener;
|
||||||
import fr.xephi.authme.mail.EmailService;
|
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
import fr.xephi.authme.security.crypts.Sha256;
|
import fr.xephi.authme.security.crypts.Sha256;
|
||||||
import fr.xephi.authme.service.BackupService;
|
import fr.xephi.authme.service.BackupService;
|
||||||
@@ -33,8 +28,6 @@ import fr.xephi.authme.service.bungeecord.BungeeReceiver;
|
|||||||
import fr.xephi.authme.service.yaml.YamlParseException;
|
import fr.xephi.authme.service.yaml.YamlParseException;
|
||||||
import fr.xephi.authme.settings.Settings;
|
import fr.xephi.authme.settings.Settings;
|
||||||
import fr.xephi.authme.settings.SettingsWarner;
|
import fr.xephi.authme.settings.SettingsWarner;
|
||||||
import fr.xephi.authme.settings.properties.EmailSettings;
|
|
||||||
import fr.xephi.authme.settings.properties.HooksSettings;
|
|
||||||
import fr.xephi.authme.settings.properties.SecuritySettings;
|
import fr.xephi.authme.settings.properties.SecuritySettings;
|
||||||
import fr.xephi.authme.task.CleanupTask;
|
import fr.xephi.authme.task.CleanupTask;
|
||||||
import fr.xephi.authme.task.purge.PurgeService;
|
import fr.xephi.authme.task.purge.PurgeService;
|
||||||
@@ -42,21 +35,14 @@ import fr.xephi.authme.util.ExceptionUtils;
|
|||||||
import org.bukkit.Server;
|
import org.bukkit.Server;
|
||||||
import org.bukkit.command.Command;
|
import org.bukkit.command.Command;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
|
import org.bukkit.plugin.PluginDescriptionFile;
|
||||||
import org.bukkit.plugin.PluginManager;
|
import org.bukkit.plugin.PluginManager;
|
||||||
import org.bukkit.plugin.java.JavaPlugin;
|
import org.bukkit.plugin.java.JavaPlugin;
|
||||||
|
import org.bukkit.plugin.java.JavaPluginLoader;
|
||||||
import org.bukkit.scheduler.BukkitScheduler;
|
import org.bukkit.scheduler.BukkitScheduler;
|
||||||
import org.jetbrains.annotations.NotNull;
|
|
||||||
|
|
||||||
import javax.inject.Inject;
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
|
||||||
import java.net.HttpURLConnection;
|
|
||||||
import java.net.URL;
|
|
||||||
import java.text.SimpleDateFormat;
|
|
||||||
import java.util.Date;
|
|
||||||
import java.util.Scanner;
|
|
||||||
import java.util.function.Consumer;
|
import java.util.function.Consumer;
|
||||||
import java.util.logging.Level;
|
|
||||||
|
|
||||||
import static fr.xephi.authme.service.BukkitService.TICKS_PER_MINUTE;
|
import static fr.xephi.authme.service.BukkitService.TICKS_PER_MINUTE;
|
||||||
import static fr.xephi.authme.util.Utils.isClassLoaded;
|
import static fr.xephi.authme.util.Utils.isClassLoaded;
|
||||||
@@ -72,25 +58,31 @@ public class AuthMe extends JavaPlugin {
|
|||||||
private static final int CLEANUP_INTERVAL = 5 * TICKS_PER_MINUTE;
|
private static final int CLEANUP_INTERVAL = 5 * TICKS_PER_MINUTE;
|
||||||
|
|
||||||
// Version and build number values
|
// Version and build number values
|
||||||
private static String pluginVersion = "5.6.0-Fork";
|
private static String pluginVersion = "N/D";
|
||||||
private static final String pluginBuild = "b";
|
private static String pluginBuildNumber = "Unknown";
|
||||||
private static String pluginBuildNumber = "34";
|
|
||||||
// Private instances
|
// Private instances
|
||||||
private EmailService emailService;
|
|
||||||
private CommandHandler commandHandler;
|
private CommandHandler commandHandler;
|
||||||
@Inject
|
private Settings settings;
|
||||||
public static Settings settings;
|
|
||||||
private DataSource database;
|
private DataSource database;
|
||||||
private BukkitService bukkitService;
|
private BukkitService bukkitService;
|
||||||
private Injector injector;
|
private Injector injector;
|
||||||
private BackupService backupService;
|
private BackupService backupService;
|
||||||
public static ConsoleLogger logger;
|
private ConsoleLogger logger;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
*/
|
*/
|
||||||
public AuthMe() {
|
public AuthMe() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Constructor for unit testing.
|
||||||
|
*/
|
||||||
|
@VisibleForTesting
|
||||||
|
AuthMe(JavaPluginLoader loader, PluginDescriptionFile description, File dataFolder, File file) {
|
||||||
|
super(loader, description, dataFolder, file);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the plugin's name.
|
* Get the plugin's name.
|
||||||
@@ -119,8 +111,6 @@ public class AuthMe extends JavaPlugin {
|
|||||||
return pluginBuildNumber;
|
return pluginBuildNumber;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Method called when the server enables the plugin.
|
* Method called when the server enables the plugin.
|
||||||
*/
|
*/
|
||||||
@@ -132,8 +122,6 @@ public class AuthMe extends JavaPlugin {
|
|||||||
// Set the Logger instance and log file path
|
// Set the Logger instance and log file path
|
||||||
ConsoleLogger.initialize(getLogger(), new File(getDataFolder(), LOG_FILENAME));
|
ConsoleLogger.initialize(getLogger(), new File(getDataFolder(), LOG_FILENAME));
|
||||||
logger = ConsoleLoggerFactory.get(AuthMe.class);
|
logger = ConsoleLoggerFactory.get(AuthMe.class);
|
||||||
logger.info("You are running an unofficial fork version of AuthMe!");
|
|
||||||
|
|
||||||
|
|
||||||
// Check server version
|
// Check server version
|
||||||
if (!isClassLoaded("org.spigotmc.event.player.PlayerSpawnLocationEvent")
|
if (!isClassLoaded("org.spigotmc.event.player.PlayerSpawnLocationEvent")
|
||||||
@@ -174,53 +162,26 @@ public class AuthMe extends JavaPlugin {
|
|||||||
// Schedule clean up task
|
// Schedule clean up task
|
||||||
CleanupTask cleanupTask = injector.getSingleton(CleanupTask.class);
|
CleanupTask cleanupTask = injector.getSingleton(CleanupTask.class);
|
||||||
cleanupTask.runTaskTimerAsynchronously(this, CLEANUP_INTERVAL, CLEANUP_INTERVAL);
|
cleanupTask.runTaskTimerAsynchronously(this, CLEANUP_INTERVAL, CLEANUP_INTERVAL);
|
||||||
|
|
||||||
// Do a backup on start
|
// Do a backup on start
|
||||||
backupService.doBackup(BackupService.BackupCause.START);
|
backupService.doBackup(BackupService.BackupCause.START);
|
||||||
|
|
||||||
// Set up Metrics
|
// Set up Metrics
|
||||||
OnStartupTasks.sendMetrics(this, settings);
|
OnStartupTasks.sendMetrics(this, settings);
|
||||||
if(settings.getProperty(SecuritySettings.SHOW_STARTUP_BANNER)) {
|
|
||||||
String loadColorConfig = settings.getProperty(SecuritySettings.STARTUP_BANNER_COLOR);
|
|
||||||
if (loadColorConfig.startsWith("§")) {
|
|
||||||
logger.info("\n" + loadColorConfig + " ___ __ __ __ ___ \n" +
|
|
||||||
loadColorConfig + " / | __ __/ /_/ /_ / |/ /__ \n" +
|
|
||||||
loadColorConfig + " / /| |/ / / / __/ __ \\/ /|_/ / _ \\\n" +
|
|
||||||
loadColorConfig + " / ___ / /_/ / /_/ / / / / / / __/\n" +
|
|
||||||
loadColorConfig + "/_/ |_\\__,_/\\__/_/ /_/_/ /_/\\___/ \n" +
|
|
||||||
loadColorConfig + " ");
|
|
||||||
}else {
|
|
||||||
logger.info("\n"+" ___ __ __ __ ___ \n" +
|
|
||||||
" / | __ __/ /_/ /_ / |/ /__ \n" +
|
|
||||||
" / /| |/ / / / __/ __ \\/ /|_/ / _ \\\n" +
|
|
||||||
" / ___ / /_/ / /_/ / / / / / / __/\n" +
|
|
||||||
"/_/ |_\\__,_/\\__/_/ /_/_/ /_/\\___/ \n" +
|
|
||||||
" ");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Successful message
|
// Successful message
|
||||||
//detect server brand with classloader
|
logger.info("AuthMe " + getPluginVersion() + " build n." + getPluginBuildNumber() + " successfully enabled!");
|
||||||
checkServerType();
|
|
||||||
logger.info("AuthMeReReloaded is enabled successfully!");
|
|
||||||
// Purge on start if enabled
|
// Purge on start if enabled
|
||||||
PurgeService purgeService = injector.getSingleton(PurgeService.class);
|
PurgeService purgeService = injector.getSingleton(PurgeService.class);
|
||||||
purgeService.runAutoPurge();
|
purgeService.runAutoPurge();
|
||||||
// 注册玩家加入事件监听
|
|
||||||
// register3rdPartyListeners();
|
|
||||||
logger.info("GitHub: https://github.com/HaHaWTH/AuthMeReReloaded/");
|
|
||||||
|
|
||||||
if (settings.getProperty(SecuritySettings.CHECK_FOR_UPDATES)) {
|
|
||||||
checkForUpdates();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//Migrated
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Load the version and build number of the plugin from the description file.
|
* Load the version and build number of the plugin from the description file.
|
||||||
*
|
*
|
||||||
* @param versionRaw the version as given by the plugin description file
|
* @param versionRaw the version as given by the plugin description file
|
||||||
*/
|
*/
|
||||||
|
|
||||||
private static void loadPluginInfo(String versionRaw) {
|
private static void loadPluginInfo(String versionRaw) {
|
||||||
int index = versionRaw.lastIndexOf("-");
|
int index = versionRaw.lastIndexOf("-");
|
||||||
if (index != -1) {
|
if (index != -1) {
|
||||||
@@ -284,7 +245,6 @@ public class AuthMe extends JavaPlugin {
|
|||||||
database = injector.getSingleton(DataSource.class);
|
database = injector.getSingleton(DataSource.class);
|
||||||
bukkitService = injector.getSingleton(BukkitService.class);
|
bukkitService = injector.getSingleton(BukkitService.class);
|
||||||
commandHandler = injector.getSingleton(CommandHandler.class);
|
commandHandler = injector.getSingleton(CommandHandler.class);
|
||||||
emailService = injector.getSingleton(EmailService.class);
|
|
||||||
backupService = injector.getSingleton(BackupService.class);
|
backupService = injector.getSingleton(BackupService.class);
|
||||||
|
|
||||||
// Trigger instantiation (class not used elsewhere)
|
// Trigger instantiation (class not used elsewhere)
|
||||||
@@ -309,17 +269,10 @@ public class AuthMe extends JavaPlugin {
|
|||||||
pluginManager.registerEvents(injector.getSingleton(EntityListener.class), this);
|
pluginManager.registerEvents(injector.getSingleton(EntityListener.class), this);
|
||||||
pluginManager.registerEvents(injector.getSingleton(ServerListener.class), this);
|
pluginManager.registerEvents(injector.getSingleton(ServerListener.class), this);
|
||||||
|
|
||||||
|
// Try to register 1.9 player listeners
|
||||||
// Try to register 1.8+ player listeners
|
if (isClassLoaded("org.bukkit.event.player.PlayerSwapHandItemsEvent")) {
|
||||||
if (isClassLoaded("org.bukkit.event.entity.EntityPickupItemEvent") && isClassLoaded("org.bukkit.event.player.PlayerSwapHandItemsEvent")) {
|
|
||||||
pluginManager.registerEvents(injector.getSingleton(PlayerListenerHigherThan18.class), this);
|
|
||||||
} else if (isClassLoaded("org.bukkit.event.player.PlayerSwapHandItemsEvent")) {
|
|
||||||
pluginManager.registerEvents(injector.getSingleton(PlayerListener19.class), this);
|
pluginManager.registerEvents(injector.getSingleton(PlayerListener19.class), this);
|
||||||
}
|
}
|
||||||
// Try to register 1.9 player listeners(Moved to else-if)
|
|
||||||
// if (isClassLoaded("org.bukkit.event.player.PlayerSwapHandItemsEvent")) {
|
|
||||||
// pluginManager.registerEvents(injector.getSingleton(PlayerListener19.class), this);
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Try to register 1.9 spigot player listeners
|
// Try to register 1.9 spigot player listeners
|
||||||
if (isClassLoaded("org.spigotmc.event.player.PlayerSpawnLocationEvent")) {
|
if (isClassLoaded("org.spigotmc.event.player.PlayerSpawnLocationEvent")) {
|
||||||
@@ -330,26 +283,6 @@ public class AuthMe extends JavaPlugin {
|
|||||||
if (isClassLoaded("org.bukkit.event.entity.EntityAirChangeEvent")) {
|
if (isClassLoaded("org.bukkit.event.entity.EntityAirChangeEvent")) {
|
||||||
pluginManager.registerEvents(injector.getSingleton(PlayerListener111.class), this);
|
pluginManager.registerEvents(injector.getSingleton(PlayerListener111.class), this);
|
||||||
}
|
}
|
||||||
|
|
||||||
//Register 3rd party listeners
|
|
||||||
if (settings.getProperty(SecuritySettings.GUI_CAPTCHA) && getServer().getPluginManager().getPlugin("ProtocolLib") != null) {
|
|
||||||
pluginManager.registerEvents(injector.getSingleton(GuiCaptchaHandler.class), this);
|
|
||||||
logger.info("(Beta)GUICaptcha is enabled successfully!");
|
|
||||||
logger.info("These features are still in early development, if you encountered any problem, please report.");
|
|
||||||
} else if (settings.getProperty(SecuritySettings.GUI_CAPTCHA) && getServer().getPluginManager().getPlugin("ProtocolLib") == null) {
|
|
||||||
logger.warning("ProtocolLib is not loaded, can't enable GUI Captcha.");
|
|
||||||
}
|
|
||||||
if (settings.getProperty(SecuritySettings.FORCE_LOGIN_BEDROCK) && settings.getProperty(HooksSettings.HOOK_FLOODGATE_PLAYER) && getServer().getPluginManager().getPlugin("floodgate") != null) {
|
|
||||||
pluginManager.registerEvents(injector.getSingleton(BedrockAutoLoginListener.class), this);
|
|
||||||
} else if (settings.getProperty(SecuritySettings.FORCE_LOGIN_BEDROCK) && (!settings.getProperty(HooksSettings.HOOK_FLOODGATE_PLAYER) || getServer().getPluginManager().getPlugin("floodgate") == null)) {
|
|
||||||
logger.warning("Failed to enable BedrockAutoLogin, ensure hookFloodgate: true and floodgate is loaded.");
|
|
||||||
}
|
|
||||||
if (settings.getProperty(SecuritySettings.LOGIN_LOC_FIX_SUB_UNDERGROUND) || settings.getProperty(SecuritySettings.LOGIN_LOC_FIX_SUB_PORTAL)) {
|
|
||||||
pluginManager.registerEvents(injector.getSingleton(LoginLocationFixListener.class), this);
|
|
||||||
}
|
|
||||||
if (settings.getProperty(SecuritySettings.ANTI_GHOST_PLAYERS)) {
|
|
||||||
pluginManager.registerEvents(injector.getSingleton(DoubleLoginFixListener.class), this);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -374,11 +307,6 @@ public class AuthMe extends JavaPlugin {
|
|||||||
if (onShutdownPlayerSaver != null) {
|
if (onShutdownPlayerSaver != null) {
|
||||||
onShutdownPlayerSaver.saveAllPlayers();
|
onShutdownPlayerSaver.saveAllPlayers();
|
||||||
}
|
}
|
||||||
if (settings.getProperty(EmailSettings.SHUTDOWN_MAIL)){
|
|
||||||
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy'.'MM'.'dd'.' HH:mm:ss");
|
|
||||||
Date date = new Date(System.currentTimeMillis());
|
|
||||||
emailService.sendShutDown(settings.getProperty(EmailSettings.SHUTDOWN_MAIL_ADDRESS),dateFormat.format(date));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Do backup on stop if enabled
|
// Do backup on stop if enabled
|
||||||
if (backupService != null) {
|
if (backupService != null) {
|
||||||
@@ -390,78 +318,10 @@ public class AuthMe extends JavaPlugin {
|
|||||||
|
|
||||||
// Disabled correctly
|
// Disabled correctly
|
||||||
Consumer<String> infoLogMethod = logger == null ? getLogger()::info : logger::info;
|
Consumer<String> infoLogMethod = logger == null ? getLogger()::info : logger::info;
|
||||||
infoLogMethod.accept("AuthMe " + this.getDescription().getVersion() + " is unloaded successfully!");
|
infoLogMethod.accept("AuthMe " + this.getDescription().getVersion() + " disabled!");
|
||||||
ConsoleLogger.closeFileWriter();
|
ConsoleLogger.closeFileWriter();
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final String owner = "HaHaWTH";
|
|
||||||
// private static final String owner_gitee = "Shixuehan114514";
|
|
||||||
private static final String repo = "AuthMeReReloaded";
|
|
||||||
|
|
||||||
private void checkForUpdates() {
|
|
||||||
logger.info("Checking for updates...");
|
|
||||||
bukkitService.runTaskAsynchronously(() -> {
|
|
||||||
try {
|
|
||||||
// 从南通集线器获取最新版本号
|
|
||||||
URL url = new URL("https://api.github.com/repos/" + owner + "/" + repo + "/releases/latest");
|
|
||||||
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
|
|
||||||
conn.setConnectTimeout(10000); // 设置连接超时为10秒
|
|
||||||
conn.setReadTimeout(10000); // 设置读取超时为10秒
|
|
||||||
Scanner scanner = new Scanner(conn.getInputStream());
|
|
||||||
String response = scanner.useDelimiter("\\Z").next();
|
|
||||||
scanner.close();
|
|
||||||
|
|
||||||
// 处理JSON响应
|
|
||||||
String latestVersion = response.substring(response.indexOf("tag_name") + 11);
|
|
||||||
latestVersion = latestVersion.substring(0, latestVersion.indexOf("\""));
|
|
||||||
if (isUpdateAvailable(latestVersion)) {
|
|
||||||
String message = "New version available! Latest:" + latestVersion + " Current:" + pluginBuild + pluginBuildNumber;
|
|
||||||
getLogger().log(Level.WARNING, message);
|
|
||||||
getLogger().log(Level.WARNING, "Download from here: github.com/HaHaWTH/AuthMeReReloaded/releases/latest");
|
|
||||||
} else {
|
|
||||||
getLogger().log(Level.INFO, "You are running the latest version.");
|
|
||||||
}
|
|
||||||
} catch (IOException e) {
|
|
||||||
String formattedException = ExceptionUtils.formatException(e);
|
|
||||||
getLogger().log(Level.WARNING, "Error occurred while checking updates from GitHub. Reason: " + formattedException);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
private boolean isUpdateAvailable(String latestVersion) {
|
|
||||||
// Extract the first character and the remaining digits from the version string
|
|
||||||
char latestChar = latestVersion.charAt(0);
|
|
||||||
int latestNumber = Integer.parseInt(latestVersion.substring(1));
|
|
||||||
|
|
||||||
char currentChar = pluginBuild.charAt(0);
|
|
||||||
int currentNumber = Integer.parseInt(pluginBuildNumber);
|
|
||||||
|
|
||||||
// Compare the characters first
|
|
||||||
if (latestChar > currentChar) {
|
|
||||||
return true;
|
|
||||||
} else if (latestChar < currentChar) {
|
|
||||||
return false;
|
|
||||||
} else {
|
|
||||||
// If the characters are the same, compare the numbers
|
|
||||||
return latestNumber > currentNumber;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
private void checkServerType() {
|
|
||||||
if (isClassLoaded("com.destroystokyo.paper.PaperConfig")) {
|
|
||||||
logger.info("AuthMeReReloaded is running on Paper");
|
|
||||||
}else if (isClassLoaded("catserver.server.CatServerConfig")) {
|
|
||||||
logger.info("AuthMeReReloaded is running on CatServer");
|
|
||||||
} else if (isClassLoaded("org.spigotmc.SpigotConfig")) {
|
|
||||||
logger.info("AuthMeReReloaded is running on Spigot");
|
|
||||||
} else if (isClassLoaded("org.bukkit.craftbukkit.CraftServer")) {
|
|
||||||
logger.info("AuthMeReReloaded is running on Bukkit");
|
|
||||||
} else {
|
|
||||||
logger.info("AuthMeReReloaded is running on Unknown*");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle Bukkit commands.
|
* Handle Bukkit commands.
|
||||||
*
|
*
|
||||||
@@ -472,8 +332,8 @@ public class AuthMe extends JavaPlugin {
|
|||||||
* @return True if the command was executed, false otherwise.
|
* @return True if the command was executed, false otherwise.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public boolean onCommand(@NotNull CommandSender sender, @NotNull Command cmd,
|
public boolean onCommand(CommandSender sender, Command cmd,
|
||||||
@NotNull String commandLabel, String[] args) {
|
String commandLabel, String[] args) {
|
||||||
// Make sure the command handler has been initialized
|
// Make sure the command handler has been initialized
|
||||||
if (commandHandler == null) {
|
if (commandHandler == null) {
|
||||||
getLogger().severe("AuthMe command handler is not available");
|
getLogger().severe("AuthMe command handler is not available");
|
||||||
|
|||||||
@@ -142,7 +142,7 @@ public final class ConsoleLogger {
|
|||||||
public void fine(String message) {
|
public void fine(String message) {
|
||||||
if (logLevel.includes(LogLevel.FINE)) {
|
if (logLevel.includes(LogLevel.FINE)) {
|
||||||
logger.info(message);
|
logger.info(message);
|
||||||
writeLog("[INFO:FINE] " + message);
|
writeLog("[FINE] " + message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -215,7 +215,7 @@ public final class ConsoleLogger {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void logAndWriteWithDebugPrefix(String message) {
|
private void logAndWriteWithDebugPrefix(String message) {
|
||||||
String debugMessage = "[INFO:DEBUG] " + message;
|
String debugMessage = "[DEBUG] " + message;
|
||||||
logger.info(debugMessage);
|
logger.info(debugMessage);
|
||||||
writeLog(debugMessage);
|
writeLog(debugMessage);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,8 +14,8 @@ import fr.xephi.authme.datasource.converter.RoyalAuthConverter;
|
|||||||
import fr.xephi.authme.datasource.converter.SqliteToSql;
|
import fr.xephi.authme.datasource.converter.SqliteToSql;
|
||||||
import fr.xephi.authme.datasource.converter.VAuthConverter;
|
import fr.xephi.authme.datasource.converter.VAuthConverter;
|
||||||
import fr.xephi.authme.datasource.converter.XAuthConverter;
|
import fr.xephi.authme.datasource.converter.XAuthConverter;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.service.BukkitService;
|
import fr.xephi.authme.service.BukkitService;
|
||||||
import fr.xephi.authme.service.CommonService;
|
import fr.xephi.authme.service.CommonService;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
|
|||||||
@@ -1,13 +1,9 @@
|
|||||||
package fr.xephi.authme.command.executable.authme;
|
package fr.xephi.authme.command.executable.authme;
|
||||||
|
|
||||||
import fr.xephi.authme.ConsoleLogger;
|
|
||||||
import fr.xephi.authme.command.PlayerCommand;
|
import fr.xephi.authme.command.PlayerCommand;
|
||||||
import fr.xephi.authme.settings.Settings;
|
|
||||||
import fr.xephi.authme.settings.SpawnLoader;
|
import fr.xephi.authme.settings.SpawnLoader;
|
||||||
import fr.xephi.authme.settings.properties.SecuritySettings;
|
|
||||||
import fr.xephi.authme.util.TeleportUtils;
|
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import fr.xephi.authme.AuthMe;
|
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@@ -15,22 +11,16 @@ import java.util.List;
|
|||||||
* Teleports the player to the first spawn.
|
* Teleports the player to the first spawn.
|
||||||
*/
|
*/
|
||||||
public class FirstSpawnCommand extends PlayerCommand {
|
public class FirstSpawnCommand extends PlayerCommand {
|
||||||
@Inject
|
|
||||||
private Settings settings;
|
|
||||||
@Inject
|
@Inject
|
||||||
private SpawnLoader spawnLoader;
|
private SpawnLoader spawnLoader;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void runCommand(Player player, List<String> arguments) {
|
public void runCommand(Player player, List<String> arguments) {
|
||||||
if (spawnLoader.getFirstSpawn() == null) {
|
if (spawnLoader.getFirstSpawn() == null) {
|
||||||
player.sendMessage("[AuthMe] First spawn has failed, please try to define the first spawn");
|
player.sendMessage("[AuthMe] First spawn has failed, please try to define the first spawn");
|
||||||
} else {
|
} else {
|
||||||
//String name= player.getName();
|
player.teleport(spawnLoader.getFirstSpawn());
|
||||||
if(settings.getProperty(SecuritySettings.SMART_ASYNC_TELEPORT)) {
|
|
||||||
TeleportUtils.teleport(player, spawnLoader.getFirstSpawn());
|
|
||||||
} else {
|
|
||||||
player.teleport(spawnLoader.getFirstSpawn());
|
|
||||||
}
|
|
||||||
//player.teleport(spawnLoader.getFirstSpawn());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,8 +4,8 @@ import fr.xephi.authme.ConsoleLogger;
|
|||||||
import fr.xephi.authme.command.ExecutableCommand;
|
import fr.xephi.authme.command.ExecutableCommand;
|
||||||
import fr.xephi.authme.data.auth.PlayerAuth;
|
import fr.xephi.authme.data.auth.PlayerAuth;
|
||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.security.PasswordSecurity;
|
import fr.xephi.authme.security.PasswordSecurity;
|
||||||
import fr.xephi.authme.security.crypts.HashedPassword;
|
import fr.xephi.authme.security.crypts.HashedPassword;
|
||||||
import fr.xephi.authme.service.BukkitService;
|
import fr.xephi.authme.service.BukkitService;
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ import fr.xephi.authme.command.ExecutableCommand;
|
|||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
import fr.xephi.authme.initialization.Reloadable;
|
import fr.xephi.authme.initialization.Reloadable;
|
||||||
import fr.xephi.authme.initialization.SettingsDependent;
|
import fr.xephi.authme.initialization.SettingsDependent;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.service.CommonService;
|
import fr.xephi.authme.service.CommonService;
|
||||||
import fr.xephi.authme.settings.Settings;
|
import fr.xephi.authme.settings.Settings;
|
||||||
import fr.xephi.authme.settings.SettingsWarner;
|
import fr.xephi.authme.settings.SettingsWarner;
|
||||||
|
|||||||
@@ -3,8 +3,8 @@ package fr.xephi.authme.command.executable.authme.debug;
|
|||||||
import ch.jalu.datasourcecolumns.data.DataSourceValue;
|
import ch.jalu.datasourcecolumns.data.DataSourceValue;
|
||||||
import fr.xephi.authme.ConsoleLogger;
|
import fr.xephi.authme.ConsoleLogger;
|
||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
import fr.xephi.authme.mail.SendMailSsl;
|
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
|
import fr.xephi.authme.mail.SendMailSsl;
|
||||||
import fr.xephi.authme.permission.DebugSectionPermissions;
|
import fr.xephi.authme.permission.DebugSectionPermissions;
|
||||||
import fr.xephi.authme.permission.PermissionNode;
|
import fr.xephi.authme.permission.PermissionNode;
|
||||||
import fr.xephi.authme.util.StringUtils;
|
import fr.xephi.authme.util.StringUtils;
|
||||||
|
|||||||
+1
@@ -42,6 +42,7 @@ public class ChangePasswordCommand extends PlayerCommand {
|
|||||||
commonService.send(player, MessageKey.NOT_LOGGED_IN);
|
commonService.send(player, MessageKey.NOT_LOGGED_IN);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if the user has been verified or not
|
// Check if the user has been verified or not
|
||||||
if (codeManager.isVerificationRequired(player)) {
|
if (codeManager.isVerificationRequired(player)) {
|
||||||
codeManager.codeExistOrGenerateNew(name);
|
codeManager.codeExistOrGenerateNew(name);
|
||||||
|
|||||||
@@ -3,8 +3,8 @@ package fr.xephi.authme.command.executable.email;
|
|||||||
import fr.xephi.authme.ConsoleLogger;
|
import fr.xephi.authme.ConsoleLogger;
|
||||||
import fr.xephi.authme.command.PlayerCommand;
|
import fr.xephi.authme.command.PlayerCommand;
|
||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.security.PasswordSecurity;
|
import fr.xephi.authme.security.PasswordSecurity;
|
||||||
import fr.xephi.authme.security.crypts.HashedPassword;
|
import fr.xephi.authme.security.crypts.HashedPassword;
|
||||||
import fr.xephi.authme.service.CommonService;
|
import fr.xephi.authme.service.CommonService;
|
||||||
|
|||||||
@@ -5,9 +5,9 @@ import fr.xephi.authme.ConsoleLogger;
|
|||||||
import fr.xephi.authme.command.PlayerCommand;
|
import fr.xephi.authme.command.PlayerCommand;
|
||||||
import fr.xephi.authme.data.auth.PlayerCache;
|
import fr.xephi.authme.data.auth.PlayerCache;
|
||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
import fr.xephi.authme.mail.EmailService;
|
import fr.xephi.authme.mail.EmailService;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
|
||||||
import fr.xephi.authme.service.BukkitService;
|
import fr.xephi.authme.service.BukkitService;
|
||||||
import fr.xephi.authme.service.CommonService;
|
import fr.xephi.authme.service.CommonService;
|
||||||
import fr.xephi.authme.service.PasswordRecoveryService;
|
import fr.xephi.authme.service.PasswordRecoveryService;
|
||||||
|
|||||||
@@ -3,10 +3,9 @@ package fr.xephi.authme.command.executable.register;
|
|||||||
import fr.xephi.authme.ConsoleLogger;
|
import fr.xephi.authme.ConsoleLogger;
|
||||||
import fr.xephi.authme.command.PlayerCommand;
|
import fr.xephi.authme.command.PlayerCommand;
|
||||||
import fr.xephi.authme.data.captcha.RegistrationCaptchaManager;
|
import fr.xephi.authme.data.captcha.RegistrationCaptchaManager;
|
||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
import fr.xephi.authme.mail.EmailService;
|
import fr.xephi.authme.mail.EmailService;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
|
||||||
import fr.xephi.authme.process.Management;
|
import fr.xephi.authme.process.Management;
|
||||||
import fr.xephi.authme.process.register.RegisterSecondaryArgument;
|
import fr.xephi.authme.process.register.RegisterSecondaryArgument;
|
||||||
import fr.xephi.authme.process.register.RegistrationType;
|
import fr.xephi.authme.process.register.RegistrationType;
|
||||||
@@ -24,8 +23,6 @@ import org.bukkit.entity.Player;
|
|||||||
|
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Timer;
|
|
||||||
import java.util.TimerTask;
|
|
||||||
|
|
||||||
import static fr.xephi.authme.process.register.RegisterSecondaryArgument.CONFIRMATION;
|
import static fr.xephi.authme.process.register.RegisterSecondaryArgument.CONFIRMATION;
|
||||||
import static fr.xephi.authme.process.register.RegisterSecondaryArgument.EMAIL_MANDATORY;
|
import static fr.xephi.authme.process.register.RegisterSecondaryArgument.EMAIL_MANDATORY;
|
||||||
@@ -46,9 +43,6 @@ public class RegisterCommand extends PlayerCommand {
|
|||||||
@Inject
|
@Inject
|
||||||
private CommonService commonService;
|
private CommonService commonService;
|
||||||
|
|
||||||
@Inject
|
|
||||||
private DataSource dataSource;
|
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
private EmailService emailService;
|
private EmailService emailService;
|
||||||
|
|
||||||
@@ -175,20 +169,6 @@ public class RegisterCommand extends PlayerCommand {
|
|||||||
} else if (isSecondArgValidForEmailRegistration(player, arguments)) {
|
} else if (isSecondArgValidForEmailRegistration(player, arguments)) {
|
||||||
management.performRegister(RegistrationMethod.EMAIL_REGISTRATION,
|
management.performRegister(RegistrationMethod.EMAIL_REGISTRATION,
|
||||||
EmailRegisterParams.of(player, email));
|
EmailRegisterParams.of(player, email));
|
||||||
Timer timer = new Timer();
|
|
||||||
timer.schedule(new TimerTask() {
|
|
||||||
@Override
|
|
||||||
public void run() {
|
|
||||||
if (dataSource.getAuth(player.getName()) != null) {
|
|
||||||
if (dataSource.getAuth(player.getName()).getLastLogin() == null) {
|
|
||||||
management.performUnregisterByAdmin(null, player.getName(), player);
|
|
||||||
timer.cancel();
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
timer.cancel();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, 600000);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,9 +5,9 @@ import fr.xephi.authme.command.PlayerCommand;
|
|||||||
import fr.xephi.authme.data.auth.PlayerAuth;
|
import fr.xephi.authme.data.auth.PlayerAuth;
|
||||||
import fr.xephi.authme.data.auth.PlayerCache;
|
import fr.xephi.authme.data.auth.PlayerCache;
|
||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.message.Messages;
|
import fr.xephi.authme.message.Messages;
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
|
||||||
import fr.xephi.authme.security.totp.GenerateTotpService;
|
import fr.xephi.authme.security.totp.GenerateTotpService;
|
||||||
import fr.xephi.authme.security.totp.TotpAuthenticator.TotpGenerationResult;
|
import fr.xephi.authme.security.totp.TotpAuthenticator.TotpGenerationResult;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|||||||
@@ -5,9 +5,9 @@ import fr.xephi.authme.command.PlayerCommand;
|
|||||||
import fr.xephi.authme.data.auth.PlayerAuth;
|
import fr.xephi.authme.data.auth.PlayerAuth;
|
||||||
import fr.xephi.authme.data.auth.PlayerCache;
|
import fr.xephi.authme.data.auth.PlayerCache;
|
||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.message.Messages;
|
import fr.xephi.authme.message.Messages;
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
|
||||||
import fr.xephi.authme.security.totp.TotpAuthenticator;
|
import fr.xephi.authme.security.totp.TotpAuthenticator;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
|
|||||||
@@ -8,9 +8,9 @@ import fr.xephi.authme.data.limbo.LimboPlayer;
|
|||||||
import fr.xephi.authme.data.limbo.LimboPlayerState;
|
import fr.xephi.authme.data.limbo.LimboPlayerState;
|
||||||
import fr.xephi.authme.data.limbo.LimboService;
|
import fr.xephi.authme.data.limbo.LimboService;
|
||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.message.Messages;
|
import fr.xephi.authme.message.Messages;
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
|
||||||
import fr.xephi.authme.process.login.AsynchronousLogin;
|
import fr.xephi.authme.process.login.AsynchronousLogin;
|
||||||
import fr.xephi.authme.security.totp.TotpAuthenticator;
|
import fr.xephi.authme.security.totp.TotpAuthenticator;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|||||||
+1
-1
@@ -3,8 +3,8 @@ package fr.xephi.authme.command.executable.verification;
|
|||||||
import fr.xephi.authme.ConsoleLogger;
|
import fr.xephi.authme.ConsoleLogger;
|
||||||
import fr.xephi.authme.command.PlayerCommand;
|
import fr.xephi.authme.command.PlayerCommand;
|
||||||
import fr.xephi.authme.data.VerificationCodeManager;
|
import fr.xephi.authme.data.VerificationCodeManager;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.service.CommonService;
|
import fr.xephi.authme.service.CommonService;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
|
|||||||
@@ -15,8 +15,6 @@ import fr.xephi.authme.util.expiring.ExpiringMap;
|
|||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
import java.text.SimpleDateFormat;
|
|
||||||
import java.util.Date;
|
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.Locale;
|
import java.util.Locale;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
@@ -134,14 +132,12 @@ public class VerificationCodeManager implements SettingsDependent, HasCleanup {
|
|||||||
*/
|
*/
|
||||||
private void generateCode(String name) {
|
private void generateCode(String name) {
|
||||||
DataSourceValue<String> emailResult = dataSource.getEmail(name);
|
DataSourceValue<String> emailResult = dataSource.getEmail(name);
|
||||||
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy'年'MM'月'dd'日' HH:mm:ss");
|
|
||||||
Date date = new Date(System.currentTimeMillis());
|
|
||||||
if (emailResult.rowExists()) {
|
if (emailResult.rowExists()) {
|
||||||
final String email = emailResult.getValue();
|
final String email = emailResult.getValue();
|
||||||
if (!Utils.isEmailEmpty(email)) {
|
if (!Utils.isEmailEmpty(email)) {
|
||||||
String code = RandomStringUtils.generateNum(6); // 6 digits code
|
String code = RandomStringUtils.generateNum(6); // 6 digits code
|
||||||
verificationCodes.put(name.toLowerCase(Locale.ROOT), code);
|
verificationCodes.put(name.toLowerCase(Locale.ROOT), code);
|
||||||
emailService.sendVerificationMail(name, email, code, dateFormat.format(date));
|
emailService.sendVerificationMail(name, email, code);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ package fr.xephi.authme.datasource;
|
|||||||
* DataSource type.
|
* DataSource type.
|
||||||
*/
|
*/
|
||||||
public enum DataSourceType {
|
public enum DataSourceType {
|
||||||
// H2,
|
|
||||||
|
|
||||||
MYSQL,
|
MYSQL,
|
||||||
|
|
||||||
|
|||||||
@@ -1,408 +0,0 @@
|
|||||||
//package fr.xephi.authme.datasource;
|
|
||||||
//
|
|
||||||
//import com.google.common.annotations.VisibleForTesting;
|
|
||||||
//import fr.xephi.authme.ConsoleLogger;
|
|
||||||
//import fr.xephi.authme.data.auth.PlayerAuth;
|
|
||||||
//import fr.xephi.authme.datasource.columnshandler.AuthMeColumnsHandler;
|
|
||||||
//import fr.xephi.authme.output.ConsoleLoggerFactory;
|
|
||||||
//import fr.xephi.authme.settings.Settings;
|
|
||||||
//import fr.xephi.authme.settings.properties.DatabaseSettings;
|
|
||||||
//
|
|
||||||
//import java.io.File;
|
|
||||||
//import java.sql.Connection;
|
|
||||||
//import java.sql.DatabaseMetaData;
|
|
||||||
//import java.sql.DriverManager;
|
|
||||||
//import java.sql.PreparedStatement;
|
|
||||||
//import java.sql.ResultSet;
|
|
||||||
//import java.sql.SQLException;
|
|
||||||
//import java.sql.Statement;
|
|
||||||
//import java.util.ArrayList;
|
|
||||||
//import java.util.Collection;
|
|
||||||
//import java.util.HashSet;
|
|
||||||
//import java.util.List;
|
|
||||||
//import java.util.Locale;
|
|
||||||
//import java.util.Set;
|
|
||||||
//
|
|
||||||
//import static fr.xephi.authme.datasource.SqlDataSourceUtils.getNullableLong;
|
|
||||||
//import static fr.xephi.authme.datasource.SqlDataSourceUtils.logSqlException;
|
|
||||||
//
|
|
||||||
///**
|
|
||||||
// * H2 data source.
|
|
||||||
// */
|
|
||||||
//@SuppressWarnings({"checkstyle:AbbreviationAsWordInName"}) // Justification: Class name cannot be changed anymore
|
|
||||||
//public class H2 extends AbstractSqlDataSource {
|
|
||||||
//
|
|
||||||
// private final ConsoleLogger logger = ConsoleLoggerFactory.get(H2.class);
|
|
||||||
// private final Settings settings;
|
|
||||||
// private final File dataFolder;
|
|
||||||
// private final String database;
|
|
||||||
// private final String tableName;
|
|
||||||
// private final Columns col;
|
|
||||||
// private Connection con;
|
|
||||||
//
|
|
||||||
// /**
|
|
||||||
// * Constructor for H2.
|
|
||||||
// *
|
|
||||||
// * @param settings The settings instance
|
|
||||||
// * @param dataFolder The data folder
|
|
||||||
// * @throws SQLException when initialization of a SQL datasource failed
|
|
||||||
// */
|
|
||||||
// public H2(Settings settings, File dataFolder) throws SQLException {
|
|
||||||
// this.settings = settings;
|
|
||||||
// this.dataFolder = dataFolder;
|
|
||||||
// this.database = settings.getProperty(DatabaseSettings.MYSQL_DATABASE);
|
|
||||||
// this.tableName = settings.getProperty(DatabaseSettings.MYSQL_TABLE);
|
|
||||||
// this.col = new Columns(settings);
|
|
||||||
//
|
|
||||||
// try {
|
|
||||||
// this.connect();
|
|
||||||
// this.setup();
|
|
||||||
// } catch (Exception ex) {
|
|
||||||
// logger.logException("Error during H2 initialization:", ex);
|
|
||||||
// throw ex;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// @VisibleForTesting
|
|
||||||
// H2(Settings settings, File dataFolder, Connection connection) {
|
|
||||||
// this.settings = settings;
|
|
||||||
// this.dataFolder = dataFolder;
|
|
||||||
// this.database = settings.getProperty(DatabaseSettings.MYSQL_DATABASE);
|
|
||||||
// this.tableName = settings.getProperty(DatabaseSettings.MYSQL_TABLE);
|
|
||||||
// this.col = new Columns(settings);
|
|
||||||
// this.con = connection;
|
|
||||||
// this.columnsHandler = AuthMeColumnsHandler.createForSqlite(con, settings);
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// /**
|
|
||||||
// * Initializes the connection to the H2 database.
|
|
||||||
// *
|
|
||||||
// * @throws SQLException when an SQL error occurs while connecting
|
|
||||||
// */
|
|
||||||
// protected void connect() throws SQLException {
|
|
||||||
// try {
|
|
||||||
// Class.forName("org.h2.Driver");
|
|
||||||
// } catch (ClassNotFoundException e) {
|
|
||||||
// throw new IllegalStateException("Failed to load H2 JDBC class", e);
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// logger.debug("H2 driver loaded");
|
|
||||||
// this.con = DriverManager.getConnection(this.getJdbcUrl(this.dataFolder.getAbsolutePath(), "", this.database));
|
|
||||||
// this.columnsHandler = AuthMeColumnsHandler.createForSqlite(con, settings);
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// /**
|
|
||||||
// * Creates the table if necessary, or adds any missing columns to the table.
|
|
||||||
// *
|
|
||||||
// * @throws SQLException when an SQL error occurs while initializing the database
|
|
||||||
// */
|
|
||||||
// @VisibleForTesting
|
|
||||||
// @SuppressWarnings("checkstyle:CyclomaticComplexity")
|
|
||||||
// protected void setup() throws SQLException {
|
|
||||||
// try (Statement st = con.createStatement()) {
|
|
||||||
// // Note: cannot add unique fields later on in SQLite, so we add it on initialization
|
|
||||||
// st.executeUpdate("CREATE TABLE IF NOT EXISTS " + tableName + " ("
|
|
||||||
// + col.ID + " INTEGER AUTO_INCREMENT, "
|
|
||||||
// + col.NAME + " VARCHAR(255) NOT NULL UNIQUE, "
|
|
||||||
// + "CONSTRAINT table_const_prim PRIMARY KEY (" + col.ID + "));");
|
|
||||||
//
|
|
||||||
// DatabaseMetaData md = con.getMetaData();
|
|
||||||
//
|
|
||||||
// if (isColumnMissing(md, col.REAL_NAME)) {
|
|
||||||
// st.executeUpdate("ALTER TABLE " + tableName + " ADD COLUMN "
|
|
||||||
// + col.REAL_NAME + " VARCHAR(255) NOT NULL DEFAULT 'Player';");
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// if (isColumnMissing(md, col.PASSWORD)) {
|
|
||||||
// st.executeUpdate("ALTER TABLE " + tableName
|
|
||||||
// + " ADD COLUMN " + col.PASSWORD + " VARCHAR(255) NOT NULL DEFAULT '';");
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// if (!col.SALT.isEmpty() && isColumnMissing(md, col.SALT)) {
|
|
||||||
// st.executeUpdate("ALTER TABLE " + tableName + " ADD COLUMN " + col.SALT + " VARCHAR(255);");
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// if (isColumnMissing(md, col.LAST_IP)) {
|
|
||||||
// st.executeUpdate("ALTER TABLE " + tableName
|
|
||||||
// + " ADD COLUMN " + col.LAST_IP + " VARCHAR(40);");
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// if (isColumnMissing(md, col.LAST_LOGIN)) {
|
|
||||||
// st.executeUpdate("ALTER TABLE " + tableName
|
|
||||||
// + " ADD COLUMN " + col.LAST_LOGIN + " TIMESTAMP;");
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// if (isColumnMissing(md, col.REGISTRATION_IP)) {
|
|
||||||
// st.executeUpdate("ALTER TABLE " + tableName
|
|
||||||
// + " ADD COLUMN " + col.REGISTRATION_IP + " VARCHAR(40);");
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// if (isColumnMissing(md, col.REGISTRATION_DATE)) {
|
|
||||||
// addRegistrationDateColumn(st);
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// if (isColumnMissing(md, col.LASTLOC_X)) {
|
|
||||||
// st.executeUpdate("ALTER TABLE " + tableName + " ADD COLUMN " + col.LASTLOC_X
|
|
||||||
// + " DOUBLE NOT NULL DEFAULT '0.0';");
|
|
||||||
// st.executeUpdate("ALTER TABLE " + tableName + " ADD COLUMN " + col.LASTLOC_Y
|
|
||||||
// + " DOUBLE NOT NULL DEFAULT '0.0';");
|
|
||||||
// st.executeUpdate("ALTER TABLE " + tableName + " ADD COLUMN " + col.LASTLOC_Z
|
|
||||||
// + " DOUBLE NOT NULL DEFAULT '0.0';");
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// if (isColumnMissing(md, col.LASTLOC_WORLD)) {
|
|
||||||
// st.executeUpdate("ALTER TABLE " + tableName
|
|
||||||
// + " ADD COLUMN " + col.LASTLOC_WORLD + " VARCHAR(255) NOT NULL DEFAULT 'world';");
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// if (isColumnMissing(md, col.LASTLOC_YAW)) {
|
|
||||||
// st.executeUpdate("ALTER TABLE " + tableName + " ADD COLUMN "
|
|
||||||
// + col.LASTLOC_YAW + " FLOAT;");
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// if (isColumnMissing(md, col.LASTLOC_PITCH)) {
|
|
||||||
// st.executeUpdate("ALTER TABLE " + tableName + " ADD COLUMN "
|
|
||||||
// + col.LASTLOC_PITCH + " FLOAT;");
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// if (isColumnMissing(md, col.EMAIL)) {
|
|
||||||
// st.executeUpdate("ALTER TABLE " + tableName
|
|
||||||
// + " ADD COLUMN " + col.EMAIL + " VARCHAR(255);");
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// if (isColumnMissing(md, col.IS_LOGGED)) {
|
|
||||||
// st.executeUpdate("ALTER TABLE " + tableName
|
|
||||||
// + " ADD COLUMN " + col.IS_LOGGED + " INT NOT NULL DEFAULT '0';");
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// if (isColumnMissing(md, col.HAS_SESSION)) {
|
|
||||||
// st.executeUpdate("ALTER TABLE " + tableName
|
|
||||||
// + " ADD COLUMN " + col.HAS_SESSION + " INT NOT NULL DEFAULT '0';");
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// if (isColumnMissing(md, col.TOTP_KEY)) {
|
|
||||||
// st.executeUpdate("ALTER TABLE " + tableName
|
|
||||||
// + " ADD COLUMN " + col.TOTP_KEY + " VARCHAR(32);");
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// if (!col.PLAYER_UUID.isEmpty() && isColumnMissing(md, col.PLAYER_UUID)) {
|
|
||||||
// st.executeUpdate("ALTER TABLE " + tableName
|
|
||||||
// + " ADD COLUMN " + col.PLAYER_UUID + " VARCHAR(36)");
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// logger.info("H2 Setup finished");
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
//
|
|
||||||
// private boolean isColumnMissing(DatabaseMetaData metaData, String columnName) throws SQLException {
|
|
||||||
// try (ResultSet rs = metaData.getColumns(null, null, tableName, columnName)) {
|
|
||||||
// return !rs.next();
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// @Override
|
|
||||||
// public void reload() {
|
|
||||||
// close(con);
|
|
||||||
// try {
|
|
||||||
// this.connect();
|
|
||||||
// this.setup();
|
|
||||||
// } catch (SQLException ex) {
|
|
||||||
// logger.logException("Error while reloading H2:", ex);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// @Override
|
|
||||||
// public PlayerAuth getAuth(String user) {
|
|
||||||
// String sql = "SELECT * FROM " + tableName + " WHERE LOWER(" + col.NAME + ")=LOWER(?);";
|
|
||||||
// try (PreparedStatement pst = con.prepareStatement(sql)) {
|
|
||||||
// pst.setString(1, user);
|
|
||||||
// try (ResultSet rs = pst.executeQuery()) {
|
|
||||||
// if (rs.next()) {
|
|
||||||
// return buildAuthFromResultSet(rs);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// } catch (SQLException ex) {
|
|
||||||
// logSqlException(ex);
|
|
||||||
// }
|
|
||||||
// return null;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// @Override
|
|
||||||
// public Set<String> getRecordsToPurge(long until) {
|
|
||||||
// Set<String> list = new HashSet<>();
|
|
||||||
// String select = "SELECT " + col.NAME + " FROM " + tableName + " WHERE MAX("
|
|
||||||
// + " COALESCE(" + col.LAST_LOGIN + ", 0),"
|
|
||||||
// + " COALESCE(" + col.REGISTRATION_DATE + ", 0)"
|
|
||||||
// + ") < ?;";
|
|
||||||
// try (PreparedStatement selectPst = con.prepareStatement(select)) {
|
|
||||||
// selectPst.setLong(1, until);
|
|
||||||
// try (ResultSet rs = selectPst.executeQuery()) {
|
|
||||||
// while (rs.next()) {
|
|
||||||
// list.add(rs.getString(col.NAME));
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// } catch (SQLException ex) {
|
|
||||||
// logSqlException(ex);
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// return list;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// @Override
|
|
||||||
// public void purgeRecords(Collection<String> toPurge) {
|
|
||||||
// String delete = "DELETE FROM " + tableName + " WHERE " + col.NAME + "=?;";
|
|
||||||
// try (PreparedStatement deletePst = con.prepareStatement(delete)) {
|
|
||||||
// for (String name : toPurge) {
|
|
||||||
// deletePst.setString(1, name.toLowerCase(Locale.ROOT));
|
|
||||||
// deletePst.executeUpdate();
|
|
||||||
// }
|
|
||||||
// } catch (SQLException ex) {
|
|
||||||
// logSqlException(ex);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// @Override
|
|
||||||
// public boolean removeAuth(String user) {
|
|
||||||
// String sql = "DELETE FROM " + tableName + " WHERE " + col.NAME + "=?;";
|
|
||||||
// try (PreparedStatement pst = con.prepareStatement(sql)) {
|
|
||||||
// pst.setString(1, user.toLowerCase(Locale.ROOT));
|
|
||||||
// pst.executeUpdate();
|
|
||||||
// return true;
|
|
||||||
// } catch (SQLException ex) {
|
|
||||||
// logSqlException(ex);
|
|
||||||
// }
|
|
||||||
// return false;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// @Override
|
|
||||||
// public void closeConnection() {
|
|
||||||
// try {
|
|
||||||
// if (con != null && !con.isClosed()) {
|
|
||||||
// con.close();
|
|
||||||
// }
|
|
||||||
// } catch (SQLException ex) {
|
|
||||||
// logSqlException(ex);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// @Override
|
|
||||||
// public DataSourceType getType() {
|
|
||||||
// return DataSourceType.H2;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// @Override
|
|
||||||
// public List<PlayerAuth> getAllAuths() {
|
|
||||||
// List<PlayerAuth> auths = new ArrayList<>();
|
|
||||||
// String sql = "SELECT * FROM " + tableName + ";";
|
|
||||||
// try (PreparedStatement pst = con.prepareStatement(sql); ResultSet rs = pst.executeQuery()) {
|
|
||||||
// while (rs.next()) {
|
|
||||||
// PlayerAuth auth = buildAuthFromResultSet(rs);
|
|
||||||
// auths.add(auth);
|
|
||||||
// }
|
|
||||||
// } catch (SQLException ex) {
|
|
||||||
// logSqlException(ex);
|
|
||||||
// }
|
|
||||||
// return auths;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// @Override
|
|
||||||
// public List<String> getLoggedPlayersWithEmptyMail() {
|
|
||||||
// List<String> players = new ArrayList<>();
|
|
||||||
// String sql = "SELECT " + col.REAL_NAME + " FROM " + tableName + " WHERE " + col.IS_LOGGED + " = 1"
|
|
||||||
// + " AND (" + col.EMAIL + " = 'your@email.com' OR " + col.EMAIL + " IS NULL);";
|
|
||||||
// try (Statement st = con.createStatement(); ResultSet rs = st.executeQuery(sql)) {
|
|
||||||
// while (rs.next()) {
|
|
||||||
// players.add(rs.getString(1));
|
|
||||||
// }
|
|
||||||
// } catch (SQLException ex) {
|
|
||||||
// logSqlException(ex);
|
|
||||||
// }
|
|
||||||
// return players;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// @Override
|
|
||||||
// public List<PlayerAuth> getRecentlyLoggedInPlayers() {
|
|
||||||
// List<PlayerAuth> players = new ArrayList<>();
|
|
||||||
// String sql = "SELECT * FROM " + tableName + " ORDER BY " + col.LAST_LOGIN + " DESC LIMIT 10;";
|
|
||||||
// try (Statement st = con.createStatement(); ResultSet rs = st.executeQuery(sql)) {
|
|
||||||
// while (rs.next()) {
|
|
||||||
// players.add(buildAuthFromResultSet(rs));
|
|
||||||
// }
|
|
||||||
// } catch (SQLException e) {
|
|
||||||
// logSqlException(e);
|
|
||||||
// }
|
|
||||||
// return players;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
//
|
|
||||||
// @Override
|
|
||||||
// public boolean setTotpKey(String user, String totpKey) {
|
|
||||||
// String sql = "UPDATE " + tableName + " SET " + col.TOTP_KEY + " = ? WHERE " + col.NAME + " = ?";
|
|
||||||
// try (PreparedStatement pst = con.prepareStatement(sql)) {
|
|
||||||
// pst.setString(1, totpKey);
|
|
||||||
// pst.setString(2, user.toLowerCase(Locale.ROOT));
|
|
||||||
// pst.executeUpdate();
|
|
||||||
// return true;
|
|
||||||
// } catch (SQLException e) {
|
|
||||||
// logSqlException(e);
|
|
||||||
// }
|
|
||||||
// return false;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// private PlayerAuth buildAuthFromResultSet(ResultSet row) throws SQLException {
|
|
||||||
// String salt = !col.SALT.isEmpty() ? row.getString(col.SALT) : null;
|
|
||||||
//
|
|
||||||
// return PlayerAuth.builder()
|
|
||||||
// .name(row.getString(col.NAME))
|
|
||||||
// .email(row.getString(col.EMAIL))
|
|
||||||
// .realName(row.getString(col.REAL_NAME))
|
|
||||||
// .password(row.getString(col.PASSWORD), salt)
|
|
||||||
// .totpKey(row.getString(col.TOTP_KEY))
|
|
||||||
// .lastLogin(getNullableLong(row, col.LAST_LOGIN))
|
|
||||||
// .lastIp(row.getString(col.LAST_IP))
|
|
||||||
// .registrationDate(row.getLong(col.REGISTRATION_DATE))
|
|
||||||
// .registrationIp(row.getString(col.REGISTRATION_IP))
|
|
||||||
// .locX(row.getDouble(col.LASTLOC_X))
|
|
||||||
// .locY(row.getDouble(col.LASTLOC_Y))
|
|
||||||
// .locZ(row.getDouble(col.LASTLOC_Z))
|
|
||||||
// .locWorld(row.getString(col.LASTLOC_WORLD))
|
|
||||||
// .locYaw(row.getFloat(col.LASTLOC_YAW))
|
|
||||||
// .locPitch(row.getFloat(col.LASTLOC_PITCH))
|
|
||||||
// .build();
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// /**
|
|
||||||
// * Creates the column for registration date and sets all entries to the current timestamp.
|
|
||||||
// * We do so in order to avoid issues with purging, where entries with 0 / NULL might get
|
|
||||||
// * purged immediately on startup otherwise.
|
|
||||||
// *
|
|
||||||
// * @param st Statement object to the database
|
|
||||||
// */
|
|
||||||
// private void addRegistrationDateColumn(Statement st) throws SQLException {
|
|
||||||
// st.executeUpdate("ALTER TABLE " + tableName
|
|
||||||
// + " ADD COLUMN " + col.REGISTRATION_DATE + " TIMESTAMP NOT NULL DEFAULT '0';");
|
|
||||||
//
|
|
||||||
// // Use the timestamp from Java to avoid timezone issues in case JVM and database are out of sync
|
|
||||||
// long currentTimestamp = System.currentTimeMillis();
|
|
||||||
// int updatedRows = st.executeUpdate(String.format("UPDATE %s SET %s = %d;",
|
|
||||||
// tableName, col.REGISTRATION_DATE, currentTimestamp));
|
|
||||||
// logger.info("Created column '" + col.REGISTRATION_DATE + "' and set the current timestamp, "
|
|
||||||
// + currentTimestamp + ", to all " + updatedRows + " rows");
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// @Override
|
|
||||||
// String getJdbcUrl(String dataPath, String ignored, String database) {
|
|
||||||
// return "jdbc:h2:" + dataPath + File.separator + database + ".db";
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// private static void close(Connection con) {
|
|
||||||
// if (con != null) {
|
|
||||||
// try {
|
|
||||||
// con.close();
|
|
||||||
// } catch (SQLException ex) {
|
|
||||||
// logSqlException(ex);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
//}
|
|
||||||
//
|
|
||||||
@@ -3,6 +3,8 @@ package fr.xephi.authme.datasource.columnshandler;
|
|||||||
import fr.xephi.authme.data.auth.PlayerAuth;
|
import fr.xephi.authme.data.auth.PlayerAuth;
|
||||||
import fr.xephi.authme.settings.properties.DatabaseSettings;
|
import fr.xephi.authme.settings.properties.DatabaseSettings;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
import static fr.xephi.authme.datasource.columnshandler.AuthMeColumnsFactory.ColumnOptions.DEFAULT_FOR_NULL;
|
import static fr.xephi.authme.datasource.columnshandler.AuthMeColumnsFactory.ColumnOptions.DEFAULT_FOR_NULL;
|
||||||
import static fr.xephi.authme.datasource.columnshandler.AuthMeColumnsFactory.ColumnOptions.OPTIONAL;
|
import static fr.xephi.authme.datasource.columnshandler.AuthMeColumnsFactory.ColumnOptions.OPTIONAL;
|
||||||
import static fr.xephi.authme.datasource.columnshandler.AuthMeColumnsFactory.createDouble;
|
import static fr.xephi.authme.datasource.columnshandler.AuthMeColumnsFactory.createDouble;
|
||||||
|
|||||||
@@ -76,9 +76,6 @@ public class DataSourceProvider implements Provider<DataSource> {
|
|||||||
case SQLITE:
|
case SQLITE:
|
||||||
dataSource = new SQLite(settings, dataFolder);
|
dataSource = new SQLite(settings, dataFolder);
|
||||||
break;
|
break;
|
||||||
// case H2:
|
|
||||||
// dataSource = new H2(settings, dataFolder);
|
|
||||||
// break;
|
|
||||||
default:
|
default:
|
||||||
throw new UnsupportedOperationException("Unknown data source type '" + dataSourceType + "'");
|
throw new UnsupportedOperationException("Unknown data source type '" + dataSourceType + "'");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,10 +3,10 @@ package fr.xephi.authme.initialization;
|
|||||||
import fr.xephi.authme.AuthMe;
|
import fr.xephi.authme.AuthMe;
|
||||||
import fr.xephi.authme.ConsoleLogger;
|
import fr.xephi.authme.ConsoleLogger;
|
||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.message.Messages;
|
import fr.xephi.authme.message.Messages;
|
||||||
import fr.xephi.authme.output.ConsoleFilter;
|
import fr.xephi.authme.output.ConsoleFilter;
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
|
||||||
import fr.xephi.authme.output.Log4JFilter;
|
import fr.xephi.authme.output.Log4JFilter;
|
||||||
import fr.xephi.authme.service.BukkitService;
|
import fr.xephi.authme.service.BukkitService;
|
||||||
import fr.xephi.authme.settings.Settings;
|
import fr.xephi.authme.settings.Settings;
|
||||||
@@ -32,7 +32,7 @@ import static fr.xephi.authme.settings.properties.EmailSettings.RECALL_PLAYERS;
|
|||||||
*/
|
*/
|
||||||
public class OnStartupTasks {
|
public class OnStartupTasks {
|
||||||
|
|
||||||
private static ConsoleLogger consoleLogger = ConsoleLoggerFactory.get(OnStartupTasks.class);
|
private static final ConsoleLogger consoleLogger = ConsoleLoggerFactory.get(OnStartupTasks.class);
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
private DataSource dataSource;
|
private DataSource dataSource;
|
||||||
@@ -53,7 +53,9 @@ public class OnStartupTasks {
|
|||||||
* @param settings the settings
|
* @param settings the settings
|
||||||
*/
|
*/
|
||||||
public static void sendMetrics(AuthMe plugin, Settings settings) {
|
public static void sendMetrics(AuthMe plugin, Settings settings) {
|
||||||
final Metrics metrics = new Metrics(plugin, 18479);
|
// We do not relocate as the library is downloaded at runtime
|
||||||
|
System.setProperty("bstats.relocatecheck", "false");
|
||||||
|
final Metrics metrics = new Metrics(plugin, 164);
|
||||||
|
|
||||||
metrics.addCustomChart(new SimplePie("messages_language",
|
metrics.addCustomChart(new SimplePie("messages_language",
|
||||||
() -> settings.getProperty(PluginSettings.MESSAGES_LANGUAGE)));
|
() -> settings.getProperty(PluginSettings.MESSAGES_LANGUAGE)));
|
||||||
@@ -109,6 +111,6 @@ public class OnStartupTasks {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}, 1, TICKS_PER_MINUTE * settings.getProperty(EmailSettings.DELAY_RECALL));
|
}, 1, (long) TICKS_PER_MINUTE * settings.getProperty(EmailSettings.DELAY_RECALL));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,52 +0,0 @@
|
|||||||
package fr.xephi.authme.listener;
|
|
||||||
/* Inspired by DongShaoNB/BedrockPlayerSupport **/
|
|
||||||
|
|
||||||
import fr.xephi.authme.AuthMe;
|
|
||||||
import fr.xephi.authme.api.v3.AuthMeApi;
|
|
||||||
import fr.xephi.authme.message.MessageKey;
|
|
||||||
import fr.xephi.authme.message.Messages;
|
|
||||||
import fr.xephi.authme.service.BukkitService;
|
|
||||||
import fr.xephi.authme.settings.Settings;
|
|
||||||
import fr.xephi.authme.settings.properties.HooksSettings;
|
|
||||||
import fr.xephi.authme.settings.properties.SecuritySettings;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
import org.bukkit.event.EventHandler;
|
|
||||||
import org.bukkit.event.EventPriority;
|
|
||||||
import org.bukkit.event.Listener;
|
|
||||||
import org.bukkit.event.player.PlayerJoinEvent;
|
|
||||||
|
|
||||||
import javax.inject.Inject;
|
|
||||||
import java.util.UUID;
|
|
||||||
|
|
||||||
import static org.bukkit.Bukkit.getServer;
|
|
||||||
|
|
||||||
public class BedrockAutoLoginListener implements Listener {
|
|
||||||
private final AuthMeApi authmeApi = AuthMeApi.getInstance();
|
|
||||||
@Inject
|
|
||||||
private BukkitService bukkitService;
|
|
||||||
@Inject
|
|
||||||
private AuthMe plugin;
|
|
||||||
@Inject
|
|
||||||
private Messages messages;
|
|
||||||
|
|
||||||
@Inject
|
|
||||||
private Settings settings;
|
|
||||||
|
|
||||||
public BedrockAutoLoginListener() {
|
|
||||||
}
|
|
||||||
|
|
||||||
private boolean isBedrockPlayer(UUID uuid) {
|
|
||||||
return settings.getProperty(HooksSettings.HOOK_FLOODGATE_PLAYER) && settings.getProperty(SecuritySettings.FORCE_LOGIN_BEDROCK) && org.geysermc.floodgate.api.FloodgateApi.getInstance().isFloodgateId(uuid) && getServer().getPluginManager().getPlugin("floodgate") != null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@EventHandler(priority = EventPriority.LOWEST)
|
|
||||||
public void onPlayerJoin(PlayerJoinEvent event) {
|
|
||||||
Player player = event.getPlayer();
|
|
||||||
String name = event.getPlayer().getName();
|
|
||||||
UUID uuid = event.getPlayer().getUniqueId();
|
|
||||||
if (isBedrockPlayer(uuid) && !authmeApi.isAuthenticated(player) && authmeApi.isRegistered(name)) {
|
|
||||||
authmeApi.forceLogin(player);
|
|
||||||
messages.send(player, MessageKey.BEDROCK_AUTO_LOGGED_IN);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
package fr.xephi.authme.listener;
|
|
||||||
//Prevent Ghost Players
|
|
||||||
|
|
||||||
import fr.xephi.authme.message.MessageKey;
|
|
||||||
import fr.xephi.authme.service.CommonService;
|
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
import org.bukkit.event.EventHandler;
|
|
||||||
import org.bukkit.event.Listener;
|
|
||||||
import org.bukkit.event.player.PlayerJoinEvent;
|
|
||||||
|
|
||||||
import javax.inject.Inject;
|
|
||||||
import java.util.Collection;
|
|
||||||
import java.util.HashSet;
|
|
||||||
|
|
||||||
public class DoubleLoginFixListener implements Listener {
|
|
||||||
@Inject
|
|
||||||
private CommonService service;
|
|
||||||
|
|
||||||
public DoubleLoginFixListener() {
|
|
||||||
}
|
|
||||||
|
|
||||||
@EventHandler
|
|
||||||
public void onPlayerJoin(PlayerJoinEvent event) {
|
|
||||||
Collection<? extends Player> PlayerList = Bukkit.getServer().getOnlinePlayers();
|
|
||||||
HashSet<String> PlayerSet = new HashSet<String>();
|
|
||||||
for (Player ep : PlayerList) {
|
|
||||||
if (PlayerSet.contains(ep.getName().toLowerCase())) {
|
|
||||||
ep.kickPlayer(service.retrieveSingleMessage(ep.getPlayer(), MessageKey.DOUBLE_LOGIN_FIX));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
PlayerSet.add(ep.getName().toLowerCase());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,291 +0,0 @@
|
|||||||
package fr.xephi.authme.listener;
|
|
||||||
|
|
||||||
import com.comphenix.protocol.PacketType;
|
|
||||||
import com.comphenix.protocol.ProtocolLibrary;
|
|
||||||
import com.comphenix.protocol.events.ListenerPriority;
|
|
||||||
import com.comphenix.protocol.events.PacketAdapter;
|
|
||||||
import com.comphenix.protocol.events.PacketEvent;
|
|
||||||
import fr.xephi.authme.AuthMe;
|
|
||||||
import fr.xephi.authme.api.v3.AuthMeApi;
|
|
||||||
import fr.xephi.authme.message.MessageKey;
|
|
||||||
import fr.xephi.authme.message.Messages;
|
|
||||||
import fr.xephi.authme.service.BukkitService;
|
|
||||||
import fr.xephi.authme.service.CommonService;
|
|
||||||
import fr.xephi.authme.settings.Settings;
|
|
||||||
import fr.xephi.authme.settings.properties.HooksSettings;
|
|
||||||
import fr.xephi.authme.settings.properties.RestrictionSettings;
|
|
||||||
import fr.xephi.authme.settings.properties.SecuritySettings;
|
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.Material;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
import org.bukkit.event.EventHandler;
|
|
||||||
import org.bukkit.event.EventPriority;
|
|
||||||
import org.bukkit.event.Listener;
|
|
||||||
import org.bukkit.event.inventory.InventoryClickEvent;
|
|
||||||
import org.bukkit.event.player.PlayerJoinEvent;
|
|
||||||
import org.bukkit.event.player.PlayerQuitEvent;
|
|
||||||
import org.bukkit.inventory.Inventory;
|
|
||||||
import org.bukkit.inventory.ItemStack;
|
|
||||||
import org.bukkit.inventory.meta.ItemMeta;
|
|
||||||
|
|
||||||
import javax.inject.Inject;
|
|
||||||
import java.io.File;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Random;
|
|
||||||
import java.util.UUID;
|
|
||||||
import java.util.concurrent.atomic.AtomicInteger;
|
|
||||||
import java.util.logging.Level;
|
|
||||||
|
|
||||||
import static fr.xephi.authme.util.PlayerUtils.getPlayerIp;
|
|
||||||
import static fr.xephi.authme.util.PlayerUtils.isNpc;
|
|
||||||
import static org.bukkit.Bukkit.getLogger;
|
|
||||||
import static org.bukkit.Bukkit.getServer;
|
|
||||||
|
|
||||||
public class GuiCaptchaHandler implements Listener {
|
|
||||||
//define AuthMeApi
|
|
||||||
private final AuthMeApi authmeApi = AuthMeApi.getInstance();
|
|
||||||
@Inject
|
|
||||||
private BukkitService bukkitService;
|
|
||||||
@Inject
|
|
||||||
private AuthMe plugin;
|
|
||||||
@Inject
|
|
||||||
private Messages messages;
|
|
||||||
@Inject
|
|
||||||
private CommonService service;
|
|
||||||
|
|
||||||
@Inject
|
|
||||||
private Settings settings;
|
|
||||||
|
|
||||||
|
|
||||||
private PacketAdapter chatPacketListener;
|
|
||||||
private PacketAdapter windowPacketListener;
|
|
||||||
|
|
||||||
//define timesLeft
|
|
||||||
private int timesLeft = 3;
|
|
||||||
//Use ConcurrentHashMap to store player and their close reason
|
|
||||||
/* We used many async tasks so there is concurrent**/
|
|
||||||
public static HashMap<Player, String> closeReasonMap = new HashMap<>();
|
|
||||||
//define randomStringSet
|
|
||||||
String randomSet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890abcdefghijklmnopqrstuvwxyz!@#%&*()_+";
|
|
||||||
String randomString = "";
|
|
||||||
Random randomItemSet = new Random();
|
|
||||||
Random howManyRandom = new Random();
|
|
||||||
private boolean isPacketListenersActive = false;
|
|
||||||
|
|
||||||
int howLongIsRandomString;
|
|
||||||
|
|
||||||
public GuiCaptchaHandler() {
|
|
||||||
}
|
|
||||||
|
|
||||||
protected List<String> whiteList = AuthMe.settings.getProperty(SecuritySettings.GUI_CAPTCHA_COUNTRY_WHITELIST);
|
|
||||||
|
|
||||||
private boolean isBedrockPlayer(UUID uuid) {
|
|
||||||
return settings.getProperty(HooksSettings.HOOK_FLOODGATE_PLAYER) && settings.getProperty(SecuritySettings.GUI_CAPTCHA_BE_COMPATIBILITY) && org.geysermc.floodgate.api.FloodgateApi.getInstance().isFloodgateId(uuid) && getServer().getPluginManager().getPlugin("floodgate") != null;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
private void addPacketListeners() {
|
|
||||||
if (!isPacketListenersActive) {
|
|
||||||
ProtocolLibrary.getProtocolManager().addPacketListener(windowPacketListener);
|
|
||||||
ProtocolLibrary.getProtocolManager().addPacketListener(chatPacketListener);
|
|
||||||
isPacketListenersActive = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@EventHandler
|
|
||||||
public void onInventoryClick(InventoryClickEvent event) {
|
|
||||||
if (event.getWhoClicked() instanceof Player) {
|
|
||||||
Player player = (Player) event.getWhoClicked();
|
|
||||||
ItemStack currentItem = event.getCurrentItem();
|
|
||||||
if (!authmeApi.isRegistered(player.getName()) && !closeReasonMap.containsKey(player)) {
|
|
||||||
if (isBedrockPlayer(player.getUniqueId())) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (currentItem != null && currentItem.getType().equals(Material.REDSTONE_BLOCK)) {
|
|
||||||
event.setCancelled(true);
|
|
||||||
closeReasonMap.put(player, "verified");
|
|
||||||
player.closeInventory();
|
|
||||||
messages.send(player, MessageKey.GUI_CAPTCHA_VERIFIED);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@EventHandler(ignoreCancelled = true, priority = EventPriority.HIGHEST)
|
|
||||||
public void onPlayerJoin(PlayerJoinEvent event) {
|
|
||||||
randomString = "";
|
|
||||||
Player playerunreg = event.getPlayer();
|
|
||||||
String name = playerunreg.getName();
|
|
||||||
if (!authmeApi.isRegistered(name) && !isNpc(playerunreg)) {
|
|
||||||
if (!whiteList.isEmpty()) {
|
|
||||||
String ip = getPlayerIp(playerunreg);
|
|
||||||
if (whiteList.contains(authmeApi.getCountryCode(ip)) && ip != null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (isBedrockPlayer(playerunreg.getUniqueId())) {
|
|
||||||
closeReasonMap.put(playerunreg, "verified");
|
|
||||||
messages.send(playerunreg, MessageKey.GUI_CAPTCHA_VERIFIED_AUTO_BEDROCK);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
bukkitService.runTaskAsynchronously(() -> {
|
|
||||||
StringBuilder sb = new StringBuilder();
|
|
||||||
howLongIsRandomString = (howManyRandom.nextInt(3) + 1);
|
|
||||||
for (int i = 0; i < howLongIsRandomString; i++) {
|
|
||||||
//生成随机索引号
|
|
||||||
int index = randomItemSet.nextInt(randomSet.length());
|
|
||||||
|
|
||||||
// 从字符串中获取由索引 index 指定的字符
|
|
||||||
char randomChar = randomSet.charAt(index);
|
|
||||||
|
|
||||||
// 将字符追加到字符串生成器
|
|
||||||
sb.append(randomChar);
|
|
||||||
}
|
|
||||||
bukkitService.runTask(() -> {
|
|
||||||
randomString = sb.toString();
|
|
||||||
Random random_blockpos = new Random();
|
|
||||||
AtomicInteger random_num = new AtomicInteger(random_blockpos.nextInt(26));
|
|
||||||
Inventory menu = Bukkit.createInventory(playerunreg, 27, messages.retrieveSingle(playerunreg, MessageKey.GUI_CAPTCHA_WINDOW_NAME, randomString));
|
|
||||||
ItemStack item = new ItemStack(Material.REDSTONE_BLOCK);
|
|
||||||
ItemMeta meta = item.getItemMeta();
|
|
||||||
try {
|
|
||||||
if (meta != null) {
|
|
||||||
meta.setDisplayName(messages.retrieveSingle(playerunreg, MessageKey.GUI_CAPTCHA_CLICKABLE_NAME, randomString));
|
|
||||||
item.setItemMeta(meta);
|
|
||||||
}
|
|
||||||
} catch (NullPointerException e) {
|
|
||||||
getLogger().log(Level.WARNING, "Unexpected error occurred while setting item meta.");
|
|
||||||
}
|
|
||||||
windowPacketListener = new PacketAdapter(this.plugin, ListenerPriority.HIGHEST, PacketType.Play.Client.CLOSE_WINDOW) {
|
|
||||||
@Override
|
|
||||||
public void onPacketReceiving(PacketEvent event) {
|
|
||||||
if (!closeReasonMap.containsKey(playerunreg) && !authmeApi.isRegistered(playerunreg.getName())) {
|
|
||||||
if (timesLeft <= 0) {
|
|
||||||
bukkitService.runTask(() -> {
|
|
||||||
playerunreg.kickPlayer(service.retrieveSingleMessage(playerunreg, MessageKey.GUI_CAPTCHA_KICK_FAILED));
|
|
||||||
});
|
|
||||||
timesLeft = 3;
|
|
||||||
} else {
|
|
||||||
--timesLeft;
|
|
||||||
if (timesLeft <= 0) {
|
|
||||||
bukkitService.runTask(() -> {
|
|
||||||
playerunreg.kickPlayer(service.retrieveSingleMessage(playerunreg, MessageKey.GUI_CAPTCHA_KICK_FAILED));
|
|
||||||
});
|
|
||||||
timesLeft = 3;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
messages.send(playerunreg, MessageKey.GUI_CAPTCHA_RETRY_MESSAGE, String.valueOf(timesLeft));
|
|
||||||
event.setCancelled(true);
|
|
||||||
random_num.set(random_blockpos.nextInt(26));
|
|
||||||
bukkitService.runTask(() -> {
|
|
||||||
menu.clear();
|
|
||||||
menu.setItem(random_num.get(), item);
|
|
||||||
playerunreg.openInventory(menu);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
chatPacketListener = new PacketAdapter(this.plugin, ListenerPriority.HIGHEST, PacketType.Play.Client.CHAT) {
|
|
||||||
@Override
|
|
||||||
public void onPacketReceiving(PacketEvent event) {
|
|
||||||
if (!closeReasonMap.containsKey(playerunreg) && !authmeApi.isRegistered(playerunreg.getName())) {
|
|
||||||
messages.send(playerunreg, MessageKey.GUI_CAPTCHA_DENIED_MESSAGE);
|
|
||||||
event.setCancelled(true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
addPacketListeners();
|
|
||||||
//Open captcha inventory
|
|
||||||
menu.setItem(random_num.get(), item);
|
|
||||||
playerunreg.openInventory(menu);
|
|
||||||
if (settings.getProperty(SecuritySettings.GUI_CAPTCHA_TIMEOUT) > 0) {
|
|
||||||
long timeOut = settings.getProperty(SecuritySettings.GUI_CAPTCHA_TIMEOUT);
|
|
||||||
if (settings.getProperty(SecuritySettings.GUI_CAPTCHA_TIMEOUT) > settings.getProperty(RestrictionSettings.TIMEOUT)) {
|
|
||||||
bukkitService.runTask(() -> {
|
|
||||||
getLogger().warning("AuthMe detected that your GUI captcha timeout seconds(" + settings.getProperty(SecuritySettings.GUI_CAPTCHA_TIMEOUT) + ") is bigger than the Login timeout seconds(" +
|
|
||||||
settings.getProperty(RestrictionSettings.TIMEOUT) + "). To prevent issues, we will let the GUI captcha follow the Login timeout seconds, please check and modify your config.");
|
|
||||||
});
|
|
||||||
timeOut = settings.getProperty(RestrictionSettings.TIMEOUT);
|
|
||||||
}
|
|
||||||
long finalTimeOut = timeOut;
|
|
||||||
bukkitService.runTask(() -> {
|
|
||||||
bukkitService.runTaskLater(() -> {
|
|
||||||
if (!closeReasonMap.containsKey(playerunreg) && !authmeApi.isRegistered(playerunreg.getName())) {
|
|
||||||
playerunreg.kickPlayer(service.retrieveSingleMessage(playerunreg, MessageKey.GUI_CAPTCHA_KICK_TIMEOUT));
|
|
||||||
timesLeft = 3; // Reset the attempt counter
|
|
||||||
}
|
|
||||||
}, finalTimeOut * 20L);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
private void deletePlayerData(UUID playerUUID) {
|
|
||||||
// 获取服务器的存储文件夹路径
|
|
||||||
File serverFolder = Bukkit.getServer().getWorldContainer();
|
|
||||||
String worldFolderName = settings.getProperty(SecuritySettings.DELETE_PLAYER_DATA_WORLD);
|
|
||||||
// 构建playerdata文件夹路径
|
|
||||||
File playerDataFolder = new File(serverFolder, File.separator + worldFolderName + File.separator + "playerdata");
|
|
||||||
|
|
||||||
// 构建玩家数据文件路径
|
|
||||||
File playerDataFile = new File(playerDataFolder, File.separator + playerUUID + ".dat");
|
|
||||||
|
|
||||||
// 删除玩家数据文件
|
|
||||||
if (playerDataFile.exists()) {
|
|
||||||
playerDataFile.delete();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
private void deletePlayerStats(UUID playerUUID) {
|
|
||||||
// 获取服务器的存储文件夹路径
|
|
||||||
File serverFolder = Bukkit.getServer().getWorldContainer();
|
|
||||||
String worldFolderName = settings.getProperty(SecuritySettings.DELETE_PLAYER_DATA_WORLD);
|
|
||||||
// 构建stats文件夹路径
|
|
||||||
File statsFolder = new File(serverFolder, File.separator + worldFolderName + File.separator + "stats");
|
|
||||||
// 构建玩家统计数据文件路径
|
|
||||||
File statsFile = new File(statsFolder, File.separator + playerUUID + ".json");
|
|
||||||
// 删除玩家统计数据文件
|
|
||||||
if (statsFile.exists()) {
|
|
||||||
statsFile.delete();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void deleteAuthMePlayerData(UUID playerUUID) {
|
|
||||||
File pluginFolder = plugin.getDataFolder();
|
|
||||||
File path = new File(pluginFolder, File.separator + "playerdata" + File.separator + playerUUID);
|
|
||||||
File dataFile = new File(path, File.separator + "data.json");
|
|
||||||
if (dataFile.exists()) {
|
|
||||||
dataFile.delete();
|
|
||||||
path.delete();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@EventHandler
|
|
||||||
public void onPlayerQuit(PlayerQuitEvent event) {
|
|
||||||
Player player = event.getPlayer();
|
|
||||||
String name = player.getName();
|
|
||||||
UUID playerUUID = event.getPlayer().getUniqueId();
|
|
||||||
if (!authmeApi.isRegistered(name)) {
|
|
||||||
if (settings.getProperty(SecuritySettings.DELETE_UNVERIFIED_PLAYER_DATA) && !closeReasonMap.containsKey(player)) {
|
|
||||||
bukkitService.runTaskLater(() -> {
|
|
||||||
if (!player.isOnline()) {
|
|
||||||
deletePlayerData(playerUUID);
|
|
||||||
deletePlayerStats(playerUUID);
|
|
||||||
deleteAuthMePlayerData(playerUUID);
|
|
||||||
}
|
|
||||||
}, 100L);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
closeReasonMap.remove(player);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,14 +1,11 @@
|
|||||||
package fr.xephi.authme.listener;
|
package fr.xephi.authme.listener;
|
||||||
|
|
||||||
import fr.xephi.authme.AuthMe;
|
|
||||||
import fr.xephi.authme.api.v3.AuthMeApi;
|
|
||||||
import fr.xephi.authme.data.auth.PlayerCache;
|
import fr.xephi.authme.data.auth.PlayerCache;
|
||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
import fr.xephi.authme.initialization.SettingsDependent;
|
import fr.xephi.authme.initialization.SettingsDependent;
|
||||||
import fr.xephi.authme.service.ValidationService;
|
import fr.xephi.authme.service.ValidationService;
|
||||||
import fr.xephi.authme.settings.Settings;
|
import fr.xephi.authme.settings.Settings;
|
||||||
import fr.xephi.authme.settings.properties.RegistrationSettings;
|
import fr.xephi.authme.settings.properties.RegistrationSettings;
|
||||||
import fr.xephi.authme.settings.properties.SecuritySettings;
|
|
||||||
import fr.xephi.authme.util.PlayerUtils;
|
import fr.xephi.authme.util.PlayerUtils;
|
||||||
import org.bukkit.entity.Entity;
|
import org.bukkit.entity.Entity;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
@@ -21,12 +18,12 @@ import javax.inject.Inject;
|
|||||||
* Service class for the AuthMe listeners to determine whether an event should be canceled.
|
* Service class for the AuthMe listeners to determine whether an event should be canceled.
|
||||||
*/
|
*/
|
||||||
class ListenerService implements SettingsDependent {
|
class ListenerService implements SettingsDependent {
|
||||||
private final AuthMeApi authmeApi = AuthMeApi.getInstance();
|
|
||||||
private final DataSource dataSource;
|
private final DataSource dataSource;
|
||||||
private final PlayerCache playerCache;
|
private final PlayerCache playerCache;
|
||||||
private final ValidationService validationService;
|
private final ValidationService validationService;
|
||||||
private boolean isRegistrationForced;
|
|
||||||
|
|
||||||
|
private boolean isRegistrationForced;
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
ListenerService(Settings settings, DataSource dataSource, PlayerCache playerCache,
|
ListenerService(Settings settings, DataSource dataSource, PlayerCache playerCache,
|
||||||
@@ -79,18 +76,9 @@ class ListenerService implements SettingsDependent {
|
|||||||
* @param player the player to verify
|
* @param player the player to verify
|
||||||
* @return true if the associated event should be canceled, false otherwise
|
* @return true if the associated event should be canceled, false otherwise
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public boolean shouldCancelEvent(Player player) {
|
public boolean shouldCancelEvent(Player player) {
|
||||||
|
|
||||||
return player != null && !checkAuth(player.getName()) && !PlayerUtils.isNpc(player);
|
return player != null && !checkAuth(player.getName()) && !PlayerUtils.isNpc(player);
|
||||||
}
|
}
|
||||||
public boolean shouldCancelInvEvent(Player player) {
|
|
||||||
try {
|
|
||||||
return !AuthMe.settings.getProperty(SecuritySettings.GUI_CAPTCHA) || authmeApi.isRegistered(player.getName()) || GuiCaptchaHandler.closeReasonMap.containsKey(player)/* || !player.getOpenInventory().getTitle().equals("请验证你是真人")*/;
|
|
||||||
} catch (Exception e) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void reload(Settings settings) {
|
public void reload(Settings settings) {
|
||||||
@@ -105,7 +93,7 @@ class ListenerService implements SettingsDependent {
|
|||||||
* @return true if the player may play, false otherwise
|
* @return true if the player may play, false otherwise
|
||||||
*/
|
*/
|
||||||
private boolean checkAuth(String name) {
|
private boolean checkAuth(String name) {
|
||||||
if (validationService.isUnrestricted(name) || playerCache.isAuthenticated(name)){
|
if (validationService.isUnrestricted(name) || playerCache.isAuthenticated(name)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (!isRegistrationForced && !dataSource.isAuthAvailable(name)) {
|
if (!isRegistrationForced && !dataSource.isAuthAvailable(name)) {
|
||||||
|
|||||||
@@ -1,109 +0,0 @@
|
|||||||
package fr.xephi.authme.listener;
|
|
||||||
|
|
||||||
import fr.xephi.authme.AuthMe;
|
|
||||||
import fr.xephi.authme.api.v3.AuthMeApi;
|
|
||||||
import fr.xephi.authme.message.MessageKey;
|
|
||||||
import fr.xephi.authme.message.Messages;
|
|
||||||
import fr.xephi.authme.settings.properties.SecuritySettings;
|
|
||||||
import fr.xephi.authme.util.TeleportUtils;
|
|
||||||
import org.bukkit.Location;
|
|
||||||
import org.bukkit.Material;
|
|
||||||
import org.bukkit.World;
|
|
||||||
import org.bukkit.block.Block;
|
|
||||||
import org.bukkit.block.BlockFace;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
import org.bukkit.event.EventHandler;
|
|
||||||
import org.bukkit.event.Listener;
|
|
||||||
import org.bukkit.event.player.PlayerJoinEvent;
|
|
||||||
|
|
||||||
import javax.inject.Inject;
|
|
||||||
|
|
||||||
|
|
||||||
public class LoginLocationFixListener implements Listener {
|
|
||||||
@Inject
|
|
||||||
private AuthMe plugin;
|
|
||||||
@Inject
|
|
||||||
private Messages messages;
|
|
||||||
private final AuthMeApi authmeApi = AuthMeApi.getInstance();
|
|
||||||
|
|
||||||
public LoginLocationFixListener() {
|
|
||||||
}
|
|
||||||
|
|
||||||
private static Material materialPortal = Material.matchMaterial("PORTAL");
|
|
||||||
private final boolean isSmartAsyncTeleport = AuthMe.settings.getProperty(SecuritySettings.SMART_ASYNC_TELEPORT);
|
|
||||||
private final boolean isFixPortalStuck = AuthMe.settings.getProperty(SecuritySettings.LOGIN_LOC_FIX_SUB_PORTAL);
|
|
||||||
private final boolean isFixGroundStuck = AuthMe.settings.getProperty(SecuritySettings.LOGIN_LOC_FIX_SUB_UNDERGROUND);
|
|
||||||
BlockFace[] faces = {BlockFace.WEST, BlockFace.EAST, BlockFace.NORTH, BlockFace.SOUTH, BlockFace.SOUTH_EAST, BlockFace.SOUTH_WEST, BlockFace.NORTH_EAST, BlockFace.NORTH_WEST};
|
|
||||||
|
|
||||||
static {
|
|
||||||
if (materialPortal == null) {
|
|
||||||
materialPortal = Material.matchMaterial("PORTAL_BLOCK");
|
|
||||||
if (materialPortal == null) {
|
|
||||||
materialPortal = Material.matchMaterial("NETHER_PORTAL");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@EventHandler
|
|
||||||
public void onPlayerJoin(PlayerJoinEvent event) {
|
|
||||||
Player player = event.getPlayer();
|
|
||||||
Location JoinLocation = player.getLocation().getBlock().getLocation().add(0.5, 0.1, 0.5);
|
|
||||||
if (isFixPortalStuck) {
|
|
||||||
if (!JoinLocation.getBlock().getType().equals(materialPortal) && !JoinLocation.getBlock().getRelative(BlockFace.UP).getType().equals(materialPortal)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
Block JoinBlock = JoinLocation.getBlock();
|
|
||||||
boolean solved = false;
|
|
||||||
for (BlockFace face : faces) {
|
|
||||||
if (JoinBlock.getRelative(face).getType().equals(Material.AIR) && JoinBlock.getRelative(face).getRelative(BlockFace.UP).getType().equals(Material.AIR)) {
|
|
||||||
if (isSmartAsyncTeleport) {
|
|
||||||
TeleportUtils.teleport(player, JoinBlock.getRelative(face).getLocation().add(0.5, 0.1, 0.5));
|
|
||||||
} else {
|
|
||||||
player.teleport(JoinBlock.getRelative(face).getLocation().add(0.5, 0.1, 0.5));
|
|
||||||
}
|
|
||||||
solved = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!solved) {
|
|
||||||
JoinBlock.getRelative(BlockFace.UP).breakNaturally();
|
|
||||||
JoinBlock.breakNaturally();
|
|
||||||
}
|
|
||||||
messages.send(player, MessageKey.LOCATION_FIX_PORTAL);
|
|
||||||
} else if (isFixGroundStuck) {
|
|
||||||
Material UpType = JoinLocation.getBlock().getRelative(BlockFace.UP).getType();
|
|
||||||
World world = player.getWorld();
|
|
||||||
int MaxHeight = world.getMaxHeight();
|
|
||||||
int MinHeight = world.getMinHeight();
|
|
||||||
if (!UpType.isOccluding() && !UpType.equals(Material.LAVA)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
for (int i = MinHeight; i <= MaxHeight; i++) {
|
|
||||||
JoinLocation.setY(i);
|
|
||||||
Block JoinBlock = JoinLocation.getBlock();
|
|
||||||
if ((JoinBlock.getRelative(BlockFace.DOWN).getType().isBlock())
|
|
||||||
&& JoinBlock.getType().equals(Material.AIR)
|
|
||||||
&& JoinBlock.getRelative(BlockFace.UP).getType().equals(Material.AIR)) {
|
|
||||||
if (JoinBlock.getRelative(BlockFace.DOWN).getType().equals(Material.LAVA)) {
|
|
||||||
JoinBlock.getRelative(BlockFace.DOWN).setType(Material.DIRT);
|
|
||||||
}
|
|
||||||
if (isSmartAsyncTeleport) {
|
|
||||||
TeleportUtils.teleport(player, JoinBlock.getLocation().add(0.5, 0.1, 0.5));
|
|
||||||
} else {
|
|
||||||
player.teleport(JoinBlock.getLocation().add(0.5, 0.1, 0.5));
|
|
||||||
}
|
|
||||||
messages.send(player, MessageKey.LOCATION_FIX_UNDERGROUND);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (i == MaxHeight) {
|
|
||||||
if (isSmartAsyncTeleport) {
|
|
||||||
TeleportUtils.teleport(player, JoinBlock.getLocation().add(0.5, 1.1, 0.5));
|
|
||||||
} else {
|
|
||||||
player.teleport(JoinBlock.getLocation().add(0.5, 1.1, 0.5));
|
|
||||||
}
|
|
||||||
messages.send(player, MessageKey.LOCATION_FIX_UNDERGROUND_CANT_FIX);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -4,9 +4,9 @@ import fr.xephi.authme.ConsoleLogger;
|
|||||||
import fr.xephi.authme.data.auth.PlayerAuth;
|
import fr.xephi.authme.data.auth.PlayerAuth;
|
||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
import fr.xephi.authme.initialization.Reloadable;
|
import fr.xephi.authme.initialization.Reloadable;
|
||||||
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.message.Messages;
|
import fr.xephi.authme.message.Messages;
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
|
||||||
import fr.xephi.authme.permission.PermissionsManager;
|
import fr.xephi.authme.permission.PermissionsManager;
|
||||||
import fr.xephi.authme.permission.PlayerStatePermission;
|
import fr.xephi.authme.permission.PlayerStatePermission;
|
||||||
import fr.xephi.authme.service.AntiBotService;
|
import fr.xephi.authme.service.AntiBotService;
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
package fr.xephi.authme.listener;
|
package fr.xephi.authme.listener;
|
||||||
|
|
||||||
import fr.xephi.authme.AuthMe;
|
|
||||||
import fr.xephi.authme.api.v3.AuthMeApi;
|
|
||||||
import fr.xephi.authme.data.QuickCommandsProtectionManager;
|
import fr.xephi.authme.data.QuickCommandsProtectionManager;
|
||||||
import fr.xephi.authme.data.auth.PlayerAuth;
|
import fr.xephi.authme.data.auth.PlayerAuth;
|
||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
@@ -20,9 +18,6 @@ import fr.xephi.authme.settings.SpawnLoader;
|
|||||||
import fr.xephi.authme.settings.properties.HooksSettings;
|
import fr.xephi.authme.settings.properties.HooksSettings;
|
||||||
import fr.xephi.authme.settings.properties.RegistrationSettings;
|
import fr.xephi.authme.settings.properties.RegistrationSettings;
|
||||||
import fr.xephi.authme.settings.properties.RestrictionSettings;
|
import fr.xephi.authme.settings.properties.RestrictionSettings;
|
||||||
import fr.xephi.authme.settings.properties.SecuritySettings;
|
|
||||||
import fr.xephi.authme.util.TeleportUtils;
|
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.ChatColor;
|
import org.bukkit.ChatColor;
|
||||||
import org.bukkit.Location;
|
import org.bukkit.Location;
|
||||||
import org.bukkit.entity.HumanEntity;
|
import org.bukkit.entity.HumanEntity;
|
||||||
@@ -32,7 +27,6 @@ import org.bukkit.event.EventPriority;
|
|||||||
import org.bukkit.event.Listener;
|
import org.bukkit.event.Listener;
|
||||||
import org.bukkit.event.block.SignChangeEvent;
|
import org.bukkit.event.block.SignChangeEvent;
|
||||||
import org.bukkit.event.entity.EntityDamageByEntityEvent;
|
import org.bukkit.event.entity.EntityDamageByEntityEvent;
|
||||||
//import org.bukkit.event.entity.EntityPickupItemEvent;
|
|
||||||
import org.bukkit.event.inventory.InventoryClickEvent;
|
import org.bukkit.event.inventory.InventoryClickEvent;
|
||||||
import org.bukkit.event.inventory.InventoryOpenEvent;
|
import org.bukkit.event.inventory.InventoryOpenEvent;
|
||||||
import org.bukkit.event.player.AsyncPlayerChatEvent;
|
import org.bukkit.event.player.AsyncPlayerChatEvent;
|
||||||
@@ -51,14 +45,12 @@ import org.bukkit.event.player.PlayerJoinEvent;
|
|||||||
import org.bukkit.event.player.PlayerKickEvent;
|
import org.bukkit.event.player.PlayerKickEvent;
|
||||||
import org.bukkit.event.player.PlayerLoginEvent;
|
import org.bukkit.event.player.PlayerLoginEvent;
|
||||||
import org.bukkit.event.player.PlayerMoveEvent;
|
import org.bukkit.event.player.PlayerMoveEvent;
|
||||||
|
import org.bukkit.event.player.PlayerPickupItemEvent;
|
||||||
import org.bukkit.event.player.PlayerQuitEvent;
|
import org.bukkit.event.player.PlayerQuitEvent;
|
||||||
import org.bukkit.event.player.PlayerRespawnEvent;
|
import org.bukkit.event.player.PlayerRespawnEvent;
|
||||||
import org.bukkit.event.player.PlayerShearEntityEvent;
|
import org.bukkit.event.player.PlayerShearEntityEvent;
|
||||||
//import org.bukkit.event.player.PlayerSwapHandItemsEvent;
|
|
||||||
import org.bukkit.inventory.InventoryView;
|
import org.bukkit.inventory.InventoryView;
|
||||||
|
|
||||||
import static org.bukkit.Bukkit.getServer;
|
|
||||||
|
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
import java.util.Locale;
|
import java.util.Locale;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
@@ -69,11 +61,7 @@ import static fr.xephi.authme.settings.properties.RestrictionSettings.ALLOW_UNAU
|
|||||||
/**
|
/**
|
||||||
* Listener class for player events.
|
* Listener class for player events.
|
||||||
*/
|
*/
|
||||||
public class PlayerListener implements Listener{
|
public class PlayerListener implements Listener {
|
||||||
private final AuthMeApi authmeApi = AuthMeApi.getInstance();
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
private Settings settings;
|
private Settings settings;
|
||||||
@@ -104,11 +92,9 @@ public class PlayerListener implements Listener{
|
|||||||
@Inject
|
@Inject
|
||||||
private QuickCommandsProtectionManager quickCommandsProtectionManager;
|
private QuickCommandsProtectionManager quickCommandsProtectionManager;
|
||||||
|
|
||||||
|
|
||||||
// Lowest priority to apply fast protection checks
|
// Lowest priority to apply fast protection checks
|
||||||
@EventHandler(priority = EventPriority.LOWEST)
|
@EventHandler(priority = EventPriority.LOWEST)
|
||||||
public void onAsyncPlayerPreLoginEventLowest(AsyncPlayerPreLoginEvent event) {
|
public void onAsyncPlayerPreLoginEventLowest(AsyncPlayerPreLoginEvent event) {
|
||||||
|
|
||||||
if (event.getLoginResult() != AsyncPlayerPreLoginEvent.Result.ALLOWED) {
|
if (event.getLoginResult() != AsyncPlayerPreLoginEvent.Result.ALLOWED) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -124,18 +110,13 @@ public class PlayerListener implements Listener{
|
|||||||
if (validationService.isUnrestricted(name)) {
|
if (validationService.isUnrestricted(name)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (settings.getProperty(HooksSettings.HOOK_FLOODGATE_PLAYER)) {
|
|
||||||
if (getServer().getPluginManager().getPlugin("floodgate") != null) {
|
|
||||||
if (org.geysermc.floodgate.api.FloodgateApi.getInstance().isFloodgateId(event.getUniqueId())) return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Non-blocking checks
|
// Non-blocking checks
|
||||||
try {
|
try {
|
||||||
onJoinVerifier.checkIsValidName(name);
|
onJoinVerifier.checkIsValidName(name);
|
||||||
} catch (FailedVerificationException e) {
|
} catch (FailedVerificationException e) {
|
||||||
event.setKickMessage(messages.retrieveSingle(name, e.getReason(), e.getArgs()));
|
event.setKickMessage(messages.retrieveSingle(name, e.getReason(), e.getArgs()));
|
||||||
event.setLoginResult(AsyncPlayerPreLoginEvent.Result.KICK_OTHER);
|
event.setLoginResult(AsyncPlayerPreLoginEvent.Result.KICK_OTHER);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -198,7 +179,7 @@ public class PlayerListener implements Listener{
|
|||||||
@EventHandler(priority = EventPriority.NORMAL)
|
@EventHandler(priority = EventPriority.NORMAL)
|
||||||
public void onPlayerJoin(PlayerJoinEvent event) {
|
public void onPlayerJoin(PlayerJoinEvent event) {
|
||||||
final Player player = event.getPlayer();
|
final Player player = event.getPlayer();
|
||||||
final AuthMeApi authmeApi = AuthMeApi.getInstance();
|
|
||||||
if (!PlayerListener19Spigot.isPlayerSpawnLocationEventCalled()) {
|
if (!PlayerListener19Spigot.isPlayerSpawnLocationEventCalled()) {
|
||||||
teleportationService.teleportOnJoin(player);
|
teleportationService.teleportOnJoin(player);
|
||||||
}
|
}
|
||||||
@@ -208,15 +189,12 @@ public class PlayerListener implements Listener{
|
|||||||
management.performJoin(player);
|
management.performJoin(player);
|
||||||
|
|
||||||
teleportationService.teleportNewPlayerToFirstSpawn(player);
|
teleportationService.teleportNewPlayerToFirstSpawn(player);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@EventHandler(priority = EventPriority.HIGH) // HIGH as EssentialsX listens at HIGHEST
|
@EventHandler(priority = EventPriority.HIGH) // HIGH as EssentialsX listens at HIGHEST
|
||||||
public void onJoinMessage(PlayerJoinEvent event) {
|
public void onJoinMessage(PlayerJoinEvent event) {
|
||||||
final Player player = event.getPlayer();
|
final Player player = event.getPlayer();
|
||||||
|
|
||||||
|
|
||||||
// Note: join message can be null, despite api documentation says not
|
// Note: join message can be null, despite api documentation says not
|
||||||
if (settings.getProperty(RegistrationSettings.REMOVE_JOIN_MESSAGE)) {
|
if (settings.getProperty(RegistrationSettings.REMOVE_JOIN_MESSAGE)) {
|
||||||
event.setJoinMessage(null);
|
event.setJoinMessage(null);
|
||||||
@@ -351,12 +329,12 @@ public class PlayerListener implements Listener{
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Limit player X and Z movements
|
* Limit player X and Z movements to 1 block
|
||||||
* Deny player Y+ movements (allows falling)
|
* Deny player Y+ movements (allows falling)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (from.getX() == to.getX()
|
if (from.getBlockX() == to.getBlockX()
|
||||||
&& from.getZ() == to.getZ()
|
&& from.getBlockZ() == to.getBlockZ()
|
||||||
&& from.getY() - to.getY() >= 0) {
|
&& from.getY() - to.getY() >= 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -379,17 +357,9 @@ public class PlayerListener implements Listener{
|
|||||||
Location spawn = spawnLoader.getSpawnLocation(player);
|
Location spawn = spawnLoader.getSpawnLocation(player);
|
||||||
if (spawn != null && spawn.getWorld() != null) {
|
if (spawn != null && spawn.getWorld() != null) {
|
||||||
if (!player.getWorld().equals(spawn.getWorld())) {
|
if (!player.getWorld().equals(spawn.getWorld())) {
|
||||||
if(settings.getProperty(SecuritySettings.SMART_ASYNC_TELEPORT)) {
|
player.teleport(spawn);
|
||||||
TeleportUtils.teleport(player,spawn);
|
|
||||||
} else {
|
|
||||||
player.teleport(spawn);
|
|
||||||
}
|
|
||||||
} else if (spawn.distance(player.getLocation()) > settings.getProperty(ALLOWED_MOVEMENT_RADIUS)) {
|
} else if (spawn.distance(player.getLocation()) > settings.getProperty(ALLOWED_MOVEMENT_RADIUS)) {
|
||||||
if(settings.getProperty(SecuritySettings.SMART_ASYNC_TELEPORT)) {
|
player.teleport(spawn);
|
||||||
TeleportUtils.teleport(player,spawn);
|
|
||||||
} else {
|
|
||||||
player.teleport(spawn);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -480,12 +450,12 @@ public class PlayerListener implements Listener{
|
|||||||
* Inventory interactions
|
* Inventory interactions
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// @EventHandler(ignoreCancelled = true, priority = EventPriority.LOWEST)
|
@EventHandler(ignoreCancelled = true, priority = EventPriority.LOWEST)
|
||||||
// public void onPlayerPickupItem(EntityPickupItemEvent event) {
|
public void onPlayerPickupItem(PlayerPickupItemEvent event) {
|
||||||
// if (listenerService.shouldCancelEvent(event)) {
|
if (listenerService.shouldCancelEvent(event)) {
|
||||||
// event.setCancelled(true);
|
event.setCancelled(true);
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
|
|
||||||
@EventHandler(ignoreCancelled = true, priority = EventPriority.LOWEST)
|
@EventHandler(ignoreCancelled = true, priority = EventPriority.LOWEST)
|
||||||
public void onPlayerDropItem(PlayerDropItemEvent event) {
|
public void onPlayerDropItem(PlayerDropItemEvent event) {
|
||||||
@@ -513,16 +483,15 @@ public class PlayerListener implements Listener{
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
Set<String> whitelist = settings.getProperty(RestrictionSettings.UNRESTRICTED_INVENTORIES);
|
Set<String> whitelist = settings.getProperty(RestrictionSettings.UNRESTRICTED_INVENTORIES);
|
||||||
//append a string for String whitelist
|
|
||||||
return whitelist.contains(ChatColor.stripColor(inventory.getTitle()).toLowerCase(Locale.ROOT));
|
return whitelist.contains(ChatColor.stripColor(inventory.getTitle()).toLowerCase(Locale.ROOT));
|
||||||
}
|
}
|
||||||
|
|
||||||
@EventHandler(ignoreCancelled = true, priority = EventPriority.LOWEST)
|
@EventHandler(ignoreCancelled = true, priority = EventPriority.LOWEST)
|
||||||
public void onPlayerInventoryOpen(InventoryOpenEvent event) {
|
public void onPlayerInventoryOpen(InventoryOpenEvent event) {
|
||||||
final HumanEntity player = event.getPlayer();
|
final HumanEntity player = event.getPlayer();
|
||||||
Player ply = (Player) event.getPlayer();
|
|
||||||
if (listenerService.shouldCancelEvent(player)
|
if (listenerService.shouldCancelEvent(player)
|
||||||
&& !isInventoryWhitelisted(event.getView()) && listenerService.shouldCancelInvEvent(ply)) {
|
&& !isInventoryWhitelisted(event.getView())) {
|
||||||
event.setCancelled(true);
|
event.setCancelled(true);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -540,12 +509,4 @@ public class PlayerListener implements Listener{
|
|||||||
event.setCancelled(true);
|
event.setCancelled(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// @EventHandler(priority = EventPriority.LOWEST)
|
|
||||||
// public void onSwitchHand(PlayerSwapHandItemsEvent event) {
|
|
||||||
// Player player = event.getPlayer();
|
|
||||||
// if (!player.isSneaking() || !player.hasPermission("keybindings.use"))
|
|
||||||
// return;
|
|
||||||
// event.setCancelled(true);
|
|
||||||
// Bukkit.dispatchCommand(event.getPlayer(), "help");
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,41 +0,0 @@
|
|||||||
package fr.xephi.authme.listener;
|
|
||||||
|
|
||||||
import fr.xephi.authme.settings.Settings;
|
|
||||||
import fr.xephi.authme.settings.properties.PluginSettings;
|
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
import org.bukkit.event.EventHandler;
|
|
||||||
import org.bukkit.event.EventPriority;
|
|
||||||
import org.bukkit.event.Listener;
|
|
||||||
import org.bukkit.event.entity.EntityPickupItemEvent;
|
|
||||||
import org.bukkit.event.player.PlayerSwapHandItemsEvent;
|
|
||||||
|
|
||||||
import javax.inject.Inject;
|
|
||||||
|
|
||||||
public class PlayerListenerHigherThan18 implements Listener {
|
|
||||||
@Inject
|
|
||||||
private ListenerService listenerService;
|
|
||||||
|
|
||||||
@Inject
|
|
||||||
private Settings settings;
|
|
||||||
|
|
||||||
@EventHandler(ignoreCancelled = true, priority = EventPriority.LOWEST)
|
|
||||||
public void onPlayerPickupItem(EntityPickupItemEvent event) {
|
|
||||||
if (listenerService.shouldCancelEvent(event)) {
|
|
||||||
event.setCancelled(true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@EventHandler(priority = EventPriority.LOWEST)
|
|
||||||
public void onSwitchHand(PlayerSwapHandItemsEvent event) {
|
|
||||||
Player player = event.getPlayer();
|
|
||||||
if ((!player.isSneaking() || !player.hasPermission("keybindings.use")) &&
|
|
||||||
settings.getProperty(PluginSettings.MENU_UNREGISTER_COMPATIBILITY)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
event.setCancelled(true);
|
|
||||||
if (settings.getProperty(PluginSettings.MENU_UNREGISTER_COMPATIBILITY)) {
|
|
||||||
Bukkit.dispatchCommand(event.getPlayer(), "help");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
package fr.xephi.authme.listener;
|
package fr.xephi.authme.listener;
|
||||||
|
|
||||||
import fr.xephi.authme.ConsoleLogger;
|
import fr.xephi.authme.ConsoleLogger;
|
||||||
import fr.xephi.authme.listener.protocollib.ProtocolLibService;
|
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
|
import fr.xephi.authme.listener.protocollib.ProtocolLibService;
|
||||||
import fr.xephi.authme.permission.PermissionsManager;
|
import fr.xephi.authme.permission.PermissionsManager;
|
||||||
import fr.xephi.authme.service.PluginHookService;
|
import fr.xephi.authme.service.PluginHookService;
|
||||||
import fr.xephi.authme.settings.SpawnLoader;
|
import fr.xephi.authme.settings.SpawnLoader;
|
||||||
|
|||||||
@@ -34,14 +34,13 @@ import org.bukkit.Material;
|
|||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.inventory.ItemStack;
|
import org.bukkit.inventory.ItemStack;
|
||||||
|
|
||||||
import java.lang.reflect.InvocationTargetException;
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
class InventoryPacketAdapter extends PacketAdapter {
|
class InventoryPacketAdapter extends PacketAdapter {
|
||||||
|
|
||||||
private static final int PLAYER_INVENTORY = 0;
|
private static final int PLAYER_INVENTORY = 0;
|
||||||
// http://wiki.vg/Inventory#Inventory (0-4 crafting, 5-8 armor, 9-35 main inventory, 36-44 hotbar, 45 off hand)
|
// http://wiki.vg/Inventory#Inventory (0-4 crafting, 5-8 armor, 9-35 main inventory, 36-44 hotbar, 45 off-hand)
|
||||||
// +1 because an index starts with 0
|
// +1 because an index starts with 0
|
||||||
private static final int CRAFTING_SIZE = 5;
|
private static final int CRAFTING_SIZE = 5;
|
||||||
private static final int ARMOR_SIZE = 4;
|
private static final int ARMOR_SIZE = 4;
|
||||||
@@ -114,6 +113,10 @@ class InventoryPacketAdapter extends PacketAdapter {
|
|||||||
itemListModifier.write(0, Arrays.asList(blankInventory));
|
itemListModifier.write(0, Arrays.asList(blankInventory));
|
||||||
}
|
}
|
||||||
|
|
||||||
protocolManager.sendServerPacket(player, inventoryPacket, false);
|
try {
|
||||||
|
protocolManager.sendServerPacket(player, inventoryPacket, false);
|
||||||
|
} catch (Exception exception) {
|
||||||
|
logger.logException("Error during sending blank inventory", exception);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -40,31 +40,6 @@ public class EmailService {
|
|||||||
return sendMailSsl.hasAllInformation();
|
return sendMailSsl.hasAllInformation();
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean sendNewPasswordMail(String name, String mailAddress, String newPass,String ip,String time) {
|
|
||||||
HtmlEmail email;
|
|
||||||
try {
|
|
||||||
email = sendMailSsl.initializeMail(mailAddress);
|
|
||||||
} catch (EmailException e) {
|
|
||||||
logger.logException("Failed to create email with the given settings:", e);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
String mailText = replaceTagsForPasswordMail(settings.getNewPasswordEmailMessage(), name, newPass,ip,time);
|
|
||||||
File file = null;
|
|
||||||
if (settings.getProperty(EmailSettings.PASSWORD_AS_IMAGE)) {
|
|
||||||
try {
|
|
||||||
file = generatePasswordImage(name, newPass);
|
|
||||||
mailText = embedImageIntoEmailContent(file, email, mailText);
|
|
||||||
} catch (IOException | EmailException e) {
|
|
||||||
logger.logException(
|
|
||||||
"Unable to send new password as image for email " + mailAddress + ":", e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
boolean couldSendEmail = sendMailSsl.sendEmail(mailText, email);
|
|
||||||
FileUtils.delete(file);
|
|
||||||
return couldSendEmail;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sends an email to the user with his new password.
|
* Sends an email to the user with his new password.
|
||||||
@@ -74,7 +49,7 @@ public class EmailService {
|
|||||||
* @param newPass the new password
|
* @param newPass the new password
|
||||||
* @return true if email could be sent, false otherwise
|
* @return true if email could be sent, false otherwise
|
||||||
*/
|
*/
|
||||||
public boolean sendPasswordMail(String name, String mailAddress, String newPass, String time) {
|
public boolean sendPasswordMail(String name, String mailAddress, String newPass) {
|
||||||
if (!hasAllInformation()) {
|
if (!hasAllInformation()) {
|
||||||
logger.warning("Cannot perform email registration: not all email settings are complete");
|
logger.warning("Cannot perform email registration: not all email settings are complete");
|
||||||
return false;
|
return false;
|
||||||
@@ -88,7 +63,7 @@ public class EmailService {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
String mailText = replaceTagsForPasswordMail(settings.getPasswordEmailMessage(), name, newPass,time);
|
String mailText = replaceTagsForPasswordMail(settings.getPasswordEmailMessage(), name, newPass);
|
||||||
// Generate an image?
|
// Generate an image?
|
||||||
File file = null;
|
File file = null;
|
||||||
if (settings.getProperty(EmailSettings.PASSWORD_AS_IMAGE)) {
|
if (settings.getProperty(EmailSettings.PASSWORD_AS_IMAGE)) {
|
||||||
@@ -105,17 +80,19 @@ public class EmailService {
|
|||||||
FileUtils.delete(file);
|
FileUtils.delete(file);
|
||||||
return couldSendEmail;
|
return couldSendEmail;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sends an email to the user with the temporary verification code.
|
* Sends an email to the user with the temporary verification code.
|
||||||
*
|
*
|
||||||
* @param name the name of the player
|
* @param name the name of the player
|
||||||
* @param mailAddress the player's email
|
* @param mailAddress the player's email
|
||||||
* @param code the verification code
|
* @param code the verification code
|
||||||
|
* @return true if email could be sent, false otherwise
|
||||||
*/
|
*/
|
||||||
public void sendVerificationMail(String name, String mailAddress, String code, String time) {
|
public boolean sendVerificationMail(String name, String mailAddress, String code) {
|
||||||
if (!hasAllInformation()) {
|
if (!hasAllInformation()) {
|
||||||
logger.warning("Cannot send verification email: not all email settings are complete");
|
logger.warning("Cannot send verification email: not all email settings are complete");
|
||||||
return;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
HtmlEmail email;
|
HtmlEmail email;
|
||||||
@@ -123,12 +100,12 @@ public class EmailService {
|
|||||||
email = sendMailSsl.initializeMail(mailAddress);
|
email = sendMailSsl.initializeMail(mailAddress);
|
||||||
} catch (EmailException e) {
|
} catch (EmailException e) {
|
||||||
logger.logException("Failed to create verification email with the given settings:", e);
|
logger.logException("Failed to create verification email with the given settings:", e);
|
||||||
return;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
String mailText = replaceTagsForVerificationEmail(settings.getVerificationEmailMessage(), name, code,
|
String mailText = replaceTagsForVerificationEmail(settings.getVerificationEmailMessage(), name, code,
|
||||||
settings.getProperty(SecuritySettings.VERIFICATION_CODE_EXPIRATION_MINUTES),time);
|
settings.getProperty(SecuritySettings.VERIFICATION_CODE_EXPIRATION_MINUTES));
|
||||||
sendMailSsl.sendEmail(mailText, email);
|
return sendMailSsl.sendEmail(mailText, email);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -139,7 +116,7 @@ public class EmailService {
|
|||||||
* @param code the recovery code
|
* @param code the recovery code
|
||||||
* @return true if email could be sent, false otherwise
|
* @return true if email could be sent, false otherwise
|
||||||
*/
|
*/
|
||||||
public boolean sendRecoveryCode(String name, String email, String code, String time) {
|
public boolean sendRecoveryCode(String name, String email, String code) {
|
||||||
HtmlEmail htmlEmail;
|
HtmlEmail htmlEmail;
|
||||||
try {
|
try {
|
||||||
htmlEmail = sendMailSsl.initializeMail(email);
|
htmlEmail = sendMailSsl.initializeMail(email);
|
||||||
@@ -149,23 +126,10 @@ public class EmailService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
String message = replaceTagsForRecoveryCodeMail(settings.getRecoveryCodeEmailMessage(),
|
String message = replaceTagsForRecoveryCodeMail(settings.getRecoveryCodeEmailMessage(),
|
||||||
name, code, settings.getProperty(SecuritySettings.RECOVERY_CODE_HOURS_VALID),time);
|
name, code, settings.getProperty(SecuritySettings.RECOVERY_CODE_HOURS_VALID));
|
||||||
return sendMailSsl.sendEmail(message, htmlEmail);
|
return sendMailSsl.sendEmail(message, htmlEmail);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void sendShutDown(String email, String time) {
|
|
||||||
HtmlEmail htmlEmail;
|
|
||||||
try {
|
|
||||||
htmlEmail = sendMailSsl.initializeMail(email);
|
|
||||||
} catch (EmailException e) {
|
|
||||||
logger.logException("Failed to create email for recovery code:", e);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
String message = replaceTagsForShutDownMail(settings.getShutdownEmailMessage(), time);
|
|
||||||
sendMailSsl.sendEmail(message, htmlEmail);
|
|
||||||
}
|
|
||||||
|
|
||||||
private File generatePasswordImage(String name, String newPass) throws IOException {
|
private File generatePasswordImage(String name, String newPass) throws IOException {
|
||||||
ImageGenerator gen = new ImageGenerator(newPass);
|
ImageGenerator gen = new ImageGenerator(newPass);
|
||||||
File file = new File(dataFolder, name + "_new_pass.jpg");
|
File file = new File(dataFolder, name + "_new_pass.jpg");
|
||||||
@@ -180,44 +144,26 @@ public class EmailService {
|
|||||||
return content.replace("<image />", "<img src=\"cid:" + tag + "\">");
|
return content.replace("<image />", "<img src=\"cid:" + tag + "\">");
|
||||||
}
|
}
|
||||||
|
|
||||||
private String replaceTagsForPasswordMail(String mailText, String name, String newPass,String ip,String time) {
|
private String replaceTagsForPasswordMail(String mailText, String name, String newPass) {
|
||||||
return mailText
|
return mailText
|
||||||
.replace("<playername />", name)
|
.replace("<playername />", name)
|
||||||
.replace("<servername />", settings.getProperty(PluginSettings.SERVER_NAME))
|
.replace("<servername />", settings.getProperty(PluginSettings.SERVER_NAME))
|
||||||
.replace("<generatedpass />", newPass)
|
.replace("<generatedpass />", newPass);
|
||||||
.replace("<playerip />", ip)
|
|
||||||
.replace("<time />", time);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private String replaceTagsForPasswordMail(String mailText, String name, String newPass, String time) {
|
private String replaceTagsForVerificationEmail(String mailText, String name, String code, int minutesValid) {
|
||||||
return mailText
|
|
||||||
.replace("<playername />", name)
|
|
||||||
.replace("<servername />", settings.getProperty(PluginSettings.SERVER_NAME))
|
|
||||||
.replace("<generatedpass />", newPass)
|
|
||||||
.replace("<time />", time);
|
|
||||||
}
|
|
||||||
|
|
||||||
private String replaceTagsForVerificationEmail(String mailText, String name, String code, int minutesValid, String time) {
|
|
||||||
return mailText
|
return mailText
|
||||||
.replace("<playername />", name)
|
.replace("<playername />", name)
|
||||||
.replace("<servername />", settings.getProperty(PluginSettings.SERVER_NAME))
|
.replace("<servername />", settings.getProperty(PluginSettings.SERVER_NAME))
|
||||||
.replace("<generatedcode />", code)
|
.replace("<generatedcode />", code)
|
||||||
.replace("<minutesvalid />", String.valueOf(minutesValid))
|
.replace("<minutesvalid />", String.valueOf(minutesValid));
|
||||||
.replace("<time />", time);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private String replaceTagsForRecoveryCodeMail(String mailText, String name, String code, int hoursValid, String time) {
|
private String replaceTagsForRecoveryCodeMail(String mailText, String name, String code, int hoursValid) {
|
||||||
return mailText
|
return mailText
|
||||||
.replace("<playername />", name)
|
.replace("<playername />", name)
|
||||||
.replace("<servername />", settings.getProperty(PluginSettings.SERVER_NAME))
|
.replace("<servername />", settings.getProperty(PluginSettings.SERVER_NAME))
|
||||||
.replace("<recoverycode />", code)
|
.replace("<recoverycode />", code)
|
||||||
.replace("<hoursvalid />", String.valueOf(hoursValid))
|
.replace("<hoursvalid />", String.valueOf(hoursValid));
|
||||||
.replace("<time />", time);
|
|
||||||
}
|
}
|
||||||
private String replaceTagsForShutDownMail(String mailText, String time) {
|
|
||||||
return mailText
|
|
||||||
.replace("<servername />", settings.getProperty(PluginSettings.SERVER_NAME))
|
|
||||||
.replace("<time />", time);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
package fr.xephi.authme.mail;
|
package fr.xephi.authme.mail;
|
||||||
|
|
||||||
import java.awt.*;
|
import java.awt.Color;
|
||||||
|
import java.awt.Font;
|
||||||
|
import java.awt.GradientPaint;
|
||||||
|
import java.awt.Graphics2D;
|
||||||
import java.awt.image.BufferedImage;
|
import java.awt.image.BufferedImage;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -4,84 +4,14 @@ package fr.xephi.authme.message;
|
|||||||
* Keys for translatable messages managed by {@link Messages}.
|
* Keys for translatable messages managed by {@link Messages}.
|
||||||
*/
|
*/
|
||||||
public enum MessageKey {
|
public enum MessageKey {
|
||||||
/**
|
|
||||||
* You have been disconnected due to doubled login.
|
|
||||||
*/
|
|
||||||
DOUBLE_LOGIN_FIX("double_login_fix.fix_message"),
|
|
||||||
|
|
||||||
/**
|
/** In order to use this command you must be authenticated! */
|
||||||
* You are stuck in portal during Login.
|
|
||||||
*/
|
|
||||||
LOCATION_FIX_PORTAL("login_location_fix.fix_portal"),
|
|
||||||
|
|
||||||
/**
|
|
||||||
* You are stuck underground during Login.
|
|
||||||
*/
|
|
||||||
LOCATION_FIX_UNDERGROUND("login_location_fix.fix_underground"),
|
|
||||||
|
|
||||||
/**
|
|
||||||
* You are stuck underground during Login, but we cant fix it.
|
|
||||||
*/
|
|
||||||
LOCATION_FIX_UNDERGROUND_CANT_FIX("login_location_fix.cannot_fix_underground"),
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Bedrock auto login success!
|
|
||||||
*/
|
|
||||||
BEDROCK_AUTO_LOGGED_IN("bedrock_auto_login.success"),
|
|
||||||
|
|
||||||
/**
|
|
||||||
* %random Verification
|
|
||||||
*/
|
|
||||||
GUI_CAPTCHA_WINDOW_NAME("gui_captcha.captcha_window_name", "%random"),
|
|
||||||
|
|
||||||
/**
|
|
||||||
* %random I am human
|
|
||||||
*/
|
|
||||||
GUI_CAPTCHA_CLICKABLE_NAME("gui_captcha.captcha_clickable_name", "%random"),
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Verification failed, you have %times retries left
|
|
||||||
*/
|
|
||||||
GUI_CAPTCHA_RETRY_MESSAGE("gui_captcha.message_on_retry", "%times"),
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Bedrock verification success!
|
|
||||||
*/
|
|
||||||
GUI_CAPTCHA_VERIFIED_AUTO_BEDROCK("gui_captcha.bedrock_auto_verify_success"),
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Please be verified before chatting!
|
|
||||||
*/
|
|
||||||
GUI_CAPTCHA_DENIED_MESSAGE("gui_captcha.denied_message_sending"),
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Verification timed out!
|
|
||||||
*/
|
|
||||||
GUI_CAPTCHA_KICK_TIMEOUT("gui_captcha.kick_on_timeout"),
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Please complete the verification!
|
|
||||||
*/
|
|
||||||
GUI_CAPTCHA_KICK_FAILED("gui_captcha.kick_on_failed"),
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Verification success!
|
|
||||||
*/
|
|
||||||
GUI_CAPTCHA_VERIFIED("gui_captcha.success"),
|
|
||||||
|
|
||||||
/**
|
|
||||||
* In order to use this command you must be authenticated!
|
|
||||||
*/
|
|
||||||
DENIED_COMMAND("error.denied_command"),
|
DENIED_COMMAND("error.denied_command"),
|
||||||
|
|
||||||
/**
|
/** A player with the same IP is already in game! */
|
||||||
* A player with the same IP is already in game!
|
|
||||||
*/
|
|
||||||
SAME_IP_ONLINE("on_join_validation.same_ip_online"),
|
SAME_IP_ONLINE("on_join_validation.same_ip_online"),
|
||||||
|
|
||||||
/**
|
/** In order to chat you must be authenticated! */
|
||||||
* In order to chat you must be authenticated!
|
|
||||||
*/
|
|
||||||
DENIED_CHAT("error.denied_chat"),
|
DENIED_CHAT("error.denied_chat"),
|
||||||
|
|
||||||
/** AntiBot protection mode is enabled! You have to wait some minutes before joining the server. */
|
/** AntiBot protection mode is enabled! You have to wait some minutes before joining the server. */
|
||||||
@@ -150,9 +80,6 @@ public enum MessageKey {
|
|||||||
/** The chosen password isn't safe, please choose another one... */
|
/** The chosen password isn't safe, please choose another one... */
|
||||||
PASSWORD_UNSAFE_ERROR("password.unsafe_password"),
|
PASSWORD_UNSAFE_ERROR("password.unsafe_password"),
|
||||||
|
|
||||||
/** Your chosen password is not secure. It was used %pwned_count times already! Please use a stronger password... */
|
|
||||||
PASSWORD_PWNED_ERROR("password.pwned_password", "%pwned_count"),
|
|
||||||
|
|
||||||
/** Your password contains illegal characters. Allowed chars: %valid_chars */
|
/** Your password contains illegal characters. Allowed chars: %valid_chars */
|
||||||
PASSWORD_CHARACTERS_ERROR("password.forbidden_characters", "%valid_chars"),
|
PASSWORD_CHARACTERS_ERROR("password.forbidden_characters", "%valid_chars"),
|
||||||
|
|
||||||
|
|||||||
@@ -2,8 +2,8 @@ package fr.xephi.authme.message;
|
|||||||
|
|
||||||
import com.google.common.collect.ImmutableMap;
|
import com.google.common.collect.ImmutableMap;
|
||||||
import fr.xephi.authme.ConsoleLogger;
|
import fr.xephi.authme.ConsoleLogger;
|
||||||
import fr.xephi.authme.mail.EmailService;
|
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
|
import fr.xephi.authme.mail.EmailService;
|
||||||
import fr.xephi.authme.util.expiring.Duration;
|
import fr.xephi.authme.util.expiring.Duration;
|
||||||
import org.bukkit.ChatColor;
|
import org.bukkit.ChatColor;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
package fr.xephi.authme.message;
|
package fr.xephi.authme.message;
|
||||||
|
|
||||||
import fr.xephi.authme.ConsoleLogger;
|
import fr.xephi.authme.ConsoleLogger;
|
||||||
import fr.xephi.authme.message.updater.MessageUpdater;
|
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
|
import fr.xephi.authme.message.updater.MessageUpdater;
|
||||||
|
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
|
|
||||||
|
|||||||
@@ -10,8 +10,8 @@ import ch.jalu.configme.resource.PropertyResource;
|
|||||||
import com.google.common.collect.ImmutableMap;
|
import com.google.common.collect.ImmutableMap;
|
||||||
import com.google.common.io.Files;
|
import com.google.common.io.Files;
|
||||||
import fr.xephi.authme.ConsoleLogger;
|
import fr.xephi.authme.ConsoleLogger;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.util.FileUtils;
|
import fr.xephi.authme.util.FileUtils;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
@@ -149,10 +149,6 @@ public class MessageUpdater {
|
|||||||
.put("verification", "Verification code")
|
.put("verification", "Verification code")
|
||||||
.put("time", "Time units")
|
.put("time", "Time units")
|
||||||
.put("two_factor", "Two-factor authentication")
|
.put("two_factor", "Two-factor authentication")
|
||||||
.put("gui_captcha", "3rd party features: GUI Captcha")
|
|
||||||
.put("bedrock_auto_login", "3rd party features: Bedrock Auto Login")
|
|
||||||
.put("login_location_fix", "3rd party features: Login Location Fix")
|
|
||||||
.put("double_login_fix", "3rd party features: Double Login Fix")
|
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
Set<String> addedKeys = new HashSet<>();
|
Set<String> addedKeys = new HashSet<>();
|
||||||
|
|||||||
@@ -36,4 +36,12 @@ public class MigraterYamlFileResource extends YamlFileResource {
|
|||||||
}
|
}
|
||||||
return singleQuoteYaml;
|
return singleQuoteYaml;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Because we set the YAML object to put strings in single quotes, this method by default uses that YAML object
|
||||||
|
// and also puts all paths as single quotes. Override to just always return the same string since we know those
|
||||||
|
// are only message names (so never any conflicting strings like "true" or "0").
|
||||||
|
@Override
|
||||||
|
protected String escapePathElementIfNeeded(String path) {
|
||||||
|
return path;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,8 +4,8 @@ import fr.xephi.authme.ConsoleLogger;
|
|||||||
import fr.xephi.authme.data.auth.PlayerAuth;
|
import fr.xephi.authme.data.auth.PlayerAuth;
|
||||||
import fr.xephi.authme.data.auth.PlayerCache;
|
import fr.xephi.authme.data.auth.PlayerCache;
|
||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.process.AsynchronousProcess;
|
import fr.xephi.authme.process.AsynchronousProcess;
|
||||||
import fr.xephi.authme.security.PasswordSecurity;
|
import fr.xephi.authme.security.PasswordSecurity;
|
||||||
import fr.xephi.authme.security.crypts.HashedPassword;
|
import fr.xephi.authme.security.crypts.HashedPassword;
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ import fr.xephi.authme.data.auth.PlayerAuth;
|
|||||||
import fr.xephi.authme.data.auth.PlayerCache;
|
import fr.xephi.authme.data.auth.PlayerCache;
|
||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
import fr.xephi.authme.events.EmailChangedEvent;
|
import fr.xephi.authme.events.EmailChangedEvent;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.process.AsynchronousProcess;
|
import fr.xephi.authme.process.AsynchronousProcess;
|
||||||
import fr.xephi.authme.service.BukkitService;
|
import fr.xephi.authme.service.BukkitService;
|
||||||
import fr.xephi.authme.service.CommonService;
|
import fr.xephi.authme.service.CommonService;
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ import fr.xephi.authme.data.auth.PlayerAuth;
|
|||||||
import fr.xephi.authme.data.auth.PlayerCache;
|
import fr.xephi.authme.data.auth.PlayerCache;
|
||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
import fr.xephi.authme.events.EmailChangedEvent;
|
import fr.xephi.authme.events.EmailChangedEvent;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.process.AsynchronousProcess;
|
import fr.xephi.authme.process.AsynchronousProcess;
|
||||||
import fr.xephi.authme.service.BukkitService;
|
import fr.xephi.authme.service.BukkitService;
|
||||||
import fr.xephi.authme.service.CommonService;
|
import fr.xephi.authme.service.CommonService;
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ import fr.xephi.authme.service.SessionService;
|
|||||||
import fr.xephi.authme.service.ValidationService;
|
import fr.xephi.authme.service.ValidationService;
|
||||||
import fr.xephi.authme.service.bungeecord.BungeeSender;
|
import fr.xephi.authme.service.bungeecord.BungeeSender;
|
||||||
import fr.xephi.authme.service.bungeecord.MessageType;
|
import fr.xephi.authme.service.bungeecord.MessageType;
|
||||||
|
import fr.xephi.authme.settings.WelcomeMessageConfiguration;
|
||||||
import fr.xephi.authme.settings.commandconfig.CommandManager;
|
import fr.xephi.authme.settings.commandconfig.CommandManager;
|
||||||
import fr.xephi.authme.settings.properties.HooksSettings;
|
import fr.xephi.authme.settings.properties.HooksSettings;
|
||||||
import fr.xephi.authme.settings.properties.RegistrationSettings;
|
import fr.xephi.authme.settings.properties.RegistrationSettings;
|
||||||
@@ -26,8 +27,6 @@ import fr.xephi.authme.util.PlayerUtils;
|
|||||||
import org.bukkit.GameMode;
|
import org.bukkit.GameMode;
|
||||||
import org.bukkit.Server;
|
import org.bukkit.Server;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.potion.PotionEffect;
|
|
||||||
import org.bukkit.potion.PotionEffectType;
|
|
||||||
|
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
import java.util.Locale;
|
import java.util.Locale;
|
||||||
@@ -69,6 +68,9 @@ public class AsynchronousJoin implements AsynchronousProcess {
|
|||||||
@Inject
|
@Inject
|
||||||
private ValidationService validationService;
|
private ValidationService validationService;
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
private WelcomeMessageConfiguration welcomeMessageConfiguration;
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
private SessionService sessionService;
|
private SessionService sessionService;
|
||||||
|
|
||||||
@@ -145,6 +147,9 @@ public class AsynchronousJoin implements AsynchronousProcess {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} else if (!service.getProperty(RegistrationSettings.FORCE)) {
|
} else if (!service.getProperty(RegistrationSettings.FORCE)) {
|
||||||
|
bukkitService.scheduleSyncTaskFromOptionallyAsyncTask(() -> {
|
||||||
|
welcomeMessageConfiguration.sendWelcomeMessage(player);
|
||||||
|
});
|
||||||
|
|
||||||
// Skip if registration is optional
|
// Skip if registration is optional
|
||||||
|
|
||||||
@@ -189,7 +194,7 @@ public class AsynchronousJoin implements AsynchronousProcess {
|
|||||||
if (service.getProperty(RegistrationSettings.APPLY_BLIND_EFFECT)) {
|
if (service.getProperty(RegistrationSettings.APPLY_BLIND_EFFECT)) {
|
||||||
// Allow infinite blindness effect
|
// Allow infinite blindness effect
|
||||||
int blindTimeOut = (registrationTimeout <= 0) ? 99999 : registrationTimeout;
|
int blindTimeOut = (registrationTimeout <= 0) ? 99999 : registrationTimeout;
|
||||||
player.addPotionEffect(new PotionEffect(PotionEffectType.BLINDNESS, blindTimeOut, 2));
|
player.addPotionEffect(bukkitService.createBlindnessEffect(blindTimeOut));
|
||||||
}
|
}
|
||||||
commandManager.runCommandsOnJoin(player);
|
commandManager.runCommandsOnJoin(player);
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -12,9 +12,9 @@ import fr.xephi.authme.data.limbo.LimboService;
|
|||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
import fr.xephi.authme.events.AuthMeAsyncPreLoginEvent;
|
import fr.xephi.authme.events.AuthMeAsyncPreLoginEvent;
|
||||||
import fr.xephi.authme.events.FailedLoginEvent;
|
import fr.xephi.authme.events.FailedLoginEvent;
|
||||||
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
import fr.xephi.authme.mail.EmailService;
|
import fr.xephi.authme.mail.EmailService;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
|
||||||
import fr.xephi.authme.permission.AdminPermission;
|
import fr.xephi.authme.permission.AdminPermission;
|
||||||
import fr.xephi.authme.permission.PlayerPermission;
|
import fr.xephi.authme.permission.PlayerPermission;
|
||||||
import fr.xephi.authme.permission.PlayerStatePermission;
|
import fr.xephi.authme.permission.PlayerStatePermission;
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ import fr.xephi.authme.service.CommonService;
|
|||||||
import fr.xephi.authme.service.JoinMessageService;
|
import fr.xephi.authme.service.JoinMessageService;
|
||||||
import fr.xephi.authme.service.TeleportationService;
|
import fr.xephi.authme.service.TeleportationService;
|
||||||
import fr.xephi.authme.service.bungeecord.BungeeSender;
|
import fr.xephi.authme.service.bungeecord.BungeeSender;
|
||||||
|
import fr.xephi.authme.settings.WelcomeMessageConfiguration;
|
||||||
import fr.xephi.authme.settings.commandconfig.CommandManager;
|
import fr.xephi.authme.settings.commandconfig.CommandManager;
|
||||||
import fr.xephi.authme.settings.properties.RegistrationSettings;
|
import fr.xephi.authme.settings.properties.RegistrationSettings;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
@@ -48,6 +49,9 @@ public class ProcessSyncPlayerLogin implements SynchronousProcess {
|
|||||||
@Inject
|
@Inject
|
||||||
private CommonService commonService;
|
private CommonService commonService;
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
private WelcomeMessageConfiguration welcomeMessageConfiguration;
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
private JoinMessageService joinMessageService;
|
private JoinMessageService joinMessageService;
|
||||||
|
|
||||||
@@ -86,6 +90,11 @@ public class ProcessSyncPlayerLogin implements SynchronousProcess {
|
|||||||
}
|
}
|
||||||
|
|
||||||
final PlayerAuth auth = playerCache.getAuth(name);
|
final PlayerAuth auth = playerCache.getAuth(name);
|
||||||
|
|
||||||
|
if (isFirstLogin) { // Save quit location before login teleport
|
||||||
|
auth.setQuitLocation(player.getLocation());
|
||||||
|
}
|
||||||
|
|
||||||
teleportationService.teleportOnLogin(player, auth, limbo);
|
teleportationService.teleportOnLogin(player, auth, limbo);
|
||||||
|
|
||||||
// We can now display the join message (if delayed)
|
// We can now display the join message (if delayed)
|
||||||
@@ -98,6 +107,9 @@ public class ProcessSyncPlayerLogin implements SynchronousProcess {
|
|||||||
// The Login event now fires (as intended) after everything is processed
|
// The Login event now fires (as intended) after everything is processed
|
||||||
bukkitService.callEvent(new LoginEvent(player));
|
bukkitService.callEvent(new LoginEvent(player));
|
||||||
|
|
||||||
|
// Login is done, display welcome message
|
||||||
|
welcomeMessageConfiguration.sendWelcomeMessage(player);
|
||||||
|
|
||||||
// Login is now finished; we can force all commands
|
// Login is now finished; we can force all commands
|
||||||
if (isFirstLogin) {
|
if (isFirstLogin) {
|
||||||
commandManager.runCommandsOnFirstLogin(player, authsWithSameIp);
|
commandManager.runCommandsOnFirstLogin(player, authsWithSameIp);
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ import fr.xephi.authme.settings.commandconfig.CommandManager;
|
|||||||
import fr.xephi.authme.settings.properties.RegistrationSettings;
|
import fr.xephi.authme.settings.properties.RegistrationSettings;
|
||||||
import fr.xephi.authme.settings.properties.RestrictionSettings;
|
import fr.xephi.authme.settings.properties.RestrictionSettings;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.potion.PotionEffect;
|
|
||||||
import org.bukkit.potion.PotionEffectType;
|
|
||||||
|
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
|
|
||||||
@@ -75,7 +73,7 @@ public class ProcessSyncPlayerLogout implements SynchronousProcess {
|
|||||||
// Apply Blindness effect
|
// Apply Blindness effect
|
||||||
if (service.getProperty(RegistrationSettings.APPLY_BLIND_EFFECT)) {
|
if (service.getProperty(RegistrationSettings.APPLY_BLIND_EFFECT)) {
|
||||||
int timeout = service.getProperty(RestrictionSettings.TIMEOUT) * TICKS_PER_SECOND;
|
int timeout = service.getProperty(RestrictionSettings.TIMEOUT) * TICKS_PER_SECOND;
|
||||||
player.addPotionEffect(new PotionEffect(PotionEffectType.BLINDNESS, timeout, 2));
|
player.addPotionEffect(bukkitService.createBlindnessEffect(timeout));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set player's data to unauthenticated
|
// Set player's data to unauthenticated
|
||||||
|
|||||||
@@ -27,7 +27,6 @@ public class ProcessSyncPlayerQuit implements SynchronousProcess {
|
|||||||
commandManager.runCommandsOnLogout(player);
|
commandManager.runCommandsOnLogout(player);
|
||||||
} else {
|
} else {
|
||||||
limboService.restoreData(player);
|
limboService.restoreData(player);
|
||||||
player.saveData(); // #1238: Speed is sometimes not restored properly
|
|
||||||
}
|
}
|
||||||
player.leaveVehicle();
|
player.leaveVehicle();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,8 +3,8 @@ package fr.xephi.authme.process.register;
|
|||||||
import fr.xephi.authme.ConsoleLogger;
|
import fr.xephi.authme.ConsoleLogger;
|
||||||
import fr.xephi.authme.data.limbo.LimboService;
|
import fr.xephi.authme.data.limbo.LimboService;
|
||||||
import fr.xephi.authme.events.RegisterEvent;
|
import fr.xephi.authme.events.RegisterEvent;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.process.SynchronousProcess;
|
import fr.xephi.authme.process.SynchronousProcess;
|
||||||
import fr.xephi.authme.service.BukkitService;
|
import fr.xephi.authme.service.BukkitService;
|
||||||
import fr.xephi.authme.service.CommonService;
|
import fr.xephi.authme.service.CommonService;
|
||||||
|
|||||||
@@ -3,8 +3,8 @@ package fr.xephi.authme.process.register;
|
|||||||
import fr.xephi.authme.ConsoleLogger;
|
import fr.xephi.authme.ConsoleLogger;
|
||||||
import fr.xephi.authme.data.limbo.LimboService;
|
import fr.xephi.authme.data.limbo.LimboService;
|
||||||
import fr.xephi.authme.events.RegisterEvent;
|
import fr.xephi.authme.events.RegisterEvent;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.process.SynchronousProcess;
|
import fr.xephi.authme.process.SynchronousProcess;
|
||||||
import fr.xephi.authme.service.BukkitService;
|
import fr.xephi.authme.service.BukkitService;
|
||||||
import fr.xephi.authme.service.CommonService;
|
import fr.xephi.authme.service.CommonService;
|
||||||
|
|||||||
@@ -9,13 +9,10 @@ import fr.xephi.authme.security.PasswordSecurity;
|
|||||||
import fr.xephi.authme.security.crypts.HashedPassword;
|
import fr.xephi.authme.security.crypts.HashedPassword;
|
||||||
import fr.xephi.authme.service.CommonService;
|
import fr.xephi.authme.service.CommonService;
|
||||||
import fr.xephi.authme.settings.properties.EmailSettings;
|
import fr.xephi.authme.settings.properties.EmailSettings;
|
||||||
import fr.xephi.authme.util.PlayerUtils;
|
|
||||||
import fr.xephi.authme.util.RandomStringUtils;
|
import fr.xephi.authme.util.RandomStringUtils;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
import java.text.SimpleDateFormat;
|
|
||||||
import java.util.Date;
|
|
||||||
|
|
||||||
import static fr.xephi.authme.permission.PlayerStatePermission.ALLOW_MULTIPLE_ACCOUNTS;
|
import static fr.xephi.authme.permission.PlayerStatePermission.ALLOW_MULTIPLE_ACCOUNTS;
|
||||||
import static fr.xephi.authme.process.register.executors.PlayerAuthBuilderHelper.createPlayerAuth;
|
import static fr.xephi.authme.process.register.executors.PlayerAuthBuilderHelper.createPlayerAuth;
|
||||||
@@ -67,10 +64,8 @@ class EmailRegisterExecutor implements RegistrationExecutor<EmailRegisterParams>
|
|||||||
@Override
|
@Override
|
||||||
public void executePostPersistAction(EmailRegisterParams params) {
|
public void executePostPersistAction(EmailRegisterParams params) {
|
||||||
Player player = params.getPlayer();
|
Player player = params.getPlayer();
|
||||||
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy'年'MM'月'dd'日' HH:mm:ss");
|
boolean couldSendMail = emailService.sendPasswordMail(
|
||||||
Date date = new Date(System.currentTimeMillis());
|
player.getName(), params.getEmail(), params.getPassword());
|
||||||
boolean couldSendMail = emailService.sendNewPasswordMail(
|
|
||||||
player.getName(), params.getEmail(), params.getPassword(), PlayerUtils.getPlayerIp(player), dateFormat.format(date));
|
|
||||||
if (couldSendMail) {
|
if (couldSendMail) {
|
||||||
syncProcessManager.processSyncEmailRegister(player);
|
syncProcessManager.processSyncEmailRegister(player);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -21,8 +21,6 @@ import fr.xephi.authme.settings.properties.RegistrationSettings;
|
|||||||
import fr.xephi.authme.settings.properties.RestrictionSettings;
|
import fr.xephi.authme.settings.properties.RestrictionSettings;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.potion.PotionEffect;
|
|
||||||
import org.bukkit.potion.PotionEffectType;
|
|
||||||
|
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
|
|
||||||
@@ -144,7 +142,7 @@ public class AsynchronousUnregister implements AsynchronousProcess {
|
|||||||
private void applyBlindEffect(Player player) {
|
private void applyBlindEffect(Player player) {
|
||||||
if (service.getProperty(RegistrationSettings.APPLY_BLIND_EFFECT)) {
|
if (service.getProperty(RegistrationSettings.APPLY_BLIND_EFFECT)) {
|
||||||
int timeout = service.getProperty(RestrictionSettings.TIMEOUT) * TICKS_PER_SECOND;
|
int timeout = service.getProperty(RestrictionSettings.TIMEOUT) * TICKS_PER_SECOND;
|
||||||
player.addPotionEffect(new PotionEffect(PotionEffectType.BLINDNESS, timeout, 2));
|
player.addPotionEffect(bukkitService.createBlindnessEffect(timeout));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -308,7 +308,7 @@ public class Whirlpool extends UnsaltedMethod {
|
|||||||
if (bufferRem + sourceBits < 8) {
|
if (bufferRem + sourceBits < 8) {
|
||||||
// all remaining data fits on buffer[bufferPos], and there still
|
// all remaining data fits on buffer[bufferPos], and there still
|
||||||
// remains some space.
|
// remains some space.
|
||||||
bufferBits += (int) sourceBits;
|
bufferBits += sourceBits;
|
||||||
} else {
|
} else {
|
||||||
// buffer[bufferPos] is full:
|
// buffer[bufferPos] is full:
|
||||||
bufferPos++;
|
bufferPos++;
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ import fr.xephi.authme.settings.properties.PluginSettings;
|
|||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
|
|
||||||
import java.util.Locale;
|
import java.util.Locale;
|
||||||
|
|
||||||
import static fr.xephi.authme.util.Utils.MILLIS_PER_MINUTE;
|
import static fr.xephi.authme.util.Utils.MILLIS_PER_MINUTE;
|
||||||
|
|||||||
@@ -73,7 +73,7 @@ public class AntiBotService implements SettingsDependent {
|
|||||||
// Delay the schedule on first start
|
// Delay the schedule on first start
|
||||||
if (startup) {
|
if (startup) {
|
||||||
int delay = settings.getProperty(ProtectionSettings.ANTIBOT_DELAY);
|
int delay = settings.getProperty(ProtectionSettings.ANTIBOT_DELAY);
|
||||||
bukkitService.scheduleSyncDelayedTask(enableTask, (long) delay * TICKS_PER_SECOND);
|
bukkitService.scheduleSyncDelayedTask(enableTask, delay * TICKS_PER_SECOND);
|
||||||
startup = false;
|
startup = false;
|
||||||
} else {
|
} else {
|
||||||
enableTask.run();
|
enableTask.run();
|
||||||
@@ -91,7 +91,7 @@ public class AntiBotService implements SettingsDependent {
|
|||||||
disableTask.cancel();
|
disableTask.cancel();
|
||||||
}
|
}
|
||||||
// Schedule auto-disable
|
// Schedule auto-disable
|
||||||
disableTask = bukkitService.runTaskLater(this::stopProtection, (long) duration * TICKS_PER_MINUTE);
|
disableTask = bukkitService.runTaskLater(this::stopProtection, duration * TICKS_PER_MINUTE);
|
||||||
antiBotStatus = AntiBotStatus.ACTIVE;
|
antiBotStatus = AntiBotStatus.ACTIVE;
|
||||||
bukkitService.scheduleSyncTaskFromOptionallyAsyncTask(() -> {
|
bukkitService.scheduleSyncTaskFromOptionallyAsyncTask(() -> {
|
||||||
// Inform admins
|
// Inform admins
|
||||||
|
|||||||
@@ -3,8 +3,8 @@ package fr.xephi.authme.service;
|
|||||||
import fr.xephi.authme.ConsoleLogger;
|
import fr.xephi.authme.ConsoleLogger;
|
||||||
import fr.xephi.authme.datasource.DataSourceType;
|
import fr.xephi.authme.datasource.DataSourceType;
|
||||||
import fr.xephi.authme.initialization.DataFolder;
|
import fr.xephi.authme.initialization.DataFolder;
|
||||||
import fr.xephi.authme.mail.EmailService;
|
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
|
import fr.xephi.authme.mail.EmailService;
|
||||||
import fr.xephi.authme.settings.Settings;
|
import fr.xephi.authme.settings.Settings;
|
||||||
import fr.xephi.authme.settings.properties.BackupSettings;
|
import fr.xephi.authme.settings.properties.BackupSettings;
|
||||||
import fr.xephi.authme.settings.properties.DatabaseSettings;
|
import fr.xephi.authme.settings.properties.DatabaseSettings;
|
||||||
|
|||||||
@@ -13,6 +13,8 @@ import org.bukkit.command.CommandSender;
|
|||||||
import org.bukkit.configuration.file.YamlConfiguration;
|
import org.bukkit.configuration.file.YamlConfiguration;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.event.Event;
|
import org.bukkit.event.Event;
|
||||||
|
import org.bukkit.potion.PotionEffect;
|
||||||
|
import org.bukkit.potion.PotionEffectType;
|
||||||
import org.bukkit.scheduler.BukkitRunnable;
|
import org.bukkit.scheduler.BukkitRunnable;
|
||||||
import org.bukkit.scheduler.BukkitTask;
|
import org.bukkit.scheduler.BukkitTask;
|
||||||
|
|
||||||
@@ -338,6 +340,16 @@ public class BukkitService implements SettingsDependent {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a PotionEffect with blindness for the given duration in ticks.
|
||||||
|
*
|
||||||
|
* @param timeoutInTicks duration of the effect in ticks
|
||||||
|
* @return blindness potion effect
|
||||||
|
*/
|
||||||
|
public PotionEffect createBlindnessEffect(int timeoutInTicks) {
|
||||||
|
return new PotionEffect(PotionEffectType.BLINDNESS, timeoutInTicks, 2);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return the IP string that this server is bound to, otherwise empty string
|
* @return the IP string that this server is bound to, otherwise empty string
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -4,12 +4,12 @@ import com.google.common.annotations.VisibleForTesting;
|
|||||||
import com.google.common.hash.HashCode;
|
import com.google.common.hash.HashCode;
|
||||||
import com.google.common.hash.HashFunction;
|
import com.google.common.hash.HashFunction;
|
||||||
import com.google.common.hash.Hashing;
|
import com.google.common.hash.Hashing;
|
||||||
import com.maxmind.db.GeoIp2Provider;
|
import com.maxmind.db.CHMCache;
|
||||||
import com.maxmind.db.Reader;
|
|
||||||
import com.maxmind.db.Reader.FileMode;
|
import com.maxmind.db.Reader.FileMode;
|
||||||
import com.maxmind.db.cache.CHMCache;
|
import com.maxmind.geoip2.DatabaseReader;
|
||||||
import com.maxmind.db.model.Country;
|
import com.maxmind.geoip2.exception.GeoIp2Exception;
|
||||||
import com.maxmind.db.model.CountryResponse;
|
import com.maxmind.geoip2.model.AbstractCountryResponse;
|
||||||
|
import com.maxmind.geoip2.record.Country;
|
||||||
import fr.xephi.authme.ConsoleLogger;
|
import fr.xephi.authme.ConsoleLogger;
|
||||||
import fr.xephi.authme.initialization.DataFolder;
|
import fr.xephi.authme.initialization.DataFolder;
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
@@ -42,29 +42,42 @@ import java.util.zip.GZIPInputStream;
|
|||||||
|
|
||||||
public class GeoIpService {
|
public class GeoIpService {
|
||||||
|
|
||||||
//private static final String LICENSE =
|
private static final String LICENSE =
|
||||||
//"[LICENSE] This product includes GeoLite2 data created by MaxMind, available at https://www.maxmind.com";
|
"[LICENSE] This product includes GeoLite2 data created by MaxMind, available at https://www.maxmind.com";
|
||||||
|
|
||||||
private static final String DATABASE_NAME = "GeoLite2-Country";
|
private static final String DATABASE_NAME = "GeoLite2-Country";
|
||||||
private static final String DATABASE_FILE = DATABASE_NAME + ".mmdb";
|
private static final String DATABASE_FILE = DATABASE_NAME + ".mmdb";
|
||||||
|
private static final String DATABASE_TMP_FILE = DATABASE_NAME + ".mmdb.tmp";
|
||||||
|
|
||||||
|
private static final String ARCHIVE_FILE = DATABASE_NAME + ".mmdb.gz";
|
||||||
|
|
||||||
|
private static final String ARCHIVE_URL =
|
||||||
|
"https://updates.maxmind.com/geoip/databases/" + DATABASE_NAME + "/update";
|
||||||
|
|
||||||
|
private static final int UPDATE_INTERVAL_DAYS = 30;
|
||||||
|
|
||||||
private final ConsoleLogger logger = ConsoleLoggerFactory.get(GeoIpService.class);
|
private final ConsoleLogger logger = ConsoleLoggerFactory.get(GeoIpService.class);
|
||||||
private final Path dataFile;
|
private final Path dataFile;
|
||||||
|
private final BukkitService bukkitService;
|
||||||
|
private final Settings settings;
|
||||||
|
|
||||||
private GeoIp2Provider databaseReader;
|
private DatabaseReader databaseReader;
|
||||||
private volatile boolean downloading;
|
private volatile boolean downloading;
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
GeoIpService(@DataFolder File dataFolder){
|
public GeoIpService(@DataFolder File dataFolder, BukkitService bukkitService, Settings settings) {
|
||||||
|
this.bukkitService = bukkitService;
|
||||||
this.dataFile = dataFolder.toPath().resolve(DATABASE_FILE);
|
this.dataFile = dataFolder.toPath().resolve(DATABASE_FILE);
|
||||||
|
this.settings = settings;
|
||||||
|
|
||||||
// Fires download of recent data or the initialization of the look up service
|
// Fires download of recent data or the initialization of the look-up service
|
||||||
isDataAvailable();
|
isDataAvailable();
|
||||||
}
|
}
|
||||||
|
|
||||||
@VisibleForTesting
|
@VisibleForTesting
|
||||||
GeoIpService(@DataFolder File dataFolder, GeoIp2Provider reader) {
|
GeoIpService(@DataFolder File dataFolder, BukkitService bukkitService, Settings settings, DatabaseReader reader) {
|
||||||
|
this.bukkitService = bukkitService;
|
||||||
|
this.settings = settings;
|
||||||
this.dataFile = dataFolder.toPath().resolve(DATABASE_FILE);
|
this.dataFile = dataFolder.toPath().resolve(DATABASE_FILE);
|
||||||
|
|
||||||
this.databaseReader = reader;
|
this.databaseReader = reader;
|
||||||
@@ -76,6 +89,12 @@ public class GeoIpService {
|
|||||||
* @return True if the data is available, false otherwise.
|
* @return True if the data is available, false otherwise.
|
||||||
*/
|
*/
|
||||||
private synchronized boolean isDataAvailable() {
|
private synchronized boolean isDataAvailable() {
|
||||||
|
|
||||||
|
// If this feature is disabled, just stop
|
||||||
|
if (!settings.getProperty(ProtectionSettings.ENABLE_GEOIP)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if (downloading) {
|
if (downloading) {
|
||||||
// we are currently downloading the database
|
// we are currently downloading the database
|
||||||
return false;
|
return false;
|
||||||
@@ -88,46 +107,143 @@ public class GeoIpService {
|
|||||||
|
|
||||||
if (Files.exists(dataFile)) {
|
if (Files.exists(dataFile)) {
|
||||||
try {
|
try {
|
||||||
startReading();
|
FileTime lastModifiedTime = Files.getLastModifiedTime(dataFile);
|
||||||
return true;
|
if (Duration.between(lastModifiedTime.toInstant(), Instant.now()).toDays() <= UPDATE_INTERVAL_DAYS) {
|
||||||
|
startReading();
|
||||||
|
|
||||||
|
// don't fire the update task - we are up-to-date
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
logger.debug("GEO IP database is older than " + UPDATE_INTERVAL_DAYS + " Days");
|
||||||
|
}
|
||||||
} catch (IOException ioEx) {
|
} catch (IOException ioEx) {
|
||||||
logger.logException("Failed to load GeoLiteAPI database", ioEx);
|
logger.logException("Failed to load GeoLiteAPI database", ioEx);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//set the downloading flag in order to fix race conditions outside
|
||||||
|
downloading = true;
|
||||||
|
|
||||||
// File is outdated or doesn't exist - let's try to download the data file!
|
// File is outdated or doesn't exist - let's try to download the data file!
|
||||||
// use bukkit's cached threads
|
// use bukkit's cached threads
|
||||||
|
bukkitService.runTaskAsynchronously(this::updateDatabase);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* Tries to update the database by downloading a new version from the website.
|
||||||
*/
|
*/
|
||||||
|
private void updateDatabase() {
|
||||||
|
logger.info("Downloading GEO IP database, because the old database is older than "
|
||||||
|
+ UPDATE_INTERVAL_DAYS + " days or doesn't exist");
|
||||||
|
|
||||||
|
Path downloadFile = null;
|
||||||
|
Path tempFile = null;
|
||||||
|
try {
|
||||||
|
// download database to temporarily location
|
||||||
|
downloadFile = Files.createTempFile(ARCHIVE_FILE, null);
|
||||||
|
tempFile = Files.createTempFile(DATABASE_TMP_FILE, null);
|
||||||
|
String expectedChecksum = downloadDatabaseArchive(downloadFile);
|
||||||
|
if (expectedChecksum == null) {
|
||||||
|
logger.info("There is no newer GEO IP database uploaded to MaxMind. Using the old one for now.");
|
||||||
|
startReading();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// tar extract database and copy to target destination
|
||||||
|
extractDatabase(downloadFile, tempFile);
|
||||||
|
|
||||||
|
// MD5 checksum verification
|
||||||
|
//noinspection deprecation
|
||||||
|
verifyChecksum(Hashing.md5(), tempFile, expectedChecksum);
|
||||||
|
|
||||||
|
Files.copy(tempFile, dataFile, StandardCopyOption.REPLACE_EXISTING);
|
||||||
|
|
||||||
|
//only set this value to false on success otherwise errors could lead to endless download triggers
|
||||||
|
logger.info("Successfully downloaded new GEO IP database to " + dataFile);
|
||||||
|
startReading();
|
||||||
|
} catch (IOException ioEx) {
|
||||||
|
logger.logException("Could not download GeoLiteAPI database", ioEx);
|
||||||
|
} finally {
|
||||||
|
// clean up
|
||||||
|
if (downloadFile != null) {
|
||||||
|
FileUtils.delete(downloadFile.toFile());
|
||||||
|
}
|
||||||
|
if (tempFile != null) {
|
||||||
|
FileUtils.delete(tempFile.toFile());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void startReading() throws IOException {
|
private void startReading() throws IOException {
|
||||||
databaseReader = new Reader(dataFile.toFile(), FileMode.MEMORY, new CHMCache());
|
databaseReader = new DatabaseReader.Builder(dataFile.toFile())
|
||||||
|
.withCache(new CHMCache())
|
||||||
|
.fileMode(FileMode.MEMORY)
|
||||||
|
.build();
|
||||||
|
logger.info(LICENSE);
|
||||||
|
|
||||||
// clear downloading flag, because we now have working reader instance
|
// clear downloading flag, because we now have working reader instance
|
||||||
downloading = false;
|
downloading = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Downloads the archive to the destination file if it's newer than the locally version.
|
* Downloads the archive to the destination file if it's newer than the local version.
|
||||||
*
|
*
|
||||||
* @param lastModified modification timestamp of the already present file
|
* @param lastModified modification timestamp of the already present file
|
||||||
* @param destination save file
|
* @param destination save file
|
||||||
* @return null if no updates were found, the MD5 hash of the downloaded archive if successful
|
* @return null if no updates were found, the MD5 hash of the downloaded archive if successful
|
||||||
* @throws IOException if failed during downloading and writing to destination file
|
* @throws IOException if failed during downloading and writing to destination file
|
||||||
*/
|
*/
|
||||||
|
private String downloadDatabaseArchive(Instant lastModified, Path destination) throws IOException {
|
||||||
|
String clientId = settings.getProperty(ProtectionSettings.MAXMIND_API_CLIENT_ID);
|
||||||
|
String licenseKey = settings.getProperty(ProtectionSettings.MAXMIND_API_LICENSE_KEY);
|
||||||
|
if (clientId.isEmpty() || licenseKey.isEmpty()) {
|
||||||
|
logger.warning("No MaxMind credentials found in the configuration file!"
|
||||||
|
+ " GeoIp protections will be disabled.");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
HttpURLConnection connection = (HttpURLConnection) new URL(ARCHIVE_URL).openConnection();
|
||||||
|
String basicAuth = "Basic " + new String(Base64.getEncoder().encode((clientId + ":" + licenseKey).getBytes()));
|
||||||
|
connection.setRequestProperty("Authorization", basicAuth);
|
||||||
|
|
||||||
|
if (lastModified != null) {
|
||||||
|
// Only download if we actually need a newer version - this field is specified in GMT zone
|
||||||
|
ZonedDateTime zonedTime = lastModified.atZone(ZoneId.of("GMT"));
|
||||||
|
String timeFormat = DateTimeFormatter.RFC_1123_DATE_TIME.format(zonedTime);
|
||||||
|
connection.addRequestProperty("If-Modified-Since", timeFormat);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (connection.getResponseCode() == HttpURLConnection.HTTP_NOT_MODIFIED) {
|
||||||
|
//we already have the newest version
|
||||||
|
connection.getInputStream().close();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
String hash = connection.getHeaderField("X-Database-MD5");
|
||||||
|
String rawModifiedDate = connection.getHeaderField("Last-Modified");
|
||||||
|
Instant modifiedDate = Instant.from(DateTimeFormatter.RFC_1123_DATE_TIME.parse(rawModifiedDate));
|
||||||
|
Files.copy(connection.getInputStream(), destination, StandardCopyOption.REPLACE_EXISTING);
|
||||||
|
Files.setLastModifiedTime(destination, FileTime.from(modifiedDate));
|
||||||
|
return hash;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Downloads the archive to the destination file if it's newer than the locally version.
|
* Downloads the archive to the destination file if it's newer than the local version.
|
||||||
*
|
*
|
||||||
* @param destination save file
|
* @param destination save file
|
||||||
* @return null if no updates were found, the MD5 hash of the downloaded archive if successful
|
* @return null if no updates were found, the MD5 hash of the downloaded archive if successful
|
||||||
* @throws IOException if failed during downloading and writing to destination file
|
* @throws IOException if failed during downloading and writing to destination file
|
||||||
*/
|
*/
|
||||||
|
private String downloadDatabaseArchive(Path destination) throws IOException {
|
||||||
|
Instant lastModified = null;
|
||||||
|
if (Files.exists(dataFile)) {
|
||||||
|
lastModified = Files.getLastModifiedTime(dataFile).toInstant();
|
||||||
|
}
|
||||||
|
|
||||||
|
return downloadDatabaseArchive(lastModified, destination);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Verify if the expected checksum is equal to the checksum of the given file.
|
* Verify if the expected checksum is equal to the checksum of the given file.
|
||||||
@@ -137,6 +253,14 @@ public class GeoIpService {
|
|||||||
* @param expectedChecksum the expected checksum
|
* @param expectedChecksum the expected checksum
|
||||||
* @throws IOException on I/O error reading the file or the checksum verification failed
|
* @throws IOException on I/O error reading the file or the checksum verification failed
|
||||||
*/
|
*/
|
||||||
|
private void verifyChecksum(HashFunction function, Path file, String expectedChecksum) throws IOException {
|
||||||
|
HashCode actualHash = function.hashBytes(Files.readAllBytes(file));
|
||||||
|
HashCode expectedHash = HashCode.fromString(expectedChecksum);
|
||||||
|
if (!Objects.equals(actualHash, expectedHash)) {
|
||||||
|
throw new IOException("GEO IP Checksum verification failed. "
|
||||||
|
+ "Expected: " + expectedChecksum + "Actual:" + actualHash);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Extract the database from gzipped data. Existing outputFile will be replaced if it already exists.
|
* Extract the database from gzipped data. Existing outputFile will be replaced if it already exists.
|
||||||
@@ -145,6 +269,18 @@ public class GeoIpService {
|
|||||||
* @param outputFile destination file for the database
|
* @param outputFile destination file for the database
|
||||||
* @throws IOException on I/O error reading the archive, or writing the output
|
* @throws IOException on I/O error reading the archive, or writing the output
|
||||||
*/
|
*/
|
||||||
|
private void extractDatabase(Path inputFile, Path outputFile) throws IOException {
|
||||||
|
// .gz -> gzipped file
|
||||||
|
try (BufferedInputStream in = new BufferedInputStream(Files.newInputStream(inputFile));
|
||||||
|
GZIPInputStream gzipIn = new GZIPInputStream(in)) {
|
||||||
|
|
||||||
|
// found the database file and copy file
|
||||||
|
Files.copy(gzipIn, outputFile, StandardCopyOption.REPLACE_EXISTING);
|
||||||
|
|
||||||
|
// update the last modification date to be same as in the archive
|
||||||
|
Files.setLastModifiedTime(outputFile, Files.getLastModifiedTime(inputFile));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the country code of the given IP address.
|
* Get the country code of the given IP address.
|
||||||
@@ -194,11 +330,11 @@ public class GeoIpService {
|
|||||||
InetAddress address = InetAddress.getByName(ip);
|
InetAddress address = InetAddress.getByName(ip);
|
||||||
|
|
||||||
// Reader.getCountry() can be null for unknown addresses
|
// Reader.getCountry() can be null for unknown addresses
|
||||||
return Optional.ofNullable(databaseReader.getCountry(address)).map(CountryResponse::getCountry);
|
return Optional.ofNullable(databaseReader.country(address)).map(AbstractCountryResponse::getCountry);
|
||||||
} catch (UnknownHostException e) {
|
} catch (UnknownHostException e) {
|
||||||
// Ignore invalid ip addresses
|
// Ignore invalid ip addresses
|
||||||
// Legacy GEO IP Database returned a unknown country object with Country-Code: '--' and Country-Name: 'N/A'
|
// Legacy GEO IP Database returned an unknown country object with Country-Code: '--' and Country-Name: 'N/A'
|
||||||
} catch (IOException ioEx) {
|
} catch (GeoIp2Exception | IOException ioEx) {
|
||||||
logger.logException("Cannot lookup country for " + ip + " at GEO IP database", ioEx);
|
logger.logException("Cannot lookup country for " + ip + " at GEO IP database", ioEx);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,10 +4,10 @@ import fr.xephi.authme.ConsoleLogger;
|
|||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
import fr.xephi.authme.initialization.HasCleanup;
|
import fr.xephi.authme.initialization.HasCleanup;
|
||||||
import fr.xephi.authme.initialization.Reloadable;
|
import fr.xephi.authme.initialization.Reloadable;
|
||||||
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
import fr.xephi.authme.mail.EmailService;
|
import fr.xephi.authme.mail.EmailService;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.message.Messages;
|
import fr.xephi.authme.message.Messages;
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
|
||||||
import fr.xephi.authme.security.PasswordSecurity;
|
import fr.xephi.authme.security.PasswordSecurity;
|
||||||
import fr.xephi.authme.security.crypts.HashedPassword;
|
import fr.xephi.authme.security.crypts.HashedPassword;
|
||||||
import fr.xephi.authme.settings.properties.SecuritySettings;
|
import fr.xephi.authme.settings.properties.SecuritySettings;
|
||||||
@@ -20,8 +20,6 @@ import org.bukkit.entity.Player;
|
|||||||
|
|
||||||
import javax.annotation.PostConstruct;
|
import javax.annotation.PostConstruct;
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
import java.text.SimpleDateFormat;
|
|
||||||
import java.util.Date;
|
|
||||||
import java.util.Locale;
|
import java.util.Locale;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
@@ -74,10 +72,9 @@ public class PasswordRecoveryService implements Reloadable, HasCleanup {
|
|||||||
if (!checkEmailCooldown(player)) {
|
if (!checkEmailCooldown(player)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy'年'MM'月'dd'日' HH:mm:ss");
|
|
||||||
Date date = new Date(System.currentTimeMillis());
|
|
||||||
String recoveryCode = recoveryCodeService.generateCode(player.getName());
|
String recoveryCode = recoveryCodeService.generateCode(player.getName());
|
||||||
boolean couldSendMail = emailService.sendRecoveryCode(player.getName(), email, recoveryCode, dateFormat.format(date));
|
boolean couldSendMail = emailService.sendRecoveryCode(player.getName(), email, recoveryCode);
|
||||||
if (couldSendMail) {
|
if (couldSendMail) {
|
||||||
commonService.send(player, MessageKey.RECOVERY_CODE_SENT);
|
commonService.send(player, MessageKey.RECOVERY_CODE_SENT);
|
||||||
emailCooldown.add(player.getName().toLowerCase(Locale.ROOT));
|
emailCooldown.add(player.getName().toLowerCase(Locale.ROOT));
|
||||||
@@ -97,8 +94,6 @@ public class PasswordRecoveryService implements Reloadable, HasCleanup {
|
|||||||
if (!checkEmailCooldown(player)) {
|
if (!checkEmailCooldown(player)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy'年'MM'月'dd'日' HH:mm:ss");
|
|
||||||
Date date = new Date(System.currentTimeMillis());
|
|
||||||
|
|
||||||
String name = player.getName();
|
String name = player.getName();
|
||||||
String thePass = RandomStringUtils.generate(commonService.getProperty(RECOVERY_PASSWORD_LENGTH));
|
String thePass = RandomStringUtils.generate(commonService.getProperty(RECOVERY_PASSWORD_LENGTH));
|
||||||
@@ -107,7 +102,7 @@ public class PasswordRecoveryService implements Reloadable, HasCleanup {
|
|||||||
logger.info("Generating new password for '" + name + "'");
|
logger.info("Generating new password for '" + name + "'");
|
||||||
|
|
||||||
dataSource.updatePassword(name, hashNew);
|
dataSource.updatePassword(name, hashNew);
|
||||||
boolean couldSendMail = emailService.sendPasswordMail(name, email, thePass, dateFormat.format(date));
|
boolean couldSendMail = emailService.sendPasswordMail(name, email, thePass);
|
||||||
if (couldSendMail) {
|
if (couldSendMail) {
|
||||||
commonService.send(player, MessageKey.RECOVERY_EMAIL_SENT_MESSAGE);
|
commonService.send(player, MessageKey.RECOVERY_EMAIL_SENT_MESSAGE);
|
||||||
emailCooldown.add(player.getName().toLowerCase(Locale.ROOT));
|
emailCooldown.add(player.getName().toLowerCase(Locale.ROOT));
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ import fr.xephi.authme.data.auth.PlayerAuth;
|
|||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
import fr.xephi.authme.events.RestoreSessionEvent;
|
import fr.xephi.authme.events.RestoreSessionEvent;
|
||||||
import fr.xephi.authme.initialization.Reloadable;
|
import fr.xephi.authme.initialization.Reloadable;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.settings.properties.PluginSettings;
|
import fr.xephi.authme.settings.properties.PluginSettings;
|
||||||
import fr.xephi.authme.util.PlayerUtils;
|
import fr.xephi.authme.util.PlayerUtils;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|||||||
@@ -140,7 +140,7 @@ public class TeleportationService implements Reloadable {
|
|||||||
logger.debug("Teleporting `{0}` to spawn because of 'force-spawn after login'", player.getName());
|
logger.debug("Teleporting `{0}` to spawn because of 'force-spawn after login'", player.getName());
|
||||||
teleportToSpawn(player, true);
|
teleportToSpawn(player, true);
|
||||||
} else if (settings.getProperty(TELEPORT_UNAUTHED_TO_SPAWN)) {
|
} else if (settings.getProperty(TELEPORT_UNAUTHED_TO_SPAWN)) {
|
||||||
if (settings.getProperty(RestrictionSettings.SAVE_QUIT_LOCATION) && auth.getQuitLocY() != 0) {
|
if (settings.getProperty(RestrictionSettings.SAVE_QUIT_LOCATION)) {
|
||||||
Location location = buildLocationFromAuth(player, auth);
|
Location location = buildLocationFromAuth(player, auth);
|
||||||
logger.debug("Teleporting `{0}` after login, based on the player auth", player.getName());
|
logger.debug("Teleporting `{0}` after login, based on the player auth", player.getName());
|
||||||
teleportBackFromSpawn(player, location);
|
teleportBackFromSpawn(player, location);
|
||||||
|
|||||||
@@ -7,26 +7,21 @@ import com.google.common.collect.Multimap;
|
|||||||
import fr.xephi.authme.ConsoleLogger;
|
import fr.xephi.authme.ConsoleLogger;
|
||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
import fr.xephi.authme.initialization.Reloadable;
|
import fr.xephi.authme.initialization.Reloadable;
|
||||||
import fr.xephi.authme.message.MessageKey;
|
|
||||||
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
|
import fr.xephi.authme.message.MessageKey;
|
||||||
import fr.xephi.authme.permission.PermissionsManager;
|
import fr.xephi.authme.permission.PermissionsManager;
|
||||||
import fr.xephi.authme.permission.PlayerStatePermission;
|
import fr.xephi.authme.permission.PlayerStatePermission;
|
||||||
import fr.xephi.authme.security.HashUtils;
|
|
||||||
import fr.xephi.authme.settings.Settings;
|
import fr.xephi.authme.settings.Settings;
|
||||||
import fr.xephi.authme.settings.properties.EmailSettings;
|
import fr.xephi.authme.settings.properties.EmailSettings;
|
||||||
import fr.xephi.authme.settings.properties.ProtectionSettings;
|
import fr.xephi.authme.settings.properties.ProtectionSettings;
|
||||||
import fr.xephi.authme.settings.properties.RestrictionSettings;
|
import fr.xephi.authme.settings.properties.RestrictionSettings;
|
||||||
import fr.xephi.authme.settings.properties.SecuritySettings;
|
import fr.xephi.authme.settings.properties.SecuritySettings;
|
||||||
import fr.xephi.authme.util.PlayerUtils;
|
import fr.xephi.authme.util.PlayerUtils;
|
||||||
|
import fr.xephi.authme.util.StringUtils;
|
||||||
import fr.xephi.authme.util.Utils;
|
import fr.xephi.authme.util.Utils;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
import java.io.DataInputStream;
|
|
||||||
import java.net.HttpURLConnection;
|
|
||||||
import java.net.ProtocolException;
|
|
||||||
import java.net.URL;
|
|
||||||
import java.util.Arrays;
|
|
||||||
import javax.annotation.PostConstruct;
|
import javax.annotation.PostConstruct;
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
import java.net.InetSocketAddress;
|
import java.net.InetSocketAddress;
|
||||||
@@ -34,7 +29,6 @@ import java.util.Collection;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Locale;
|
import java.util.Locale;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.concurrent.TimeoutException;
|
|
||||||
import java.util.regex.Pattern;
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
import static fr.xephi.authme.util.StringUtils.isInsideString;
|
import static fr.xephi.authme.util.StringUtils.isInsideString;
|
||||||
@@ -56,7 +50,6 @@ public class ValidationService implements Reloadable {
|
|||||||
private GeoIpService geoIpService;
|
private GeoIpService geoIpService;
|
||||||
|
|
||||||
private Pattern passwordRegex;
|
private Pattern passwordRegex;
|
||||||
private Pattern emailRegex;
|
|
||||||
private Multimap<String, String> restrictedNames;
|
private Multimap<String, String> restrictedNames;
|
||||||
|
|
||||||
ValidationService() {
|
ValidationService() {
|
||||||
@@ -69,8 +62,6 @@ public class ValidationService implements Reloadable {
|
|||||||
restrictedNames = settings.getProperty(RestrictionSettings.ENABLE_RESTRICTED_USERS)
|
restrictedNames = settings.getProperty(RestrictionSettings.ENABLE_RESTRICTED_USERS)
|
||||||
? loadNameRestrictions(settings.getProperty(RestrictionSettings.RESTRICTED_USERS))
|
? loadNameRestrictions(settings.getProperty(RestrictionSettings.RESTRICTED_USERS))
|
||||||
: HashMultimap.create();
|
: HashMultimap.create();
|
||||||
|
|
||||||
emailRegex = Utils.safePatternCompile(settings.getProperty(RestrictionSettings.ALLOWED_EMAIL_REGEX));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -91,15 +82,7 @@ public class ValidationService implements Reloadable {
|
|||||||
return new ValidationResult(MessageKey.INVALID_PASSWORD_LENGTH);
|
return new ValidationResult(MessageKey.INVALID_PASSWORD_LENGTH);
|
||||||
} else if (settings.getProperty(SecuritySettings.UNSAFE_PASSWORDS).contains(passLow)) {
|
} else if (settings.getProperty(SecuritySettings.UNSAFE_PASSWORDS).contains(passLow)) {
|
||||||
return new ValidationResult(MessageKey.PASSWORD_UNSAFE_ERROR);
|
return new ValidationResult(MessageKey.PASSWORD_UNSAFE_ERROR);
|
||||||
} else if (settings.getProperty(SecuritySettings.HAVE_I_BEEN_PWNED_CHECK)) {
|
|
||||||
HaveIBeenPwnedResults results = validatePasswordHaveIBeenPwned(password);
|
|
||||||
if (results != null
|
|
||||||
&& results.isPwned()
|
|
||||||
&& results.getPwnCount() > settings.getProperty(SecuritySettings.HAVE_I_BEEN_PWNED_LIMIT)) {
|
|
||||||
return new ValidationResult(MessageKey.PASSWORD_PWNED_ERROR, String.valueOf(results.getPwnCount()));
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return new ValidationResult();
|
return new ValidationResult();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -110,7 +93,12 @@ public class ValidationService implements Reloadable {
|
|||||||
* @return true if the email is valid, false otherwise
|
* @return true if the email is valid, false otherwise
|
||||||
*/
|
*/
|
||||||
public boolean validateEmail(String email) {
|
public boolean validateEmail(String email) {
|
||||||
return emailRegex.matcher(email).matches();
|
if (Utils.isEmailEmpty(email) || !StringUtils.isInsideString('@', email)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
final String emailDomain = email.split("@")[1];
|
||||||
|
return validateWhitelistAndBlacklist(
|
||||||
|
emailDomain, EmailSettings.DOMAIN_WHITELIST, EmailSettings.DOMAIN_BLACKLIST);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -240,47 +228,6 @@ public class ValidationService implements Reloadable {
|
|||||||
}
|
}
|
||||||
return restrictions;
|
return restrictions;
|
||||||
}
|
}
|
||||||
/**
|
|
||||||
* Check haveibeenpwned.com for the given password.
|
|
||||||
*
|
|
||||||
* @param password password to check for
|
|
||||||
* @return Results of the check
|
|
||||||
*/
|
|
||||||
public HaveIBeenPwnedResults validatePasswordHaveIBeenPwned(String password) {
|
|
||||||
String hash = HashUtils.sha1(password);
|
|
||||||
|
|
||||||
String hashPrefix = hash.substring(0, 5);
|
|
||||||
|
|
||||||
try {
|
|
||||||
String url = String.format("https://api.pwnedpasswords.com/range/%s", hashPrefix);
|
|
||||||
HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection();
|
|
||||||
connection.setRequestMethod("GET");
|
|
||||||
connection.setRequestProperty("User-Agent", "AuthMeReloaded");
|
|
||||||
connection.setConnectTimeout(5000);
|
|
||||||
connection.setReadTimeout(5000);
|
|
||||||
connection.setDoInput(true);
|
|
||||||
StringBuilder outStr = new StringBuilder();
|
|
||||||
|
|
||||||
try (DataInputStream input = new DataInputStream(connection.getInputStream())) {
|
|
||||||
for (int c = input.read(); c != -1; c = input.read())
|
|
||||||
outStr.append((char) c);
|
|
||||||
}
|
|
||||||
|
|
||||||
String[] hashes = outStr.toString().split("\n");
|
|
||||||
for (String hashSuffix : hashes) {
|
|
||||||
String[] hashSuffixParts = hashSuffix.trim().split(":");
|
|
||||||
if (hashSuffixParts[0].equalsIgnoreCase(hash.substring(5))) {
|
|
||||||
return new HaveIBeenPwnedResults(true, Integer.parseInt(hashSuffixParts[1]));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return new HaveIBeenPwnedResults(false, 0);
|
|
||||||
} catch (java.io.IOException e) {
|
|
||||||
logger.warning("验证密码时出现错误,这可能是由于网络问题,如果无法解决,请关闭HaveIBeenPwned检查");
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public static final class ValidationResult {
|
public static final class ValidationResult {
|
||||||
private final MessageKey messageKey;
|
private final MessageKey messageKey;
|
||||||
@@ -322,22 +269,4 @@ public class ValidationService implements Reloadable {
|
|||||||
return args;
|
return args;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static final class HaveIBeenPwnedResults {
|
|
||||||
private final boolean isPwned;
|
|
||||||
private final int pwnCount;
|
|
||||||
|
|
||||||
public HaveIBeenPwnedResults(boolean isPwned, int pwnCount) {
|
|
||||||
this.isPwned = isPwned;
|
|
||||||
this.pwnCount = pwnCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isPwned() {
|
|
||||||
return isPwned;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getPwnCount() {
|
|
||||||
return pwnCount;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,9 +24,6 @@ public class Settings extends SettingsManagerImpl {
|
|||||||
private String passwordEmailMessage;
|
private String passwordEmailMessage;
|
||||||
private String verificationEmailMessage;
|
private String verificationEmailMessage;
|
||||||
private String recoveryCodeEmailMessage;
|
private String recoveryCodeEmailMessage;
|
||||||
private String shutdownEmailMessage;
|
|
||||||
private String newPasswordEmailMessage;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
@@ -70,19 +67,10 @@ public class Settings extends SettingsManagerImpl {
|
|||||||
return recoveryCodeEmailMessage;
|
return recoveryCodeEmailMessage;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getShutdownEmailMessage() {return shutdownEmailMessage;}
|
|
||||||
|
|
||||||
public String getNewPasswordEmailMessage() {
|
|
||||||
return newPasswordEmailMessage;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void loadSettingsFromFiles() {
|
private void loadSettingsFromFiles() {
|
||||||
newPasswordEmailMessage = readFile("new_email.html");
|
|
||||||
passwordEmailMessage = readFile("email.html");
|
passwordEmailMessage = readFile("email.html");
|
||||||
verificationEmailMessage = readFile("verification_code_email.html");
|
verificationEmailMessage = readFile("verification_code_email.html");
|
||||||
recoveryCodeEmailMessage = readFile("recovery_code_email.html");
|
recoveryCodeEmailMessage = readFile("recovery_code_email.html");
|
||||||
shutdownEmailMessage = readFile("shutdown.html");
|
|
||||||
String country = readFile("GeoLite2-Country.mmdb");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -0,0 +1,138 @@
|
|||||||
|
package fr.xephi.authme.settings;
|
||||||
|
|
||||||
|
import fr.xephi.authme.ConsoleLogger;
|
||||||
|
import fr.xephi.authme.data.auth.PlayerCache;
|
||||||
|
import fr.xephi.authme.initialization.DataFolder;
|
||||||
|
import fr.xephi.authme.initialization.Reloadable;
|
||||||
|
import fr.xephi.authme.output.ConsoleLoggerFactory;
|
||||||
|
import fr.xephi.authme.service.BukkitService;
|
||||||
|
import fr.xephi.authme.service.CommonService;
|
||||||
|
import fr.xephi.authme.service.GeoIpService;
|
||||||
|
import fr.xephi.authme.settings.properties.PluginSettings;
|
||||||
|
import fr.xephi.authme.settings.properties.RegistrationSettings;
|
||||||
|
import fr.xephi.authme.util.PlayerUtils;
|
||||||
|
import fr.xephi.authme.util.lazytags.Tag;
|
||||||
|
import fr.xephi.authme.util.lazytags.TagReplacer;
|
||||||
|
import org.bukkit.ChatColor;
|
||||||
|
import org.bukkit.Server;
|
||||||
|
import org.bukkit.entity.HumanEntity;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
|
import javax.annotation.PostConstruct;
|
||||||
|
import javax.inject.Inject;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.nio.charset.StandardCharsets;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import static fr.xephi.authme.util.FileUtils.copyFileFromResource;
|
||||||
|
import static fr.xephi.authme.util.lazytags.TagBuilder.createTag;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Configuration for the welcome message (welcome.txt).
|
||||||
|
*/
|
||||||
|
public class WelcomeMessageConfiguration implements Reloadable {
|
||||||
|
|
||||||
|
private final ConsoleLogger logger = ConsoleLoggerFactory.get(WelcomeMessageConfiguration.class);
|
||||||
|
|
||||||
|
@DataFolder
|
||||||
|
@Inject
|
||||||
|
private File pluginFolder;
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
private Server server;
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
private GeoIpService geoIpService;
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
private BukkitService bukkitService;
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
private PlayerCache playerCache;
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
private CommonService service;
|
||||||
|
|
||||||
|
/** List of all supported tags for the welcome message. */
|
||||||
|
private final List<Tag<Player>> availableTags = Arrays.asList(
|
||||||
|
createTag("&", () -> String.valueOf(ChatColor.COLOR_CHAR)),
|
||||||
|
createTag("{PLAYER}", HumanEntity::getName),
|
||||||
|
createTag("{DISPLAYNAME}", Player::getDisplayName),
|
||||||
|
createTag("{DISPLAYNAMENOCOLOR}", Player::getDisplayName),
|
||||||
|
createTag("{ONLINE}", () -> Integer.toString(bukkitService.getOnlinePlayers().size())),
|
||||||
|
createTag("{MAXPLAYERS}", () -> Integer.toString(server.getMaxPlayers())),
|
||||||
|
createTag("{IP}", PlayerUtils::getPlayerIp),
|
||||||
|
createTag("{LOGINS}", () -> Integer.toString(playerCache.getLogged())),
|
||||||
|
createTag("{WORLD}", pl -> pl.getWorld().getName()),
|
||||||
|
createTag("{SERVER}", () -> service.getProperty(PluginSettings.SERVER_NAME)),
|
||||||
|
createTag("{VERSION}", () -> server.getBukkitVersion()),
|
||||||
|
createTag("{COUNTRY}", pl -> geoIpService.getCountryName(PlayerUtils.getPlayerIp(pl))));
|
||||||
|
|
||||||
|
private TagReplacer<Player> messageSupplier;
|
||||||
|
|
||||||
|
@PostConstruct
|
||||||
|
@Override
|
||||||
|
public void reload() {
|
||||||
|
if (!(service.getProperty(RegistrationSettings.USE_WELCOME_MESSAGE))) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
List<String> welcomeMessage = new ArrayList<>();
|
||||||
|
for (String line : readWelcomeFile()) {
|
||||||
|
welcomeMessage.add(ChatColor.translateAlternateColorCodes('&', line));
|
||||||
|
}
|
||||||
|
messageSupplier = TagReplacer.newReplacer(availableTags, welcomeMessage);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the welcome message for the given player.
|
||||||
|
*
|
||||||
|
* @param player the player for whom the welcome message should be prepared
|
||||||
|
* @return the welcome message
|
||||||
|
*/
|
||||||
|
public List<String> getWelcomeMessage(Player player) {
|
||||||
|
return messageSupplier.getAdaptedMessages(player);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sends the welcome message accordingly to the configuration
|
||||||
|
*
|
||||||
|
* @param player the player for whom the welcome message should be prepared
|
||||||
|
*/
|
||||||
|
public void sendWelcomeMessage(Player player) {
|
||||||
|
if (service.getProperty(RegistrationSettings.USE_WELCOME_MESSAGE)) {
|
||||||
|
List<String> welcomeMessage = getWelcomeMessage(player);
|
||||||
|
if (service.getProperty(RegistrationSettings.BROADCAST_WELCOME_MESSAGE)) {
|
||||||
|
welcomeMessage.forEach(bukkitService::broadcastMessage);
|
||||||
|
} else {
|
||||||
|
welcomeMessage.forEach(player::sendMessage);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the lines of the welcome message file
|
||||||
|
*/
|
||||||
|
private List<String> readWelcomeFile() {
|
||||||
|
if (!(service.getProperty(RegistrationSettings.USE_WELCOME_MESSAGE))) {
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
|
File welcomeFile = new File(pluginFolder, "welcome.txt");
|
||||||
|
if (copyFileFromResource(welcomeFile, "welcome.txt")) {
|
||||||
|
try {
|
||||||
|
return Files.readAllLines(welcomeFile.toPath(), StandardCharsets.UTF_8);
|
||||||
|
} catch (IOException e) {
|
||||||
|
logger.logException("Failed to read welcome.txt file:", e);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
logger.warning("Failed to copy welcome.txt from JAR");
|
||||||
|
}
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -4,13 +4,16 @@ import ch.jalu.configme.Comment;
|
|||||||
import ch.jalu.configme.SettingsHolder;
|
import ch.jalu.configme.SettingsHolder;
|
||||||
import ch.jalu.configme.properties.Property;
|
import ch.jalu.configme.properties.Property;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import static ch.jalu.configme.properties.PropertyInitializer.newListProperty;
|
||||||
import static ch.jalu.configme.properties.PropertyInitializer.newProperty;
|
import static ch.jalu.configme.properties.PropertyInitializer.newProperty;
|
||||||
|
|
||||||
public final class EmailSettings implements SettingsHolder {
|
public final class EmailSettings implements SettingsHolder {
|
||||||
|
|
||||||
@Comment("Email SMTP server host")
|
@Comment("Email SMTP server host")
|
||||||
public static final Property<String> SMTP_HOST =
|
public static final Property<String> SMTP_HOST =
|
||||||
newProperty("Email.mailSMTP", "smtp.163.com");
|
newProperty("Email.mailSMTP", "smtp.gmail.com");
|
||||||
|
|
||||||
@Comment("Email SMTP server port")
|
@Comment("Email SMTP server port")
|
||||||
public static final Property<Integer> SMTP_PORT =
|
public static final Property<Integer> SMTP_PORT =
|
||||||
@@ -38,7 +41,7 @@ public final class EmailSettings implements SettingsHolder {
|
|||||||
|
|
||||||
@Comment("Recovery password length")
|
@Comment("Recovery password length")
|
||||||
public static final Property<Integer> RECOVERY_PASSWORD_LENGTH =
|
public static final Property<Integer> RECOVERY_PASSWORD_LENGTH =
|
||||||
newProperty("Email.RecoveryPasswordLength", 12);
|
newProperty("Email.RecoveryPasswordLength", 8);
|
||||||
|
|
||||||
@Comment("Mail Subject")
|
@Comment("Mail Subject")
|
||||||
public static final Property<String> RECOVERY_MAIL_SUBJECT =
|
public static final Property<String> RECOVERY_MAIL_SUBJECT =
|
||||||
@@ -56,6 +59,14 @@ public final class EmailSettings implements SettingsHolder {
|
|||||||
public static final Property<Integer> DELAY_RECALL =
|
public static final Property<Integer> DELAY_RECALL =
|
||||||
newProperty("Email.delayRecall", 5);
|
newProperty("Email.delayRecall", 5);
|
||||||
|
|
||||||
|
@Comment("Blacklist these domains for emails")
|
||||||
|
public static final Property<List<String>> DOMAIN_BLACKLIST =
|
||||||
|
newListProperty("Email.emailBlacklisted", "10minutemail.com");
|
||||||
|
|
||||||
|
@Comment("Whitelist ONLY these domains for emails")
|
||||||
|
public static final Property<List<String>> DOMAIN_WHITELIST =
|
||||||
|
newListProperty("Email.emailWhitelisted");
|
||||||
|
|
||||||
@Comment("Send the new password drawn in an image?")
|
@Comment("Send the new password drawn in an image?")
|
||||||
public static final Property<Boolean> PASSWORD_AS_IMAGE =
|
public static final Property<Boolean> PASSWORD_AS_IMAGE =
|
||||||
newProperty("Email.generateImage", false);
|
newProperty("Email.generateImage", false);
|
||||||
@@ -63,12 +74,6 @@ public final class EmailSettings implements SettingsHolder {
|
|||||||
@Comment("The OAuth2 token")
|
@Comment("The OAuth2 token")
|
||||||
public static final Property<String> OAUTH2_TOKEN =
|
public static final Property<String> OAUTH2_TOKEN =
|
||||||
newProperty("Email.emailOauth2Token", "");
|
newProperty("Email.emailOauth2Token", "");
|
||||||
@Comment("Email notifications when the server shuts down")
|
|
||||||
public static final Property<Boolean> SHUTDOWN_MAIL =
|
|
||||||
newProperty("Email.shutDownEmail", false);
|
|
||||||
@Comment("Email notification address when the server is shut down")
|
|
||||||
public static final Property<String> SHUTDOWN_MAIL_ADDRESS =
|
|
||||||
newProperty("Email.shutDownEmailAddress", "your@mail.com");
|
|
||||||
|
|
||||||
private EmailSettings() {
|
private EmailSettings() {
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,11 +19,6 @@ public final class HooksSettings implements SettingsHolder {
|
|||||||
public static final Property<Boolean> BUNGEECORD =
|
public static final Property<Boolean> BUNGEECORD =
|
||||||
newProperty("Hooks.bungeecord", false);
|
newProperty("Hooks.bungeecord", false);
|
||||||
|
|
||||||
@Comment("Allow FloodGatePlayer Join Without checkIsValidName()")
|
|
||||||
public static final Property<Boolean> HOOK_FLOODGATE_PLAYER =
|
|
||||||
newProperty("Hooks.floodgate", false);
|
|
||||||
|
|
||||||
|
|
||||||
@Comment("Send player to this BungeeCord server after register/login")
|
@Comment("Send player to this BungeeCord server after register/login")
|
||||||
public static final Property<String> BUNGEECORD_SERVER =
|
public static final Property<String> BUNGEECORD_SERVER =
|
||||||
newProperty("Hooks.sendPlayerTo", "");
|
newProperty("Hooks.sendPlayerTo", "");
|
||||||
|
|||||||
@@ -8,13 +8,6 @@ import fr.xephi.authme.output.LogLevel;
|
|||||||
import static ch.jalu.configme.properties.PropertyInitializer.newProperty;
|
import static ch.jalu.configme.properties.PropertyInitializer.newProperty;
|
||||||
|
|
||||||
public final class PluginSettings implements SettingsHolder {
|
public final class PluginSettings implements SettingsHolder {
|
||||||
@Comment({
|
|
||||||
"Should we execute /help command when unregistered players press Shift+F?",
|
|
||||||
"This keeps compatibility with some menu plugins",
|
|
||||||
"If you are using TrMenu, don't enable this because TrMenu already implemented this."
|
|
||||||
})
|
|
||||||
public static final Property<Boolean> MENU_UNREGISTER_COMPATIBILITY =
|
|
||||||
newProperty("3rdPartyFeature.compatibility.menuPlugins", true);
|
|
||||||
|
|
||||||
@Comment({
|
@Comment({
|
||||||
"Do you want to enable the session feature?",
|
"Do you want to enable the session feature?",
|
||||||
@@ -25,21 +18,21 @@ public final class PluginSettings implements SettingsHolder {
|
|||||||
"expired, he will not need to authenticate."
|
"expired, he will not need to authenticate."
|
||||||
})
|
})
|
||||||
public static final Property<Boolean> SESSIONS_ENABLED =
|
public static final Property<Boolean> SESSIONS_ENABLED =
|
||||||
newProperty("settings.sessions.enabled", true);
|
newProperty("settings.sessions.enabled", false);
|
||||||
|
|
||||||
@Comment({
|
@Comment({
|
||||||
"After how many minutes should a session expire?",
|
"After how many minutes should a session expire?",
|
||||||
"A player's session ends after the timeout or if his IP has changed"
|
"A player's session ends after the timeout or if his IP has changed"
|
||||||
})
|
})
|
||||||
public static final Property<Integer> SESSIONS_TIMEOUT =
|
public static final Property<Integer> SESSIONS_TIMEOUT =
|
||||||
newProperty("settings.sessions.timeout", 43200);
|
newProperty("settings.sessions.timeout", 10);
|
||||||
|
|
||||||
@Comment({
|
@Comment({
|
||||||
"Message language, available languages:",
|
"Message language, available languages:",
|
||||||
"https://github.com/AuthMe/AuthMeReloaded/blob/master/docs/translations.md"
|
"https://github.com/AuthMe/AuthMeReloaded/blob/master/docs/translations.md"
|
||||||
})
|
})
|
||||||
public static final Property<String> MESSAGES_LANGUAGE =
|
public static final Property<String> MESSAGES_LANGUAGE =
|
||||||
newProperty("settings.messagesLanguage", "zhcn");
|
newProperty("settings.messagesLanguage", "en");
|
||||||
|
|
||||||
@Comment({
|
@Comment({
|
||||||
"Enables switching a player to defined permission groups before they log in.",
|
"Enables switching a player to defined permission groups before they log in.",
|
||||||
|
|||||||
@@ -14,19 +14,34 @@ public final class ProtectionSettings implements SettingsHolder {
|
|||||||
|
|
||||||
@Comment("Enable some servers protection (country based login, antibot)")
|
@Comment("Enable some servers protection (country based login, antibot)")
|
||||||
public static final Property<Boolean> ENABLE_PROTECTION =
|
public static final Property<Boolean> ENABLE_PROTECTION =
|
||||||
newProperty("Protection.enableProtection", true);
|
newProperty("Protection.enableProtection", false);
|
||||||
|
|
||||||
@Comment("Apply the protection also to registered usernames")
|
@Comment("Apply the protection also to registered usernames")
|
||||||
public static final Property<Boolean> ENABLE_PROTECTION_REGISTERED =
|
public static final Property<Boolean> ENABLE_PROTECTION_REGISTERED =
|
||||||
newProperty("Protection.enableProtectionRegistered", true);
|
newProperty("Protection.enableProtectionRegistered", true);
|
||||||
|
|
||||||
|
@Comment("Enable GeoIp database")
|
||||||
|
public static final Property<Boolean> ENABLE_GEOIP =
|
||||||
|
newProperty("Protection.geoIpDatabase.enabled", true);
|
||||||
|
|
||||||
|
@Comment({"The MaxMind clientId used to download the GeoIp database,",
|
||||||
|
"get one at https://www.maxmind.com/en/accounts/current/license-key",
|
||||||
|
"The EssentialsX project has a very useful tutorial on how to generate",
|
||||||
|
"the license key: https://github.com/EssentialsX/Wiki/blob/master/GeoIP.md"})
|
||||||
|
public static final Property<String> MAXMIND_API_CLIENT_ID =
|
||||||
|
newProperty("Protection.geoIpDatabase.clientId", "");
|
||||||
|
|
||||||
|
@Comment("The MaxMind licenseKey used to download the GeoIp database.")
|
||||||
|
public static final Property<String> MAXMIND_API_LICENSE_KEY =
|
||||||
|
newProperty("Protection.geoIpDatabase.licenseKey", "");
|
||||||
|
|
||||||
@Comment({
|
@Comment({
|
||||||
"Countries allowed to join the server and register. For country codes, see",
|
"Countries allowed to join the server and register. For country codes, see",
|
||||||
"https://dev.maxmind.com/geoip/legacy/codes/iso3166/",
|
"https://dev.maxmind.com/geoip/legacy/codes/iso3166/",
|
||||||
"Use \"LOCALHOST\" for local addresses.",
|
"Use \"LOCALHOST\" for local addresses.",
|
||||||
"PLEASE USE QUOTES!"})
|
"PLEASE USE QUOTES!"})
|
||||||
public static final Property<List<String>> COUNTRIES_WHITELIST =
|
public static final Property<List<String>> COUNTRIES_WHITELIST =
|
||||||
newListProperty("Protection.countries", "CN", "LOCALHOST");
|
newListProperty("Protection.countries", "US", "GB", "LOCALHOST");
|
||||||
|
|
||||||
@Comment({
|
@Comment({
|
||||||
"Countries not allowed to join the server and register",
|
"Countries not allowed to join the server and register",
|
||||||
@@ -58,7 +73,7 @@ public final class ProtectionSettings implements SettingsHolder {
|
|||||||
|
|
||||||
@Comment("Kicks the player that issued a command before the defined time after the join process")
|
@Comment("Kicks the player that issued a command before the defined time after the join process")
|
||||||
public static final Property<Integer> QUICK_COMMANDS_DENIED_BEFORE_MILLISECONDS =
|
public static final Property<Integer> QUICK_COMMANDS_DENIED_BEFORE_MILLISECONDS =
|
||||||
newProperty("Protection.quickCommands.denyCommandsBeforeMilliseconds", 3000);
|
newProperty("Protection.quickCommands.denyCommandsBeforeMilliseconds", 1000);
|
||||||
|
|
||||||
private ProtectionSettings() {
|
private ProtectionSettings() {
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -36,8 +36,7 @@ public final class RegistrationSettings implements SettingsHolder {
|
|||||||
newProperty(RegistrationType.class, "settings.registration.type", RegistrationType.PASSWORD);
|
newProperty(RegistrationType.class, "settings.registration.type", RegistrationType.PASSWORD);
|
||||||
|
|
||||||
@Comment({
|
@Comment({
|
||||||
"Second argument the /register command should take: ",
|
"Second argument the /register command should take: NONE = no 2nd argument",
|
||||||
"NONE = no 2nd argument",
|
|
||||||
"CONFIRMATION = must repeat first argument (pass or email)",
|
"CONFIRMATION = must repeat first argument (pass or email)",
|
||||||
"EMAIL_OPTIONAL = for password register: 2nd argument can be empty or have email address",
|
"EMAIL_OPTIONAL = for password register: 2nd argument can be empty or have email address",
|
||||||
"EMAIL_MANDATORY = for password register: 2nd argument MUST be an email address"
|
"EMAIL_MANDATORY = for password register: 2nd argument MUST be an email address"
|
||||||
@@ -55,9 +54,26 @@ public final class RegistrationSettings implements SettingsHolder {
|
|||||||
@Comment("Does AuthMe need to enforce a /login after a successful registration?")
|
@Comment("Does AuthMe need to enforce a /login after a successful registration?")
|
||||||
public static final Property<Boolean> FORCE_LOGIN_AFTER_REGISTER =
|
public static final Property<Boolean> FORCE_LOGIN_AFTER_REGISTER =
|
||||||
newProperty("settings.registration.forceLoginAfterRegister", false);
|
newProperty("settings.registration.forceLoginAfterRegister", false);
|
||||||
|
|
||||||
|
@Comment({
|
||||||
|
"Enable to display the welcome message (welcome.txt) after a login",
|
||||||
|
"You can use colors in this welcome.txt + some replaced strings:",
|
||||||
|
"{PLAYER}: player name, {ONLINE}: display number of online players,",
|
||||||
|
"{MAXPLAYERS}: display server slots, {IP}: player ip, {LOGINS}: number of players logged,",
|
||||||
|
"{WORLD}: player current world, {SERVER}: server name",
|
||||||
|
"{VERSION}: get current bukkit version, {COUNTRY}: player country"})
|
||||||
|
public static final Property<Boolean> USE_WELCOME_MESSAGE =
|
||||||
|
newProperty("settings.useWelcomeMessage", true);
|
||||||
|
|
||||||
|
@Comment({
|
||||||
|
"Broadcast the welcome message to the server or only to the player?",
|
||||||
|
"set true for server or false for player"})
|
||||||
|
public static final Property<Boolean> BROADCAST_WELCOME_MESSAGE =
|
||||||
|
newProperty("settings.broadcastWelcomeMessage", false);
|
||||||
|
|
||||||
@Comment("Should we delay the join message and display it once the player has logged in?")
|
@Comment("Should we delay the join message and display it once the player has logged in?")
|
||||||
public static final Property<Boolean> DELAY_JOIN_MESSAGE =
|
public static final Property<Boolean> DELAY_JOIN_MESSAGE =
|
||||||
newProperty("settings.delayJoinMessage", true);
|
newProperty("settings.delayJoinMessage", false);
|
||||||
|
|
||||||
@Comment({
|
@Comment({
|
||||||
"The custom join message that will be sent after a successful login,",
|
"The custom join message that will be sent after a successful login,",
|
||||||
@@ -71,15 +87,15 @@ public final class RegistrationSettings implements SettingsHolder {
|
|||||||
|
|
||||||
@Comment("Should we remove the leave messages of unlogged users?")
|
@Comment("Should we remove the leave messages of unlogged users?")
|
||||||
public static final Property<Boolean> REMOVE_UNLOGGED_LEAVE_MESSAGE =
|
public static final Property<Boolean> REMOVE_UNLOGGED_LEAVE_MESSAGE =
|
||||||
newProperty("settings.removeUnloggedLeaveMessage", true);
|
newProperty("settings.removeUnloggedLeaveMessage", false);
|
||||||
|
|
||||||
@Comment("Should we remove join messages altogether?")
|
@Comment("Should we remove join messages altogether?")
|
||||||
public static final Property<Boolean> REMOVE_JOIN_MESSAGE =
|
public static final Property<Boolean> REMOVE_JOIN_MESSAGE =
|
||||||
newProperty("settings.removeJoinMessage", true);
|
newProperty("settings.removeJoinMessage", false);
|
||||||
|
|
||||||
@Comment("Should we remove leave messages altogether?")
|
@Comment("Should we remove leave messages altogether?")
|
||||||
public static final Property<Boolean> REMOVE_LEAVE_MESSAGE =
|
public static final Property<Boolean> REMOVE_LEAVE_MESSAGE =
|
||||||
newProperty("settings.removeLeaveMessage", true);
|
newProperty("settings.removeLeaveMessage", false);
|
||||||
|
|
||||||
@Comment("Do we need to add potion effect Blinding before login/register?")
|
@Comment("Do we need to add potion effect Blinding before login/register?")
|
||||||
public static final Property<Boolean> APPLY_BLIND_EFFECT =
|
public static final Property<Boolean> APPLY_BLIND_EFFECT =
|
||||||
|
|||||||
@@ -4,8 +4,6 @@ import ch.jalu.configme.Comment;
|
|||||||
import ch.jalu.configme.SettingsHolder;
|
import ch.jalu.configme.SettingsHolder;
|
||||||
import ch.jalu.configme.properties.Property;
|
import ch.jalu.configme.properties.Property;
|
||||||
|
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.HashSet;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
@@ -35,7 +33,7 @@ public final class RestrictionSettings implements SettingsHolder {
|
|||||||
"Max number of allowed registrations per IP",
|
"Max number of allowed registrations per IP",
|
||||||
"The value 0 means an unlimited number of registrations!"})
|
"The value 0 means an unlimited number of registrations!"})
|
||||||
public static final Property<Integer> MAX_REGISTRATION_PER_IP =
|
public static final Property<Integer> MAX_REGISTRATION_PER_IP =
|
||||||
newProperty("settings.restrictions.maxRegPerIp", 3);
|
newProperty("settings.restrictions.maxRegPerIp", 1);
|
||||||
|
|
||||||
@Comment("Minimum allowed username length")
|
@Comment("Minimum allowed username length")
|
||||||
public static final Property<Integer> MIN_NICKNAME_LENGTH =
|
public static final Property<Integer> MIN_NICKNAME_LENGTH =
|
||||||
@@ -76,7 +74,7 @@ public final class RestrictionSettings implements SettingsHolder {
|
|||||||
"To activate the restricted user feature you need",
|
"To activate the restricted user feature you need",
|
||||||
"to enable this option and configure the AllowedRestrictedUser field."})
|
"to enable this option and configure the AllowedRestrictedUser field."})
|
||||||
public static final Property<Boolean> ENABLE_RESTRICTED_USERS =
|
public static final Property<Boolean> ENABLE_RESTRICTED_USERS =
|
||||||
newProperty("settings.restrictions.AllowRestrictedUser", true);
|
newProperty("settings.restrictions.AllowRestrictedUser", false);
|
||||||
|
|
||||||
@Comment({
|
@Comment({
|
||||||
"The restricted user feature will kick players listed below",
|
"The restricted user feature will kick players listed below",
|
||||||
@@ -87,12 +85,7 @@ public final class RestrictionSettings implements SettingsHolder {
|
|||||||
" - playername;127.0.0.1",
|
" - playername;127.0.0.1",
|
||||||
" - playername;regex:127\\.0\\.0\\..*"})
|
" - playername;regex:127\\.0\\.0\\..*"})
|
||||||
public static final Property<Set<String>> RESTRICTED_USERS =
|
public static final Property<Set<String>> RESTRICTED_USERS =
|
||||||
newLowercaseStringSetProperty("settings.restrictions.AllowedRestrictedUser",
|
newLowercaseStringSetProperty("settings.restrictions.AllowedRestrictedUser");
|
||||||
"server_land;127.0.0.1","server;127.0.0.1","bukkit;127.0.0.1","purpur;127.0.0.1",
|
|
||||||
"system;127.0.0.1","admin;127.0.0.1","md_5;127.0.0.1","administrator;127.0.0.1","notch;127.0.0.1",
|
|
||||||
"spigot;127.0.0.1","bukkit;127.0.0.1","bukkitcraft;127.0.0.1","paperclip;127.0.0.1","papermc;127.0.0.1",
|
|
||||||
"spigotmc;127.0.0.1","root;127.0.0.1","console;127.0.0.1","purpur;127.0.0.1","authme;127.0.0.1",
|
|
||||||
"owner;127.0.0.1");
|
|
||||||
|
|
||||||
@Comment("Ban unknown IPs trying to log in with a restricted username?")
|
@Comment("Ban unknown IPs trying to log in with a restricted username?")
|
||||||
public static final Property<Boolean> BAN_UNKNOWN_IP =
|
public static final Property<Boolean> BAN_UNKNOWN_IP =
|
||||||
@@ -104,7 +97,7 @@ public final class RestrictionSettings implements SettingsHolder {
|
|||||||
|
|
||||||
@Comment("Should players be kicked on wrong password?")
|
@Comment("Should players be kicked on wrong password?")
|
||||||
public static final Property<Boolean> KICK_ON_WRONG_PASSWORD =
|
public static final Property<Boolean> KICK_ON_WRONG_PASSWORD =
|
||||||
newProperty("settings.restrictions.kickOnWrongPassword", false);
|
newProperty("settings.restrictions.kickOnWrongPassword", true);
|
||||||
|
|
||||||
@Comment({
|
@Comment({
|
||||||
"Should not logged in players be teleported to the spawn?",
|
"Should not logged in players be teleported to the spawn?",
|
||||||
@@ -121,23 +114,22 @@ public final class RestrictionSettings implements SettingsHolder {
|
|||||||
"After how many seconds should players who fail to login or register",
|
"After how many seconds should players who fail to login or register",
|
||||||
"be kicked? Set to 0 to disable."})
|
"be kicked? Set to 0 to disable."})
|
||||||
public static final Property<Integer> TIMEOUT =
|
public static final Property<Integer> TIMEOUT =
|
||||||
newProperty("settings.restrictions.timeout", 120);
|
newProperty("settings.restrictions.timeout", 30);
|
||||||
|
|
||||||
@Comment("Regex pattern of allowed characters in the player name.")
|
@Comment("Regex pattern of allowed characters in the player name.")
|
||||||
public static final Property<String> ALLOWED_NICKNAME_CHARACTERS =
|
public static final Property<String> ALLOWED_NICKNAME_CHARACTERS =
|
||||||
newProperty("settings.restrictions.allowedNicknameCharacters", "[a-zA-Z0-9_]*");
|
newProperty("settings.restrictions.allowedNicknameCharacters", "[a-zA-Z0-9_]*");
|
||||||
|
|
||||||
|
|
||||||
@Comment({
|
@Comment({
|
||||||
"How far can unregistered players walk?",
|
"How far can unregistered players walk?",
|
||||||
"Set to 0 for unlimited radius"
|
"Set to 0 for unlimited radius"
|
||||||
})
|
})
|
||||||
public static final Property<Integer> ALLOWED_MOVEMENT_RADIUS =
|
public static final Property<Integer> ALLOWED_MOVEMENT_RADIUS =
|
||||||
newProperty("settings.restrictions.allowedMovementRadius", 0);
|
newProperty("settings.restrictions.allowedMovementRadius", 100);
|
||||||
|
|
||||||
@Comment("Should we protect the player inventory before logging in? Requires ProtocolLib.")
|
@Comment("Should we protect the player inventory before logging in? Requires ProtocolLib.")
|
||||||
public static final Property<Boolean> PROTECT_INVENTORY_BEFORE_LOGIN =
|
public static final Property<Boolean> PROTECT_INVENTORY_BEFORE_LOGIN =
|
||||||
newProperty("settings.restrictions.ProtectInventoryBeforeLogIn", false);
|
newProperty("settings.restrictions.ProtectInventoryBeforeLogIn", true);
|
||||||
|
|
||||||
@Comment("Should we deny the tabcomplete feature before logging in? Requires ProtocolLib.")
|
@Comment("Should we deny the tabcomplete feature before logging in? Requires ProtocolLib.")
|
||||||
public static final Property<Boolean> DENY_TABCOMPLETE_BEFORE_LOGIN =
|
public static final Property<Boolean> DENY_TABCOMPLETE_BEFORE_LOGIN =
|
||||||
@@ -147,7 +139,7 @@ public final class RestrictionSettings implements SettingsHolder {
|
|||||||
"Should we display all other accounts from a player when he joins?",
|
"Should we display all other accounts from a player when he joins?",
|
||||||
"permission: /authme.admin.accounts"})
|
"permission: /authme.admin.accounts"})
|
||||||
public static final Property<Boolean> DISPLAY_OTHER_ACCOUNTS =
|
public static final Property<Boolean> DISPLAY_OTHER_ACCOUNTS =
|
||||||
newProperty("settings.restrictions.displayOtherAccounts", false);
|
newProperty("settings.restrictions.displayOtherAccounts", true);
|
||||||
|
|
||||||
@Comment("Spawn priority; values: authme, essentials, cmi, multiverse, default")
|
@Comment("Spawn priority; values: authme, essentials, cmi, multiverse, default")
|
||||||
public static final Property<String> SPAWN_PRIORITY =
|
public static final Property<String> SPAWN_PRIORITY =
|
||||||
@@ -155,11 +147,11 @@ public final class RestrictionSettings implements SettingsHolder {
|
|||||||
|
|
||||||
@Comment("Maximum Login authorized by IP")
|
@Comment("Maximum Login authorized by IP")
|
||||||
public static final Property<Integer> MAX_LOGIN_PER_IP =
|
public static final Property<Integer> MAX_LOGIN_PER_IP =
|
||||||
newProperty("settings.restrictions.maxLoginPerIp", 3);
|
newProperty("settings.restrictions.maxLoginPerIp", 0);
|
||||||
|
|
||||||
@Comment("Maximum Join authorized by IP")
|
@Comment("Maximum Join authorized by IP")
|
||||||
public static final Property<Integer> MAX_JOIN_PER_IP =
|
public static final Property<Integer> MAX_JOIN_PER_IP =
|
||||||
newProperty("settings.restrictions.maxJoinPerIp", 3);
|
newProperty("settings.restrictions.maxJoinPerIp", 0);
|
||||||
|
|
||||||
@Comment("AuthMe will NEVER teleport players if set to true!")
|
@Comment("AuthMe will NEVER teleport players if set to true!")
|
||||||
public static final Property<Boolean> NO_TELEPORT =
|
public static final Property<Boolean> NO_TELEPORT =
|
||||||
@@ -173,11 +165,6 @@ public final class RestrictionSettings implements SettingsHolder {
|
|||||||
public static final Property<String> ALLOWED_PASSWORD_REGEX =
|
public static final Property<String> ALLOWED_PASSWORD_REGEX =
|
||||||
newProperty("settings.restrictions.allowedPasswordCharacters", "[!-~]*");
|
newProperty("settings.restrictions.allowedPasswordCharacters", "[!-~]*");
|
||||||
|
|
||||||
@Comment("Regex syntax for allowed chars in email.")
|
|
||||||
public static final Property<String> ALLOWED_EMAIL_REGEX =
|
|
||||||
newProperty("settings.restrictions.allowedEmailCharacters", "^[A-Za-z0-9_]{4,15}@(qq|outlook|163|gmail|icloud)\\.com$");
|
|
||||||
|
|
||||||
|
|
||||||
@Comment("Force survival gamemode when player joins?")
|
@Comment("Force survival gamemode when player joins?")
|
||||||
public static final Property<Boolean> FORCE_SURVIVAL_MODE =
|
public static final Property<Boolean> FORCE_SURVIVAL_MODE =
|
||||||
newProperty("settings.GameMode.ForceSurvivalMode", false);
|
newProperty("settings.GameMode.ForceSurvivalMode", false);
|
||||||
@@ -194,7 +181,6 @@ public final class RestrictionSettings implements SettingsHolder {
|
|||||||
public static final Property<Set<String>> UNRESTRICTED_NAMES =
|
public static final Property<Set<String>> UNRESTRICTED_NAMES =
|
||||||
newLowercaseStringSetProperty("settings.unrestrictions.UnrestrictedName");
|
newLowercaseStringSetProperty("settings.unrestrictions.UnrestrictedName");
|
||||||
|
|
||||||
|
|
||||||
@Comment({
|
@Comment({
|
||||||
"Below you can list all inventories names that AuthMe will ignore",
|
"Below you can list all inventories names that AuthMe will ignore",
|
||||||
"for registration or login. Configure it at your own risk!!",
|
"for registration or login. Configure it at your own risk!!",
|
||||||
@@ -207,9 +193,7 @@ public final class RestrictionSettings implements SettingsHolder {
|
|||||||
public static final Property<Set<String>> UNRESTRICTED_INVENTORIES =
|
public static final Property<Set<String>> UNRESTRICTED_INVENTORIES =
|
||||||
newLowercaseStringSetProperty("settings.unrestrictions.UnrestrictedInventories");
|
newLowercaseStringSetProperty("settings.unrestrictions.UnrestrictedInventories");
|
||||||
|
|
||||||
|
|
||||||
private RestrictionSettings() {
|
private RestrictionSettings() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,10 +6,8 @@ import ch.jalu.configme.properties.Property;
|
|||||||
import fr.xephi.authme.security.HashAlgorithm;
|
import fr.xephi.authme.security.HashAlgorithm;
|
||||||
import fr.xephi.authme.settings.EnumSetProperty;
|
import fr.xephi.authme.settings.EnumSetProperty;
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
import static ch.jalu.configme.properties.PropertyInitializer.newListProperty;
|
|
||||||
import static ch.jalu.configme.properties.PropertyInitializer.newLowercaseStringSetProperty;
|
import static ch.jalu.configme.properties.PropertyInitializer.newLowercaseStringSetProperty;
|
||||||
import static ch.jalu.configme.properties.PropertyInitializer.newProperty;
|
import static ch.jalu.configme.properties.PropertyInitializer.newProperty;
|
||||||
|
|
||||||
@@ -19,102 +17,27 @@ public final class SecuritySettings implements SettingsHolder {
|
|||||||
"Take care with this, if you set this to false,",
|
"Take care with this, if you set this to false,",
|
||||||
"AuthMe will automatically disable and the server won't be protected!"})
|
"AuthMe will automatically disable and the server won't be protected!"})
|
||||||
public static final Property<Boolean> STOP_SERVER_ON_PROBLEM =
|
public static final Property<Boolean> STOP_SERVER_ON_PROBLEM =
|
||||||
newProperty("Security.SQLProblem.stopServer", false);
|
newProperty("Security.SQLProblem.stopServer", true);
|
||||||
|
|
||||||
@Comment({"Should send GUI captcha by country code whitelist?",
|
|
||||||
"If the country of the player is in this list, the captcha won't be sent."})
|
|
||||||
public static final Property<List<String>> GUI_CAPTCHA_COUNTRY_WHITELIST =
|
|
||||||
newListProperty("3rdPartyFeature.captcha.whiteList");
|
|
||||||
|
|
||||||
@Comment({"Should we let Bedrock players login automatically?",
|
|
||||||
"(Requires hookFloodgate to be true & floodgate loaded)"})
|
|
||||||
public static final Property<Boolean> FORCE_LOGIN_BEDROCK = newProperty("3rdPartyFeature.features.bedrockAutoLogin", false);
|
|
||||||
|
|
||||||
@Comment("Enable the new feature to prevent ghost players?")
|
|
||||||
public static final Property<Boolean> ANTI_GHOST_PLAYERS = newProperty("3rdPartyFeature.fixes.antiGhostPlayer", false);
|
|
||||||
|
|
||||||
@Comment({"Choose the best teleport method by server brand?",
|
|
||||||
"(Enable this if you are using Paper)"})
|
|
||||||
public static final Property<Boolean> SMART_ASYNC_TELEPORT = newProperty("3rdPartyFeature.optimizes.smartAsyncTeleport", false);
|
|
||||||
|
|
||||||
@Comment("Send a GUI captcha to unregistered players?(Requires ProtocolLib)")
|
|
||||||
public static final Property<Boolean> GUI_CAPTCHA = newProperty("3rdPartyFeature.captcha.guiCaptcha", false);
|
|
||||||
|
|
||||||
@Comment({"Should we kick the players when they don't finish the GUI captcha in seconds?",
|
|
||||||
"(less than or equals 0 is disabled)"})
|
|
||||||
public static final Property<Integer> GUI_CAPTCHA_TIMEOUT = newProperty("3rdPartyFeature.captcha.timeOut",0);
|
|
||||||
|
|
||||||
@Comment({"Should we ignore floodgate players when sending GUI captcha?",
|
|
||||||
"(Requires floodgate and hookFloodgate: true)"})
|
|
||||||
public static final Property<Boolean> GUI_CAPTCHA_BE_COMPATIBILITY = newProperty("3rdPartyFeature.captcha.ignoreBedrock",false);
|
|
||||||
|
|
||||||
@Comment("Should we delete player data and stats when they didn't finish the captcha?")
|
|
||||||
public static final Property<Boolean> DELETE_UNVERIFIED_PLAYER_DATA = newProperty("3rdPartyFeature.captcha.purgePlayerData",false);
|
|
||||||
|
|
||||||
@Comment("Which world's player data should be deleted?(Enter the world *FOLDER* name where your players first logged in)")
|
|
||||||
public static final Property<String> DELETE_PLAYER_DATA_WORLD = newProperty("3rdPartyFeature.captcha.purgeWorldFolderName","world");
|
|
||||||
|
|
||||||
@Comment("Should we fix the location when players logged in the portal?")
|
|
||||||
public static final Property<Boolean> LOGIN_LOC_FIX_SUB_PORTAL = newProperty("3rdPartyFeature.fixes.loginLocationFix.fixPortalStuck", false);
|
|
||||||
|
|
||||||
@Comment("Should we fix the location when players logged underground?")
|
|
||||||
public static final Property<Boolean> LOGIN_LOC_FIX_SUB_UNDERGROUND = newProperty("3rdPartyFeature.fixes.loginLocationFix.fixGroundStuck", false);
|
|
||||||
|
|
||||||
// @Comment({"Should we kick the players when they failed captcha too many times?",
|
|
||||||
// "(Minimum value is 1)(Default: 3)"})
|
|
||||||
// public static final Property<Integer> GUI_CAPTCHA_MAX_TRY = newProperty("3rdPartyFeature.captcha.maxTryTimes",3);
|
|
||||||
|
|
||||||
|
|
||||||
//@Comment({"Using which API to get hash data?",
|
|
||||||
//"Available options: github, gitee, ghproxy (if your server is in China, please use gitee or ghproxy.)"})
|
|
||||||
//public static final Property<String> SHA_CHECK_METHOD = newProperty("Plugin.hashing.hashApi","github");
|
|
||||||
|
|
||||||
//@Comment("Should we use the local cache sometimes instead of requesting API?")
|
|
||||||
//public static final Property<Boolean> USE_LOCAL_CACHE = newProperty("Plugin.hashing.useLocalCache",false);
|
|
||||||
|
|
||||||
//@Comment("DON'T TOUCH!!!")
|
|
||||||
//public static final Property<String> SHA_CHECK_CACHE = newProperty("Plugin.hashing.hashCached","");
|
|
||||||
|
|
||||||
@Comment("Copy AuthMe log output in a separate file as well?")
|
@Comment("Copy AuthMe log output in a separate file as well?")
|
||||||
public static final Property<Boolean> USE_LOGGING =
|
public static final Property<Boolean> USE_LOGGING =
|
||||||
newProperty("Security.console.logConsole", true);
|
newProperty("Security.console.logConsole", true);
|
||||||
|
|
||||||
@Comment({"Query haveibeenpwned.com with a hashed version of the password.",
|
|
||||||
"This is used to check whether it is safe."})
|
|
||||||
public static final Property<Boolean> HAVE_I_BEEN_PWNED_CHECK =
|
|
||||||
newProperty("Security.account.haveIBeenPwned.check", false);
|
|
||||||
|
|
||||||
@Comment({"If the password is used more than this number of times, it is considered unsafe."})
|
|
||||||
public static final Property<Integer> HAVE_I_BEEN_PWNED_LIMIT =
|
|
||||||
newProperty("Security.account.haveIBeenPwned.limit", 0);
|
|
||||||
|
|
||||||
@Comment("Enable captcha when a player uses wrong password too many times")
|
@Comment("Enable captcha when a player uses wrong password too many times")
|
||||||
public static final Property<Boolean> ENABLE_LOGIN_FAILURE_CAPTCHA =
|
public static final Property<Boolean> ENABLE_LOGIN_FAILURE_CAPTCHA =
|
||||||
newProperty("Security.captcha.useCaptcha", false);
|
newProperty("Security.captcha.useCaptcha", false);
|
||||||
|
|
||||||
@Comment("Check for updates on enabled from GitHub?")
|
|
||||||
public static final Property<Boolean> CHECK_FOR_UPDATES =
|
|
||||||
newProperty("Plugin.updates.checkForUpdates", true);
|
|
||||||
|
|
||||||
@Comment("Should we show the AuthMe banner on startup?")
|
|
||||||
public static final Property<Boolean> SHOW_STARTUP_BANNER =
|
|
||||||
newProperty("Plugin.banners.showBanners", true);
|
|
||||||
|
|
||||||
@Comment("Change the banner colors here (Default: §r)")
|
|
||||||
public static final Property<String> STARTUP_BANNER_COLOR =
|
|
||||||
newProperty("Plugin.banners.bannerColor", "§r");
|
|
||||||
|
|
||||||
@Comment("Max allowed tries before a captcha is required")
|
@Comment("Max allowed tries before a captcha is required")
|
||||||
public static final Property<Integer> MAX_LOGIN_TRIES_BEFORE_CAPTCHA =
|
public static final Property<Integer> MAX_LOGIN_TRIES_BEFORE_CAPTCHA =
|
||||||
newProperty("Security.captcha.maxLoginTry", 8);
|
newProperty("Security.captcha.maxLoginTry", 5);
|
||||||
|
|
||||||
@Comment("Captcha length")
|
@Comment("Captcha length")
|
||||||
public static final Property<Integer> CAPTCHA_LENGTH =
|
public static final Property<Integer> CAPTCHA_LENGTH =
|
||||||
newProperty("Security.captcha.captchaLength", 6);
|
newProperty("Security.captcha.captchaLength", 5);
|
||||||
|
|
||||||
@Comment("Minutes after which login attempts count is reset for a player")
|
@Comment("Minutes after which login attempts count is reset for a player")
|
||||||
public static final Property<Integer> CAPTCHA_COUNT_MINUTES_BEFORE_RESET =
|
public static final Property<Integer> CAPTCHA_COUNT_MINUTES_BEFORE_RESET =
|
||||||
newProperty("Security.captcha.captchaCountReset", 120);
|
newProperty("Security.captcha.captchaCountReset", 60);
|
||||||
|
|
||||||
@Comment("Require captcha before a player may register?")
|
@Comment("Require captcha before a player may register?")
|
||||||
public static final Property<Boolean> ENABLE_CAPTCHA_FOR_REGISTRATION =
|
public static final Property<Boolean> ENABLE_CAPTCHA_FOR_REGISTRATION =
|
||||||
@@ -122,11 +45,11 @@ public final class SecuritySettings implements SettingsHolder {
|
|||||||
|
|
||||||
@Comment("Minimum length of password")
|
@Comment("Minimum length of password")
|
||||||
public static final Property<Integer> MIN_PASSWORD_LENGTH =
|
public static final Property<Integer> MIN_PASSWORD_LENGTH =
|
||||||
newProperty("settings.security.minPasswordLength", 8);
|
newProperty("settings.security.minPasswordLength", 5);
|
||||||
|
|
||||||
@Comment("Maximum length of password")
|
@Comment("Maximum length of password")
|
||||||
public static final Property<Integer> MAX_PASSWORD_LENGTH =
|
public static final Property<Integer> MAX_PASSWORD_LENGTH =
|
||||||
newProperty("settings.security.passwordMaxLength", 26);
|
newProperty("settings.security.passwordMaxLength", 30);
|
||||||
|
|
||||||
@Comment({
|
@Comment({
|
||||||
"Possible values: SHA256, BCRYPT, BCRYPT2Y, PBKDF2, SALTEDSHA512,",
|
"Possible values: SHA256, BCRYPT, BCRYPT2Y, PBKDF2, SALTEDSHA512,",
|
||||||
@@ -164,7 +87,7 @@ public final class SecuritySettings implements SettingsHolder {
|
|||||||
"- 'help'"})
|
"- 'help'"})
|
||||||
public static final Property<Set<String>> UNSAFE_PASSWORDS =
|
public static final Property<Set<String>> UNSAFE_PASSWORDS =
|
||||||
newLowercaseStringSetProperty("settings.security.unsafePasswords",
|
newLowercaseStringSetProperty("settings.security.unsafePasswords",
|
||||||
"12345678", "password", "qwertyui", "123456789", "87654321", "1234567890", "asdfghjkl","zxcvbnm,","asdfghjk","12312312","123123123","32132132","321321321");
|
"123456", "password", "qwerty", "12345", "54321", "123456789", "help");
|
||||||
|
|
||||||
@Comment("Tempban a user's IP address if they enter the wrong password too many times")
|
@Comment("Tempban a user's IP address if they enter the wrong password too many times")
|
||||||
public static final Property<Boolean> TEMPBAN_ON_MAX_LOGINS =
|
public static final Property<Boolean> TEMPBAN_ON_MAX_LOGINS =
|
||||||
@@ -172,7 +95,7 @@ public final class SecuritySettings implements SettingsHolder {
|
|||||||
|
|
||||||
@Comment("How many times a user can attempt to login before their IP being tempbanned")
|
@Comment("How many times a user can attempt to login before their IP being tempbanned")
|
||||||
public static final Property<Integer> MAX_LOGIN_TEMPBAN =
|
public static final Property<Integer> MAX_LOGIN_TEMPBAN =
|
||||||
newProperty("Security.tempban.maxLoginTries", 8);
|
newProperty("Security.tempban.maxLoginTries", 10);
|
||||||
|
|
||||||
@Comment({"The length of time a IP address will be tempbanned in minutes",
|
@Comment({"The length of time a IP address will be tempbanned in minutes",
|
||||||
"Default: 480 minutes, or 8 hours"})
|
"Default: 480 minutes, or 8 hours"})
|
||||||
@@ -195,17 +118,17 @@ public final class SecuritySettings implements SettingsHolder {
|
|||||||
|
|
||||||
@Comment("How many hours is a recovery code valid for?")
|
@Comment("How many hours is a recovery code valid for?")
|
||||||
public static final Property<Integer> RECOVERY_CODE_HOURS_VALID =
|
public static final Property<Integer> RECOVERY_CODE_HOURS_VALID =
|
||||||
newProperty("Security.recoveryCode.validForHours", 6);
|
newProperty("Security.recoveryCode.validForHours", 4);
|
||||||
|
|
||||||
@Comment("Max number of tries to enter recovery code")
|
@Comment("Max number of tries to enter recovery code")
|
||||||
public static final Property<Integer> RECOVERY_CODE_MAX_TRIES =
|
public static final Property<Integer> RECOVERY_CODE_MAX_TRIES =
|
||||||
newProperty("Security.recoveryCode.maxTries", 4);
|
newProperty("Security.recoveryCode.maxTries", 3);
|
||||||
|
|
||||||
@Comment({"How long a player has after password recovery to change their password",
|
@Comment({"How long a player has after password recovery to change their password",
|
||||||
"without logging in. This is in minutes.",
|
"without logging in. This is in minutes.",
|
||||||
"Default: 2 minutes"})
|
"Default: 2 minutes"})
|
||||||
public static final Property<Integer> PASSWORD_CHANGE_TIMEOUT =
|
public static final Property<Integer> PASSWORD_CHANGE_TIMEOUT =
|
||||||
newProperty("Security.recoveryCode.passwordChangeTimeout", 5);
|
newProperty("Security.recoveryCode.passwordChangeTimeout", 2);
|
||||||
|
|
||||||
@Comment({
|
@Comment({
|
||||||
"Seconds a user has to wait for before a password recovery mail may be sent again",
|
"Seconds a user has to wait for before a password recovery mail may be sent again",
|
||||||
|
|||||||
@@ -1,34 +0,0 @@
|
|||||||
package fr.xephi.authme.util;
|
|
||||||
|
|
||||||
import org.bukkit.Location;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
|
|
||||||
import java.lang.reflect.InvocationTargetException;
|
|
||||||
import java.lang.reflect.Method;
|
|
||||||
public class TeleportUtils {
|
|
||||||
private static Method teleportAsyncMethod;
|
|
||||||
|
|
||||||
static {
|
|
||||||
try {//Detect Paper class
|
|
||||||
Class<?> paperClass = Class.forName("com.destroystokyo.paper.PaperConfig");
|
|
||||||
teleportAsyncMethod = Player.class.getMethod("teleportAsync", Location.class);
|
|
||||||
teleportAsyncMethod.setAccessible(true);
|
|
||||||
// if detected,use teleportAsync()
|
|
||||||
} catch (ClassNotFoundException | NoSuchMethodException e) {
|
|
||||||
teleportAsyncMethod = null;
|
|
||||||
//if not, set method to null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void teleport(Player player, Location location) {
|
|
||||||
if (teleportAsyncMethod != null) {
|
|
||||||
try {
|
|
||||||
teleportAsyncMethod.invoke(player, location);
|
|
||||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
|
||||||
player.teleport(location);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
player.teleport(location);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
@@ -52,4 +52,4 @@ onLogout: {}
|
|||||||
onRegister: {}
|
onRegister: {}
|
||||||
onSessionLogin: {}
|
onSessionLogin: {}
|
||||||
# Commands to run whenever a player is unregistered (by himself, or by an admin)
|
# Commands to run whenever a player is unregistered (by himself, or by an admin)
|
||||||
onUnregister: {}
|
onUnregister: {}
|
||||||
+18
-121
@@ -1,121 +1,18 @@
|
|||||||
<div class="mail">
|
<h1>
|
||||||
<style>
|
Dear <playername />,
|
||||||
.mail td{
|
</h1>
|
||||||
font-family: "Segoe UI", sans-serif;
|
|
||||||
text-align: center;
|
<p>
|
||||||
font-size: 16px;
|
This is your new AuthMe password for the server <servername />:
|
||||||
color: #718096;
|
</p>
|
||||||
}
|
<p>
|
||||||
.mail th, div, p, a, h1, h2, h3, h4, h5, h6{
|
<generatedpass />
|
||||||
font-family: "Segoe UI", sans-serif;
|
</p>
|
||||||
text-align: center;
|
<image />
|
||||||
color: #3d4852;
|
<p>
|
||||||
}
|
Do not forget to change password after login!<br />
|
||||||
.mail .mail-content {
|
/changepassword <generatedpass /> newPassword'
|
||||||
max-width: 100vw;
|
</p>
|
||||||
padding: 32px;
|
<p>
|
||||||
box-shadow: 0 15px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.25);
|
See you on <servername />!
|
||||||
}
|
</p>
|
||||||
.mail div{
|
|
||||||
background-color: #ffffff;color: #718096;height: 100%;line-height: 1.4;width: 100%;
|
|
||||||
}
|
|
||||||
.mail .x_wrapper{
|
|
||||||
background-color: #edf2f7;
|
|
||||||
width:100%;
|
|
||||||
}
|
|
||||||
.mail .x_content{
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
.mail .x_inner-body{
|
|
||||||
background-color: #ffffff;border-color: #e8e5ef;border-radius: 2px;border-width: 1px;margin: 0 auto;padding:0;width: 570px;
|
|
||||||
}
|
|
||||||
.mail .x_content-cell{
|
|
||||||
margin: 0 auto;padding: 0;width: 570px;line-height: 1.5em;
|
|
||||||
color: #b0adc5;font-size: 12px;
|
|
||||||
}
|
|
||||||
.mail .x_content-cell td{
|
|
||||||
max-width: 100vw;padding: 32px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<div>
|
|
||||||
<table class="x_wrapper">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<table class="x_content">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td style="padding: 25px 0;">
|
|
||||||
<h1 style="font-size: 20px;">密码重置邮件</h1>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<table class="x_inner-body">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td class="mail-content">
|
|
||||||
<h1 style="font-size: 18px;margin-bottom: 25px;">Minecraft · <servername /><br/><playername /></h1>
|
|
||||||
<hr>
|
|
||||||
<table style="width: 100%;">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
您正在申请的新密码为
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td style="font-weight: bold;">
|
|
||||||
<br/><generatedpass /></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<br/>请妥善保存,在新地址上进行登录时,需提供该密码.
|
|
||||||
<br/>若非必要,请勿更换密码,否则将对您的账户安全构成威胁.
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td style="text-align:right;">
|
|
||||||
<br/>
|
|
||||||
<br/>祝您游玩愉快~!
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<small>
|
|
||||||
<br/><time />
|
|
||||||
<br/>请勿回复
|
|
||||||
</small>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<table class="x_content-cell">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<p style="color:#b0adc5;">© 2023 HomoCraft. All rights reserved.</p>
|
|
||||||
<a href="1919810.com" target="_blank"
|
|
||||||
style="text-decoration: none; font-size: 16px">wdsj.io</a>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
@@ -0,0 +1,45 @@
|
|||||||
|
# Translation config for the AuthMe help, e.g. when /authme help or /authme help register is called
|
||||||
|
|
||||||
|
# -------------------------------------------------------
|
||||||
|
# List of texts used in the help section
|
||||||
|
common:
|
||||||
|
header: '==========[ AuthMeReloaded ヘルプ ]=========='
|
||||||
|
optional: 'オプション'
|
||||||
|
hasPermission: '権限を持っています'
|
||||||
|
noPermission: '権限がありません'
|
||||||
|
default: 'デフォルト'
|
||||||
|
result: '結果'
|
||||||
|
defaultPermissions:
|
||||||
|
notAllowed: '権限がありません'
|
||||||
|
opOnly: 'OPのみ'
|
||||||
|
allowed: '全員に許可'
|
||||||
|
|
||||||
|
# -------------------------------------------------------
|
||||||
|
# Titles of the individual help sections
|
||||||
|
# Set the translation text to empty text to disable the section, e.g. to hide alternatives:
|
||||||
|
# alternatives: ''
|
||||||
|
section:
|
||||||
|
command: 'コマンド'
|
||||||
|
description: '簡単な説明'
|
||||||
|
detailedDescription: '詳細な説明'
|
||||||
|
arguments: '引数'
|
||||||
|
permissions: '権限'
|
||||||
|
alternatives: '代替'
|
||||||
|
children: 'コマンド'
|
||||||
|
|
||||||
|
# -------------------------------------------------------
|
||||||
|
# You can translate the data for all commands using the below pattern.
|
||||||
|
# For example to translate /authme reload, create a section "authme.reload", or "login" for /login
|
||||||
|
# If the command has arguments, you can use arg1 as below to translate the first argument, and so forth
|
||||||
|
# Translations don't need to be complete; any missing section will be taken from the default silently
|
||||||
|
# Important: Put main commands like "authme" before their children (e.g. "authme.reload")
|
||||||
|
commands:
|
||||||
|
authme.register:
|
||||||
|
description: 'プレイヤーを登録します'
|
||||||
|
detailedDescription: '指定されたプレイヤーを指定されたパスワードで登録します。'
|
||||||
|
arg1:
|
||||||
|
label: 'プレイヤー名'
|
||||||
|
description: 'プレイヤー名'
|
||||||
|
arg2:
|
||||||
|
label: 'パスワード'
|
||||||
|
description: 'パスワード'
|
||||||
@@ -0,0 +1,45 @@
|
|||||||
|
# Translation config for the AuthMe help, e.g. when /authme help or /authme help register is called
|
||||||
|
|
||||||
|
# -------------------------------------------------------
|
||||||
|
# List of texts used in the help section
|
||||||
|
common:
|
||||||
|
header: '==========[ AuthMeReloaded PAGALBA ]=========='
|
||||||
|
optional: 'Neprivaloma'
|
||||||
|
hasPermission: 'Jūs turite leidimą'
|
||||||
|
noPermission: 'Jūs neturite leidimo'
|
||||||
|
default: 'Numatytas'
|
||||||
|
result: 'Rezultatas'
|
||||||
|
defaultPermissions:
|
||||||
|
notAllowed: 'Nėra leidimo'
|
||||||
|
opOnly: 'Tik OP'
|
||||||
|
allowed: 'Visiems leistina'
|
||||||
|
|
||||||
|
# -------------------------------------------------------
|
||||||
|
# Titles of the individual help sections
|
||||||
|
# Set the translation text to empty text to disable the section, e.g. to hide alternatives:
|
||||||
|
# alternatives: ''
|
||||||
|
section:
|
||||||
|
command: 'Komanda'
|
||||||
|
description: 'Trumpas aprašas'
|
||||||
|
detailedDescription: 'Detalus aprašas'
|
||||||
|
arguments: 'Argumentai'
|
||||||
|
permissions: 'Leidimai'
|
||||||
|
alternatives: 'Alternatyvos'
|
||||||
|
children: 'Komandos'
|
||||||
|
|
||||||
|
# -------------------------------------------------------
|
||||||
|
# You can translate the data for all commands using the below pattern.
|
||||||
|
# For example to translate /authme reload, create a section "authme.reload", or "login" for /login
|
||||||
|
# If the command has arguments, you can use arg1 as below to translate the first argument, and so forth
|
||||||
|
# Translations don't need to be complete; any missing section will be taken from the default silently
|
||||||
|
# Important: Put main commands like "authme" before their children (e.g. "authme.reload")
|
||||||
|
commands:
|
||||||
|
authme.register:
|
||||||
|
description: 'Užregistruoti žaidėją'
|
||||||
|
detailedDescription: 'Užregistruokite nurodytą žaidėją su nurodytu slaptažodžiu.'
|
||||||
|
arg1:
|
||||||
|
label: 'žaidėjas'
|
||||||
|
description: 'Žaidėjo vardas'
|
||||||
|
arg2:
|
||||||
|
label: 'slaptažodis'
|
||||||
|
description: 'Slaptažodis'
|
||||||
@@ -1,5 +1,8 @@
|
|||||||
|
# AuthmeReloaded帮助文件汉化
|
||||||
|
# Translated By CH1
|
||||||
|
# -------------------------------------------------------
|
||||||
common:
|
common:
|
||||||
header: '======================================'
|
header: '==========[ AuthMeReloaded ]=========='
|
||||||
optional: '可选'
|
optional: '可选'
|
||||||
hasPermission: '您拥有权限去使用这个指令'
|
hasPermission: '您拥有权限去使用这个指令'
|
||||||
noPermission: '您没有权限使用这个指令'
|
noPermission: '您没有权限使用这个指令'
|
||||||
|
|||||||
@@ -20,7 +20,6 @@ password:
|
|||||||
unsafe_password: '&cThe chosen password isn''t safe, please choose another one...'
|
unsafe_password: '&cThe chosen password isn''t safe, please choose another one...'
|
||||||
forbidden_characters: '&4Your password contains illegal characters. Allowed chars: %valid_chars'
|
forbidden_characters: '&4Your password contains illegal characters. Allowed chars: %valid_chars'
|
||||||
wrong_length: '&cYour password is too short or too long! Please try with another one!'
|
wrong_length: '&cYour password is too short or too long! Please try with another one!'
|
||||||
pwned_password: '&cYour chosen password is not secure. It was used %pwned_count times already! Please use a strong password...'
|
|
||||||
|
|
||||||
# Login
|
# Login
|
||||||
login:
|
login:
|
||||||
@@ -155,28 +154,3 @@ time:
|
|||||||
hours: 'hours'
|
hours: 'hours'
|
||||||
day: 'day'
|
day: 'day'
|
||||||
days: 'days'
|
days: 'days'
|
||||||
|
|
||||||
# 3rd party features: GUI Captcha
|
|
||||||
gui_captcha:
|
|
||||||
success: '&aVerification success!'
|
|
||||||
bedrock_auto_verify_success: '&aBedrock verification success!'
|
|
||||||
captcha_window_name: '%random Verification'
|
|
||||||
captcha_clickable_name: '%random I am human'
|
|
||||||
message_on_retry: '&cVerification failed, you have %times retries left'
|
|
||||||
denied_message_sending: '&cPlease be verified before chatting!'
|
|
||||||
kick_on_failed: '&cPlease complete the verification!'
|
|
||||||
kick_on_timeout: '&cVerification timed out!'
|
|
||||||
|
|
||||||
# 3rd party features: Bedrock Auto Login
|
|
||||||
bedrock_auto_login:
|
|
||||||
success: '&aBedrock auto login success!'
|
|
||||||
|
|
||||||
# 3rd party features: Login Location Fix
|
|
||||||
login_location_fix:
|
|
||||||
fix_portal: '&aYou are stuck in portal during Login.'
|
|
||||||
fix_underground: '&aYou are stuck underground during Login.'
|
|
||||||
cannot_fix_underground: '&aYou are stuck underground during Login, but we cant fix it.'
|
|
||||||
|
|
||||||
# 3rd party features: Double Login Fix
|
|
||||||
double_login_fix:
|
|
||||||
fix_message: '&cYou have been disconnected due to doubled login.'
|
|
||||||
|
|||||||
@@ -0,0 +1,156 @@
|
|||||||
|
# List of global tags:
|
||||||
|
# %nl% - Goes to new line.
|
||||||
|
# %username% - Replaces the username of the player receiving the message.
|
||||||
|
# %displayname% - Replaces the nickname (and colors) of the player receiving the message.
|
||||||
|
|
||||||
|
# Registration
|
||||||
|
registration:
|
||||||
|
register_request: '&3サーバーに登録するには、次のコマンドを使用してください: /register <パスワード> <パスワードの確認>'
|
||||||
|
command_usage: '&c使用方法: /register <パスワード> <パスワードの確認>'
|
||||||
|
reg_only: '&4登録済みのユーザーのみサーバーに参加できます! 自分自身を登録するには、http://example.com にアクセスしてください!'
|
||||||
|
kicked_admin_registered: '管理者があなたを登録しました。再度ログインしてください。'
|
||||||
|
success: '&2登録が完了しました!'
|
||||||
|
disabled: '&cゲーム内での登録は無効になっています!'
|
||||||
|
name_taken: '&cこのユーザー名はすでに登録されています!'
|
||||||
|
|
||||||
|
# Password errors on registration
|
||||||
|
password:
|
||||||
|
match_error: '&cパスワードが一致しません。もう一度確認してください!'
|
||||||
|
name_in_password: '&cパスワードには自分の名前を使用することはできません。別のパスワードを選択してください...'
|
||||||
|
unsafe_password: '&c選択したパスワードは安全ではありません。別のパスワードを選択してください...'
|
||||||
|
forbidden_characters: '&4パスワードに不正な文字が含まれています。許可されている文字: %valid_chars'
|
||||||
|
wrong_length: '&cパスワードが短すぎるか長すぎます!別のパスワードを試してください!'
|
||||||
|
|
||||||
|
# Login
|
||||||
|
login:
|
||||||
|
command_usage: '&c使用方法: /login <パスワード>'
|
||||||
|
wrong_password: '&cパスワードが間違っています!'
|
||||||
|
success: '&2ログインが成功しました!'
|
||||||
|
login_request: '&c次のコマンドを使用してログインしてください: /login <パスワード>'
|
||||||
|
timeout_error: '&4ログインのタイムアウトが発生しました。サーバーからキックされました。もう一度試してください!'
|
||||||
|
|
||||||
|
# Errors
|
||||||
|
error:
|
||||||
|
unregistered_user: '&cこのユーザーは登録されていません!'
|
||||||
|
denied_command: '&cこのコマンドを使用するには認証が必要です!'
|
||||||
|
denied_chat: '&cチャットするには認証が必要です!'
|
||||||
|
not_logged_in: '&cログインしていません!'
|
||||||
|
tempban_max_logins: '&cログインに失敗した回数が多すぎるため、一時的にアクセスが制限されています。'
|
||||||
|
max_registration: '&c接続ごとの登録数が最大値を超えています(%reg_count/%max_acc %reg_names)!'
|
||||||
|
no_permission: '&4この操作を実行する権限がありません!'
|
||||||
|
unexpected_error: '&4予期しないエラーが発生しました。管理者に連絡してください!'
|
||||||
|
kick_for_vip: '&3VIPプレイヤーがサーバーが満員の状態で参加しました!'
|
||||||
|
logged_in: '&cすでにログイン済みです!'
|
||||||
|
kick_unresolved_hostname: '&cエラーが発生しました:解決できないプレイヤーのホスト名!'
|
||||||
|
|
||||||
|
# AntiBot
|
||||||
|
antibot:
|
||||||
|
kick_antibot: 'AntiBot保護モードが有効です!サーバーに参加するまでにしばらくお待ちください。'
|
||||||
|
auto_enabled: '&4[AntiBotService] 接続数が非常に多いため、AntiBotが有効になりました!'
|
||||||
|
auto_disabled: '&2[AntiBotService] %m 分後にAntiBotが無効になりました!'
|
||||||
|
|
||||||
|
unregister:
|
||||||
|
success: '&c登録が正常に解除されました!'
|
||||||
|
command_usage: '&c使用方法: /unregister <パスワード>'
|
||||||
|
|
||||||
|
# Other messages
|
||||||
|
misc:
|
||||||
|
accounts_owned_self: '所持しているアカウント数:%count 個'
|
||||||
|
accounts_owned_other: 'プレイヤー %name のアカウント数:%count 個'
|
||||||
|
account_not_activated: '&cアカウントはまだ有効化されていません。メールを確認してください!'
|
||||||
|
password_changed: '&2パスワードが正常に変更されました!'
|
||||||
|
logout: '&2正常にログアウトしました!'
|
||||||
|
reload: '&2設定とデータベースが正常に再読み込みされました!'
|
||||||
|
usage_change_password: '&c使用方法: /changepassword <旧パスワード> <新パスワード>'
|
||||||
|
|
||||||
|
# Session messages
|
||||||
|
session:
|
||||||
|
invalid_session: '&cIPアドレスが変更され、セッションのデータが期限切れです!'
|
||||||
|
valid_session: '&2セッションの再接続によるログインです。'
|
||||||
|
|
||||||
|
# Error messages when joining
|
||||||
|
on_join_validation:
|
||||||
|
name_length: '&4ユーザー名が短すぎるか長すぎます!'
|
||||||
|
characters_in_name: '&4ユーザー名に無効な文字が含まれています。許可される文字:%valid_chars'
|
||||||
|
country_banned: '&4このサーバーへのアクセスは、お使いの国から制限されています!'
|
||||||
|
not_owner_error: 'このアカウントの所有者ではありません。別の名前を選択してください!'
|
||||||
|
kick_full_server: '&4サーバーが満員です。後でもう一度お試しください!'
|
||||||
|
same_nick_online: '&4同じユーザー名のプレイヤーが既にサーバーでプレイしています!'
|
||||||
|
invalid_name_case: '正しいユーザー名は %valid です。%invalid ではなく、このユーザー名で参加してください。'
|
||||||
|
same_ip_online: '同じIPアドレスを持つプレイヤーが既にゲーム内にいます!'
|
||||||
|
quick_command: 'コマンドを速すぎる速度で使用しました!もう一度サーバーに参加してから、コマンドを使用する前にしばらくお待ちください。'
|
||||||
|
|
||||||
|
# Email
|
||||||
|
email:
|
||||||
|
usage_email_add: '&c使用方法:/email add <メールアドレス> <メールアドレスの確認>'
|
||||||
|
usage_email_change: '&c使用方法:/email change <古いメールアドレス> <新しいメールアドレス>'
|
||||||
|
new_email_invalid: '&c無効な新しいメールアドレスです。もう一度やり直してください!'
|
||||||
|
old_email_invalid: '&c無効な古いメールアドレスです。もう一度やり直してください!'
|
||||||
|
invalid: '&c無効なメールアドレスです。もう一度やり直してください!'
|
||||||
|
added: '&2メールアドレスがアカウントに正常に追加されました!'
|
||||||
|
request_confirmation: '&cメールアドレスを確認してください!'
|
||||||
|
changed: '&2メールアドレスが正しく変更されました!'
|
||||||
|
email_show: '&2現在のメールアドレスは:%email'
|
||||||
|
incomplete_settings: 'エラー:メールの送信に必要なすべての設定が設定されていません。管理者に連絡してください。'
|
||||||
|
already_used: '&4そのメールアドレスは既に使用されています'
|
||||||
|
send_failure: 'メールを送信できませんでした。管理者に連絡してください。'
|
||||||
|
no_email_for_account: '&2現在、このアカウントに関連付けられたメールアドレスはありません。'
|
||||||
|
add_email_request: '&3コマンド「/email add <あなたのメールアドレス> <確認用メールアドレス>」を使用して、アカウントにメールアドレスを追加してください。'
|
||||||
|
change_password_expired: 'このコマンドを使用してパスワードを変更することはできません。'
|
||||||
|
email_cooldown_error: '&c最近すでにメールが送信されています。新しいメールを送信する前に、%time 待つ必要があります。'
|
||||||
|
add_not_allowed: '&cメールアドレスの追加は許可されていません。'
|
||||||
|
change_not_allowed: '&cメールアドレスの変更は許可されていません。'
|
||||||
|
|
||||||
|
# Password recovery by email
|
||||||
|
recovery:
|
||||||
|
forgot_password_hint: '&3パスワードを忘れましたか?次のコマンドを使用してください:/email recovery <あなたのメールアドレス>'
|
||||||
|
command_usage: '&c使用方法:/email recovery <メールアドレス>'
|
||||||
|
email_sent: '&2パスワードの回復メールが正常に送信されました!メールの受信トレイを確認してください!'
|
||||||
|
code:
|
||||||
|
code_sent: 'パスワードをリセットするための回復コードがメールで送信されました。'
|
||||||
|
incorrect: '回復コードが正しくありません!残りの試行回数:%count'
|
||||||
|
tries_exceeded: '回復コードの入力試行回数が上限を超えました。新しいコードを生成するには、"/email recovery [メールアドレス]" を実行してください。'
|
||||||
|
correct: '回復コードが正しく入力されました!'
|
||||||
|
change_password: '即座にパスワードを変更するには、コマンド「/email setpassword <新しいパスワード>」を使用してください。'
|
||||||
|
|
||||||
|
# Captcha
|
||||||
|
captcha:
|
||||||
|
usage_captcha: '&3ログインするには、Captchaコードを解決する必要があります。次のコマンドを使用してください:/captcha %captcha_code'
|
||||||
|
wrong_captcha: '&cCaptchaコードが間違っています。チャットに「/captcha %captcha_code」と入力してください!'
|
||||||
|
valid_captcha: '&2Captchaコードが正しく解決されました!'
|
||||||
|
captcha_for_registration: '登録するには、まずCaptchaを解決する必要があります。次のコマンドを使用してください:/captcha %captcha_code'
|
||||||
|
register_captcha_valid: '&2有効なCaptchaです!/register を使用して登録できます'
|
||||||
|
|
||||||
|
# Verification code
|
||||||
|
verification:
|
||||||
|
code_required: '&3このコマンドはセンシティブな操作であり、メールの認証が必要です!受信トレイを確認し、メールの指示に従ってください。'
|
||||||
|
command_usage: '&c使用方法:/verification <コード>'
|
||||||
|
incorrect_code: '&cコードが正しくありません。メールで受け取ったコードを使用して、「/verification <コード>」とチャットに入力してください。'
|
||||||
|
success: '&2身元が確認されました!現在のセッション内ですべてのコマンドを実行できます!'
|
||||||
|
already_verified: '&2現在のセッションでは、既にすべてのセンシティブなコマンドを実行できます!'
|
||||||
|
code_expired: '&3コードの有効期限が切れています!新しいコードを取得するには、別のセンシティブなコマンドを実行してください!'
|
||||||
|
email_needed: '&3アカウントにはメールアドレスのリンクが必要です。身元を確認するためにはメールアドレスを関連付けてください!'
|
||||||
|
|
||||||
|
# Two-factor authentication
|
||||||
|
two_factor:
|
||||||
|
code_created: '&2秘密コードは %code です。こちらからスキャンできます:%url'
|
||||||
|
confirmation_required: 'コードを確認するには、/2fa confirm <コード> を使用してください'
|
||||||
|
code_required: '二要素認証コードを提出するには、/2fa code <コード> を使用してください'
|
||||||
|
already_enabled: 'アカウントで既に二要素認証が有効になっています!'
|
||||||
|
enable_error_no_code: '2要素認証キーが生成されていないか、期限が切れています。/2fa add を実行してください'
|
||||||
|
enable_success: 'アカウントでの二要素認証が正常に有効になりました'
|
||||||
|
enable_error_wrong_code: 'コードが間違っているか、期限が切れています。/2fa add を実行してください'
|
||||||
|
not_enabled_error: 'アカウントでは二要素認証が有効になっていません。/2fa add を実行してください'
|
||||||
|
removed_success: 'アカウントから二要素認証が正常に削除されました'
|
||||||
|
invalid_code: '無効なコードです!'
|
||||||
|
|
||||||
|
# Time units
|
||||||
|
time:
|
||||||
|
second: '秒'
|
||||||
|
seconds: '秒'
|
||||||
|
minute: '分'
|
||||||
|
minutes: '分'
|
||||||
|
hour: '時間'
|
||||||
|
hours: '時間'
|
||||||
|
day: '日'
|
||||||
|
days: '日'
|
||||||
@@ -5,153 +5,153 @@
|
|||||||
|
|
||||||
# Registration
|
# Registration
|
||||||
registration:
|
registration:
|
||||||
disabled: '&6Registracija yra isjungta'
|
disabled: '&6Registracija yra išjungta'
|
||||||
name_taken: '&cVartotojo vardas jau uzregistruotas'
|
name_taken: '&cVartotojo vardas jau užregistruotas'
|
||||||
register_request: '&ePrasome prisiregistruoti: /register slaptazodis pakartotiSlaptazodi'
|
register_request: '&ePrašome prisiregistruoti: /register slaptažodis pakartotiSlaptažodį'
|
||||||
command_usage: '&eNaudojimas: /register slaptazodis pakartotiSlaptazodi'
|
command_usage: '&eNaudojimas: /register slaptažodis pakartotiSlaptažodį'
|
||||||
reg_only: '&cTik prisiregistravusiem zaidejams: apsilankykite: http://example.com tam kad uzsiregistruoti.'
|
reg_only: '&cTik prisiregistravusiems žaidėjams: apsilankykite: http://example.com tam, kad užsiregistruoti.'
|
||||||
success: '&aSekmingai prisiregistravote.'
|
success: '&aSėkmingai prisiregistravote.'
|
||||||
kicked_admin_registered: 'Administatorius jus uzregistravo. Prisijunkite isnaujo'
|
kicked_admin_registered: 'Administatorius Jus užregistravo. Prisijunkite iš naujo'
|
||||||
|
|
||||||
# Password errors on registration
|
# Password errors on registration
|
||||||
password:
|
password:
|
||||||
match_error: '&cSlaptazodziai nesutampa'
|
match_error: '&cSlaptažodžiai nesutampa'
|
||||||
name_in_password: '&cJus negalite naudoti savo varda slaptazodyje'
|
name_in_password: '&cJūs negalite naudoti savo vardo slaptažodyje'
|
||||||
unsafe_password: '&cSi slaptazodi lengva nulausti, pasirinkite kita slaptazodi'
|
unsafe_password: '&cŠį Slaptažodį lengva nulaužti, pasirinkite kitą slaptažodį'
|
||||||
forbidden_characters: '&4Jusus slaptazodis turi netinkamu simboliu. Leidziami simboliai: %valid_chars'
|
forbidden_characters: '&4Jūsų slaptažodis turi netinkamų simbolių. Leidžiami simboliai: %valid_chars'
|
||||||
wrong_length: '&cJusu slaptazodis buvo per ilgas arba per trumpas.'
|
wrong_length: '&cJūsų pasirinktas slaptažodis per ilgas arba per trumpas.'
|
||||||
|
|
||||||
# Login
|
# Login
|
||||||
login:
|
login:
|
||||||
command_usage: '&eKomandos panaudojimas: /login slaptazodis'
|
command_usage: '&eKomandos panaudojimas: /login slaptažodis'
|
||||||
wrong_password: '&cNeteisingas slaptazosdis'
|
wrong_password: '&cNeteisingas Slaptažosdis'
|
||||||
success: '&aSekmingai prisijungete'
|
success: '&aSėkmingai prisijungėte'
|
||||||
login_request: '&ePrasome prisijungti: /login slaptazodis'
|
login_request: '&ePrašome prisijungti: /login slaptažodis'
|
||||||
timeout_error: '&cNespejote prisijungti'
|
timeout_error: '&cNespėjote prisijungti'
|
||||||
|
|
||||||
# Errors
|
# Errors
|
||||||
error:
|
error:
|
||||||
denied_command: '&cKad galetumete naudoti sia komanda turite buti prisijunge!'
|
denied_command: '&cKad galetumėte naudoti šią komandą turite būti prisijungę!'
|
||||||
denied_chat: '&cKad galetumete kalbeti jus turite buti prisijunge!'
|
denied_chat: '&cKad galetumėte kalbėti Jūs turite būti prisijungę!'
|
||||||
unregistered_user: '&cVartotojas neprisiregistraves'
|
unregistered_user: '&cVartotojas neprisiregistravęs'
|
||||||
not_logged_in: '&cTu neprisijunges!'
|
not_logged_in: '&cJūs neprisijungę!'
|
||||||
no_permission: '&cNera leidimo'
|
no_permission: '&cNėra leidimo'
|
||||||
unexpected_error: '&cAtsirado klaida, praneskite adminstratoriui.'
|
unexpected_error: '&cAtsirado klaida, praneškite adminstratoriui.'
|
||||||
max_registration: '&cJus pasiekete maksimalu registraciju skaiciu.'
|
max_registration: '&cJūs pasiekėte maksimalų registracijų skaičių.'
|
||||||
logged_in: '&cTu jau prisijunges!'
|
logged_in: '&cTu jau prisijungęs!'
|
||||||
kick_for_vip: '&cA VIP prisijunge i pilna serveri!'
|
kick_for_vip: '&cRėmėjas prisijungė į pilną serverį!'
|
||||||
kick_unresolved_hostname: '&cIvyko klaida: Ivyko klaida su zaidejo adresu!'
|
kick_unresolved_hostname: '&cĮvyko klaida su žaidejo adresu!'
|
||||||
tempban_max_logins: '&cJus laikinai uzblokuotas nes kelis kartus neteisingai suvedete salptazodi.'
|
tempban_max_logins: '&cJūs laikinai užblokuotas, nes kelis kartus neteisingai suvedėte slaptažodį.'
|
||||||
|
|
||||||
# AntiBot
|
# AntiBot
|
||||||
antibot:
|
antibot:
|
||||||
kick_antibot: 'AntiBot prevencija ijungta! Palaukite pries prisijungiant.'
|
kick_antibot: 'AntiBot prevencija įjungta! Palaukite prieš prisijungiant.'
|
||||||
auto_enabled: '&4[AntiBotService] AntiBot prevencija pajungta del didelio kiekio prisijungimu!'
|
auto_enabled: '&4[AntiBotService] AntiBot prevencija pajungta dėl didelio kiekio prisijungimų!'
|
||||||
auto_disabled: '&2[AntiBotService] AntiBot isjungtas po: %m minutes!'
|
auto_disabled: '&2[AntiBotService] AntiBot bus išjungtas po %m minučių!'
|
||||||
|
|
||||||
# Unregister
|
# Unregister
|
||||||
unregister:
|
unregister:
|
||||||
success: '&aSekmingai issiregistravote!'
|
success: '&aSėkmingai išsiregistravote!'
|
||||||
command_usage: '&ePanaikinti registracija: "/unregister slaptazodis"'
|
command_usage: '&ePanaikinti registraciją: "/unregister slaptažodis"'
|
||||||
|
|
||||||
# Other messages
|
# Other messages
|
||||||
misc:
|
misc:
|
||||||
account_not_activated: '&aJusu vartotojas nera patvirtintas, patikrinkite el.pasta.'
|
account_not_activated: '&aJūsų vartotojas nėra patvirtintas, pasitikrinkite el.paštą.'
|
||||||
password_changed: '&aSlaptazodis pakeistas'
|
password_changed: '&aSlaptažodis pakeistas'
|
||||||
logout: '&aSekmingai atsijungete'
|
logout: '&aSėkmingai atsijungėte'
|
||||||
reload: '&aNustatymai ir duomenu baze buvo perkrauta.'
|
reload: '&aNustatymai ir duomenų bazė buvo perkrauta.'
|
||||||
usage_change_password: '&ePanaudojimas: /changepassword senasSlaptazodis naujasSlaptazodis'
|
usage_change_password: '&ePanaudojimas: /changepassword senasSlaptažodis naujasSlaptažodis'
|
||||||
accounts_owned_self: 'Jus turite %count paskyra(-s):'
|
accounts_owned_self: 'Jūs turite %count paskyrą(-s):'
|
||||||
accounts_owned_other: 'Zaidejas %name turi %count paskyra(-s):'
|
accounts_owned_other: 'Žaidejas %name turi %count paskyrą(-s):'
|
||||||
|
|
||||||
# Session messages
|
# Session messages
|
||||||
session:
|
session:
|
||||||
valid_session: '&aSesijos prisijungimas'
|
valid_session: '&aAutomatinis sesijos prisijungimas'
|
||||||
invalid_session: '&cSesijos laikai nesutampa, prasome palaukti kol secija baigsis.'
|
invalid_session: '&cSesijos laikai nesutampa. Prašome palaukti kol sesija baigsis.'
|
||||||
|
|
||||||
# Error messages when joining
|
# Error messages when joining
|
||||||
on_join_validation:
|
on_join_validation:
|
||||||
same_ip_online: 'Zaidejas su tuo paciu ip jau yra zaidime!'
|
same_ip_online: 'Žaidejas su tuo pačiu IP adresu jau yra žaidime!'
|
||||||
same_nick_online: '&cKazkas situo vardu jau zaidzia.'
|
same_nick_online: '&cKažkas šituo vardu jau žaidžia.'
|
||||||
name_length: '&cJusu varsdas yra per ilgas arba per trumpas.'
|
name_length: '&cJūsų vardas yra per ilgas arba per trumpas.'
|
||||||
characters_in_name: '&cJusu varde yra neledziamu simboliu, leidziami: %valid_chars'
|
characters_in_name: '&cJūsų varde yra neledziamų simbolių. Leidžiami: %valid_chars'
|
||||||
kick_full_server: '&cServeris yra pilnas, Atsiprasome.'
|
kick_full_server: '&cServeris yra pilnas, atsiprašome.'
|
||||||
country_banned: '&4Jusu salis yra uzblokuota siame serveryje!'
|
country_banned: '&4Jūsų šalis yra užblokuota šiame serveryje!'
|
||||||
not_owner_error: 'Tu neesi sios paskyros savininkas, pasirinkite kita varda!'
|
not_owner_error: 'J0s nesate šios paskyros savininkas, pasirinkite kitą vardą!'
|
||||||
invalid_name_case: 'Turetumete prisijungti su vardu: %valid, o ne su: %invalid.'
|
invalid_name_case: 'Turėtumėte prisijungti su vardu %valid, o ne su: %invalid.'
|
||||||
quick_command: 'Tu panaudojai komanda per greitai! Prisijunkite isnaujo ir siek tiek palaukite pries naudojant komandas.'
|
quick_command: 'Jūs panaudojote komandą per greitai! Prisijunkite iš naujo ir šiek tiek palaukite prieš naudojant komandas.'
|
||||||
|
|
||||||
# Email
|
# Email
|
||||||
email:
|
email:
|
||||||
add_email_request: '&ePrasau pridekite savo el.pasta : /email add <el.pastas> <el.pastas>'
|
add_email_request: '&ePrašome jūsų pridėti savo el.paštą : /email add <el.paštas> <el.paštas>'
|
||||||
usage_email_add: '&cNaudojimas: /email add <el.pastas> <el.pastas>'
|
usage_email_add: '&cNaudojimas: /email add <el.paštas> <el.paštas>'
|
||||||
usage_email_change: '&cNaudojimas: /email change <senas el.pastas> <naujas el.pastas>'
|
usage_email_change: '&cNaudojimas: /email change <senas el.pastas> <naujas el.pastas>'
|
||||||
new_email_invalid: '&cNeteisingas el.pastas, bandykite isnaujo!'
|
new_email_invalid: '&cNeteisingas el.paštas, bandykite iš naujo!'
|
||||||
old_email_invalid: '&cNeteisingas senas el.pastas, bandykite isnaujo!'
|
old_email_invalid: '&cNeteisingas senas el.paštas, bandykite iš naujo!'
|
||||||
invalid: '&cNeteisingas el.pastas, bandykite isnaujo!'
|
invalid: '&cNeteisingas el.paštas, bandykite iš naujo!'
|
||||||
added: '&2El.pastas sekmingai pridetas!'
|
added: '&2El.paštas sėkmingai pridėtas!'
|
||||||
add_not_allowed: '&cNaujo el.pasto pridejimas nera galimas'
|
add_not_allowed: '&cNaujo el.pašto pridejimas nėra galimas'
|
||||||
request_confirmation: '&cPatvirtinkite savo el.pasta!'
|
request_confirmation: '&cPatvirtinkite savo el.paštą!'
|
||||||
changed: '&2El.pasta pakeistas sekmingai!'
|
changed: '&2El.paštą pakeistas sėkmingai!'
|
||||||
change_not_allowed: '&cEl.pasto keitimas nera galimas'
|
change_not_allowed: '&cEl.pašto keitimas nėra galimas'
|
||||||
email_show: '&2Jusu dabartinis el.pasto adresas: &f%email'
|
email_show: '&2Jūsų dabartinis el.pašto adresas: &f%email'
|
||||||
no_email_for_account: '&2Siuo metu jus neturite prideja jokio el.pasto adreso.'
|
no_email_for_account: '&2Šiuo metu Jūs neturite pridėję jokio el.pašto adreso.'
|
||||||
already_used: '&4Jis el.pasto adresas jau yra naudojamas'
|
already_used: '&4Jis el.pašto adresas jau yra naudojamas'
|
||||||
incomplete_settings: 'Klaidas: Nevisi nustatymai yra nustatyti laisko siuntimui. Susikietite su administratorium.'
|
incomplete_settings: 'Klaida: Ne visi nustatymai yra nustatyti laiško siuntimui. Susikietite su administratoriumi.'
|
||||||
send_failure: 'El.pasto laiskas nebuvo issiustas. Susikietite su administratorium.'
|
send_failure: 'El.pašto laiškas nebuvo išsiųstas. Susikietite su administratoriumi.'
|
||||||
change_password_expired: 'Jus nebegalite pakeisti savo slaptazodzio naudojant sia komanda.'
|
change_password_expired: 'Jūs nebegalite pakeisti savo slaptažodzio naudojant šią komandą.'
|
||||||
email_cooldown_error: '&cEl.pasto laiskas jau buvo issiustas. Palaukite %time pries siunciant nauja.'
|
email_cooldown_error: '&cEl.pašto laiškas jau buvo išsiųstas. Palaukite %time prieš šiunčiant naują.'
|
||||||
|
|
||||||
# Password recovery by email
|
# Password recovery by email
|
||||||
recovery:
|
recovery:
|
||||||
forgot_password_hint: '&cPamirsote slaptazodi? Rasykite: /email recovery el.pastas'
|
forgot_password_hint: '&cPamiršote savo slaptažodį? Rašykite: /email recovery el.paštas'
|
||||||
command_usage: '&cNaudojimas: /email recovery el.pastas'
|
command_usage: '&cNaudojimas: /email recovery el.paštas'
|
||||||
email_sent: '&2Laiskas i jusu pasto adresa buvo issiustas!'
|
email_sent: '&2Laiškas į Jūsų el.pašto adresą buvo išsiųstas!'
|
||||||
code:
|
code:
|
||||||
code_sent: 'Kodas slaptazodzio atstatymui buvo issiustas i jusu pasta.'
|
code_sent: 'Kodas slaptažodžio atstatymui buvo išsiųstas į Jūsų el.paštą.'
|
||||||
incorrect: 'Kodas neteisingas! jums liko %count bandymai(-as).'
|
incorrect: 'Kodas neteisingas! Jums liko %count bandymai(-as).'
|
||||||
tries_exceeded: 'Jus isnaudojote visus bandymus. Naudokite "/email recovery el.pastas" kad gauti nauja koda.'
|
tries_exceeded: 'Jūs išnaudojote visus bandymus. Naudokite "/email recovery el.paštas", kad gauti naują kodą.'
|
||||||
correct: 'Kodas ivestas sekmingai!'
|
correct: 'Kodas įvestas sėkmingai!'
|
||||||
change_password: 'Naudokite /email setpassword <Naujas_Slaptazodis> kad pasikeistumete slaptazodi.'
|
change_password: 'Naudokite /email setpassword <Naujas_slaptažodis>, kad pasikeistumėte slaptažodį.'
|
||||||
|
|
||||||
# Captcha
|
# Captcha
|
||||||
captcha:
|
captcha:
|
||||||
usage_captcha: '&cPanaudojimas: /captcha %captcha_code'
|
usage_captcha: '&cPanaudojimas: /captcha %captcha_code'
|
||||||
wrong_captcha: '&cNeteisinga Captcha, naudokite : /captcha %captcha_code'
|
wrong_captcha: '&cNeteisinga captcha, naudokite : /captcha %captcha_code'
|
||||||
valid_captcha: '&cJusu captcha Teisinga!'
|
valid_captcha: '&cJūsų captcha teisinga!'
|
||||||
captcha_for_registration: 'Kad prisiregistruotumete turite ivygdyti captcha, rasykite: /captcha %captcha_code'
|
captcha_for_registration: 'Kad prisiregistruotumėte turite įvygdyti captchą. Rašykite: /captcha %captcha_code'
|
||||||
register_captcha_valid: '&2Captcha Teisinga! Galite naudoti /register'
|
register_captcha_valid: '&2Captcha teisinga! Galite naudoti /register'
|
||||||
|
|
||||||
# Verification code
|
# Verification code
|
||||||
verification:
|
verification:
|
||||||
code_required: '&3Kad naudotumete sia komanda turi patvirtinti savo pasto adresa! Sekite instrukcijas savo el.paste.'
|
code_required: '&3Kad galėtumėte naudoti šią komandą turite patvirtinti savo el.pašto adresą! Sekite instrukcijas savo el.pašte.'
|
||||||
command_usage: '&cNaudojimas: /verification <kodas>'
|
command_usage: '&cNaudojimas: /verification <kodas>'
|
||||||
incorrect_code: '&cNeteisingas kodas, naudokite "/verification <kodas>" ivesdami koda gauta savo el.paste'
|
incorrect_code: '&cNeteisingas kodas, naudokite "/verification <kodas>" įvesdami kodą gautą savo el.pašte'
|
||||||
success: '&2Jusu paskyra patvirtinta! Jus galite naudoti visas komandas!'
|
success: '&2Jūsų paskyra patvirtinta! Jūs galite naudoti visas komandas!'
|
||||||
already_verified: '&2Jus jau esate patvirtintas ir galite naudoti visas komandas!'
|
already_verified: '&2Jūs jau esate patvirtinę savo paskyrą ir galite naudoti visas komandas!'
|
||||||
code_expired: '&3Jusu kodo galiojimas baigesi! Panaudokite komanda isnaujo kad gauti nauja koda!'
|
code_expired: '&3Jūsų kodo galiojimas baigėsi! Panaudokite komandą iš naujo, kad gautumėte naują kodą!'
|
||||||
email_needed: '&3Kad patvirtinti savo paskyra turite prideti el.pasto adresa!'
|
email_needed: '&3Kad patvirtinti savo paskyra turite pridėti el.pašto adresą!'
|
||||||
|
|
||||||
# Time units
|
# Time units
|
||||||
time:
|
time:
|
||||||
second: 'sekunde'
|
second: 'sekundę'
|
||||||
seconds: 'sekundes'
|
seconds: 'sekundes'
|
||||||
minute: 'minute'
|
minute: 'minutę'
|
||||||
minutes: 'minutes'
|
minutes: 'minutes'
|
||||||
hour: 'valanda'
|
hour: 'valandą'
|
||||||
hours: 'valandas'
|
hours: 'valandas'
|
||||||
day: 'diena'
|
day: 'dieną'
|
||||||
days: 'dienas'
|
days: 'dienas'
|
||||||
|
|
||||||
# Two-factor authentication
|
# Two-factor authentication
|
||||||
two_factor:
|
two_factor:
|
||||||
code_created: '&2Tavo slaptas kodas yra %code. Ji gali nuskenuoti cia: %url'
|
code_created: '&2Jūsų slaptas kodas yra %code. Jį galite nuskenuoti čia: %url'
|
||||||
confirmation_required: 'Patvirtinkite savo koda su: /2fa confirm <kodas>'
|
confirmation_required: 'Patvirtinkite savo kodą su: /2fa confirm <kodas>'
|
||||||
code_required: 'Patvirkinkite savo koda su: /2fa code <kodas>'
|
code_required: 'Patvirkinkite savo kodą su: /2fa code <kodas>'
|
||||||
already_enabled: 'Jus jau turite dvieju faktoriu autentifikacija!'
|
already_enabled: 'Jūs jau turite dviejų faktorių autentifikaciją!'
|
||||||
enable_error_no_code: 'Jus neturite dvieju faktoriu autentifikacijos arba ji pasibaige. Rasykite /2fa add'
|
enable_error_no_code: 'Jūs neturite dviejų faktorių autentifikacijos arba ji pasibaigė. Rašykite /2fa add'
|
||||||
enable_success: 'Dvieju faktoriu autentifikacija sekmingai ijungta'
|
enable_success: 'Dviejų faktorių autentifikacija sėkmingai įjungta'
|
||||||
enable_error_wrong_code: 'Wrong code or code has expired. Please run /2fa add'
|
enable_error_wrong_code: 'Neteisingas arba pasibaigęs kodas. Rašykite /2fa add'
|
||||||
not_enabled_error: 'Two-factor authentication is not enabled for your account. Run /2fa add'
|
not_enabled_error: 'Dviejų faktorių autentifikavimas nėra įjungtas ant jūsų paskyros. Rašykite /2fa add'
|
||||||
removed_success: 'Successfully removed two-factor auth from your account'
|
removed_success: 'Dviejų faktorių autentifikavimas sėkmingai pašalintas iš jūsų paskyros.'
|
||||||
invalid_code: 'Neteisingas kodas!'
|
invalid_code: 'Neteisingas kodas!'
|
||||||
|
|||||||
@@ -5,13 +5,13 @@
|
|||||||
|
|
||||||
# Registration
|
# Registration
|
||||||
registration:
|
registration:
|
||||||
|
disabled: '&cRegistracija v igri je onemogočena!'
|
||||||
|
name_taken: '&cTo uporabniško ime ste ze registrirali!'
|
||||||
register_request: '&3Registrirajte se z ukazom "/register <geslo> <PotrdiGeslo>"'
|
register_request: '&3Registrirajte se z ukazom "/register <geslo> <PotrdiGeslo>"'
|
||||||
command_usage: '&cUporaba: /register <geslo> <PotrdiGeslo>'
|
command_usage: '&cUporaba: /register <geslo> <PotrdiGeslo>'
|
||||||
reg_only: '&4Samo registrirani uporabniki se lahko povezejo! Obiscite http://example.com , da se registrirate!'
|
reg_only: '&4Samo registrirani uporabniki se lahko povezejo! Obiscite http://example.com , da se registrirate!'
|
||||||
kicked_admin_registered: 'Administrator vas je registriral; prosimo, da se prijavite.'
|
|
||||||
success: '&2Uspešno registriran!'
|
success: '&2Uspešno registriran!'
|
||||||
disabled: '&cRegistracija v igri je onemogočena!'
|
kicked_admin_registered: 'Administrator vas je registriral; prosimo, da se prijavite.'
|
||||||
name_taken: '&cTo uporabniško ime ste ze registrirali!'
|
|
||||||
|
|
||||||
# Password errors on registration
|
# Password errors on registration
|
||||||
password:
|
password:
|
||||||
@@ -40,6 +40,7 @@ error:
|
|||||||
max_registration: '&cPresegli ste največjo stevilo registracij (%reg_count/%max_acc %reg_names) za vašo povezavo!'
|
max_registration: '&cPresegli ste največjo stevilo registracij (%reg_count/%max_acc %reg_names) za vašo povezavo!'
|
||||||
logged_in: '&cSte že povezani!'
|
logged_in: '&cSte že povezani!'
|
||||||
kick_for_vip: '&3VIP igralec se je pridruzil serverju, ko je bil poln!'
|
kick_for_vip: '&3VIP igralec se je pridruzil serverju, ko je bil poln!'
|
||||||
|
# TODO kick_unresolved_hostname: '&cAn error occurred: unresolved player hostname!'
|
||||||
tempban_max_logins: '&cBil si začasno izločen zaradi preveč neuspešnih prijav.'
|
tempban_max_logins: '&cBil si začasno izločen zaradi preveč neuspešnih prijav.'
|
||||||
|
|
||||||
# AntiBot
|
# AntiBot
|
||||||
@@ -131,6 +132,17 @@ verification:
|
|||||||
code_expired: '&3Your code has expired! Execute another sensitive command to get a new code!'
|
code_expired: '&3Your code has expired! Execute another sensitive command to get a new code!'
|
||||||
email_needed: '&3To verify your identity you need to link an email address with your account!'
|
email_needed: '&3To verify your identity you need to link an email address with your account!'
|
||||||
|
|
||||||
|
# Time units
|
||||||
|
time:
|
||||||
|
second: 'sekunda'
|
||||||
|
seconds: 'sekund'
|
||||||
|
minute: 'minuta'
|
||||||
|
minutes: 'minut'
|
||||||
|
hour: 'ur'
|
||||||
|
hours: 'ure'
|
||||||
|
day: 'dan'
|
||||||
|
days: 'dni'
|
||||||
|
|
||||||
# Two-factor authentication
|
# Two-factor authentication
|
||||||
two_factor:
|
two_factor:
|
||||||
code_created: '&2Vasa skrivna koda je %code. Lahko je skenirate tu %url!'
|
code_created: '&2Vasa skrivna koda je %code. Lahko je skenirate tu %url!'
|
||||||
@@ -143,15 +155,3 @@ two_factor:
|
|||||||
not_enabled_error: 'Dvo stopična prijava ni vključena za vaš račun. Uporabite /2fa add'
|
not_enabled_error: 'Dvo stopična prijava ni vključena za vaš račun. Uporabite /2fa add'
|
||||||
removed_success: 'Usprešno ste odstranili dvo stopično prijavo za vaš račun.'
|
removed_success: 'Usprešno ste odstranili dvo stopično prijavo za vaš račun.'
|
||||||
invalid_code: 'Nepravilna koda!'
|
invalid_code: 'Nepravilna koda!'
|
||||||
|
|
||||||
# Time units
|
|
||||||
time:
|
|
||||||
second: 'sekunda'
|
|
||||||
seconds: 'sekund'
|
|
||||||
minute: 'minuta'
|
|
||||||
minutes: 'minut'
|
|
||||||
hour: 'ur'
|
|
||||||
hours: 'ure'
|
|
||||||
day: 'dan'
|
|
||||||
days: 'dni'
|
|
||||||
|
|
||||||
@@ -5,141 +5,132 @@
|
|||||||
|
|
||||||
# Registration
|
# Registration
|
||||||
registration:
|
registration:
|
||||||
disabled: '&c注册已被禁止'
|
disabled: '&8[&6玩家系统&8] &c目前服务器暂时禁止注册,请到服务器论坛以得到更多资讯'
|
||||||
name_taken: '&c此用户已经在此服务器注册过'
|
name_taken: '&8[&6玩家系统&8] &c此用户已经在此服务器注册过'
|
||||||
register_request: '&b请输入“&a/reg <密码> <重复密码>&b”以注册'
|
register_request: '&8[&6玩家系统&8] &c请输入“/register <密码> <再输入一次以确定密码>”以注册'
|
||||||
command_usage: '&c正确用法:“/reg <密码> <重复密码>”'
|
command_usage: '&8[&6玩家系统&8] &c正确用法:“/register <密码> <再输入一次以确定密码>”'
|
||||||
reg_only: '&c只允许注册过的玩家进服!'
|
reg_only: '&8[&6玩家系统&8] &f只允许注册过的玩家进服!请到 https://example.cn 注册'
|
||||||
success: '&a*** 已成功注册 ***'
|
success: '&8[&6玩家系统&8] &c已成功注册!'
|
||||||
|
kicked_admin_registered: '有一位管理员刚刚为您完成了注册,请重新登录'
|
||||||
|
|
||||||
# Password errors on registration
|
# Password errors on registration
|
||||||
password:
|
password:
|
||||||
match_error: '&c密码不相同'
|
match_error: '&8[&6玩家系统&8] &f密码不相同'
|
||||||
name_in_password: '&c您不能使用您的名字作为密码。 '
|
name_in_password: '&8[&6玩家系统&8] &f你不能使用你的名字作为密码。 '
|
||||||
unsafe_password: '&c您不能使用安全性过低的密码。 '
|
unsafe_password: '&8[&6玩家系统&8] &f你不能使用安全性过低的密码。 '
|
||||||
forbidden_characters: '&4您的密码包含了非法字符.可使用的字符: %valid_chars'
|
forbidden_characters: '&4您的密码包含了非法字符。可使用的字符: %valid_chars'
|
||||||
wrong_length: '&4您的密码没有达到要求!'
|
wrong_length: '&8[&6玩家系统&8] &c你的密码不符合要求'
|
||||||
pwned_password: '&c你使用的密码并不安全。它已经被使用了 %pwned_count 次! 请使用一个更强大的密码...'
|
|
||||||
|
|
||||||
# Login
|
# Login
|
||||||
login:
|
login:
|
||||||
command_usage: '&c正确用法:“/l <密码>”'
|
command_usage: '&8[&6玩家系统&8] &c正确用法:“/login <密码>”'
|
||||||
wrong_password: '&c*** 密码错误 ***'
|
wrong_password: '&8[&6玩家系统&8] &c错误的密码'
|
||||||
success: '&a*** 已成功登录 ***'
|
success: '&8[&6玩家系统&8] &c已成功登录!'
|
||||||
login_request: '&c请输入“/l <密码>”以登录'
|
login_request: '&8[&6玩家系统&8] &c请输入“/login <密码>”以登录'
|
||||||
timeout_error: '给您登录的时间已经过了'
|
timeout_error: '&8[&6玩家系统&8] &f登录超时'
|
||||||
|
|
||||||
# Errors
|
# Errors
|
||||||
error:
|
error:
|
||||||
denied_command: '&7您需要先通过验证才能使用该命令!'
|
denied_command: '&c您需要先通过验证才能使用该命令!'
|
||||||
denied_chat: '&7您需要先通过验证才能聊天!'
|
denied_chat: '&c您需要先通过验证才能聊天!'
|
||||||
unregistered_user: '&c此用户名还未注册过'
|
unregistered_user: '&8[&6玩家系统&8] &c此用户名还未注册过'
|
||||||
not_logged_in: '&c您还未登录!'
|
not_logged_in: '&8[&6玩家系统&8] &c你还未登录!'
|
||||||
no_permission: '&c没有权限'
|
no_permission: '&8[&6玩家系统&8] &c没有权限'
|
||||||
unexpected_error: '&4发现错误,请联系管理员'
|
unexpected_error: '&8[&6玩家系统&8] &f发现错误,请联系管理员'
|
||||||
max_registration: '&c该地址已无法注册,请联系管理员进行注册.'
|
max_registration: '&8[&6玩家系统&8] &f你不允许再为你的IP在服务器注册更多用户了!'
|
||||||
logged_in: '&c您已经登陆过了!'
|
logged_in: '&8[&6玩家系统&8] &c你已经登陆过了!'
|
||||||
kick_for_vip: '&c一个VIP玩家加入了已满的服务器!'
|
kick_for_vip: '&8[&6玩家系统&8] &cA VIP玩家加入了已满的服务器!'
|
||||||
kick_unresolved_hostname: '&c发生了一个错误: 无法解析玩家的主机名'
|
kick_unresolved_hostname: '&8[&6玩家系统&8] &c发生了一个错误: 无法解析玩家的Hostname'
|
||||||
tempban_max_logins: '&c由于您登录失败次数过多,已被暂时禁止登录。'
|
tempban_max_logins: '&c由于您登录失败次数过多,已被暂时禁止登录。'
|
||||||
|
|
||||||
# AntiBot
|
# AntiBot
|
||||||
antibot:
|
antibot:
|
||||||
kick_antibot: '连接异常,请稍后加入'
|
kick_antibot: '&8[&6玩家系统&8] &f验证程序已启用 !请稍等几分钟后再次进入服务器'
|
||||||
auto_enabled: '&c由于发生大量异常连接,本服将禁止连接.'
|
auto_enabled: '&8[&6玩家系统&8] &f验证程序由于大量异常连接而启用'
|
||||||
auto_disabled: '&a异常连接减少,本服将在 &a%m &a分钟后自动开放连接.'
|
auto_disabled: '&8[&6玩家系统&8] &f验证程序由于异常连接减少而在 %m 分钟后停止'
|
||||||
|
|
||||||
# Unregister
|
# Unregister
|
||||||
unregister:
|
unregister:
|
||||||
success: '&a*** 已成功注销 ***'
|
success: '&8[&6玩家系统&8] &c成功删除此用户!'
|
||||||
command_usage: '&c正确用法:“/unregister <密码>”'
|
command_usage: '&8[&6玩家系统&8] &c正确用法:“/unregister <密码>”'
|
||||||
|
|
||||||
# Other messages
|
# Other messages
|
||||||
misc:
|
misc:
|
||||||
account_not_activated: |-
|
account_not_activated: '&8[&6玩家系统&8] &f你的帐号还未激活,请查看你的邮箱!'
|
||||||
&a一封包含密码的邮件已发送至您的收件箱.
|
password_changed: '&8[&6玩家系统&8] &c密码已成功修改!'
|
||||||
&a请在十分钟内完成登录,否则将注销此账户.
|
logout: '&8[&6玩家系统&8] &c已成功登出!'
|
||||||
not_activated: '&c账户未激活,请注册激活后再次尝试.'
|
reload: '&8[&6玩家系统&8] &f配置以及数据已经重新加载完毕'
|
||||||
password_changed: '&a*** 密码已修改 ***'
|
usage_change_password: '&8[&6玩家系统&8] &f正确用法:“/changepassword 旧密码 新密码”'
|
||||||
logout: '&a*** 已成功登出 ***'
|
accounts_owned_self: '您拥有 %count 个账户:'
|
||||||
reload: '&a配置以及数据已经重新加载完毕'
|
accounts_owned_other: '玩家 %name 拥有 %count 个账户:'
|
||||||
usage_change_password: '&a正确用法:“/changepassword 旧密码 新密码”'
|
|
||||||
accounts_owned_self: '您拥有 %count 个账户:'
|
|
||||||
accounts_owned_other: '玩家 %name 拥有 %count 个账户:'
|
|
||||||
|
|
||||||
# Session messages
|
# Session messages
|
||||||
session:
|
session:
|
||||||
valid_session: ''
|
valid_session: '&8[&6玩家系统&8] &c欢迎回来,已帮你自动登录到此服务器'
|
||||||
invalid_session: '&c*** 请重新登录 ***'
|
invalid_session: '&8[&6玩家系统&8] &f登录数据异常,请等待登录结束'
|
||||||
|
|
||||||
# Error messages when joining
|
# Error messages when joining
|
||||||
on_join_validation:
|
on_join_validation:
|
||||||
same_ip_online: '已有一个同IP玩家在游戏中了!'
|
same_ip_online: '已有一个同IP玩家在游戏中了!'
|
||||||
same_nick_online: '&a同样的用户名现在在线且已经登录了!'
|
same_nick_online: '&8[&6玩家系统&8] &f同样的用户名现在在线且已经登录了!'
|
||||||
name_length: '&c您的用户名太短或者太长了'
|
name_length: '&8[&6玩家系统&8] &c你的用户名太短或者太长了'
|
||||||
characters_in_name: '&c您的用户名不符合标准.'
|
characters_in_name: '&8[&6玩家系统&8] &c你的用户名包含非法字母,用户名里允许的字母: %valid_chars'
|
||||||
kick_full_server: '&c抱歉,服务器已满!'
|
kick_full_server: '&8[&6玩家系统&8] &c抱歉,服务器已满!'
|
||||||
country_banned: |-
|
country_banned: '这个服务器禁止该国家登陆'
|
||||||
&6[&b&lAccount Security System&6]
|
not_owner_error: '&8[&6玩家系统&8] &4警告! &c你并不是此帐户的拥有者,请立即登出! '
|
||||||
&c为保证您的游玩体验,请使用中国境内网络连接.
|
invalid_name_case: '&8[&6玩家系统&8] &c你应该使用「%valid」而并非「%invalid」登入游戏。 '
|
||||||
&cTo ensure your play experience,please use the Internet connection within China.
|
quick_command: '&8[&6玩家系统&8] &c您发送命令的速度太快了,请重新加入服务器再等待一会后再使用命令'
|
||||||
not_owner_error: |-
|
|
||||||
&6[&b&lAccount Security System&6]
|
|
||||||
&c请勿尝试登陆系统账户,系统账户受安全系统保护.
|
|
||||||
&c如果您并不知情,请更换您的用户名重新加入该服务器.
|
|
||||||
invalid_name_case: '&c您应该使用 %valid 登录服务器,当前名字: %invalid .'
|
|
||||||
quick_command: '&c您发送命令的速度太快了,请重新加入服务器等待一会后再使用命令'
|
|
||||||
|
|
||||||
# Email
|
# Email
|
||||||
email:
|
email:
|
||||||
add_email_request: ''
|
add_email_request: '&8[&6玩家系统&8] &c请输入“/email add <你的邮箱> <再输入一次以确认>”以添加您的邮箱到此帐号'
|
||||||
usage_email_add: '&a用法: /email add <邮箱> <确认邮箱> '
|
usage_email_add: '&8[&6玩家系统&8] &f用法: /email add <邮箱> <确认邮箱地址> '
|
||||||
usage_email_change: '&a用法: /email change <旧邮箱> <新邮箱> '
|
usage_email_change: '&8[&6玩家系统&8] &f用法: /email change <旧邮箱> <新邮箱> '
|
||||||
new_email_invalid: '&c新邮箱无效!'
|
new_email_invalid: '&8[&6玩家系统&8] &f新邮箱无效!'
|
||||||
old_email_invalid: '&c旧邮箱无效!'
|
old_email_invalid: '&8[&6玩家系统&8] &f旧邮箱无效!'
|
||||||
invalid: '&c无效的邮箱'
|
invalid: '&8[&6玩家系统&8] &f无效的邮箱'
|
||||||
added: '&a*** 邮箱已添加 ***'
|
added: '&8[&6玩家系统&8] &f邮箱已添加 !'
|
||||||
add_not_allowed: '&c服务器不允许添加电子邮箱'
|
add_not_allowed: '&8[&6玩家系统&8] &c服务器不允许添加邮箱地址'
|
||||||
request_confirmation: '&c确认您的邮箱'
|
request_confirmation: '&8[&6玩家系统&8] &f确认你的邮箱 !'
|
||||||
changed: '&a*** 邮箱已修改 ***'
|
changed: '&8[&6玩家系统&8] &f邮箱已修改 !'
|
||||||
change_not_allowed: '&c服务器不允许修改邮箱地址'
|
change_not_allowed: '&8[&6玩家系统&8] &c服务器不允许修改邮箱地址'
|
||||||
email_show: '&a该账户使用的电子邮箱为: &a%email'
|
email_show: '&8[&6玩家系统&8] &2您当前的电子邮件地址为: &f%email'
|
||||||
no_email_for_account: '&c当前并没有任何邮箱与该账号绑定'
|
no_email_for_account: '&8[&6玩家系统&8] &2您当前并没有任何邮箱与该账号绑定'
|
||||||
already_used: '&c邮箱已被使用'
|
already_used: '&8[&6玩家系统&8] &4邮箱已被使用'
|
||||||
incomplete_settings: '&c错误: 必要设置未设定完成,请联系管理员'
|
incomplete_settings: '&8[&6玩家系统&8] 错误:必要设置未设定完成,请联系管理员'
|
||||||
send_failure: '&c邮件已被作废,请检查您的邮箱是否正常工作.'
|
send_failure: '&8[&6玩家系统&8] 邮件发送失败,请联系管理员'
|
||||||
change_password_expired: '&c您不能使用此命令更改密码'
|
change_password_expired: '&8[&6玩家系统&8] 您不能使用此命令更改密码'
|
||||||
email_cooldown_error: '&c您需要等待 %time 后才能再次请求发送'
|
email_cooldown_error: '&8[&6玩家系统&8] &c邮件已在几分钟前发送,您需要等待 %time 后才能再次请求发送'
|
||||||
|
|
||||||
# Password recovery by email
|
# Password recovery by email
|
||||||
recovery:
|
recovery:
|
||||||
forgot_password_hint: '&c忘了您的密码?请输入:“/email recovery <您的邮箱>”'
|
forgot_password_hint: '&8[&6玩家系统&8] &c忘了你的密码?请输入:“/email recovery <你的邮箱>”'
|
||||||
command_usage: '&a用法: /email recovery <邮箱>'
|
command_usage: '&8[&6玩家系统&8] &f用法: /email recovery <邮箱>'
|
||||||
email_sent: '&a找回密码邮件已发送!'
|
email_sent: '&8[&6玩家系统&8] &f找回密码邮件已发送 !'
|
||||||
code:
|
code:
|
||||||
code_sent: '&a*** 已发送验证邮件 ***'
|
code_sent: '一个用于重置您的密码的验证码已发到您的邮箱'
|
||||||
incorrect: '&a验证码不正确! 使用 /email recovery [邮箱] 以生成新的验证码'
|
incorrect: '验证码不正确! 使用 /email recovery [邮箱] 以生成新的验证码'
|
||||||
tries_exceeded: '&a您已经达到输入验证码次数的最大允许次数.'
|
tries_exceeded: '您已经达到输入验证码次数的最大允许次数。请使用 "/email recovery [邮箱]" 来生成一个新的'
|
||||||
correct: '&a*** 验证通过 ***'
|
correct: '验证码正确!'
|
||||||
change_password: '&c请使用 /email setpassword <新密码> 立即设置新的密码'
|
change_password: '请使用 /email setpassword <新密码> 立即设置新的密码'
|
||||||
|
|
||||||
# Captcha
|
# Captcha
|
||||||
captcha:
|
captcha:
|
||||||
usage_captcha: '&7请输入 /captcha %captcha_code 来验证操作.'
|
usage_captcha: '&8[&6玩家系统&8] &c正确用法:/captcha %captcha_code'
|
||||||
wrong_captcha: '&c错误的验证码.'
|
wrong_captcha: '&8[&6玩家系统&8] &c错误的验证码,请输入:“/captcha %captcha_code”'
|
||||||
valid_captcha: '&a*** 验证通过 ***'
|
valid_captcha: '&8[&6玩家系统&8] &c你的验证码是有效的!'
|
||||||
captcha_for_registration: '&7请输入 /captcha %captcha_code 来验证操作.'
|
captcha_for_registration: '注册前您需要先提供验证码,请使用指令:/captcha %captcha_code'
|
||||||
register_captcha_valid: '&a验证通过, 现在可以使用 /register 注册啦!'
|
register_captcha_valid: '&2有效的验证码!您现在可以使用 /register 注册啦!'
|
||||||
|
|
||||||
# Verification code
|
# Verification code
|
||||||
verification:
|
verification:
|
||||||
code_required: '&a*** 已发送验证邮件 ***'
|
code_required: '&3这个命令非常敏感,需要电子邮件验证!请检查您的收件箱,并遵循邮件的指导。'
|
||||||
command_usage: '&c使用方法:/verification <验证码>'
|
command_usage: '&c使用方法: /verification <验证码>'
|
||||||
incorrect_code: '&c错误的验证码.'
|
incorrect_code: '&c验证码错误, 请在聊天框输入 "/verification <验证码>",使用您在电子邮件中收到的验证码。'
|
||||||
success: '&a*** 验证通过 ***'
|
success: '&2您的身份已经得到验证!您现在可以在当前会话中执行所有命令!'
|
||||||
already_verified: '&a您已经通过验证'
|
already_verified: '&2您已经可以在当前会话中执行任何敏感命令!'
|
||||||
code_expired: '&c验证码已失效'
|
code_expired: '&3您的验证码已失效!执行另一个敏感命令以获得新的验证码!'
|
||||||
email_needed: '&c邮箱未绑定'
|
email_needed: '&3为了验证您的身份,您需要将一个电子邮件地址与您的帐户绑定!!'
|
||||||
|
|
||||||
# Time units
|
# Time units
|
||||||
time:
|
time:
|
||||||
@@ -147,47 +138,20 @@ time:
|
|||||||
seconds: '秒'
|
seconds: '秒'
|
||||||
minute: '分'
|
minute: '分'
|
||||||
minutes: '分'
|
minutes: '分'
|
||||||
hour: '时'
|
hour: '小时'
|
||||||
hours: '时'
|
hours: '小时'
|
||||||
day: '天'
|
day: '天'
|
||||||
days: '天'
|
days: '天'
|
||||||
|
|
||||||
# Two-factor authentication
|
# Two-factor authentication
|
||||||
two_factor:
|
two_factor:
|
||||||
code_created: '&7您正在激活双重验证, 请打开 &a%url &7扫描二维码'
|
code_created: '&8[&6玩家系统&8] &a你的代码是 %code,你可以使用 %url 来进行扫描'
|
||||||
confirmation_required: '&7请输入“/totp confirm <验证码>”来确认激活双重验证'
|
confirmation_required: '&8[&6玩家系统&8] &3请输入 &a/2fa confirm <验证码> &3来确认双重认证'
|
||||||
code_required: '&c请输入“/totp code <验证码>”来提交验证码'
|
code_required: '&8[&6玩家系统&8] &c请输入 &a/2fa code <验证码> &c来提交双重认证验证码'
|
||||||
already_enabled: '&a双重验证已启用'
|
already_enabled: '&8[&6玩家系统&8] &a双重认证已在您的账号上启用'
|
||||||
enable_error_no_code: '&c验证码丢失'
|
enable_error_no_code: '&8[&6玩家系统&8] &c双重认证密钥不存在或已过期,请输入 &a/2fa add &c来添加'
|
||||||
enable_success: '&a已成功启用双重验证'
|
enable_success: '&8[&6玩家系统&8] &a已成功启用双重认证'
|
||||||
enable_error_wrong_code: '&c验证码错误或者已经过期,请重新执行“/totp add”'
|
enable_error_wrong_code: '&8[&6玩家系统&8] &c双重认证代码错误或者已经过期,请重新执行 &a/2fa add'
|
||||||
not_enabled_error: '&c双重验证未在您的账号上启用,请使用“/totp add”来启用'
|
not_enabled_error: '&8[&6玩家系统&8] &c双重认证码未在您的账号上启用,请使用 &a/2fa add &c来启用'
|
||||||
removed_success: '&c双重验证已从您的账号上禁用'
|
removed_success: '&8[&6玩家系统&8] &c双重认证码已从您的账号上删除'
|
||||||
invalid_code: '&c无效的验证码'
|
invalid_code: '&8[&6玩家系统&8] &c无效的验证码'
|
||||||
|
|
||||||
# 3rd party features: GUI Captcha
|
|
||||||
gui_captcha:
|
|
||||||
success: '&a*** 验证完成 ***'
|
|
||||||
bedrock_auto_verify_success: '&a*** 基岩版自动验证完成 ***'
|
|
||||||
captcha_window_name: '&k%random&r&n请验证你是真人'
|
|
||||||
captcha_clickable_name: '&k%random&r&n我是真人'
|
|
||||||
message_on_retry: '&c验证失败,你还有 %times 次机会'
|
|
||||||
denied_message_sending: '&c请先完成验证再聊天!'
|
|
||||||
kick_on_failed: '&c请先完成验证!'
|
|
||||||
kick_on_timeout: '&c验证超时'
|
|
||||||
|
|
||||||
# 3rd party features: Bedrock Auto Login
|
|
||||||
bedrock_auto_login:
|
|
||||||
success: "&a基岩版自动登录完成"
|
|
||||||
|
|
||||||
# 3rd party features: Login Location Fix
|
|
||||||
login_location_fix:
|
|
||||||
fix_portal: '&a你在登录时卡在了地狱门, 现已修正'
|
|
||||||
fix_underground: '&a你被埋住了, 坐标已修正, 下次下线之前请小心!'
|
|
||||||
cannot_fix_underground: '&a你被埋住了, 坐标无法修正, 只好送你去了最高点, 自求多福吧少年~'
|
|
||||||
|
|
||||||
# 3rd party features: Double Login Fix
|
|
||||||
double_login_fix:
|
|
||||||
fix_message: '&a已修复幽灵玩家, 请重新进入'
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -7,132 +7,132 @@
|
|||||||
|
|
||||||
# Registration
|
# Registration
|
||||||
registration:
|
registration:
|
||||||
disabled: '&b【AuthMe】&6已關閉註冊功能'
|
disabled: '&b【AuthMe】&6已關閉註冊功能。'
|
||||||
name_taken: '&b【AuthMe】&6這個帳號已經被註冊過了!'
|
name_taken: '&b【AuthMe】&6這個帳號已經被註冊過了!'
|
||||||
register_request: '&b【AuthMe】&6請使用 "&c/register <密碼> <確認密碼>" 來註冊。'
|
register_request: '&b【AuthMe】&6請使用 "&c/register <密碼> <確認密碼>" 來註冊。'
|
||||||
command_usage: '&b【AuthMe】&6用法: &c"/register <密碼> <確認密碼>"'
|
command_usage: '&b【AuthMe】&6用法: &c"/register <密碼> <確認密碼>"'
|
||||||
reg_only: '&b【AuthMe】&6請到下列網站 :「 https://example.tw 」 進行註冊'
|
reg_only: '&b【AuthMe】&6請到下列網站:「 https://example.tw 」進行註冊。'
|
||||||
success: '&b【AuthMe】&6您已成功註冊'
|
success: '&b【AuthMe】&6您已成功註冊!'
|
||||||
kicked_admin_registered: '&b【AuthMe】&6管理員已協助您註冊,請重新登入'
|
kicked_admin_registered: '&b【AuthMe】&6管理員已協助您註冊,請重新登入。'
|
||||||
|
|
||||||
# Password errors on registration
|
# Password errors on registration
|
||||||
password:
|
password:
|
||||||
match_error: '&b【AuthMe】&6兩次輸入的密碼不一致!'
|
match_error: '&b【AuthMe】&6兩次輸入的密碼不一致!'
|
||||||
name_in_password: '&b【AuthMe】&6您不可以用您的 ID (遊戲名稱) 來當作密碼 !'
|
name_in_password: '&b【AuthMe】&6您不可以用您的 ID (遊戲名稱) 來當作密碼!'
|
||||||
unsafe_password: '&b【AuthMe】&6您不可以使用這個不安全的密碼'
|
unsafe_password: '&b【AuthMe】&6您不可以使用這個不安全的密碼!'
|
||||||
forbidden_characters: '&b【AuthMe】&c密碼包含非法字符. 可使用: %valid_chars'
|
forbidden_characters: '&b【AuthMe】&c密碼包含非法字符,可使用:%valid_chars'
|
||||||
wrong_length: '&b【AuthMe】&6您的密碼 超過最大字數 / 小於最小字數'
|
wrong_length: '&b【AuthMe】&6您的密碼 超過最大字數 / 小於最小字數'
|
||||||
|
|
||||||
# Login
|
# Login
|
||||||
login:
|
login:
|
||||||
command_usage: '&b【AuthMe】&6用法: &c"/login <密碼>"'
|
command_usage: '&b【AuthMe】&6用法: &c"/login <密碼>"'
|
||||||
wrong_password: '&b【AuthMe】&6密碼錯誤!'
|
wrong_password: '&b【AuthMe】&6密碼錯誤!'
|
||||||
success: '&b【AuthMe】&6密碼正確,您已成功登入!'
|
success: '&b【AuthMe】&6密碼正確,您已成功登入!'
|
||||||
login_request: '&b【AuthMe】&6請使用 &c"/login <密碼>" &6來登入。'
|
login_request: '&b【AuthMe】&6請使用 &c"/login <密碼>" &6來登入。'
|
||||||
timeout_error: '&b【AuthMe】&6超過登入時間,請稍後再試一次'
|
timeout_error: '&b【AuthMe】&6超過登入時間,請稍後再試一次。'
|
||||||
|
|
||||||
# Errors
|
# Errors
|
||||||
error:
|
error:
|
||||||
denied_command: '&b【AuthMe】&c使用指令之前必須通過驗證!'
|
denied_command: '&b【AuthMe】&c使用指令之前必須通過驗證!'
|
||||||
denied_chat: '&b【AuthMe】&c說話之前必須通過驗證!'
|
denied_chat: '&b【AuthMe】&c說話之前必須通過驗證!'
|
||||||
unregistered_user: '&b【AuthMe】&6這個帳號還沒有註冊過'
|
unregistered_user: '&b【AuthMe】&6這個帳號還沒有註冊過。'
|
||||||
not_logged_in: '&b【AuthMe】&6您還沒有登入!'
|
not_logged_in: '&b【AuthMe】&6您還沒有登入!'
|
||||||
no_permission: '&b【AuthMe】&6您沒有使用該指令的權限。'
|
no_permission: '&b【AuthMe】&6您沒有使用該指令的權限。'
|
||||||
unexpected_error: '&b【AuthMe】&6發生錯誤,請聯繫管理員'
|
unexpected_error: '&b【AuthMe】&6發生錯誤,請聯繫管理員'
|
||||||
max_registration: '&b【AuthMe】&6您的 IP 位置所註冊的帳號數量已經達到最大。'
|
max_registration: '&b【AuthMe】&6您的 IP 位置所註冊的帳號數量已經達到最大限制。'
|
||||||
logged_in: '&b【AuthMe】&6您已經登入了!'
|
logged_in: '&b【AuthMe】&6您已經登入了!'
|
||||||
kick_for_vip: '&b【AuthMe】&6您已經被請出。&c原因 : 有 VIP 玩家登入伺服器'
|
kick_for_vip: '&b【AuthMe】&6您已經被請出。&c原因:有 VIP 玩家登入伺服器'
|
||||||
# TODO kick_unresolved_hostname: '&cAn error occurred: unresolved player hostname!'
|
kick_unresolved_hostname: '&b【AuthMe】&6無法解析玩家主機名稱。'
|
||||||
tempban_max_logins: '&b【AuthMe】&c您已被暫時封鎖IP位置,因為您登入失敗太多次.'
|
tempban_max_logins: '&b【AuthMe】&c您已被暫時封鎖IP位置,因為您登入失敗太多次。'
|
||||||
|
|
||||||
# AntiBot
|
# AntiBot
|
||||||
antibot:
|
antibot:
|
||||||
kick_antibot: '&b【AuthMe】&cAntiBotMod 正在啟用中,請稍後再嘗試登入吧!'
|
kick_antibot: '&b【AuthMe】&cAntiBotMod 正在啟用中,請稍後再嘗試登入吧!'
|
||||||
auto_enabled: '&b【AuthMe】&6AntiBotMod 已自動啟用!'
|
auto_enabled: '&b【AuthMe】&6AntiBotMod 已自動啟用!'
|
||||||
auto_disabled: '&b【AuthMe】&6AntiBotMod 將會於 &c%m &6分鐘後自動關閉'
|
auto_disabled: '&b【AuthMe】&6AntiBotMod 將於 &c%m &6分鐘後自動關閉'
|
||||||
|
|
||||||
# Unregister
|
# Unregister
|
||||||
unregister:
|
unregister:
|
||||||
success: '&b【AuthMe】&6您已經成功註銷。'
|
success: '&b【AuthMe】&6您已經成功註銷。'
|
||||||
command_usage: '&b【AuthMe】&6用法: &c"/unregister <密碼>"'
|
command_usage: '&b【AuthMe】&6用法:&c"/unregister <密碼>"'
|
||||||
|
|
||||||
# Other messages
|
# Other messages
|
||||||
misc:
|
misc:
|
||||||
account_not_activated: '&b【AuthMe】&6您的帳號還沒有經過驗證! 檢查看看您的電子信箱 (Email) 吧!'
|
account_not_activated: '&b【AuthMe】&6您的帳號還沒有經過驗證!檢查看看您的電子郵件 (Email) 吧!'
|
||||||
password_changed: '&b【AuthMe】&6密碼變更成功!'
|
password_changed: '&b【AuthMe】&6密碼變更成功!'
|
||||||
logout: '&b【AuthMe】&6您已成功登出'
|
logout: '&b【AuthMe】&6您已成功登出。'
|
||||||
reload: '&b【AuthMe】&6已重新讀取設定檔及資料庫'
|
reload: '&b【AuthMe】&6已重新讀取設定檔及資料庫。'
|
||||||
usage_change_password: '&b【AuthMe】&6用法: &c"/changepassword <舊密碼> <新密碼>"'
|
usage_change_password: '&b【AuthMe】&6用法:&c"/changepassword <舊密碼> <新密碼>"'
|
||||||
accounts_owned_self: '&b【AuthMe】&6您擁有 %count 個帳號:'
|
accounts_owned_self: '&b【AuthMe】&6您擁有 %count 個帳號:'
|
||||||
accounts_owned_other: '&b【AuthMe】&6玩家 %name 擁有 %count 個帳號:'
|
accounts_owned_other: '&b【AuthMe】&6玩家 %name 擁有 %count 個帳號:'
|
||||||
|
|
||||||
# Session messages
|
# Session messages
|
||||||
session:
|
session:
|
||||||
valid_session: '&b【AuthMe】&6您已經成功登入!'
|
valid_session: '&b【AuthMe】&6您已經成功登入!'
|
||||||
invalid_session: '&b【AuthMe】&6Session驗證不相符!'
|
invalid_session: '&b【AuthMe】&6Session驗證不相符!'
|
||||||
|
|
||||||
# Error messages when joining
|
# Error messages when joining
|
||||||
on_join_validation:
|
on_join_validation:
|
||||||
same_ip_online: '&b【AuthMe】&6同樣IP玩家在線上!'
|
same_ip_online: '&b【AuthMe】&6相同IP玩家在線上!'
|
||||||
same_nick_online: '&b【AuthMe】&6有同樣帳號的玩家在線上!'
|
same_nick_online: '&b【AuthMe】&6有同樣帳號的玩家在線上!'
|
||||||
name_length: '&b【AuthMe】&6您的暱稱 太長 / 太短 了!'
|
name_length: '&b【AuthMe】&6您的暱稱 太長 / 太短 了!'
|
||||||
characters_in_name: '&b【AuthMe】&6暱稱裡能使用的字符為: %valid_chars'
|
characters_in_name: '&b【AuthMe】&6暱稱裡能使用的字符為: %valid_chars'
|
||||||
kick_full_server: '&b【AuthMe】&6伺服器已經滿了,請等等再試一次'
|
kick_full_server: '&b【AuthMe】&6伺服器已經滿了,請等等再試一次。'
|
||||||
country_banned: '&b【AuthMe】&6您所在的地區無法進入此伺服器'
|
country_banned: '&b【AuthMe】&6您所在的地區無法進入此伺服器。'
|
||||||
not_owner_error: '&b【AuthMe】&4警告!&c您並不是此帳戶持有人,請立即登出。'
|
not_owner_error: '&b【AuthMe】&4警告!&c您並不是此帳戶持有人,請立即登出。'
|
||||||
invalid_name_case: '&b【AuthMe】&4警告!&c您應該使用「%valid」而並非「%invalid」登入遊戲。'
|
invalid_name_case: '&b【AuthMe】&4警告!&c您應該使用「%valid」而並非「%invalid」登入遊戲。'
|
||||||
# TODO quick_command: 'You used a command too fast! Please, join the server again and wait more before using any command.'
|
quick_command: '&b【AuthMe】&4指令使用過快,請加入伺服器後稍等一下再使用指令。'
|
||||||
|
|
||||||
# Email
|
# Email
|
||||||
email:
|
email:
|
||||||
add_email_request: '&b【AuthMe】&6請使用 &c"/email add <您的Email> <再次輸入您的Email>" &6來添加 Email'
|
add_email_request: '&b【AuthMe】&6請使用 &c"/email add <電子郵件> <再次輸入電子郵件>" &6來新增電子郵件'
|
||||||
usage_email_add: '&b【AuthMe】&6用法: &c"/email add <您的Email> <重複Email>"'
|
usage_email_add: '&b【AuthMe】&6用法: &c"/email add <電子郵件> <再次輸入電子郵件>"'
|
||||||
usage_email_change: '&b【AuthMe】&6用法: &c"/email change <舊的Email> <新的Email>"'
|
usage_email_change: '&b【AuthMe】&6用法: &c"/email change <舊的電子郵件> <新的電子郵件>"'
|
||||||
new_email_invalid: '&b【AuthMe】&6新的Email無效!'
|
new_email_invalid: '&b【AuthMe】&6新的電子郵件無效!'
|
||||||
old_email_invalid: '&b【AuthMe】&6舊的Email無效!'
|
old_email_invalid: '&b【AuthMe】&6舊的電子郵件無效!'
|
||||||
invalid: '&b【AuthMe】&6無效的Email!'
|
invalid: '&b【AuthMe】&6無效的電子郵件!'
|
||||||
added: '&b【AuthMe】&6已添加Email!'
|
added: '&b【AuthMe】&6已新增電子郵件!'
|
||||||
# TODO add_not_allowed: '&cAdding email was not allowed'
|
add_not_allowed: '&b【AuthMe】&c不允許新增電子郵件'
|
||||||
request_confirmation: '&b【AuthMe】&6請驗證您的Email!'
|
request_confirmation: '&b【AuthMe】&6請驗證您的電子郵件!'
|
||||||
changed: '&b【AuthMe】&6Email已變更!'
|
changed: '&b【AuthMe】&6電子郵件已變更!'
|
||||||
# TODO change_not_allowed: '&cChanging email was not allowed'
|
change_not_allowed: '&b【AuthMe】&c不允許變更電子郵件'
|
||||||
email_show: '&b【AuthMe】&2目前的電子郵件: &f%email'
|
email_show: '&b【AuthMe】&2目前的電子郵件:&f%email'
|
||||||
no_email_for_account: '&b【AuthMe】&2您目前沒有設置電子郵件.'
|
no_email_for_account: '&b【AuthMe】&2您目前沒有設定電子郵件。'
|
||||||
already_used: '&b【AuthMe】&4這個電郵地址已被使用。'
|
already_used: '&b【AuthMe】&4這個電子郵件已被使用。'
|
||||||
incomplete_settings: '&b【AuthMe】&4因為電子郵件設定無完整導致無法傳送,請聯絡管理員.'
|
incomplete_settings: '&b【AuthMe】&4因為電子郵件設定不完整導致無法傳送,請聯絡管理員。'
|
||||||
send_failure: '&b【AuthMe】&4無法傳送電子郵件,請聯絡管理員.'
|
send_failure: '&b【AuthMe】&4無法傳送電子郵件,請聯絡管理員。'
|
||||||
change_password_expired: '&b【AuthMe】&6您現在不能使用這個指令變更密碼了.'
|
change_password_expired: '&b【AuthMe】&6您現在不能使用這個指令變更密碼了。'
|
||||||
email_cooldown_error: '&b【AuthMe】&c電子郵件已經寄出了. 您只能在 %time 後才能傳送.'
|
email_cooldown_error: '&b【AuthMe】&c電子郵件已經寄出了,您只能在 %time 後才能傳送。'
|
||||||
|
|
||||||
# Password recovery by email
|
# Password recovery by email
|
||||||
recovery:
|
recovery:
|
||||||
forgot_password_hint: '&b【AuthMe】&6忘記密碼了嗎? 使用 &c"/email recovery <您的Email>"'
|
forgot_password_hint: '&b【AuthMe】&6忘記密碼了嗎?使用 &c"/email recovery <電子郵件>"'
|
||||||
command_usage: '&b【AuthMe】&6用法: &c"/email recovery <您的Email>"'
|
command_usage: '&b【AuthMe】&6用法: &c"/email recovery <電子郵件>"'
|
||||||
email_sent: '&b【AuthMe】&6已經送出重設密碼要求至您的Email , 請查收。'
|
email_sent: '&b【AuthMe】&6已經送出重設密碼要求至您的電子郵件,請查收。'
|
||||||
code:
|
code:
|
||||||
code_sent: '&b【AuthMe】&6忘記密碼的恢復密碼電子郵件已傳送至您的信箱中.'
|
code_sent: '&b【AuthMe】&6忘記密碼的恢復密碼電子郵件已傳送至您的信箱中。'
|
||||||
incorrect: '&b【AuthMe】&6恢復密碼錯誤! 您剩餘 %count 次嘗試機會.'
|
incorrect: '&b【AuthMe】&6恢復密碼錯誤!您剩餘 %count 次嘗試機會。'
|
||||||
tries_exceeded: '&b【AuthMe】&6恢復密碼過多次數錯誤. 使用 "/email recovery [email]" 取得新的恢復密碼.'
|
tries_exceeded: '&b【AuthMe】&6恢復密碼過多次數錯誤。使用 "/email recovery [電子郵件]" 取得新的恢復密碼。'
|
||||||
correct: '&b【AuthMe】&6恢復密碼正確!'
|
correct: '&b【AuthMe】&6恢復密碼正確!'
|
||||||
change_password: '&b【AuthMe】&6請使用 "/email setpassword <新密碼>" 變更您的密碼.'
|
change_password: '&b【AuthMe】&6請使用 "/email setpassword <新密碼>" 變更您的密碼。'
|
||||||
|
|
||||||
# Captcha
|
# Captcha
|
||||||
captcha:
|
captcha:
|
||||||
usage_captcha: '&b【AuthMe】&6請用 &c"/captcha %captcha_code" &6來輸入您的驗證碼.'
|
usage_captcha: '&b【AuthMe】&6請用 &c"/captcha %captcha_code" &6來輸入您的驗證碼。'
|
||||||
wrong_captcha: '&b【AuthMe】&6錯誤的驗證碼,請使用 "/captcha %captcha_code" 再試一次.'
|
wrong_captcha: '&b【AuthMe】&6錯誤的驗證碼,請使用 "/captcha %captcha_code" 再試一次。'
|
||||||
valid_captcha: '&b【AuthMe】&6驗證碼無效!'
|
valid_captcha: '&b【AuthMe】&6驗證碼無效。'
|
||||||
# TODO captcha_for_registration: 'To register you have to solve a captcha first, please use the command: /captcha %captcha_code'
|
captcha_for_registration: '&b【AuthMe】&6註冊前必須先提供驗證碼,使用 /captcha %captcha_code 來驗證。'
|
||||||
# TODO register_captcha_valid: '&2Valid captcha! You may now register with /register'
|
register_captcha_valid: '&b【AuthMe】&2驗證已通過,現在可以使用 /register 來進行註冊了。'
|
||||||
|
|
||||||
# Verification code
|
# Verification code
|
||||||
verification:
|
verification:
|
||||||
code_required: '&b【AuthMe】&3敏感指令,需要電子郵件驗證後才能執行,請檢查電子郵件.'
|
code_required: '&b【AuthMe】&3敏感指令,需要電子郵件驗證後才能執行,請檢查電子郵件。'
|
||||||
command_usage: '&b【AuthMe】&c用法: /verification <驗證碼>'
|
command_usage: '&b【AuthMe】&c用法:/verification <驗證碼>'
|
||||||
incorrect_code: '&b【AuthMe】&c驗證碼錯誤,請在聊天室使用 "/verification <驗證碼>" 電子郵件收到的驗證碼'
|
incorrect_code: '&b【AuthMe】&c驗證碼錯誤,請在聊天室使用 "/verification <驗證碼>" 電子郵件收到的驗證碼'
|
||||||
success: '&b【AuthMe】&2身分已驗證,您現在可以使用所有指令!'
|
success: '&b【AuthMe】&2身分已驗證,您現在可以使用所有指令!'
|
||||||
already_verified: '&b【AuthMe】&2您已經可以使用所有指令!'
|
already_verified: '&b【AuthMe】&2您已經可以使用所有指令!'
|
||||||
code_expired: '&b【AuthMe】&3驗證碼已過期,請使用其他敏感指令來取得新的驗證碼!'
|
code_expired: '&b【AuthMe】&3驗證碼已過期,請使用其他敏感指令來取得新的驗證碼!'
|
||||||
email_needed: '&b【AuthMe】&3若需要身分驗證,請先添加電子郵件!!'
|
email_needed: '&b【AuthMe】&3若需要身分驗證,請先新增電子郵件!'
|
||||||
|
|
||||||
# Time units
|
# Time units
|
||||||
time:
|
time:
|
||||||
@@ -147,13 +147,13 @@ time:
|
|||||||
|
|
||||||
# Two-factor authentication
|
# Two-factor authentication
|
||||||
two_factor:
|
two_factor:
|
||||||
code_created: '&b【AuthMe - 兩步驗證碼】&b您的登入金鑰為&9「%c%code&9」&b,掃描連結為:&c %url'
|
code_created: '&b【AuthMe】&b您的登入金鑰為&9「%c%code&9」&b,掃描連結為:&c %url'
|
||||||
# TODO confirmation_required: 'Please confirm your code with /2fa confirm <code>'
|
confirmation_required: '&b【AuthMe】&6請使用 /2fa confirm <驗證碼> 來確認雙重驗證。'
|
||||||
# TODO code_required: 'Please submit your two-factor authentication code with /2fa code <code>'
|
code_required: '&b【AuthMe】&c請使用 /2fa code <驗證碼> 來完成驗證。'
|
||||||
# TODO already_enabled: 'Two-factor authentication is already enabled for your account!'
|
already_enabled: '&b【AuthMe】&c雙重驗證已經開啟。'
|
||||||
# TODO enable_error_no_code: 'No 2fa key has been generated for you or it has expired. Please run /2fa add'
|
enable_error_no_code: '&b【AuthMe】&6雙重驗證代碼不存在或失效,使用 /2fa add 來新增。'
|
||||||
# TODO enable_success: 'Successfully enabled two-factor authentication for your account'
|
enable_success: '&b【AuthMe】&6雙重驗證已開啟!'
|
||||||
# TODO enable_error_wrong_code: 'Wrong code or code has expired. Please run /2fa add'
|
enable_error_wrong_code: '&b【AuthMe】&6雙重驗證代碼錯誤或失效,使用 /2fa add 來新增。'
|
||||||
# TODO not_enabled_error: 'Two-factor authentication is not enabled for your account. Run /2fa add'
|
not_enabled_error: '&b【AuthMe】&6雙重驗證尚未開啟,使用 /2fa add 來開啟。'
|
||||||
# TODO removed_success: 'Successfully removed two-factor auth from your account'
|
removed_success: '&b【AuthMe】&6雙重驗證已成功移除!'
|
||||||
# TODO invalid_code: 'Invalid code!'
|
invalid_code: '&b【AuthMe】&c驗證碼錯誤。'
|
||||||
|
|||||||
@@ -1,127 +0,0 @@
|
|||||||
<div class="mail">
|
|
||||||
<style>
|
|
||||||
.mail td{
|
|
||||||
font-family: "Segoe UI", sans-serif;
|
|
||||||
text-align: center;
|
|
||||||
font-size: 16px;
|
|
||||||
color: #718096;
|
|
||||||
}
|
|
||||||
.mail th, div, p, a, h1, h2, h3, h4, h5, h6{
|
|
||||||
font-family: "Segoe UI", sans-serif;
|
|
||||||
text-align: center;
|
|
||||||
color: #3d4852;
|
|
||||||
}
|
|
||||||
.mail .mail-content {
|
|
||||||
max-width: 100vw;
|
|
||||||
padding: 32px;
|
|
||||||
box-shadow: 0 15px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.25);
|
|
||||||
}
|
|
||||||
.mail div{
|
|
||||||
background-color: #ffffff;color: #718096;height: 100%;line-height: 1.4;width: 100%;
|
|
||||||
}
|
|
||||||
.mail .x_wrapper{
|
|
||||||
background-color: #edf2f7;
|
|
||||||
width:100%;
|
|
||||||
}
|
|
||||||
.mail .x_content{
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
.mail .x_inner-body{
|
|
||||||
background-color: #ffffff;border-color: #e8e5ef;border-radius: 2px;border-width: 1px;margin: 0 auto;padding:0;width: 570px;
|
|
||||||
}
|
|
||||||
.mail .x_content-cell{
|
|
||||||
margin: 0 auto;padding: 0;width: 570px;line-height: 1.5em;
|
|
||||||
color: #b0adc5;font-size: 12px;
|
|
||||||
}
|
|
||||||
.mail .x_content-cell td{
|
|
||||||
max-width: 100vw;padding: 32px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<div>
|
|
||||||
<table class="x_wrapper">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<table class="x_content">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td style="padding: 25px 0;">
|
|
||||||
<h1 style="font-size: 20px;">账户激活邮件</h1>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<table class="x_inner-body">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td class="mail-content">
|
|
||||||
<h1 style="font-size: 18px;margin-bottom: 25px;">Minecraft · <servername /><br/><playername /></h1>
|
|
||||||
<hr>
|
|
||||||
<table style="width: 100%;">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
您的账户初始密码为
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td style="font-weight: bold;">
|
|
||||||
<br/><generatedpass /></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<br/>已将地址(<playerip />)进行记录.
|
|
||||||
<br/>
|
|
||||||
<br/>请妥善保存,在新地址上进行登录时,需提供该密码.
|
|
||||||
<br/>若非必要,请勿更换密码,否则将对您的账户安全构成威胁.
|
|
||||||
<br/>账户所绑定的邮箱地址已被永久存储,需要更换请联系管理员.
|
|
||||||
<br/>
|
|
||||||
<br/>更换密码: /changepassword <generatedpass /> [新密码]
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td style="text-align:right;">
|
|
||||||
<br/>
|
|
||||||
<br/>账户将在激活后生效
|
|
||||||
<br/>欢迎您的加入~!
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<small>
|
|
||||||
<br/><time />
|
|
||||||
<br/>请勿回复
|
|
||||||
</small>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<table class="x_content-cell">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<p style="color:#b0adc5;">© 2023 HomoCraft. All rights reserved.</p>
|
|
||||||
<a href="1919810.com" target="_blank"
|
|
||||||
style="text-decoration: none; font-size: 16px">wdsj.io</a>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
@@ -1,10 +1,13 @@
|
|||||||
|
# noinspection YAMLSchemaValidation
|
||||||
name: ${pluginDescription.name}
|
name: ${pluginDescription.name}
|
||||||
|
# noinspection YAMLSchemaValidation
|
||||||
authors: [${pluginDescription.authors}]
|
authors: [${pluginDescription.authors}]
|
||||||
website: http://github.com/HaHaWTH/AuthMeReReloaded/
|
website: ${project.url}
|
||||||
description: A fork of AuthMeReloaded that contains bug fixes
|
description: ${project.description}
|
||||||
|
# noinspection YAMLSchemaValidation
|
||||||
main: ${pluginDescription.main}
|
main: ${pluginDescription.main}
|
||||||
version: 5.6.0-FORK-b34
|
version: ${pluginDescription.version}
|
||||||
api-version: 1.13
|
api-version: 1.16
|
||||||
softdepend:
|
softdepend:
|
||||||
- Vault
|
- Vault
|
||||||
- LuckPerms
|
- LuckPerms
|
||||||
@@ -15,7 +18,24 @@ softdepend:
|
|||||||
- Essentials
|
- Essentials
|
||||||
- EssentialsSpawn
|
- EssentialsSpawn
|
||||||
- ProtocolLib
|
- ProtocolLib
|
||||||
- floodgate
|
libraries:
|
||||||
|
- ch.jalu:injector:${dependencies.injector.version}
|
||||||
|
- net.ricecode:string-similarity:${dependencies.string-similarity.version}
|
||||||
|
- com.maxmind.geoip2:geoip2:${dependencies.geoip2.version}
|
||||||
|
- javatar:javatar:${dependencies.javatar.version}
|
||||||
|
- org.apache.commons:commons-email:${dependencies.commons-email.version}
|
||||||
|
- com.zaxxer:HikariCP:${dependencies.hikaricp.version}
|
||||||
|
- org.slf4j:slf4j-simple:${dependencies.slf4j.version}
|
||||||
|
- ch.jalu:datasourcecolumns:${dependencies.datasourcecolumns.version}
|
||||||
|
- com.mysql:mysql-connector-j:${dependencies.mysql-connector-j.version}
|
||||||
|
- org.mariadb.jdbc:mariadb-java-client:${dependencies.mariadb-java-client.version}
|
||||||
|
- org.postgresql:postgresql:${dependencies.postgresql.version}
|
||||||
|
- de.rtner:PBKDF2:${dependencies.pbkdf2.version}
|
||||||
|
- de.mkammerer:argon2-jvm-nolibs:${dependencies.argon2-jvm-nolibs.version}
|
||||||
|
- at.favre.lib:bcrypt:${dependencies.bcrypt.version}
|
||||||
|
- com.warrenstrange:googleauth:${dependencies.googleauth.version}
|
||||||
|
- ch.jalu:configme:${dependencies.configme.version}
|
||||||
|
- org.bstats:bstats-bukkit:${dependencies.bstats.version}
|
||||||
commands:
|
commands:
|
||||||
authme:
|
authme:
|
||||||
description: AuthMe op commands
|
description: AuthMe op commands
|
||||||
@@ -28,6 +48,7 @@ commands:
|
|||||||
usage: /login <password>
|
usage: /login <password>
|
||||||
aliases:
|
aliases:
|
||||||
- l
|
- l
|
||||||
|
- log
|
||||||
logout:
|
logout:
|
||||||
description: Logout command
|
description: Logout command
|
||||||
usage: /logout
|
usage: /logout
|
||||||
@@ -246,6 +267,7 @@ permissions:
|
|||||||
authme.player.captcha: true
|
authme.player.captcha: true
|
||||||
authme.player.changepassword: true
|
authme.player.changepassword: true
|
||||||
authme.player.email.add: true
|
authme.player.email.add: true
|
||||||
|
authme.player.email.change: true
|
||||||
authme.player.email.recover: true
|
authme.player.email.recover: true
|
||||||
authme.player.email.see: true
|
authme.player.email.see: true
|
||||||
authme.player.login: true
|
authme.player.login: true
|
||||||
@@ -253,8 +275,10 @@ permissions:
|
|||||||
authme.player.protection.quickcommandsprotection: true
|
authme.player.protection.quickcommandsprotection: true
|
||||||
authme.player.register: true
|
authme.player.register: true
|
||||||
authme.player.security.verificationcode: true
|
authme.player.security.verificationcode: true
|
||||||
|
authme.player.seeownaccounts: true
|
||||||
authme.player.totpadd: true
|
authme.player.totpadd: true
|
||||||
authme.player.totpremove: true
|
authme.player.totpremove: true
|
||||||
|
authme.player.unregister: true
|
||||||
authme.player.canbeforced:
|
authme.player.canbeforced:
|
||||||
description: Permission for users a login can be forced to.
|
description: Permission for users a login can be forced to.
|
||||||
default: true
|
default: true
|
||||||
@@ -268,6 +292,7 @@ permissions:
|
|||||||
description: Gives access to all email commands
|
description: Gives access to all email commands
|
||||||
children:
|
children:
|
||||||
authme.player.email.add: true
|
authme.player.email.add: true
|
||||||
|
authme.player.email.change: true
|
||||||
authme.player.email.recover: true
|
authme.player.email.recover: true
|
||||||
authme.player.email.see: true
|
authme.player.email.see: true
|
||||||
authme.player.email.add:
|
authme.player.email.add:
|
||||||
@@ -275,7 +300,7 @@ permissions:
|
|||||||
default: true
|
default: true
|
||||||
authme.player.email.change:
|
authme.player.email.change:
|
||||||
description: Command permission to change the email address.
|
description: Command permission to change the email address.
|
||||||
default: op
|
default: true
|
||||||
authme.player.email.recover:
|
authme.player.email.recover:
|
||||||
description: Command permission to recover an account using its email address.
|
description: Command permission to recover an account using its email address.
|
||||||
default: true
|
default: true
|
||||||
@@ -308,7 +333,7 @@ permissions:
|
|||||||
default: true
|
default: true
|
||||||
authme.player.unregister:
|
authme.player.unregister:
|
||||||
description: Command permission to unregister.
|
description: Command permission to unregister.
|
||||||
default: op
|
default: true
|
||||||
authme.vip:
|
authme.vip:
|
||||||
description: When the server is full and someone with this permission joins the
|
description: When the server is full and someone with this permission joins the
|
||||||
server, someone will be kicked.
|
server, someone will be kicked.
|
||||||
|
|||||||
@@ -1,120 +1,9 @@
|
|||||||
<div class="mail">
|
<h1>Dear <playername />,</h1>
|
||||||
<style>
|
|
||||||
.mail td{
|
<p>
|
||||||
font-family: "Segoe UI", sans-serif;
|
You have requested to reset your password on <servername />. To reset it,
|
||||||
text-align: center;
|
please use the recovery code <recoverycode />: /email code <recoverycode />.
|
||||||
font-size: 16px;
|
</p>
|
||||||
color: #718096;
|
<p>
|
||||||
}
|
The code expires in <hoursvalid /> hours.
|
||||||
.mail th, div, p, a, h1, h2, h3, h4, h5, h6{
|
</p>
|
||||||
font-family: "Segoe UI", sans-serif;
|
|
||||||
text-align: center;
|
|
||||||
color: #3d4852;
|
|
||||||
}
|
|
||||||
.mail .mail-content {
|
|
||||||
max-width: 100vw;
|
|
||||||
padding: 32px;
|
|
||||||
box-shadow: 0 15px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.25);
|
|
||||||
}
|
|
||||||
.mail div{
|
|
||||||
background-color: #ffffff;color: #718096;height: 100%;line-height: 1.4;width: 100%;
|
|
||||||
}
|
|
||||||
.mail .x_wrapper{
|
|
||||||
background-color: #edf2f7;
|
|
||||||
width:100%;
|
|
||||||
}
|
|
||||||
.mail .x_content{
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
.mail .x_inner-body{
|
|
||||||
background-color: #ffffff;border-color: #e8e5ef;border-radius: 2px;border-width: 1px;margin: 0 auto;padding:0;width: 570px;
|
|
||||||
}
|
|
||||||
.mail .x_content-cell{
|
|
||||||
margin: 0 auto;padding: 0;width: 570px;line-height: 1.5em;
|
|
||||||
color: #b0adc5;font-size: 12px;
|
|
||||||
}
|
|
||||||
.mail .x_content-cell td{
|
|
||||||
max-width: 100vw;padding: 32px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<div>
|
|
||||||
<table class="x_wrapper">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<table class="x_content">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td style="padding: 25px 0;">
|
|
||||||
<h1 style="font-size: 20px;">代码验证邮件</h1>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<table class="x_inner-body">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td class="mail-content">
|
|
||||||
<h1 style="font-size: 18px;margin-bottom: 25px;">Minecraft · <servername /><br/><playername /></h1>
|
|
||||||
<hr>
|
|
||||||
<table style="width: 100%;">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
您正在申请的验证码为
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td style="font-weight: bold;">
|
|
||||||
<br/><recoverycode /></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<br/>使用指令: /email code <recoverycode /> 来完成验证过程.
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td style="text-align:right;">
|
|
||||||
<br/>
|
|
||||||
<br/>验证码将在<hoursvalid />小时后失效
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<small>
|
|
||||||
<br/><time />
|
|
||||||
<br/>请勿回复
|
|
||||||
</small>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<table class="x_content-cell">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<p style="color:#b0adc5;">© 2023 HomoCraft. All rights reserved.</p>
|
|
||||||
<a href="1919810.com" target="_blank"
|
|
||||||
style="text-decoration: none; font-size: 16px">wdsj.io</a>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|||||||
@@ -1,118 +0,0 @@
|
|||||||
<div class="mail">
|
|
||||||
<style>
|
|
||||||
.mail td{
|
|
||||||
font-family: "Segoe UI", sans-serif;
|
|
||||||
text-align: center;
|
|
||||||
font-size: 16px;
|
|
||||||
color: #718096;
|
|
||||||
}
|
|
||||||
.mail th, div, p, a, h1, h2, h3, h4, h5, h6{
|
|
||||||
font-family: "Segoe UI", sans-serif;
|
|
||||||
text-align: center;
|
|
||||||
color: #3d4852;
|
|
||||||
}
|
|
||||||
.mail .mail-content {
|
|
||||||
max-width: 100vw;
|
|
||||||
padding: 32px;
|
|
||||||
box-shadow: 0 15px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.25);
|
|
||||||
}
|
|
||||||
.mail div{
|
|
||||||
background-color: #ffffff;color: #718096;height: 100%;line-height: 1.4;width: 100%;
|
|
||||||
}
|
|
||||||
.mail .x_wrapper{
|
|
||||||
background-color: #edf2f7;
|
|
||||||
width:100%;
|
|
||||||
}
|
|
||||||
.mail .x_content{
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
.mail .x_inner-body{
|
|
||||||
background-color: #ffffff;border-color: #e8e5ef;border-radius: 2px;border-width: 1px;margin: 0 auto;padding:0;width: 570px;
|
|
||||||
}
|
|
||||||
.mail .x_content-cell{
|
|
||||||
margin: 0 auto;padding: 0;width: 570px;line-height: 1.5em;
|
|
||||||
color: #b0adc5;font-size: 12px;
|
|
||||||
}
|
|
||||||
.mail .x_content-cell td{
|
|
||||||
max-width: 100vw;padding: 32px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<div>
|
|
||||||
<table class="x_wrapper">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<table class="x_content">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td style="padding: 25px 0;">
|
|
||||||
<h1 style="font-size: 20px;">服务器关闭通知</h1>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<table class="x_inner-body">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td class="mail-content">
|
|
||||||
<h1 style="font-size: 18px;margin-bottom: 25px;">Minecraft · <servername /></h1>
|
|
||||||
<hr>
|
|
||||||
<table style="width: 100%;">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td style="font-weight: bold;color: #da1515;">
|
|
||||||
<br/>紧急通知</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<br/>服务器当前已被关闭
|
|
||||||
<br/>
|
|
||||||
<br/>请及时检查服务器运行状态.
|
|
||||||
<br/>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td style="text-align:right;">
|
|
||||||
<br/>
|
|
||||||
<br/>IrisCraft Team
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<small>
|
|
||||||
<br/><time />
|
|
||||||
<br/>请勿回复
|
|
||||||
</small>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<table class="x_content-cell">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<p style="color:#b0adc5;">© 2023 HomoCraft. All rights reserved.</p>
|
|
||||||
<a href="1919810.com" target="_blank"
|
|
||||||
style="text-decoration: none; font-size: 16px">wdsj.io</a>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
@@ -1,120 +1,20 @@
|
|||||||
<div class="mail">
|
<h1>
|
||||||
<style>
|
Dear <playername />,
|
||||||
.mail td{
|
</h1>
|
||||||
font-family: "Segoe UI", sans-serif;
|
|
||||||
text-align: center;
|
<p>
|
||||||
font-size: 16px;
|
This is your temporary verification code for the server <servername />:
|
||||||
color: #718096;
|
</p>
|
||||||
}
|
<p>
|
||||||
.mail th, div, p, a, h1, h2, h3, h4, h5, h6{
|
<generatedcode />
|
||||||
font-family: "Segoe UI", sans-serif;
|
</p>
|
||||||
text-align: center;
|
|
||||||
color: #3d4852;
|
<p>
|
||||||
}
|
This code will be valid for the next <minutesvalid /> mins!<br />
|
||||||
.mail .mail-content {
|
Use the command
|
||||||
max-width: 100vw;
|
/verification <generatedcode />
|
||||||
padding: 32px;
|
to complete the verification process.
|
||||||
box-shadow: 0 15px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.25);
|
</p>
|
||||||
}
|
<p>
|
||||||
.mail div{
|
See you on <servername />!
|
||||||
background-color: #ffffff;color: #718096;height: 100%;line-height: 1.4;width: 100%;
|
</p>
|
||||||
}
|
|
||||||
.mail .x_wrapper{
|
|
||||||
background-color: #edf2f7;
|
|
||||||
width:100%;
|
|
||||||
}
|
|
||||||
.mail .x_content{
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
.mail .x_inner-body{
|
|
||||||
background-color: #ffffff;border-color: #e8e5ef;border-radius: 2px;border-width: 1px;margin: 0 auto;padding:0;width: 570px;
|
|
||||||
}
|
|
||||||
.mail .x_content-cell{
|
|
||||||
margin: 0 auto;padding: 0;width: 570px;line-height: 1.5em;
|
|
||||||
color: #b0adc5;font-size: 12px;
|
|
||||||
}
|
|
||||||
.mail .x_content-cell td{
|
|
||||||
max-width: 100vw;padding: 32px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<div>
|
|
||||||
<table class="x_wrapper">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<table class="x_content">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td style="padding: 25px 0;">
|
|
||||||
<h1 style="font-size: 20px;">代码验证邮件</h1>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<table class="x_inner-body">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td class="mail-content">
|
|
||||||
<h1 style="font-size: 18px;margin-bottom: 25px;">Minecraft · <servername /><br/><playername /></h1>
|
|
||||||
<hr>
|
|
||||||
<table style="width: 100%;">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
您正在申请的验证码为
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td style="font-weight: bold;">
|
|
||||||
<br/><generatedcode /></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<br/>使用指令: /verification <generatedcode /> 来完成验证过程.
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td style="text-align:right;">
|
|
||||||
<br/>
|
|
||||||
<br/>验证码将在30分钟后失效
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<small>
|
|
||||||
<br/><time />
|
|
||||||
<br/>请勿回复
|
|
||||||
</small>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<table class="x_content-cell">
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<p style="color:#b0adc5;">© 2023 HomoCraft. All rights reserved.</p>
|
|
||||||
<a href="1919810.com" target="_blank"
|
|
||||||
style="text-decoration: none; font-size: 16px">wdsj.io</a>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
Welcome {PLAYER} on {SERVER} server
|
||||||
|
|
||||||
|
This server uses AuthMeReloaded protection!
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user