2013-06-25 21:04:02 -07:00
|
|
|
#!/bin/sh
|
2013-06-24 11:26:09 -07:00
|
|
|
### BEGIN INIT INFO
|
2015-03-03 19:33:36 -07:00
|
|
|
# Provides: mscs
|
2014-06-23 09:23:55 -07:00
|
|
|
# Required-Start: $remote_fs $syslog
|
|
|
|
# Required-Stop: $remote_fs $syslog
|
|
|
|
# Default-Start: 2 3 4 5
|
|
|
|
# Default-Stop: 0 1 6
|
2013-06-24 11:26:09 -07:00
|
|
|
# chkconfig: 345 50 50
|
2013-06-24 13:20:10 -07:00
|
|
|
# Description: Minecraft Server Control Script
|
2013-06-24 11:26:09 -07:00
|
|
|
### END INIT INFO
|
|
|
|
|
2013-06-24 13:25:27 -07:00
|
|
|
|
2013-06-24 14:30:46 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2015-02-13 22:45:51 -07:00
|
|
|
# Copyright (c) 2011-2015, Jason M. Wood <sandain@hotmail.com>
|
2013-06-24 14:30:46 -07:00
|
|
|
#
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
# this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
2013-06-24 13:11:34 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Minecraft Server Control Script
|
2013-06-24 11:26:09 -07:00
|
|
|
#
|
2013-06-24 13:11:34 -07:00
|
|
|
# A powerful command-line control script for Linux-powered Minecraft servers.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
|
|
|
|
# Script Usage
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
2013-06-24 13:11:34 -07:00
|
|
|
USAGE=$(cat <<EOF
|
2013-12-02 21:50:29 -07:00
|
|
|
Usage: $0 <option>
|
2013-06-24 13:11:34 -07:00
|
|
|
|
|
|
|
Options:
|
2013-10-20 18:38:03 -07:00
|
|
|
|
|
|
|
start <world>
|
|
|
|
Start the Minecraft world server. Start all world servers by default.
|
|
|
|
|
|
|
|
stop <world>
|
|
|
|
Stop the Minecraft world server. Stop all world servers by default.
|
|
|
|
|
|
|
|
force-stop <world>
|
|
|
|
Forcibly stop the Minecraft world server. Forcibly stop all world
|
|
|
|
servers by default.
|
|
|
|
|
|
|
|
restart <world>
|
|
|
|
Restart the Minecraft world server. Restart all world servers by default.
|
|
|
|
|
|
|
|
force-restart <world>
|
|
|
|
Forcibly restart the Minecraft world server. Forcibly restart all world
|
|
|
|
servers by default.
|
|
|
|
|
|
|
|
create <world> <port> <ip>
|
|
|
|
Create a Minecraft world server. The world name and port must be
|
|
|
|
provided, the IP addressis usually blank.
|
|
|
|
|
|
|
|
delete <world>
|
|
|
|
Delete a Minecraft world server.
|
|
|
|
|
|
|
|
disable <world>
|
|
|
|
Temporarily disable a world server.
|
|
|
|
|
|
|
|
enable <world>
|
|
|
|
Enable a disabled world server.
|
|
|
|
|
2015-07-07 02:36:58 -07:00
|
|
|
ls <option>
|
2013-12-03 14:55:54 -07:00
|
|
|
Display a list of worlds.
|
|
|
|
Options:
|
|
|
|
enabled Display a list of enabled worlds, default.
|
|
|
|
disabled Display a list of disabled worlds.
|
|
|
|
running Display a list of running worlds.
|
|
|
|
stopped Display a list of stopped worlds.
|
2015-07-10 02:09:49 -07:00
|
|
|
If no option, all available worlds are listed.
|
2015-07-07 02:36:58 -07:00
|
|
|
|
|
|
|
list <option>
|
|
|
|
Same as 'ls' but more detailed.
|
2013-12-02 19:27:52 -07:00
|
|
|
|
2013-10-20 18:38:03 -07:00
|
|
|
status <world>
|
|
|
|
Display the status of the Minecraft world server. Display the status of
|
|
|
|
all world servers by default.
|
|
|
|
|
|
|
|
sync <world>
|
|
|
|
Synchronize the data stored in the mirror images of the Minecraft world
|
|
|
|
server. Synchronizes all of the world servers by default. This option
|
|
|
|
is only available when the mirror image option is enabled.
|
|
|
|
|
2014-12-20 23:21:58 -07:00
|
|
|
broadcast <command>
|
|
|
|
Broadcast a command to all running Minecraft world servers.
|
|
|
|
|
2013-11-01 10:19:32 -07:00
|
|
|
send <world> <command>
|
2013-10-20 18:38:03 -07:00
|
|
|
Send a command to a Minecraft world server.
|
|
|
|
|
2014-02-06 15:47:52 -07:00
|
|
|
console <world>
|
|
|
|
Connect to the Minecraft world server's console. Hit <Ctrl-D> to detach.
|
|
|
|
|
2013-10-20 18:38:03 -07:00
|
|
|
watch <world>
|
|
|
|
Watch the log file for the Minecraft world server.
|
|
|
|
|
|
|
|
logrotate <world>
|
2014-01-03 20:45:41 -07:00
|
|
|
Rotate the log file for the Minecraft world. Rotate the log file for
|
|
|
|
all worlds by default.
|
2013-10-20 18:38:03 -07:00
|
|
|
|
|
|
|
backup <world>
|
|
|
|
Backup the Minecraft world. Backup all worlds by default.
|
|
|
|
|
2014-09-01 12:27:46 -07:00
|
|
|
list-backups <world>
|
|
|
|
List the datetime of the backups for the world.
|
|
|
|
|
2014-09-01 12:32:27 -07:00
|
|
|
restore-backup <world> <datetime>
|
|
|
|
Restore a backup for a world that was taken at the datetime.
|
|
|
|
|
2013-10-20 18:38:03 -07:00
|
|
|
map <world>
|
|
|
|
Run the Minecraft Overviewer mapping software on the Minecraft world.
|
|
|
|
Map all worlds by default.
|
|
|
|
|
2013-11-01 12:20:59 -07:00
|
|
|
update <world>
|
|
|
|
Update the server software for the Minecraft world server. Update
|
|
|
|
server software for all worlds by default.
|
2013-10-20 18:38:03 -07:00
|
|
|
|
2013-06-24 13:11:34 -07:00
|
|
|
EOF
|
|
|
|
)
|
2013-06-24 11:26:09 -07:00
|
|
|
|
2014-09-16 15:38:11 -07:00
|
|
|
# Override Global Variables
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Override global variables below by adding them to the specified file. If
|
|
|
|
# the file does not exist, the default values below will be used.
|
2015-03-03 19:33:36 -07:00
|
|
|
MSCS_DEFAULTS="/etc/default/mscs"
|
2014-09-16 15:38:11 -07:00
|
|
|
|
2013-06-24 13:25:27 -07:00
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# User Account & Server Location
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Who we run as and where we run from.
|
2013-06-24 11:26:09 -07:00
|
|
|
|
2013-06-24 13:25:27 -07:00
|
|
|
# User name used to run all commands. Be sure to create this user if it
|
|
|
|
# doesn't already exist (sudo adduser minecraft).
|
2013-06-24 11:26:09 -07:00
|
|
|
USER_NAME="minecraft"
|
|
|
|
|
|
|
|
# The location of server software and data.
|
2015-03-03 19:33:36 -07:00
|
|
|
LOCATION="/opt/mscs"
|
2013-06-24 11:26:09 -07:00
|
|
|
|
2015-07-04 07:55:46 -07:00
|
|
|
# Override the default values if the default file exists.
|
|
|
|
if [ -f "$MSCS_DEFAULTS" ]; then
|
|
|
|
. $MSCS_DEFAULTS
|
|
|
|
fi
|
2013-06-24 11:26:09 -07:00
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# Required Software
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Detect its presence and location for later.
|
2013-06-24 11:26:09 -07:00
|
|
|
|
|
|
|
JAVA=$(which java)
|
|
|
|
PERL=$(which perl)
|
|
|
|
PYTHON=$(which python)
|
|
|
|
WGET=$(which wget)
|
|
|
|
RDIFF_BACKUP=$(which rdiff-backup)
|
2013-12-01 10:57:09 -07:00
|
|
|
SOCAT=$(which socat)
|
2013-06-24 11:26:09 -07:00
|
|
|
|
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# Global Server Configuration
|
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
|
2014-04-02 19:32:42 -07:00
|
|
|
# Minecraft Versions information
|
2013-08-04 10:56:44 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2014-04-02 19:32:42 -07:00
|
|
|
MINECRAFT_VERSIONS_URL=https://s3.amazonaws.com/Minecraft.Download/versions/versions.json
|
2013-08-04 10:56:44 -07:00
|
|
|
|
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# Minecraft Server Settings
|
|
|
|
# ---------------------------------------------------------------------------
|
2015-07-09 14:39:03 -07:00
|
|
|
# Default settings if not provided in the world's mscs.properties file.
|
2013-06-24 11:26:09 -07:00
|
|
|
|
2014-01-07 21:18:02 -07:00
|
|
|
DEFAULT_WORLD='world'
|
|
|
|
DEFAULT_PORT='25565'
|
|
|
|
DEFAULT_IP=''
|
2014-04-02 19:32:42 -07:00
|
|
|
DEFAULT_VERSION_TYPE='release'
|
2014-04-02 18:30:53 -07:00
|
|
|
DEFAULT_CLIENT_VERSION='$CURRENT_VERSION'
|
2013-12-12 21:48:57 -07:00
|
|
|
DEFAULT_CLIENT_JAR='$CLIENT_VERSION.jar'
|
|
|
|
DEFAULT_CLIENT_URL='https://s3.amazonaws.com/Minecraft.Download/versions/$CLIENT_VERSION/$CLIENT_VERSION.jar'
|
2015-03-03 19:33:36 -07:00
|
|
|
DEFAULT_CLIENT_LOCATION=$LOCATION'/client/$CLIENT_VERSION'
|
2014-04-02 18:30:53 -07:00
|
|
|
DEFAULT_SERVER_VERSION='$CURRENT_VERSION'
|
2013-11-03 11:30:48 -07:00
|
|
|
DEFAULT_SERVER_JAR='minecraft_server.$SERVER_VERSION.jar'
|
|
|
|
DEFAULT_SERVER_URL='https://s3.amazonaws.com/Minecraft.Download/versions/$SERVER_VERSION/minecraft_server.$SERVER_VERSION.jar'
|
2013-11-01 17:21:01 -07:00
|
|
|
DEFAULT_SERVER_ARGS='nogui'
|
|
|
|
DEFAULT_INITIAL_MEMORY='128M'
|
|
|
|
DEFAULT_MAXIMUM_MEMORY='2048M'
|
2015-03-03 19:33:36 -07:00
|
|
|
DEFAULT_SERVER_LOCATION=$LOCATION'/server'
|
2013-11-01 17:21:01 -07:00
|
|
|
DEFAULT_SERVER_COMMAND='$JAVA -Xms$INITIAL_MEMORY -Xmx$MAXIMUM_MEMORY -jar $SERVER_LOCATION/$SERVER_JAR $SERVER_ARGS'
|
2013-06-24 11:26:09 -07:00
|
|
|
|
2013-11-01 20:12:01 -07:00
|
|
|
# The server settings for each world can be customized by adding certain
|
2015-07-09 14:39:03 -07:00
|
|
|
# key/value pairs to the world's mscs.properties file.
|
2013-11-01 20:12:01 -07:00
|
|
|
#
|
|
|
|
# The following keys are available:
|
2015-07-09 14:35:29 -07:00
|
|
|
# mscs-enabled - Enable or disable the world server.
|
2014-04-02 19:32:42 -07:00
|
|
|
# mscs-version-type - Assign the version type (release or snapshot).
|
2013-12-12 21:48:57 -07:00
|
|
|
# mscs-client-version - Assign the version of the client software.
|
|
|
|
# mscs-client-jar - Assign the .jar file for the client software.
|
|
|
|
# mscs-client-url - Assign the download URL for the client software.
|
|
|
|
# mscs-client-location - Assign the location of the client .jar file.
|
|
|
|
# mscs-server-version - Assign the version of the server software.
|
|
|
|
# mscs-server-jar - Assign the .jar file for the server software.
|
2013-11-01 20:12:01 -07:00
|
|
|
# mscs-server-url - Assign the download URL for the server software.
|
|
|
|
# mscs-server-args - Assign the arguments to the server.
|
|
|
|
# mscs-initial-memory - Assign the initial amount of memory for the server.
|
|
|
|
# mscs-maximum-memory - Assign the maximum amount of memory for the server.
|
|
|
|
# mscs-server-location - Assign the location of the server .jar file.
|
|
|
|
# mscs-server-command - Assign the command to run for the server.
|
|
|
|
#
|
|
|
|
# The following variables may be used in some of the values of the above
|
|
|
|
# keys:
|
|
|
|
# $JAVA - The Java virtual machine.
|
|
|
|
# $CURRENT_VERSION - The current Mojang Minecraft release version.
|
2013-12-12 21:48:57 -07:00
|
|
|
# $CLIENT_VERSION - The version of the client software.
|
|
|
|
# $SERVER_VERSION - The version of the server software.
|
2013-11-01 20:12:01 -07:00
|
|
|
# $SERVER_JAR - The .jar file to run for the server.
|
|
|
|
# $SERVER_ARGS - The arguments to the server.
|
|
|
|
# $INITIAL_MEMORY - The initial amount of memory for the server.
|
|
|
|
# $MAXIMUM_MEMORY - The maximum amount of memory for the server.
|
|
|
|
# $SERVER_LOCATION - The location of the server .jar file.
|
|
|
|
#
|
|
|
|
# The following example key/value pairs are equivalent to the default values:
|
2015-07-09 14:35:29 -07:00
|
|
|
# mscs-enabled=true
|
2014-04-02 19:32:42 -07:00
|
|
|
# mscs-version-type=release
|
2013-12-12 21:48:57 -07:00
|
|
|
# mscs-client-version=$CURRENT_VERSION
|
|
|
|
# mscs-client-jar=$CLIENT_VERSION.jar
|
|
|
|
# mscs-client-url=https://s3.amazonaws.com/Minecraft.Download/versions/$CLIENT_VERSION/$CLIENT_VERSION.jar
|
2015-03-03 19:33:36 -07:00
|
|
|
# mscs-client-location=/opt/mscs/client/$CLIENT_VERSION
|
2013-11-01 20:12:01 -07:00
|
|
|
# mscs-server-version=$CURRENT_VERSION
|
2013-11-03 11:30:48 -07:00
|
|
|
# mscs-server-jar=minecraft_server.$SERVER_VERSION.jar
|
2013-12-08 13:35:52 -07:00
|
|
|
# mscs-server-url=https://s3.amazonaws.com/Minecraft.Download/versions/$SERVER_VERSION/minecraft_server.$SERVER_VERSION.jar
|
2013-11-01 20:12:01 -07:00
|
|
|
# mscs-server-args=nogui
|
|
|
|
# mscs-initial-memory=128M
|
|
|
|
# mscs-maximum-memory=2048M
|
2015-03-03 19:33:36 -07:00
|
|
|
# mscs-server-location=/opt/msvs/server
|
2013-11-01 20:12:01 -07:00
|
|
|
# mscs-server-command=$JAVA -Xms$INITIAL_MEMORY -Xmx$MAXIMUM_MEMORY -jar $SERVER_LOCATION/$SERVER_JAR $SERVER_ARGS
|
|
|
|
|
2013-06-24 11:26:09 -07:00
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# World (Server Instance) Configuration
|
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
|
|
|
|
# The location to store files for each world server.
|
|
|
|
WORLDS_LOCATION="$LOCATION/worlds"
|
|
|
|
|
2015-07-10 10:18:23 -07:00
|
|
|
# The location old disabled worlds were stored in previous versions
|
|
|
|
OLD_DISABLED_WORLDS_LOCATION="$LOCATION/worlds-disabled"
|
|
|
|
|
2014-09-06 21:47:19 -07:00
|
|
|
# The location to store the versions.json file.
|
|
|
|
VERSIONS_JSON="$DEFAULT_SERVER_LOCATION/versions.json"
|
2013-06-24 11:26:09 -07:00
|
|
|
|
2015-06-05 19:28:50 -07:00
|
|
|
# The duration (in minutes) to keep the versions.json file before updating.
|
|
|
|
VERSIONS_DURATION=1440
|
|
|
|
|
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# Backup Configuration
|
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
|
|
|
|
# Location to store backups.
|
|
|
|
BACKUP_LOCATION="$LOCATION/backups"
|
|
|
|
|
|
|
|
# Location of the backup log file.
|
|
|
|
BACKUP_LOG="$BACKUP_LOCATION/backup.log"
|
|
|
|
|
|
|
|
# Length in days that backups survive.
|
2013-06-26 16:20:21 -07:00
|
|
|
BACKUP_DURATION=15
|
2013-06-24 11:26:09 -07:00
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
|
|
|
|
# Server Log Configuration
|
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
|
2013-12-27 12:19:31 -07:00
|
|
|
# Length in days that logs survive.
|
|
|
|
LOG_DURATION=15
|
2013-06-24 11:26:09 -07:00
|
|
|
|
|
|
|
|
2015-07-07 02:36:58 -07:00
|
|
|
# Listing options
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
# Server properties for detailed listing (list).
|
|
|
|
DETAILED_LISTING_PROPERTIES="motd server-ip server-port max-players level-type online-mode"
|
|
|
|
|
|
|
|
|
2013-06-26 15:28:52 -07:00
|
|
|
# Mirror Image Options
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
|
|
|
|
# Create a mirror image of the world data on system startup, and
|
|
|
|
# update that mirror image on system shutdown.
|
|
|
|
#
|
|
|
|
# IMPORTANT: If using this option, the admin should schedule
|
|
|
|
# periodic synchronizations of the mirror image using cron
|
2013-06-26 15:48:37 -07:00
|
|
|
# to avoid data loss. To do this, add a cron task to call
|
|
|
|
# the "sync" option on a VERY regular basis (e.g.,
|
|
|
|
# every 5-10 minutes).
|
2013-06-24 11:26:09 -07:00
|
|
|
#
|
|
|
|
# 0 - Do not use a mirror image, default.
|
|
|
|
# 1 - Use a mirror image.
|
|
|
|
ENABLE_MIRROR=0
|
|
|
|
|
|
|
|
# The location to store the mirror image.
|
|
|
|
#
|
2013-06-25 21:18:56 -07:00
|
|
|
# NOTE: This is usually a ramdisk, e.g. /dev/shm on Debian/Ubuntu.
|
2015-03-03 19:33:36 -07:00
|
|
|
MIRROR_PATH="/dev/shm/mscs"
|
2013-06-24 11:26:09 -07:00
|
|
|
|
|
|
|
|
2014-05-06 06:53:55 -07:00
|
|
|
# Minecraft Overviewer Mapping Software Options
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
2013-06-24 11:26:09 -07:00
|
|
|
OVERVIEWER_BIN=$(which overviewer.py)
|
2014-09-16 13:02:49 -07:00
|
|
|
OVERVIEWER_URL="http://overviewer.org"
|
2013-06-24 11:26:09 -07:00
|
|
|
MAPS_URL="http://minecraft.server.com/maps"
|
|
|
|
MAPS_LOCATION="$LOCATION/maps"
|
|
|
|
|
2015-07-04 07:55:46 -07:00
|
|
|
# Do additional overrides if the default file exists.
|
|
|
|
if [ -f "$MSCS_DEFAULTS" ]; then
|
|
|
|
. $MSCS_DEFAULTS
|
|
|
|
fi
|
2013-06-24 13:20:10 -07:00
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Internal Methods
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# NOTE: Nothing below this point should need to be edited directly.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
2013-06-24 11:26:09 -07:00
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
# Execute the given command.
|
|
|
|
#
|
|
|
|
# @param 1 The command to execute.
|
|
|
|
# @param 2 The user name to execute the command with.
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
execute() {
|
2013-08-04 09:09:40 -07:00
|
|
|
if [ $(id -u) -eq 0 ]; then
|
|
|
|
# Script is running as root, switch user and execute
|
|
|
|
# the command.
|
2014-10-20 11:38:55 -07:00
|
|
|
su -s /bin/sh -c "$1" $2
|
2013-08-04 09:09:40 -07:00
|
|
|
else
|
|
|
|
# Script is running as a user, just execute the command.
|
|
|
|
sh -c "$1"
|
|
|
|
fi
|
2013-06-24 11:26:09 -07:00
|
|
|
}
|
|
|
|
|
2013-12-04 15:45:53 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Get the PID of the Java process for the world server.
|
|
|
|
#
|
|
|
|
# @param 1 The world server of interest.
|
|
|
|
# @return The Java PID.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
getJavaPID() {
|
2014-11-12 20:52:02 -07:00
|
|
|
local PID
|
|
|
|
PID=$(
|
2015-04-29 07:44:28 -07:00
|
|
|
ps -a -U $USER_NAME -o pid,comm,args -ww |
|
2014-11-12 20:52:02 -07:00
|
|
|
$PERL -ne 'if ($_ =~ /^\s*(\d+)\s+java.+mscs-world='$1'$/) { print $1; }'
|
|
|
|
)
|
|
|
|
printf "%d\n" $PID
|
2013-06-24 11:26:09 -07:00
|
|
|
}
|
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
# Check to see if the world server is running.
|
|
|
|
#
|
|
|
|
# @param 1 The world server of interest.
|
|
|
|
# @return A 1 if the server is thought to be running, a 0 otherwise.
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
serverRunning() {
|
2013-08-04 09:09:40 -07:00
|
|
|
# Try to determine if the world is running.
|
2013-12-07 12:09:36 -07:00
|
|
|
if [ $(getJavaPID "$1") -gt 0 ]; then
|
2013-08-04 09:09:40 -07:00
|
|
|
echo 1
|
|
|
|
else
|
|
|
|
echo 0
|
|
|
|
fi
|
2013-06-24 11:26:09 -07:00
|
|
|
}
|
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
# Send a command to the world server.
|
|
|
|
#
|
|
|
|
# @param 1 The world server of interest.
|
|
|
|
# @param 2 The command to send.
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
sendCommand() {
|
2014-09-16 12:53:16 -07:00
|
|
|
echo "$2" | $PERL -e '
|
2014-09-16 11:47:36 -07:00
|
|
|
while (<>) { $_ =~ s/[\r\n]+//g; $cmd .= $_; } print "$cmd\r";
|
2014-09-16 12:53:16 -07:00
|
|
|
' >> $WORLDS_LOCATION/$1/console.in
|
2013-06-24 11:26:09 -07:00
|
|
|
}
|
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
# Check whether the item is in the list.
|
|
|
|
#
|
|
|
|
# @param 1 The item being searched for.
|
|
|
|
# @param 2 The list being searched.
|
|
|
|
# @return A 1 if the list contains the item, a 0 otherwise.
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
listContains() {
|
2013-08-04 09:09:40 -07:00
|
|
|
local MATCH ITEM
|
|
|
|
MATCH=0
|
|
|
|
for ITEM in $2; do
|
|
|
|
if [ "$ITEM" = "$1" ]; then
|
|
|
|
MATCH=1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
echo $MATCH
|
2013-06-24 11:26:09 -07:00
|
|
|
}
|
|
|
|
|
2014-09-16 12:29:44 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Compare two datetime strings.
|
|
|
|
#
|
|
|
|
# @param 1 The first datetime string.
|
|
|
|
# @param 2 The second datetime string.
|
|
|
|
# @return The result of the comparison: -1, 0, 1.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
compareTime() {
|
|
|
|
local T1 T2
|
|
|
|
T1=$(date --date="$1" +%s)
|
|
|
|
T2=$(date --date="$2" +%s)
|
|
|
|
echo $(($T1 < $T2 ? -1 : $T1 > $T2 ? 1 : 0))
|
|
|
|
}
|
|
|
|
|
2014-09-16 12:32:47 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Compare two Minecraft version numbers.
|
|
|
|
#
|
|
|
|
# @param 1 The first Minecraft version number.
|
|
|
|
# @param 2 The second Minecraft version number.
|
|
|
|
# @return The result of the comparison: -1, 0, 1.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
compareMinecraftVersions() {
|
|
|
|
local T1 T2
|
|
|
|
T1=$(getMinecraftVersionReleaseTime "$1")
|
|
|
|
T2=$(getMinecraftVersionReleaseTime "$2")
|
|
|
|
compareTime "$T1" "$T2"
|
|
|
|
}
|
|
|
|
|
2013-10-19 09:57:29 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Create a world.
|
|
|
|
#
|
|
|
|
# @param 1 The world server to create.
|
|
|
|
# @param 2 The port of the world server.
|
|
|
|
# @param 3 The IP address of the world server.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
createWorld() {
|
|
|
|
# Create a basic server.properties file. Values not supplied here
|
|
|
|
# will use default values when the world server is first started.
|
|
|
|
execute "mkdir -p $WORLDS_LOCATION/$1" $USER_NAME
|
2015-07-09 14:39:03 -07:00
|
|
|
setServerPropertiesValue "$1" "level-name" "$1"
|
|
|
|
setServerPropertiesValue "$1" "server-port" "$2"
|
|
|
|
setServerPropertiesValue "$1" "server-ip" "$3"
|
|
|
|
setServerPropertiesValue "$1" "enable-query" "true"
|
|
|
|
setServerPropertiesValue "$1" "query.port" "$2"
|
|
|
|
setMSCSValue "$1" "mscs-enabled" "true"
|
2013-10-19 09:57:29 -07:00
|
|
|
}
|
|
|
|
|
2013-10-19 10:15:16 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Delete a world.
|
|
|
|
#
|
|
|
|
# @param 1 The world server to delete.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
deleteWorld() {
|
|
|
|
# Delete the world directory.
|
|
|
|
execute "rm -Rf $WORLDS_LOCATION/$1" $USER_NAME
|
|
|
|
}
|
|
|
|
|
2013-10-19 10:47:23 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Disable a world.
|
|
|
|
#
|
|
|
|
# @param 1 The world server to disable.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
disableWorld() {
|
|
|
|
# Disable the world.
|
2015-07-09 14:39:03 -07:00
|
|
|
setMSCSValue "$1" "mscs-enabled" "false"
|
2013-10-19 10:47:23 -07:00
|
|
|
}
|
|
|
|
|
2013-10-19 10:57:04 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Enable a world.
|
|
|
|
#
|
|
|
|
# @param 1 The world server to enable.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
enableWorld() {
|
|
|
|
# Enable the world.
|
2015-07-09 14:39:03 -07:00
|
|
|
setMSCSValue "$1" "mscs-enabled" "true"
|
2013-10-19 10:57:04 -07:00
|
|
|
}
|
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-12-03 14:49:45 -07:00
|
|
|
# Grab the list of enabled worlds.
|
2013-06-24 11:26:09 -07:00
|
|
|
#
|
2013-12-03 14:49:45 -07:00
|
|
|
# @return The list of enabled worlds.
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-12-03 14:49:45 -07:00
|
|
|
getEnabledWorlds() {
|
2013-10-05 17:30:57 -07:00
|
|
|
local WORLD WORLDS
|
2015-03-03 19:30:00 -07:00
|
|
|
execute "mkdir -p $WORLDS_LOCATION" $USER_NAME
|
2013-10-05 17:30:57 -07:00
|
|
|
WORLDS=""
|
|
|
|
for WORLD in $(ls $WORLDS_LOCATION); do
|
2015-07-09 14:35:29 -07:00
|
|
|
if [ -d $WORLDS_LOCATION/$WORLD ]; then
|
2015-07-09 14:39:03 -07:00
|
|
|
if [ "$(getMSCSValue $WORLD 'mscs-enabled' 'true')" = "true" ]; then
|
2015-07-09 14:35:29 -07:00
|
|
|
WORLDS="$WORLDS $WORLD"
|
|
|
|
fi
|
2013-10-05 17:30:57 -07:00
|
|
|
fi
|
|
|
|
done
|
2013-08-04 09:09:40 -07:00
|
|
|
echo $WORLDS
|
2013-06-24 11:26:09 -07:00
|
|
|
}
|
|
|
|
|
2013-12-03 14:51:57 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Grab the list of disabled worlds.
|
|
|
|
#
|
|
|
|
# @return The list of disabled worlds.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
getDisabledWorlds() {
|
|
|
|
local WORLD WORLDS
|
|
|
|
WORLDS=""
|
2015-07-09 14:35:29 -07:00
|
|
|
for WORLD in $(ls $WORLDS_LOCATION); do
|
|
|
|
if [ -d $WORLDS_LOCATION/$WORLD ]; then
|
2015-07-09 16:44:25 -07:00
|
|
|
if [ "$(getMSCSValue $WORLD 'mscs-enabled' 'true')" != "true" ]; then
|
2015-07-09 14:35:29 -07:00
|
|
|
WORLDS="$WORLDS $WORLD"
|
|
|
|
fi
|
2013-12-03 14:51:57 -07:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
echo $WORLDS
|
|
|
|
}
|
|
|
|
|
2015-07-08 04:21:06 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Grab the list of all available worlds.
|
|
|
|
#
|
|
|
|
# @return The list of all available worlds.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
getAvailableWorlds() {
|
|
|
|
echo $(getEnabledWorlds) $(getDisabledWorlds)
|
|
|
|
}
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Check to see if the world is enabled.
|
|
|
|
#
|
|
|
|
# @param 1 The world of interest.
|
|
|
|
# @return A 1 if the world is enabled, a 0 otherwise.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
isWorldEnabled() {
|
|
|
|
local WORLDS
|
2015-07-10 01:02:45 -07:00
|
|
|
WORLDS=$(getEnabledWorlds)
|
|
|
|
if [ -n "$1" ] && [ $(listContains "$1" "$WORLDS") -eq 1 ]; then
|
2015-07-09 16:44:25 -07:00
|
|
|
echo 1
|
|
|
|
else
|
|
|
|
echo 0
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Check to see if the world is available (exists).
|
|
|
|
#
|
|
|
|
# @param 1 The world of interest.
|
|
|
|
# @return A 1 if the world is available, a 0 otherwise.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
isWorldAvailable() {
|
|
|
|
local WORLDS
|
|
|
|
WORLDS=$(getAvailableWorlds)
|
2015-07-08 04:21:06 -07:00
|
|
|
if [ -n "$1" ] && [ $(listContains "$1" "$WORLDS") -eq 1 ]; then
|
|
|
|
echo 1
|
|
|
|
else
|
|
|
|
echo 0
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2013-07-18 20:57:42 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2014-08-26 11:46:20 -07:00
|
|
|
# Get the value of a key from the provided file.
|
2013-07-18 20:57:42 -07:00
|
|
|
#
|
2014-08-26 11:46:20 -07:00
|
|
|
# @param 1 The file containing the key/value combo.
|
2013-07-18 20:57:42 -07:00
|
|
|
# @param 2 The key to get.
|
2013-11-01 17:05:42 -07:00
|
|
|
# @param 3 The default value.
|
2013-07-18 20:57:42 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2014-08-26 11:46:20 -07:00
|
|
|
getValue() {
|
|
|
|
local KEY VALUE
|
|
|
|
# Make sure the file exists.
|
|
|
|
if [ -e "$1" ]; then
|
2013-10-17 15:06:35 -07:00
|
|
|
# Find the key/value combo.
|
2014-08-26 11:46:20 -07:00
|
|
|
KEY=$($PERL -ne 'if ($_ =~ /^('$2')=.*$/i) { print lc $1; }' $1)
|
|
|
|
VALUE=$($PERL -ne 'if ($_ =~ /^'$2'=(.*)$/i) { print $1; }' $1)
|
2014-08-26 18:22:55 -07:00
|
|
|
fi
|
|
|
|
# Return the value if found, the default value if not.
|
|
|
|
if [ -n "$KEY" ] && [ -n "$VALUE" ]; then
|
|
|
|
echo "$VALUE"
|
|
|
|
else
|
|
|
|
echo "$3"
|
2013-08-04 09:09:40 -07:00
|
|
|
fi
|
2013-07-16 23:11:37 -07:00
|
|
|
}
|
|
|
|
|
2014-08-26 11:51:11 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Modify the value of a key/value combo in the provided file.
|
|
|
|
#
|
|
|
|
# @param 1 The file containing the key/value combo.
|
|
|
|
# @param 2 The key to modify.
|
|
|
|
# @param 3 The value to assign to the key.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
setValue() {
|
|
|
|
local KEY_VALUE
|
|
|
|
# Make sure that the file exists.
|
|
|
|
execute "touch $1" $USER_NAME
|
|
|
|
# Replace the key/value combo if it already exists, otherwise just
|
|
|
|
# append it to the end of the file.
|
|
|
|
KEY_VALUE=$($PERL -ne 'if ($_ =~ /^('$2'=.*)$/) { print "$1"; }' $1)
|
|
|
|
if [ -n "$KEY_VALUE" ]; then
|
|
|
|
execute "$PERL -i -ne 'if (\$_ =~ /^$2=.*$/) { print \"$2=$3\\n\"; } else { print; }' $1" $USER_NAME
|
|
|
|
else
|
|
|
|
execute "printf \"$2=$3\\n\" >> $1" $USER_NAME
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2014-08-26 18:20:57 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Get the value of the EULA boolean.
|
|
|
|
#
|
|
|
|
# @param 1 The world server of interest.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
getEULAValue() {
|
|
|
|
local EULA_FILE
|
|
|
|
EULA_FILE=$WORLDS_LOCATION/$1/eula.txt
|
2014-08-27 15:50:18 -07:00
|
|
|
getValue "$EULA_FILE" "eula" "true"
|
2014-08-26 18:20:57 -07:00
|
|
|
}
|
|
|
|
|
2014-08-26 11:46:20 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2015-07-09 14:39:03 -07:00
|
|
|
# Get the value of a key in a mscs.properties file.
|
2014-08-26 11:46:20 -07:00
|
|
|
#
|
|
|
|
# @param 1 The world server of interest.
|
|
|
|
# @param 2 The key to get.
|
|
|
|
# @param 3 The default value.
|
|
|
|
# ---------------------------------------------------------------------------
|
2015-07-09 14:39:03 -07:00
|
|
|
getMSCSValue() {
|
|
|
|
local PROPERTY_FILE
|
|
|
|
PROPERTY_FILE=$WORLDS_LOCATION/$1/mscs.properties
|
|
|
|
getValue "$PROPERTY_FILE" "$2" "$3"
|
|
|
|
}
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Modify the value of a key/value combo in a mscs.properties file.
|
|
|
|
#
|
|
|
|
# @param 1 The world server of interest.
|
|
|
|
# @param 2 The key to modify.
|
|
|
|
# @param 3 The value to assign to the key.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
setMSCSValue() {
|
|
|
|
local PROPERTY_FILE
|
|
|
|
PROPERTY_FILE=$WORLDS_LOCATION/$1/mscs.properties
|
|
|
|
setValue "$PROPERTY_FILE" "$2" "$3"
|
|
|
|
}
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Get the value of a key in a server.properties file.
|
|
|
|
#
|
|
|
|
# @param 1 The world server of interest.
|
|
|
|
# @param 2 The key to get.
|
|
|
|
# @param 3 The default value.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
getServerPropertiesValue() {
|
2014-08-26 11:46:20 -07:00
|
|
|
local PROPERTY_FILE
|
2015-07-10 00:34:41 -07:00
|
|
|
PROPERTY_FILE="$WORLDS_LOCATION/$1/server.properties"
|
2014-08-26 11:46:20 -07:00
|
|
|
getValue "$PROPERTY_FILE" "$2" "$3"
|
|
|
|
}
|
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2015-07-09 14:39:03 -07:00
|
|
|
# Modify the value of a key/value combo in a server.properties file.
|
2013-06-24 11:26:09 -07:00
|
|
|
#
|
2013-10-17 15:08:37 -07:00
|
|
|
# @param 1 The world server of interest.
|
2013-06-24 11:26:09 -07:00
|
|
|
# @param 2 The key to modify.
|
|
|
|
# @param 3 The value to assign to the key.
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2015-07-09 14:39:03 -07:00
|
|
|
setServerPropertiesValue() {
|
2014-08-26 11:51:11 -07:00
|
|
|
local PROPERTY_FILE
|
2013-10-17 15:08:37 -07:00
|
|
|
PROPERTY_FILE=$WORLDS_LOCATION/$1/server.properties
|
2014-08-26 11:51:11 -07:00
|
|
|
setValue "$PROPERTY_FILE" "$2" "$3"
|
2013-06-24 11:26:09 -07:00
|
|
|
}
|
|
|
|
|
2014-04-02 19:32:42 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Get the current Minecraft version number.
|
|
|
|
#
|
|
|
|
# @param 1 The world server.
|
|
|
|
# @return The current Minecraft version number.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
getCurrentMinecraftVersion() {
|
2015-06-05 19:28:50 -07:00
|
|
|
local VERSION TYPE
|
2014-04-29 08:09:36 -07:00
|
|
|
# Make sure the server software directory exists.
|
|
|
|
execute "mkdir -p $DEFAULT_SERVER_LOCATION" $USER_NAME
|
2014-04-02 19:32:42 -07:00
|
|
|
# Determine the version type for the current world.
|
2015-07-09 14:39:03 -07:00
|
|
|
TYPE=$(getMSCSValue "$1" "mscs-version-type" "$DEFAULT_VERSION_TYPE")
|
2014-09-06 21:47:19 -07:00
|
|
|
if [ -s $VERSIONS_JSON ]; then
|
2014-08-06 07:56:04 -07:00
|
|
|
# Make a backup copy of the versions.json file.
|
2015-06-05 19:25:53 -07:00
|
|
|
execute "cp -p $VERSIONS_JSON $VERSIONS_JSON.bak" $USER_NAME
|
2014-08-06 07:56:04 -07:00
|
|
|
# Delete the versions.json file if it is old.
|
2014-09-06 21:47:19 -07:00
|
|
|
execute "find $VERSIONS_JSON -mmin +$VERSIONS_DURATION -delete" $USER_NAME
|
2014-04-17 14:58:51 -07:00
|
|
|
fi
|
2014-04-15 12:35:39 -07:00
|
|
|
# Download the versions.json file if it does not exist.
|
2014-09-06 21:47:19 -07:00
|
|
|
if [ ! -s $VERSIONS_JSON ]; then
|
2014-11-29 20:09:36 -07:00
|
|
|
execute "$WGET --no-use-server-timestamps -qO \"$VERSIONS_JSON\" \"$MINECRAFT_VERSIONS_URL\"" $USER_NAME
|
2014-04-17 14:58:51 -07:00
|
|
|
if [ $? -ne 0 ]; then
|
2014-09-06 21:47:19 -07:00
|
|
|
if [ -s $VERSIONS_JSON.bak ]; then
|
2014-08-06 07:56:04 -07:00
|
|
|
printf "Error downloading the Minecraft versions.json file, using an old copy.\n"
|
2015-06-05 19:25:53 -07:00
|
|
|
execute "cp -p $VERSIONS_JSON.bak $VERSIONS_JSON" $USER_NAME
|
2014-08-06 07:56:04 -07:00
|
|
|
else
|
|
|
|
printf "Error downloading the Minecraft versions.json file.\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
2014-04-17 14:58:51 -07:00
|
|
|
fi
|
2014-04-02 19:32:42 -07:00
|
|
|
fi
|
|
|
|
# Extract the current version information.
|
|
|
|
VERSION=$(
|
2014-09-06 21:47:19 -07:00
|
|
|
$PERL -ne 'if ($_ =~ /^\s+\"'$TYPE'\": \"([\w\.-]+)\"/) { print $1; }' $VERSIONS_JSON
|
2014-04-02 19:32:42 -07:00
|
|
|
)
|
2014-06-18 11:30:54 -07:00
|
|
|
# Print an error and exit if the version string is empty.
|
|
|
|
if [ -z "$VERSION" ]; then
|
|
|
|
printf "Error detecting the current Minecraft version.\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
2014-04-02 19:32:42 -07:00
|
|
|
echo "$VERSION"
|
|
|
|
}
|
|
|
|
|
2014-09-16 12:26:15 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Get the release time of the Minecraft version number.
|
|
|
|
#
|
|
|
|
# @param 1 The Minecraft version number.
|
|
|
|
# @return The release time of the Minecraft version number.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
getMinecraftVersionReleaseTime() {
|
|
|
|
cat $VERSIONS_JSON | $PERL -e '
|
|
|
|
$id = null;
|
|
|
|
while (<>) {
|
|
|
|
if ($_ =~ /\"id\":\s+\"('$1')\"/) {
|
|
|
|
$id = $1;
|
|
|
|
}
|
|
|
|
elsif ($id != null && $_ =~ /\"releaseTime\":\s+\"([\w:+-]+)\"/) {
|
|
|
|
print $1;
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
'
|
|
|
|
}
|
|
|
|
|
2013-12-12 21:48:57 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Retrieve the version of the client for the world.
|
|
|
|
#
|
|
|
|
# @param 1 The world server.
|
|
|
|
# @return CLIENT_VERSION
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
getClientVersion() {
|
2014-11-06 14:49:59 -07:00
|
|
|
local CURRENT_VERSION
|
2014-06-19 11:35:46 -07:00
|
|
|
CURRENT_VERSION=$(getCurrentMinecraftVersion "$1")
|
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$CURRENT_VERSION\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
2013-12-12 21:48:57 -07:00
|
|
|
# Get the client version, use the default version if not provided.
|
2015-07-09 14:39:03 -07:00
|
|
|
getMSCSValue "$1" "mscs-client-version" "$DEFAULT_CLIENT_VERSION" |
|
2014-11-06 14:49:59 -07:00
|
|
|
$PERL -ne '
|
|
|
|
$current_version="'$CURRENT_VERSION'";
|
|
|
|
$_ =~ s/\$CURRENT_VERSION/$current_version/g;
|
|
|
|
print;
|
|
|
|
'
|
2013-12-12 21:48:57 -07:00
|
|
|
}
|
2014-01-08 11:58:32 -07:00
|
|
|
|
2013-12-12 21:48:57 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Retrieve the .jar file name for the client for the world.
|
|
|
|
#
|
|
|
|
# @param 1 The world server.
|
|
|
|
# @return CLIENT_JAR
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
getClientJar() {
|
2014-11-06 14:49:59 -07:00
|
|
|
local CURRENT_VERSION CLIENT_VERSION
|
2014-06-19 11:35:46 -07:00
|
|
|
CURRENT_VERSION=$(getCurrentMinecraftVersion "$1")
|
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$CURRENT_VERSION\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
CLIENT_VERSION=$(getClientVersion "$1")
|
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$CLIENT_VERSION\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
2013-12-12 21:48:57 -07:00
|
|
|
# Get the client jar, use the default value if not provided.
|
2015-07-09 14:39:03 -07:00
|
|
|
getMSCSValue "$1" "mscs-client-jar" "$DEFAULT_CLIENT_JAR" |
|
2014-11-06 14:49:59 -07:00
|
|
|
$PERL -ne '
|
|
|
|
$current_version="'$CURRENT_VERSION'";
|
|
|
|
$client_version="'$CLIENT_VERSION'";
|
|
|
|
$_ =~ s/\$CURRENT_VERSION/$current_version/g;
|
|
|
|
$_ =~ s/\$CLIENT_VERSION/$client_version/g;
|
|
|
|
print;
|
|
|
|
'
|
2013-12-12 21:48:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Retrieve the location of the client files for the world.
|
|
|
|
#
|
|
|
|
# @param 1 The world server.
|
|
|
|
# @return CLIENT_LOCATION
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
getClientLocation() {
|
2014-11-06 14:49:59 -07:00
|
|
|
local CURRENT_VERSION CLIENT_VERSION
|
2014-06-19 11:35:46 -07:00
|
|
|
CURRENT_VERSION=$(getCurrentMinecraftVersion "$1")
|
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$CURRENT_VERSION\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
CLIENT_VERSION=$(getClientVersion "$1")
|
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$CLIENT_VERSION\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
2013-12-12 21:48:57 -07:00
|
|
|
# Get the client location, use the default value if not provided.
|
2015-07-09 14:39:03 -07:00
|
|
|
getMSCSValue "$1" "mscs-client-location" "$DEFAULT_CLIENT_LOCATION" |
|
2014-11-06 14:49:59 -07:00
|
|
|
$PERL -ne '
|
|
|
|
$current_version="'$CURRENT_VERSION'";
|
|
|
|
$client_version="'$CLIENT_VERSION'";
|
|
|
|
$_ =~ s/\$CURRENT_VERSION/$current_version/g;
|
|
|
|
$_ =~ s/\$CLIENT_VERSION/$client_version/g;
|
|
|
|
print;
|
|
|
|
'
|
2013-12-12 21:48:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Retrieve the URL to download the client for the world.
|
|
|
|
#
|
|
|
|
# @param 1 The world server.
|
|
|
|
# @return CLIENT_URL
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
getClientURL() {
|
2014-11-06 14:49:59 -07:00
|
|
|
local CURRENT_VERSION CLIENT_VERSION
|
2014-06-19 11:35:46 -07:00
|
|
|
CURRENT_VERSION=$(getCurrentMinecraftVersion "$1")
|
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$CURRENT_VERSION\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
CLIENT_VERSION=$(getClientVersion "$1")
|
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$CLIENT_VERSION\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
2013-12-12 21:48:57 -07:00
|
|
|
# Get the client download URL, use the default value if not provided.
|
2015-07-09 14:39:03 -07:00
|
|
|
getMSCSValue "$1" "mscs-client-url" "$DEFAULT_CLIENT_URL" |
|
2014-11-06 14:49:59 -07:00
|
|
|
$PERL -ne '
|
|
|
|
$current_version="'$CURRENT_VERSION'";
|
|
|
|
$client_version="'$CLIENT_VERSION'";
|
|
|
|
$_ =~ s/\$CURRENT_VERSION/$current_version/g;
|
|
|
|
$_ =~ s/\$CLIENT_VERSION/$client_version/g;
|
|
|
|
$_ =~ s/\\\:/\:/g;
|
|
|
|
print;
|
|
|
|
'
|
2013-12-12 21:48:57 -07:00
|
|
|
}
|
|
|
|
|
2013-11-01 17:21:01 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-11-06 19:21:37 -07:00
|
|
|
# Retrieve the version of the server running the world.
|
2013-11-01 17:21:01 -07:00
|
|
|
#
|
2013-11-06 19:21:37 -07:00
|
|
|
# @param 1 The world server.
|
|
|
|
# @return SERVER_VERSION
|
2013-11-01 17:21:01 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-11-06 19:21:37 -07:00
|
|
|
getServerVersion() {
|
2014-11-06 14:49:59 -07:00
|
|
|
local CURRENT_VERSION
|
2014-06-19 11:35:46 -07:00
|
|
|
CURRENT_VERSION=$(getCurrentMinecraftVersion "$1")
|
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$CURRENT_VERSION\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
2013-11-06 19:21:37 -07:00
|
|
|
# Get the server version, use the default version if not provided.
|
2015-07-09 14:39:03 -07:00
|
|
|
getMSCSValue "$1" "mscs-server-version" "$DEFAULT_SERVER_VERSION" |
|
2014-11-06 14:49:59 -07:00
|
|
|
$PERL -ne '
|
|
|
|
$current_version="'$CURRENT_VERSION'";
|
|
|
|
$_ =~ s/\$CURRENT_VERSION/$current_version/g;
|
|
|
|
print;
|
|
|
|
'
|
2013-11-06 19:21:37 -07:00
|
|
|
}
|
2014-01-08 11:58:32 -07:00
|
|
|
|
2013-11-06 19:21:37 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Retrieve the .jar file name for the server running the world.
|
|
|
|
#
|
|
|
|
# @param 1 The world server.
|
|
|
|
# @return SERVER_JAR
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
getServerJar() {
|
2014-06-19 11:35:46 -07:00
|
|
|
local CURRENT_VERSION SERVER_VERSION SERVER_JAR
|
|
|
|
CURRENT_VERSION=$(getCurrentMinecraftVersion "$1")
|
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$CURRENT_VERSION\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
SERVER_VERSION=$(getServerVersion "$1")
|
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$SERVER_VERSION\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
2013-11-01 17:21:01 -07:00
|
|
|
# Get the server jar, use the default value if not provided.
|
2015-07-09 14:39:03 -07:00
|
|
|
getMSCSValue "$1" "mscs-server-jar" "$DEFAULT_SERVER_JAR" |
|
2014-11-06 14:49:59 -07:00
|
|
|
$PERL -ne '
|
|
|
|
$current_version="'$CURRENT_VERSION'";
|
|
|
|
$server_version="'$SERVER_VERSION'";
|
|
|
|
$_ =~ s/\$CURRENT_VERSION/$current_version/g;
|
|
|
|
$_ =~ s/\$SERVER_VERSION/$server_version/g;
|
|
|
|
print;
|
|
|
|
'
|
2013-11-06 19:21:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Retrieve the location of the server files for the server running the world.
|
|
|
|
#
|
|
|
|
# @param 1 The world server.
|
|
|
|
# @return SERVER_LOCATION
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
getServerLocation() {
|
2014-11-06 14:49:59 -07:00
|
|
|
local CURRENT_VERSION SERVER_VERSION
|
2014-06-19 11:35:46 -07:00
|
|
|
CURRENT_VERSION=$(getCurrentMinecraftVersion "$1")
|
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$CURRENT_VERSION\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
SERVER_VERSION=$(getServerVersion "$1")
|
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$SERVER_VERSION\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
2013-11-01 17:21:01 -07:00
|
|
|
# Get the server location, use the default value if not provided.
|
2015-07-09 14:39:03 -07:00
|
|
|
getMSCSValue "$1" "mscs-server-location" "$DEFAULT_SERVER_LOCATION" |
|
2014-11-06 14:49:59 -07:00
|
|
|
$PERL -ne '
|
|
|
|
$current_version="'$CURRENT_VERSION'";
|
|
|
|
$server_version="'$SERVER_VERSION'";
|
|
|
|
$_ =~ s/\$CURRENT_VERSION/$current_version/g;
|
|
|
|
$_ =~ s/\$SERVER_VERSION/$server_version/g;
|
|
|
|
print;
|
|
|
|
'
|
2013-11-06 19:21:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Retrieve the URL to download the server running the world.
|
|
|
|
#
|
|
|
|
# @param 1 The world server.
|
|
|
|
# @return SERVER_URL
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
getServerURL() {
|
2014-11-06 14:49:59 -07:00
|
|
|
local CURRENT_VERSION SERVER_VERSION
|
2014-06-19 11:35:46 -07:00
|
|
|
CURRENT_VERSION=$(getCurrentMinecraftVersion "$1")
|
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$CURRENT_VERSION\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
SERVER_VERSION=$(getServerVersion "$1")
|
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$SERVER_VERSION\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
2013-11-01 17:21:01 -07:00
|
|
|
# Get the server download URL, use the default value if not provided.
|
2015-07-09 14:39:03 -07:00
|
|
|
getMSCSValue "$1" "mscs-server-url" "$DEFAULT_SERVER_URL" |
|
2014-11-06 14:49:59 -07:00
|
|
|
$PERL -ne '
|
|
|
|
$current_version="'$CURRENT_VERSION'";
|
|
|
|
$server_version="'$SERVER_VERSION'";
|
|
|
|
$_ =~ s/\$CURRENT_VERSION/$current_version/g;
|
|
|
|
$_ =~ s/\$SERVER_VERSION/$server_version/g;
|
|
|
|
$_ =~ s/\\\:/\:/g;
|
|
|
|
print;
|
|
|
|
'
|
2013-11-06 19:21:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Retrieve the command to start the server running the world.
|
|
|
|
#
|
|
|
|
# @param 1 The world server.
|
|
|
|
# @return SERVER_COMMAND
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
getServerCommand() {
|
2014-06-19 11:35:46 -07:00
|
|
|
local CURRENT_VERSION SERVER_VERSION SERVER_JAR SERVER_LOCATION
|
2014-11-06 14:49:59 -07:00
|
|
|
local SERVER_ARGS INITIAL_MEMORY MAXIMUM_MEMORY
|
2014-06-19 11:35:46 -07:00
|
|
|
CURRENT_VERSION=$(getCurrentMinecraftVersion "$1")
|
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$CURRENT_VERSION\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
SERVER_VERSION=$(getServerVersion "$1")
|
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$SERVER_VERSION\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
SERVER_JAR=$(getServerJar "$1")
|
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$SERVER_JAR\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
SERVER_LOCATION=$(getServerLocation "$1")
|
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$SERVER_LOCATION\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
2013-11-03 19:11:49 -07:00
|
|
|
# Get the server arguments, use the default value if not provided.
|
2013-11-01 17:21:01 -07:00
|
|
|
SERVER_ARGS=$(
|
2015-07-09 14:39:03 -07:00
|
|
|
getMSCSValue "$1" "mscs-server-args" "$DEFAULT_SERVER_ARGS"
|
2013-11-01 17:21:01 -07:00
|
|
|
)
|
|
|
|
# Get the initial memory, use the default value if not provided.
|
|
|
|
INITIAL_MEMORY=$(
|
2015-07-09 14:39:03 -07:00
|
|
|
getMSCSValue "$1" "mscs-initial-memory" "$DEFAULT_INITIAL_MEMORY"
|
2013-11-01 17:21:01 -07:00
|
|
|
)
|
|
|
|
# Get the maximum memory, use the default value if not provided.
|
|
|
|
MAXIMUM_MEMORY=$(
|
2015-07-09 14:39:03 -07:00
|
|
|
getMSCSValue "$1" "mscs-maximum-memory" "$DEFAULT_MAXIMUM_MEMORY"
|
2013-11-01 17:21:01 -07:00
|
|
|
)
|
|
|
|
# Get the server command, use the default value if not provided.
|
2015-07-09 14:39:03 -07:00
|
|
|
getMSCSValue "$1" "mscs-server-command" "$DEFAULT_SERVER_COMMAND" |
|
2014-11-06 14:49:59 -07:00
|
|
|
$PERL -ne '
|
|
|
|
$java = "'$JAVA'";
|
|
|
|
$current_version="'$CURRENT_VERSION'";
|
|
|
|
$server_version="'$SERVER_VERSION'";
|
|
|
|
$server_jar = "'$SERVER_JAR'";
|
|
|
|
$server_location = "'$SERVER_LOCATION'";
|
|
|
|
$server_args = "'$SERVER_ARGS'";
|
|
|
|
$initial_memory = "'$INITIAL_MEMORY'";
|
|
|
|
$maximum_memory = "'$MAXIMUM_MEMORY'";
|
|
|
|
$_ =~ s/\$JAVA/$java/g;
|
|
|
|
$_ =~ s/\$CURRENT_VERSION/$current_version/g;
|
|
|
|
$_ =~ s/\$SERVER_VERSION/$server_version/g;
|
|
|
|
$_ =~ s/\$SERVER_JAR/$server_jar/g;
|
|
|
|
$_ =~ s/\$SERVER_LOCATION/$server_location/g;
|
|
|
|
$_ =~ s/\$SERVER_ARGS/$server_args/g;
|
|
|
|
$_ =~ s/\$INITIAL_MEMORY/$initial_memory/g;
|
|
|
|
$_ =~ s/\$MAXIMUM_MEMORY/$maximum_memory/g;
|
|
|
|
print;
|
|
|
|
'
|
2013-11-01 17:21:01 -07:00
|
|
|
}
|
|
|
|
|
2013-12-02 22:07:57 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Check to see if the user running this script has the correct permissions.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
checkPermission() {
|
|
|
|
# Make sure that the minecraft user exists.
|
|
|
|
if [ ! -n "$(grep $USER_NAME /etc/passwd)" ]; then
|
|
|
|
printf "ERROR: This script requires that a user account named "
|
|
|
|
printf "$USER_NAME exist on this system.\nEither modify the "
|
|
|
|
printf "USER_NAME variable in this script, or try adding this "
|
|
|
|
printf "user:\n"
|
|
|
|
printf "sudo adduser $USER_NAME\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
# Check to see if the user is root or is the minecraft user.
|
|
|
|
if [ $(id -u) -gt 0 ] && [ "$(whoami)" != "$USER_NAME" ]; then
|
|
|
|
# Script is running with the wrong user.
|
|
|
|
printf "WARNING: This script appears to have been started by the "
|
|
|
|
printf "wrong user.\n"
|
|
|
|
printf "Expected to find the user: $USER_NAME. You can try to log "
|
|
|
|
printf "on to this user:\n"
|
|
|
|
printf "su $USER_NAME\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-12-27 12:19:31 -07:00
|
|
|
# Remove old world log files and rotate log files from old servers (v < 1.7).
|
2013-06-24 11:26:09 -07:00
|
|
|
#
|
|
|
|
# @param 1 The world server generating the log to rotate.
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
rotateLog() {
|
2013-12-27 12:19:31 -07:00
|
|
|
local WORLD_DIR DATE LOG NUMBER
|
2013-08-04 09:09:40 -07:00
|
|
|
WORLD_DIR="$WORLDS_LOCATION/$1"
|
2013-12-27 12:19:31 -07:00
|
|
|
# Make sure the log directory exists.
|
|
|
|
execute "mkdir -p $WORLD_DIR/logs" $USER_NAME
|
|
|
|
# Delete old log files.
|
|
|
|
execute "
|
|
|
|
find $WORLD_DIR/logs -type f -mtime +$LOG_DURATION -delete
|
|
|
|
" $USER_NAME
|
|
|
|
# Archive and rotate the log files for old Minecraft servers (Versions 1.7
|
|
|
|
# and greater do this automatically).
|
2014-01-08 11:58:32 -07:00
|
|
|
if [ -e $WORLD_DIR/server.log ] &&
|
2013-12-27 12:19:31 -07:00
|
|
|
[ $(wc -l < $WORLD_DIR/server.log) -ge 1 ]; then
|
|
|
|
# Make a copy of the log file in the world's logs directory.
|
|
|
|
DATE=$(date +%F)
|
|
|
|
execute "cp $WORLD_DIR/server.log $WORLD_DIR/logs/$DATE-0.log" $USER_NAME
|
|
|
|
execute "gzip $WORLD_DIR/logs/$DATE-0.log" $USER_NAME
|
|
|
|
# Empty the contents of the worlds log file.
|
|
|
|
execute "cp /dev/null $WORLD_DIR/server.log" $USER_NAME
|
|
|
|
# Rotate the files in the world's logs directory.
|
|
|
|
for LOG in $(ls -r $WORLD_DIR/logs/$DATE-*.log.gz); do
|
|
|
|
NUMBER=$(echo $LOG | cut -d "." -f 1 | cut -d "-" -f 4)
|
|
|
|
NUMBER=$(($NUMBER+1))
|
2014-02-06 13:37:44 -07:00
|
|
|
execute "mv -f $LOG \"$WORLD_DIR/logs/$DATE-$NUMBER.log.gz\"" $USER_NAME
|
2013-12-27 12:19:31 -07:00
|
|
|
done
|
2013-08-04 09:09:40 -07:00
|
|
|
fi
|
2013-06-24 11:26:09 -07:00
|
|
|
}
|
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-11-09 17:09:19 -07:00
|
|
|
# Watch the world latest.log file.
|
2013-06-24 11:26:09 -07:00
|
|
|
#
|
|
|
|
# @param 1 The world server generating the log to watch.
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
watchLog() {
|
2013-12-07 12:09:36 -07:00
|
|
|
local WORLD_DIR
|
2013-08-04 09:09:40 -07:00
|
|
|
WORLD_DIR="$WORLDS_LOCATION/$1"
|
2013-11-09 17:09:19 -07:00
|
|
|
# Make sure that the latest.log file exists.
|
|
|
|
if [ -e "$WORLD_DIR/logs/latest.log" ]; then
|
2013-12-27 12:19:31 -07:00
|
|
|
# Watch the log file of worlds running Minecraft 1.7 +.
|
2013-12-07 12:09:36 -07:00
|
|
|
tail -n0 -f --pid=$(getJavaPID "$1") $WORLD_DIR/logs/latest.log
|
2013-12-27 12:19:31 -07:00
|
|
|
elif [ -e $WORLD_DIR/server.log ]; then
|
|
|
|
# Watch the log file of worlds running older Minecraft servers.
|
|
|
|
tail -n0 -f --pid=$(getJavaPID "$1") $WORLD_DIR/server.log
|
2013-08-04 09:09:40 -07:00
|
|
|
fi
|
2013-06-24 11:26:09 -07:00
|
|
|
}
|
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
# Synchronizes the data stored in the mirror images.
|
|
|
|
#
|
|
|
|
# @param 1 The world server to sync.
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
syncMirrorImage() {
|
2013-08-04 09:09:40 -07:00
|
|
|
# Sync the world server.
|
2013-08-04 10:33:58 -07:00
|
|
|
execute "cp -Ru $WORLDS_LOCATION/$1/$1/* $WORLDS_LOCATION/$1/$1-original" $USER_NAME
|
2013-08-04 09:09:40 -07:00
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
printf "Error synchronizing mirror images for world $1.\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-06-24 11:26:09 -07:00
|
|
|
}
|
|
|
|
|
2014-02-06 15:47:52 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Display the server console.
|
|
|
|
#
|
|
|
|
# @param 1 The world server to connect to.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
serverConsole() {
|
|
|
|
local LINE WORLD_DIR
|
|
|
|
# Make sure that the world's directory exists.
|
|
|
|
WORLD_DIR="$WORLDS_LOCATION/$1"
|
|
|
|
# Follow the console output buffer file.
|
|
|
|
tail --pid=$$ -f $WORLD_DIR/console.out &
|
|
|
|
# Copy user input to the console input buffer file.
|
|
|
|
while read LINE; do
|
|
|
|
echo "$LINE" >> $WORLD_DIR/console.in
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-08-05 16:32:23 -07:00
|
|
|
# Start the world server. Generate the appropriate environment for the
|
|
|
|
# server if it doesn't already exist.
|
2013-06-24 11:26:09 -07:00
|
|
|
#
|
|
|
|
# @param 1 The world server to start.
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
start() {
|
2014-09-01 14:42:05 -07:00
|
|
|
local EULA PID SERVER_COMMAND WORLD_DIR
|
2013-11-01 11:56:43 -07:00
|
|
|
# Make sure that the server software exists.
|
2013-11-01 12:25:40 -07:00
|
|
|
updateServerSoftware "$1"
|
2013-08-04 09:09:40 -07:00
|
|
|
# Make sure that the world's directory exists.
|
|
|
|
WORLD_DIR="$WORLDS_LOCATION/$1"
|
|
|
|
execute "mkdir -p $WORLD_DIR" $USER_NAME
|
2014-08-26 18:20:57 -07:00
|
|
|
# Make sure the EULA has been set to true.
|
|
|
|
EULA=$(getEULAValue "$1")
|
|
|
|
if [ $EULA != "true" ]; then
|
|
|
|
printf "\nError, the EULA has not been accepted for world %s.\n" "$1"
|
|
|
|
printf "To accept the EULA, modify %s/eula.txt file.\n" "$WORLD_DIR"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-12-27 12:19:31 -07:00
|
|
|
# Rotate the world's log files.
|
|
|
|
rotateLog "$1"
|
2013-08-04 09:09:40 -07:00
|
|
|
# Make a mirror image of the world directory if requested.
|
2013-08-04 10:33:58 -07:00
|
|
|
if [ $ENABLE_MIRROR -eq 1 ]; then
|
2013-08-04 09:09:40 -07:00
|
|
|
execute "mkdir -p $MIRROR_PATH/$1" $USER_NAME
|
2013-08-04 10:33:58 -07:00
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
printf "Error copying world data, path %s not found.\n" $MIRROR_PATH/$1
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
# Check for a clean dismount from the previous server run. If we have a
|
|
|
|
# <world>-original directory within <world> we didn't stop cleanly.
|
|
|
|
if [ -d "WORLDS_LOCATION/$1/$1-original" ]; then
|
|
|
|
# Remove the symlink to the world-file mirror image.
|
|
|
|
execute "rm -r $WORLDS_LOCATION/$1/$1" $USER_NAME
|
|
|
|
# Move the world files back to their original path name.
|
|
|
|
execute "mv $WORLDS_LOCATION/$1/$1-original $WORLDS_LOCATION/$1/$1" $USER_NAME
|
|
|
|
fi
|
|
|
|
# Copy the world files over to the mirror.
|
|
|
|
execute "cp -R $WORLDS_LOCATION/$1/$1/* $MIRROR_PATH/$1" $USER_NAME
|
|
|
|
# Rename the original world file directory.
|
|
|
|
execute "mv $WORLDS_LOCATION/$1/$1 $WORLDS_LOCATION/$1/$1-original" $USER_NAME
|
|
|
|
# Create a symlink from the world file directory's original name to the mirrored files.
|
|
|
|
execute "ln -s $MIRROR_PATH/$1 $WORLDS_LOCATION/$1/$1" $USER_NAME
|
2013-08-04 09:09:40 -07:00
|
|
|
fi
|
|
|
|
# Change to the world's directory.
|
|
|
|
cd $WORLD_DIR
|
2014-02-06 15:47:52 -07:00
|
|
|
# Delete any old console.in or console.out buffer files.
|
|
|
|
execute "rm -f $WORLD_DIR/console.in $WORLD_DIR/console.out" $USER_NAME
|
2013-12-07 12:22:06 -07:00
|
|
|
# Initialize the console.in buffer file.
|
|
|
|
execute "printf '' > $WORLD_DIR/console.in" $USER_NAME
|
2014-04-02 19:32:42 -07:00
|
|
|
# Get the server command for this world.
|
|
|
|
SERVER_COMMAND=$(getServerCommand "$1")
|
2014-06-19 11:35:46 -07:00
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$SERVER_COMMAND\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
2013-08-04 09:09:40 -07:00
|
|
|
# Start the server.
|
2013-12-07 10:56:07 -07:00
|
|
|
execute "
|
2013-12-07 12:22:06 -07:00
|
|
|
tail -f --pid=\$$ $WORLD_DIR/console.in | {
|
2014-05-06 08:11:15 -07:00
|
|
|
$SERVER_COMMAND mscs-world=$1 > $WORLD_DIR/console.out 2>&1; kill \$$;
|
2013-12-07 12:22:06 -07:00
|
|
|
}
|
|
|
|
" $USER_NAME &
|
2013-12-07 10:53:59 -07:00
|
|
|
# Verify the server is running.
|
2013-08-04 09:09:40 -07:00
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
printf "Error starting the server.\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-12-04 16:05:20 -07:00
|
|
|
sleep 1
|
2014-09-01 14:42:05 -07:00
|
|
|
PID=$(getJavaPID "$1")
|
|
|
|
if [ $PID -eq 0 ]; then
|
2013-08-04 09:09:40 -07:00
|
|
|
printf "Error starting the server: couldn't retrieve the server's process ID.\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-12-03 11:39:13 -07:00
|
|
|
# Start the Query handler if enabled.
|
2015-07-09 14:39:03 -07:00
|
|
|
if [ "$(getServerPropertiesValue $1 'enable-query')" = "true" ]; then
|
2013-12-03 11:39:13 -07:00
|
|
|
queryStart "$1" &
|
2013-12-01 12:29:39 -07:00
|
|
|
fi
|
2014-09-01 14:42:05 -07:00
|
|
|
# Create a PID file for the world server.
|
|
|
|
execute "echo $PID > $WORLDS_LOCATION/$1.pid" $USER_NAME
|
2013-06-24 11:26:09 -07:00
|
|
|
}
|
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
# Stop the world server.
|
|
|
|
#
|
|
|
|
# @param 1 The world server to stop.
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
stop() {
|
2013-08-04 09:09:40 -07:00
|
|
|
local WORLD NUM
|
|
|
|
sendCommand $1 "stop"
|
2014-04-17 15:03:03 -07:00
|
|
|
sendCommand $1 "end"
|
2013-08-04 09:09:40 -07:00
|
|
|
# Synchronize the mirror image of the world prior to closing, if
|
|
|
|
# required.
|
|
|
|
if [ $ENABLE_MIRROR -eq 1 ] && [ -d $MIRROR_PATH ]; then
|
|
|
|
syncMirrorImage $1
|
2013-08-04 10:33:58 -07:00
|
|
|
# Remove the symlink to the world-file mirror image.
|
|
|
|
execute "rm -r $WORLDS_LOCATION/$1/$1" $USER_NAME
|
|
|
|
# Move the world files back to their original path name.
|
|
|
|
execute "mv $WORLDS_LOCATION/$1/$1-original $WORLDS_LOCATION/$1/$1" $USER_NAME
|
2013-08-04 09:09:40 -07:00
|
|
|
fi
|
2014-09-01 14:42:05 -07:00
|
|
|
# Remove the PID file for the world server.
|
|
|
|
execute "rm -f $WORLDS_LOCATION/$1.pid" $USER_NAME
|
2013-06-24 11:26:09 -07:00
|
|
|
}
|
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
# Forcibly stop the world server.
|
|
|
|
#
|
|
|
|
# @param 1 The world server to forcibly stop.
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
forceStop() {
|
2013-08-04 09:09:40 -07:00
|
|
|
# Try to stop the server cleanly first.
|
2013-12-04 15:58:16 -07:00
|
|
|
stop "$1"
|
2013-08-04 09:09:40 -07:00
|
|
|
sleep 5
|
2013-12-04 16:16:15 -07:00
|
|
|
# Kill the process id of the world server.
|
|
|
|
kill -9 $(getJavaPID "$1") > /dev/null 2>&1
|
2013-06-24 11:26:09 -07:00
|
|
|
}
|
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
# Backup the world server.
|
|
|
|
#
|
|
|
|
# @param 1 The world server to backup.
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
worldBackup() {
|
2013-08-04 09:09:40 -07:00
|
|
|
# Make sure that the backup location exists.
|
|
|
|
execute "mkdir -p $BACKUP_LOCATION" $USER_NAME
|
|
|
|
# Create the backup.
|
|
|
|
execute "$RDIFF_BACKUP -v5 --print-statistics $WORLDS_LOCATION/$1 $BACKUP_LOCATION/$1 >> $BACKUP_LOG" $USER_NAME
|
2014-09-01 14:05:36 -07:00
|
|
|
# Set the permissions for the backup location.
|
|
|
|
execute "chmod a+rX -R $BACKUP_LOCATION" $USER_NAME
|
2013-08-04 09:09:40 -07:00
|
|
|
# Cleanup old backups.
|
|
|
|
if [ $BACKUP_DURATION -gt 0 ]; then
|
|
|
|
execute "$RDIFF_BACKUP --remove-older-than ${BACKUP_DURATION}D --force $BACKUP_LOCATION/$1 >> $BACKUP_LOG" $USER_NAME
|
|
|
|
fi
|
2013-06-24 11:26:09 -07:00
|
|
|
}
|
|
|
|
|
2014-09-01 12:27:46 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# List the backups for the world server.
|
|
|
|
#
|
|
|
|
# @param 1 The world server of interest.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
worldBackupList() {
|
2015-07-04 07:32:19 -07:00
|
|
|
local SEC TYPE
|
2014-09-01 12:27:46 -07:00
|
|
|
if [ -d $BACKUP_LOCATION/$1 ]; then
|
|
|
|
# Grab the list of backups for the world server.
|
2015-07-04 07:32:19 -07:00
|
|
|
$RDIFF_BACKUP --parsable-output -l $BACKUP_LOCATION/$1 |
|
|
|
|
while read SEC TYPE; do
|
|
|
|
date --date=\@$SEC -Iseconds
|
|
|
|
done
|
2014-09-01 12:27:46 -07:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2014-09-01 12:32:27 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Restore a backup for the world server.
|
|
|
|
#
|
|
|
|
# @param 1 The world server of interest.
|
|
|
|
# @param 2 The datetime of the backup to restore.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
worldBackupRestore() {
|
|
|
|
if [ -d $BACKUP_LOCATION/$1 ]; then
|
2014-09-01 14:07:10 -07:00
|
|
|
worldBackup "$1"
|
2014-09-01 12:32:27 -07:00
|
|
|
execute "$RDIFF_BACKUP -r $2 $BACKUP_LOCATION/$1 $WORLDS_LOCATION/$1" $USER_NAME
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-11-03 20:02:41 -07:00
|
|
|
# Update the Minecraft client software.
|
2013-12-12 21:48:57 -07:00
|
|
|
#
|
|
|
|
# @param 1 The world to update.
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
updateClientSoftware() {
|
2014-11-29 20:06:33 -07:00
|
|
|
local CLIENT_JAR CLIENT_LOCATION CLIENT_URL
|
2013-12-12 21:48:57 -07:00
|
|
|
CLIENT_JAR=$(getClientJar "$1")
|
2014-06-19 11:35:46 -07:00
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$CLIENT_JAR\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
2013-12-12 21:48:57 -07:00
|
|
|
CLIENT_LOCATION=$(getClientLocation "$1")
|
2014-06-19 11:35:46 -07:00
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$CLIENT_LOCATION\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
2013-12-12 21:48:57 -07:00
|
|
|
CLIENT_URL=$(getClientURL "$1")
|
2014-06-19 11:35:46 -07:00
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$CLIENT_URL\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
2013-08-04 09:09:40 -07:00
|
|
|
# Make sure the client software directory exists.
|
|
|
|
execute "mkdir -p $CLIENT_LOCATION" $USER_NAME
|
2014-11-12 20:54:12 -07:00
|
|
|
# Download the client jar if it is missing.
|
2014-09-16 17:25:34 -07:00
|
|
|
if [ ! -s "$CLIENT_LOCATION/$CLIENT_JAR" ]; then
|
2013-12-12 21:48:57 -07:00
|
|
|
# Download the Minecraft client software.
|
2013-11-03 20:02:41 -07:00
|
|
|
execute "$WGET -qO \"$CLIENT_LOCATION/$CLIENT_JAR\" \"$CLIENT_URL\"" $USER_NAME
|
|
|
|
# Report any errors.
|
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "Error updating the Minecraft client software.\n"
|
2013-11-03 20:02:41 -07:00
|
|
|
exit 1
|
2013-08-04 09:09:40 -07:00
|
|
|
fi
|
|
|
|
fi
|
2013-06-24 11:26:09 -07:00
|
|
|
}
|
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
# Update the Minecraft server software.
|
2013-11-01 17:21:01 -07:00
|
|
|
#
|
|
|
|
# @param 1 The world server to update.
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
updateServerSoftware() {
|
2014-11-29 20:06:33 -07:00
|
|
|
local SERVER_JAR SERVER_LOCATION SERVER_URL
|
2013-11-06 19:21:37 -07:00
|
|
|
SERVER_JAR=$(getServerJar "$1")
|
2014-06-19 11:35:46 -07:00
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$SERVER_JAR\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
2013-11-06 19:21:37 -07:00
|
|
|
SERVER_LOCATION=$(getServerLocation "$1")
|
2014-06-19 11:35:46 -07:00
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$SERVER_LOCATION\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
2013-11-06 19:21:37 -07:00
|
|
|
SERVER_URL=$(getServerURL "$1")
|
2014-06-19 11:35:46 -07:00
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "$SERVER_URL\n"
|
2014-06-19 11:35:46 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
2013-12-12 21:48:57 -07:00
|
|
|
# Make sure the server software directory exists.
|
2013-08-04 09:09:40 -07:00
|
|
|
execute "mkdir -p $SERVER_LOCATION" $USER_NAME
|
2014-11-12 20:54:12 -07:00
|
|
|
# Download the server jar if it is missing.
|
2014-09-16 17:22:52 -07:00
|
|
|
if [ ! -s "$SERVER_LOCATION/$SERVER_JAR" ]; then
|
2013-12-12 21:48:57 -07:00
|
|
|
# Download the Minecraft server software.
|
2013-11-01 12:09:11 -07:00
|
|
|
execute "$WGET -qO \"$SERVER_LOCATION/$SERVER_JAR\" \"$SERVER_URL\"" $USER_NAME
|
|
|
|
# Report any errors.
|
|
|
|
if [ $? -ne 0 ]; then
|
2014-06-19 12:06:18 -07:00
|
|
|
printf "Error updating the Minecraft server software.\n"
|
2013-11-01 12:09:11 -07:00
|
|
|
exit 1
|
2013-08-04 09:09:40 -07:00
|
|
|
fi
|
|
|
|
fi
|
2013-06-24 11:26:09 -07:00
|
|
|
}
|
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
# Run Minecraft Overviewer mapping software on the world. Generates an
|
|
|
|
# index.html file using the Google Maps API.
|
|
|
|
#
|
|
|
|
# @param 1 The world server to map with Overviewer.
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
overviewer() {
|
2015-05-07 18:27:41 -07:00
|
|
|
local CLIENT_JAR CLIENT_LOCATION SERVER_RUNNING
|
2014-09-16 12:37:38 -07:00
|
|
|
SERVER_RUNNING=$(serverRunning $1)
|
|
|
|
# Announce the mapping of the world to players.
|
|
|
|
if [ $SERVER_RUNNING -eq 1 ]; then
|
2014-09-16 13:02:49 -07:00
|
|
|
if [ $(compareMinecraftVersions $(getServerVersion $1) 1.7) -ge 0 ]; then
|
|
|
|
sendCommand $WORLD 'tellraw @a {
|
|
|
|
"text" : "",
|
|
|
|
"extra" : [
|
|
|
|
{
|
|
|
|
"text" : "[Server] The world is about to be mapped with "
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"text" : "Overviewer",
|
|
|
|
"color" : "aqua",
|
|
|
|
"clickEvent" : {
|
|
|
|
"action" : "open_url",
|
|
|
|
"value" : "'$OVERVIEWER_URL'"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"text" : "."
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}'
|
|
|
|
else
|
|
|
|
sendCommand $1 "say The world is about to be mapped with Overviewer."
|
|
|
|
fi
|
2014-09-16 12:37:38 -07:00
|
|
|
sendCommand $1 "save-all"
|
|
|
|
sendCommand $1 "save-off"
|
|
|
|
sleep 20
|
|
|
|
fi
|
|
|
|
# Run a backup of the world.
|
|
|
|
worldBackup $1
|
2013-08-04 09:09:40 -07:00
|
|
|
# Make sure the maps directory exists.
|
|
|
|
execute "mkdir -p $MAPS_LOCATION/$1" $USER_NAME
|
|
|
|
# Make sure the Minecraft client is available.
|
2013-12-12 21:48:57 -07:00
|
|
|
updateClientSoftware "$1"
|
2015-05-07 18:27:41 -07:00
|
|
|
CLIENT_JAR=$(getClientJar "$1")
|
|
|
|
CLIENT_LOCATION=$(getClientLocation "$1")
|
2013-08-04 09:09:40 -07:00
|
|
|
# Make sure that the world files are actually there before mapping.
|
|
|
|
if [ -e "$WORLDS_LOCATION/$1/server.properties" ]; then
|
|
|
|
# Check for Overviewer settings file.
|
2015-05-07 18:27:41 -07:00
|
|
|
if [ ! -e "$WORLDS_LOCATION/$1/overviewer-settings.py" ]; then
|
|
|
|
execute "touch $WORLDS_LOCATION/$1/overviewer-settings.py" $USER_NAME
|
|
|
|
printf "worlds['$1'] = \"$WORLDS_LOCATION/$1/$1\"\n" >> $WORLDS_LOCATION/$1/overviewer-settings.py
|
|
|
|
printf "\n" >> $WORLDS_LOCATION/$1/overviewer-settings.py
|
|
|
|
printf "renders['normalrender'] = {\n" >> $WORLDS_LOCATION/$1/overviewer-settings.py
|
|
|
|
printf " 'world': '$1',\n" >> $WORLDS_LOCATION/$1/overviewer-settings.py
|
|
|
|
printf " 'title': 'Normal',\n" >> $WORLDS_LOCATION/$1/overviewer-settings.py
|
|
|
|
printf " 'dimension': 'overworld',\n" >> $WORLDS_LOCATION/$1/overviewer-settings.py
|
|
|
|
printf " 'rendermode': 'normal'\n" >> $WORLDS_LOCATION/$1/overviewer-settings.py
|
|
|
|
printf "}\n" >> $WORLDS_LOCATION/$1/overviewer-settings.py
|
|
|
|
printf "\n" >> $WORLDS_LOCATION/$1/overviewer-settings.py
|
|
|
|
printf "renders['caverender'] = {\n" >> $WORLDS_LOCATION/$1/overviewer-settings.py
|
|
|
|
printf " 'world': '$1',\n" >> $WORLDS_LOCATION/$1/overviewer-settings.py
|
|
|
|
printf " 'title': 'Caves',\n" >> $WORLDS_LOCATION/$1/overviewer-settings.py
|
|
|
|
printf " 'dimension': 'overworld',\n" >> $WORLDS_LOCATION/$1/overviewer-settings.py
|
|
|
|
printf " 'rendermode': 'cave'\n" >> $WORLDS_LOCATION/$1/overviewer-settings.py
|
|
|
|
printf "}\n" >> $WORLDS_LOCATION/$1/overviewer-settings.py
|
|
|
|
printf "\n" >> $WORLDS_LOCATION/$1/overviewer-settings.py
|
|
|
|
printf "outputdir = \"$MAPS_LOCATION/$1\"\n" >> $WORLDS_LOCATION/$1/overviewer-settings.py
|
|
|
|
printf "texturepath = \"$CLIENT_LOCATION/$CLIENT_JAR\"\n" >> $WORLDS_LOCATION/$1/overviewer-settings.py
|
2013-08-04 09:09:40 -07:00
|
|
|
fi
|
2015-05-07 18:27:41 -07:00
|
|
|
# Generate the map and POI.
|
|
|
|
execute "$OVERVIEWER_BIN --config=$WORLDS_LOCATION/$1/overviewer-settings.py" $USER_NAME >> $WORLDS_LOCATION/$1/logs/overviewer.log 2>&1
|
|
|
|
execute "$OVERVIEWER_BIN --config=$WORLDS_LOCATION/$1/overviewer-settings.py --genpoi" $USER_NAME >> $WORLDS_LOCATION/$1/logs/overviewer.log 2>&1
|
2013-08-04 09:09:40 -07:00
|
|
|
fi
|
2014-09-16 12:37:38 -07:00
|
|
|
# Announce the location to access the world map to players.
|
|
|
|
if [ $SERVER_RUNNING -eq 1 ]; then
|
|
|
|
sendCommand $1 "save-on"
|
|
|
|
if [ $(compareMinecraftVersions $(getServerVersion $1) 1.7) -ge 0 ]; then
|
|
|
|
sendCommand $WORLD 'tellraw @a {
|
|
|
|
"text" : "",
|
|
|
|
"extra" : [
|
|
|
|
{
|
|
|
|
"text" : "[Server] Mapping is complete. You can access the maps "
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"text" : "here",
|
|
|
|
"color" : "aqua",
|
|
|
|
"clickEvent" : {
|
|
|
|
"action" : "open_url",
|
|
|
|
"value" : "'$MAPS_URL'/'$WORLD'"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"text" : "."
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}'
|
|
|
|
else
|
|
|
|
sendCommand $1 "say Mapping is complete. You can access the maps at:"
|
|
|
|
sendCommand $1 "say $MAPS_URL/$WORLD"
|
|
|
|
fi
|
|
|
|
fi
|
2013-06-24 11:26:09 -07:00
|
|
|
}
|
|
|
|
|
2013-12-03 11:39:13 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Start a Query handler for a world server.
|
|
|
|
#
|
2013-12-03 12:00:37 -07:00
|
|
|
# @param 1 The world server to start a Query handler for.
|
2013-12-03 11:39:13 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
queryStart() {
|
2014-11-16 14:13:05 -07:00
|
|
|
local WORLD_DIR SERVER_IP QUERY_PORT
|
2013-12-03 12:00:37 -07:00
|
|
|
# Grab the location of the world's directory.
|
2013-12-03 11:39:13 -07:00
|
|
|
WORLD_DIR="$WORLDS_LOCATION/$1"
|
2014-02-06 13:50:57 -07:00
|
|
|
# Determine the IP address and port used by the query server.
|
2015-07-09 14:39:03 -07:00
|
|
|
SERVER_IP=$(getServerPropertiesValue $1 'server-ip' '127.0.0.1')
|
|
|
|
QUERY_PORT=$(getServerPropertiesValue $1 'query.port')
|
2013-12-03 19:09:42 -07:00
|
|
|
# Delete any old query.in or query.out buffer files.
|
|
|
|
execute "rm -Rf $WORLD_DIR/query.in $WORLD_DIR/query.out" $USER_NAME
|
2013-12-03 11:39:13 -07:00
|
|
|
# Give the server a moment to start before initializing the
|
|
|
|
# Query handler.
|
2015-06-05 18:14:18 -07:00
|
|
|
sleep 20
|
2013-12-03 19:09:42 -07:00
|
|
|
# Initialize the query.in and query.out buffer files.
|
|
|
|
execute "printf '' > $WORLD_DIR/query.in" $USER_NAME
|
|
|
|
execute "printf '' > $WORLD_DIR/query.out" $USER_NAME
|
|
|
|
# Start a tail process to watch for changes to the query.in file to pipe
|
2013-12-03 11:39:13 -07:00
|
|
|
# to the Minecraft query server via socat. The response from the query
|
2013-12-03 19:09:42 -07:00
|
|
|
# server is piped into the query.out file.
|
2013-12-03 11:39:13 -07:00
|
|
|
execute "
|
2013-12-07 12:09:36 -07:00
|
|
|
tail -f --pid=$(getJavaPID $1) $WORLD_DIR/query.in | \
|
2014-11-16 14:13:05 -07:00
|
|
|
$SOCAT - UDP:$SERVER_IP:$QUERY_PORT > $WORLD_DIR/query.out
|
2013-12-03 11:39:13 -07:00
|
|
|
" $USER_NAME
|
2014-01-28 10:02:42 -07:00
|
|
|
# Verify the connection to the query server worked.
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
printf "Error connecting to the query server.\n"
|
|
|
|
fi
|
|
|
|
|
2013-12-03 11:39:13 -07:00
|
|
|
}
|
|
|
|
|
2013-08-05 16:32:23 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Pack a hex string into a buffer file that is piped to the Minecraft query
|
|
|
|
# server.
|
|
|
|
#
|
|
|
|
# @param 1 The world server of interest.
|
|
|
|
# @param 2 The packet type.
|
2014-11-02 22:08:48 -07:00
|
|
|
# @param 3 The packet payload.
|
|
|
|
# @param 4 The response format.
|
2013-08-09 20:42:42 -07:00
|
|
|
# @return The response from the Query server in the requested format.
|
2013-08-05 16:32:23 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
querySendPacket() {
|
2014-11-02 22:08:48 -07:00
|
|
|
local ID PACKET RESPONSE WORLD_DIR
|
|
|
|
# The packet identifier.
|
|
|
|
ID="00000001"
|
2013-08-05 16:32:23 -07:00
|
|
|
# The world's directory.
|
|
|
|
WORLD_DIR="$WORLDS_LOCATION/$1"
|
2013-12-03 19:09:42 -07:00
|
|
|
# Make sure the query.in and query.out buffer files exist before
|
2013-12-03 11:43:31 -07:00
|
|
|
# preparing and sending the packet to the Query server.
|
2013-12-03 19:09:42 -07:00
|
|
|
if [ -e $WORLD_DIR/query.in ] && [ -e $WORLD_DIR/query.out ]; then
|
2013-12-03 11:43:31 -07:00
|
|
|
# Add the magic bytes to the incoming packet.
|
2014-11-02 22:08:48 -07:00
|
|
|
PACKET=$(printf "FEFD%s%s%s" "$2" "$ID" "$3")
|
2013-12-03 19:09:42 -07:00
|
|
|
# Remove any old responses from the query.out buffer file.
|
|
|
|
execute "printf '' > $WORLD_DIR/query.out" $USER_NAME
|
|
|
|
# Pack the hex string packet and write it to the query.in buffer file.
|
2013-12-03 11:43:31 -07:00
|
|
|
execute "$PERL -e '
|
|
|
|
print map { pack (\"C\", hex(\$_)) } (\"'$PACKET'\" =~ /(..)/g);
|
2013-12-03 19:09:42 -07:00
|
|
|
' >> $WORLD_DIR/query.in" $USER_NAME
|
2013-12-03 11:43:31 -07:00
|
|
|
# Give the Query server a moment to respond.
|
|
|
|
sleep 1
|
2013-12-03 19:09:42 -07:00
|
|
|
# Unpack the token from the query.out buffer file. There are a
|
2013-12-03 11:43:31 -07:00
|
|
|
# variable amount of null bytes at the start of the response string, so
|
|
|
|
# find the start of the packet by searching for the packet type and ID.
|
|
|
|
RESPONSE=$($PERL -ne '
|
|
|
|
$hex .= sprintf "%.2x", $_ foreach (unpack "C*", $_);
|
2014-11-02 22:08:48 -07:00
|
|
|
$hex =~ s/^0*'$2$ID'/'$2$ID'/;
|
2013-12-03 11:43:31 -07:00
|
|
|
print $hex;
|
2013-12-03 19:09:42 -07:00
|
|
|
' $WORLD_DIR/query.out)
|
2013-12-03 11:43:31 -07:00
|
|
|
fi
|
2014-02-06 17:12:06 -07:00
|
|
|
if [ -n "$RESPONSE" ]; then
|
|
|
|
# Return the response in the format requested.
|
|
|
|
$PERL -e '
|
|
|
|
$packed = join "", map { pack ("C", hex($_)) } ("'$RESPONSE'" =~ /(..)/g);
|
2014-11-02 22:08:48 -07:00
|
|
|
printf "%s\n", join "\t", unpack ("'$4'", $packed);
|
2014-02-06 17:12:06 -07:00
|
|
|
'
|
|
|
|
fi
|
2013-08-05 16:32:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Send a challenge packet to the Minecraft query server.
|
|
|
|
#
|
|
|
|
# @param 1 The world server of interest.
|
2013-08-09 20:42:42 -07:00
|
|
|
# @return Tab separated values:
|
|
|
|
# type - The packet type.
|
|
|
|
# id - The packet identifier.
|
|
|
|
# token - The token.
|
2013-08-05 16:32:23 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
querySendChallengePacket() {
|
2014-11-02 22:08:48 -07:00
|
|
|
local PACKET RESPONSE
|
2013-08-05 16:32:23 -07:00
|
|
|
# Use an empty packet.
|
|
|
|
PACKET="00000000"
|
|
|
|
# Send the challenge packet to the Minecraft query server.
|
2014-11-02 22:08:48 -07:00
|
|
|
RESPONSE=$(querySendPacket "$1" "09" "$PACKET" "Cl>Z*")
|
2013-08-06 08:35:46 -07:00
|
|
|
# Return the response.
|
|
|
|
printf "$RESPONSE\n"
|
2013-08-05 16:32:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Send a status query to the Minecraft query server.
|
|
|
|
#
|
|
|
|
# @param 1 The world server of interest.
|
2013-08-09 20:42:42 -07:00
|
|
|
# @return Tab separated values:
|
|
|
|
# type - The packet type.
|
|
|
|
# id - The packet identifier.
|
|
|
|
# MOTD - The world's message of the day.
|
|
|
|
# gametype - The world's game type.
|
|
|
|
# map - The name of the world.
|
|
|
|
# numplayers - The current number of players.
|
|
|
|
# maxplayers - The maximum number of players.
|
|
|
|
# hostport - The host's port
|
|
|
|
# hostip - The host's IP address.
|
2013-08-05 16:32:23 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
queryStatus() {
|
2014-11-03 16:29:37 -07:00
|
|
|
local PACKET RESPONSE TOKEN
|
2015-07-09 14:39:03 -07:00
|
|
|
if [ "$(getServerPropertiesValue $1 'enable-query')" = "true" ]; then
|
2013-12-01 12:29:39 -07:00
|
|
|
# Send a challenge packet to the Minecraft query server.
|
|
|
|
TOKEN=$(querySendChallengePacket $1 | cut -f 3)
|
2013-12-03 11:22:48 -07:00
|
|
|
if [ -n "$TOKEN" ]; then
|
2014-11-03 16:29:37 -07:00
|
|
|
# Use the challenge token for the packet.
|
|
|
|
PACKET=$(printf "%.8x" $TOKEN)
|
|
|
|
# Send the information request packet to the Minecraft query server.
|
|
|
|
RESPONSE=$(querySendPacket "$1" "00" "$PACKET" "Cl>Z*Z*Z*Z*Z*s<Z*")
|
2013-12-03 11:22:48 -07:00
|
|
|
fi
|
2013-12-01 12:29:39 -07:00
|
|
|
fi
|
2013-08-05 16:32:23 -07:00
|
|
|
# Return the response.
|
|
|
|
printf "$RESPONSE\n"
|
|
|
|
}
|
|
|
|
|
2013-08-08 09:06:16 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Send a detailed status query to the Minecraft query server.
|
|
|
|
#
|
|
|
|
# @param 1 The world server of interest.
|
2013-08-09 20:42:42 -07:00
|
|
|
# @return Tab separated values:
|
|
|
|
# type - The packet type.
|
|
|
|
# id - The packet identifier.
|
|
|
|
# * - The string 'splitnum'.
|
|
|
|
# * - The value 128.
|
|
|
|
# * - The value 0.
|
|
|
|
# * - The string 'hostname'.
|
|
|
|
# MOTD - The world's message of the day.
|
|
|
|
# * - The string 'gametype'.
|
|
|
|
# gametype - The world's game type, hardcoded to 'SMP'.
|
|
|
|
# * - The string 'game_id'.
|
|
|
|
# gameid - The world's game ID, hardcoded to 'MINECRAFT'.
|
|
|
|
# * - The string 'version'.
|
|
|
|
# version - The world's Minecraft version.
|
|
|
|
# * - The string 'plugins'.
|
|
|
|
# plugins - The world's plugins.
|
|
|
|
# * - The string 'map'.
|
|
|
|
# map - The world's name.
|
|
|
|
# * - The string 'numplayers'.
|
|
|
|
# numplayers - The world's current number of players.
|
|
|
|
# * - The string 'maxplayers'.
|
|
|
|
# maxplayers - The world's maximum number of players.
|
|
|
|
# * - The string 'hostport'.
|
|
|
|
# hostport - The world's host port.
|
|
|
|
# * - The string 'hostip'.
|
|
|
|
# hostip - The world's host IP address.
|
|
|
|
# * - The value 0.
|
|
|
|
# * - The value 1.
|
|
|
|
# * - The string 'player_'.
|
|
|
|
# * - The value 0.
|
|
|
|
# players - The players currently logged onto the world.
|
2013-08-08 09:06:16 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
queryDetailedStatus() {
|
2014-11-02 22:36:18 -07:00
|
|
|
local CHALLENGE ID PACKET RESPONSE TOKEN
|
2015-07-09 14:39:03 -07:00
|
|
|
if [ "$(getServerPropertiesValue $1 'enable-query')" = "true" ]; then
|
2013-12-01 12:29:39 -07:00
|
|
|
# Send a challenge packet to the Minecraft query server.
|
2014-11-02 22:36:18 -07:00
|
|
|
CHALLENGE=$(querySendChallengePacket $1)
|
|
|
|
ID=$(echo "$CHALLENGE" | cut -f 2)
|
|
|
|
TOKEN=$(echo "$CHALLENGE" | cut -f 3)
|
|
|
|
if [ -n "$ID" ] && [ -n "$TOKEN" ]; then
|
|
|
|
# Use the challenge token for the packet, with the ID on the end.
|
|
|
|
PACKET=$(printf "%.8x%.8x" $TOKEN $ID)
|
|
|
|
# Send the information request packet to the Minecraft query server.
|
|
|
|
RESPONSE=$(querySendPacket "$1" "00" "$PACKET" \
|
|
|
|
"Cl>Z*CCZ*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*Z*CCZ*C(Z*)*")
|
2013-12-03 12:23:42 -07:00
|
|
|
fi
|
2013-12-01 12:29:39 -07:00
|
|
|
fi
|
2013-08-08 09:06:16 -07:00
|
|
|
# Return the response.
|
|
|
|
printf "$RESPONSE\n"
|
|
|
|
}
|
|
|
|
|
2013-08-05 16:32:23 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Display the status of a Minecraft world server.
|
|
|
|
#
|
|
|
|
# @param 1 The world server of interest.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
worldStatus() {
|
2014-04-03 15:20:34 -07:00
|
|
|
local STATUS NUM MAX PLAYERS COUNTER VERSION
|
2013-08-05 16:32:23 -07:00
|
|
|
if [ $(serverRunning $1) -eq 1 ]; then
|
2014-01-04 21:45:48 -07:00
|
|
|
STATUS=$(queryDetailedStatus $1)
|
2013-12-01 13:13:52 -07:00
|
|
|
if [ -n "$STATUS" ]; then
|
2014-01-04 21:45:48 -07:00
|
|
|
NUM=$(echo "$STATUS" | cut -f 19)
|
|
|
|
MAX=$(echo "$STATUS" | cut -f 21)
|
2014-04-03 15:20:34 -07:00
|
|
|
VERSION=$(echo "$STATUS" | cut -f 13)
|
|
|
|
printf "running version %s (%d of %d users online).\n" $VERSION $NUM $MAX
|
2014-01-04 21:45:48 -07:00
|
|
|
if [ $NUM -gt 0 ]; then
|
2014-01-06 13:52:35 -07:00
|
|
|
PLAYERS=$(echo "$STATUS" | cut -f 30)
|
2014-01-04 21:45:48 -07:00
|
|
|
COUNTER=1
|
|
|
|
while [ $COUNTER -lt $NUM ]; do
|
|
|
|
PLAYERS=$(printf "%s, %s" "$PLAYERS" $(echo "$STATUS" | cut -f $((30+$COUNTER))))
|
|
|
|
COUNTER=$(($COUNTER+1))
|
|
|
|
done
|
|
|
|
printf " Players: %s.\n" "$PLAYERS"
|
|
|
|
fi
|
2015-07-09 14:39:03 -07:00
|
|
|
elif [ "$(getServerPropertiesValue $1 'enable-query')" = "true" ]; then
|
2013-12-01 13:13:52 -07:00
|
|
|
printf "running (query server offline).\n"
|
2015-02-13 22:41:15 -07:00
|
|
|
else
|
|
|
|
printf "running.\n"
|
2013-12-01 12:29:39 -07:00
|
|
|
fi
|
2013-12-07 12:22:06 -07:00
|
|
|
printf " Process ID: %d.\n" $(getJavaPID "$1")
|
2015-07-09 14:40:45 -07:00
|
|
|
elif [ "$(getMSCSValue $1 'mscs-enabled')" = "false" ]; then
|
|
|
|
printf "disabled.\n"
|
2013-08-05 16:32:23 -07:00
|
|
|
else
|
|
|
|
printf "not running.\n"
|
|
|
|
fi
|
|
|
|
}
|
2013-06-24 11:26:09 -07:00
|
|
|
|
2015-07-10 10:18:23 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Migrate world from old-style MSCS configuration if necessary.
|
|
|
|
#
|
|
|
|
# @param 1 The world to be migrated.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
migrateOldMSCSConfig() {
|
|
|
|
local SERVER_PROPERTY_FILE MSCS_PROPERTY_FILE TMP_PROPERTY_FILE
|
|
|
|
if [ -n "$1" ] && [ $(listContains "$1" "$(getAvailableWorlds)") -eq 1 ]; then
|
|
|
|
SERVER_PROPERTY_FILE="$WORLDS_LOCATION/$1/server.properties"
|
|
|
|
MSCS_PROPERTY_FILE="$WORLDS_LOCATION/$1/mscs.properties"
|
|
|
|
TMP_PROPERTY_FILE="$WORLDS_LOCATION/$1/tmp.properties"
|
|
|
|
if [ ! -f "$MSCS_PROPERTY_FILE" ]; then
|
|
|
|
execute "grep ^mscs $SERVER_PROPERTY_FILE > $MSCS_PROPERTY_FILE" $USER_NAME
|
|
|
|
execute "grep -v ^mscs $SERVER_PROPERTY_FILE > $TMP_PROPERTY_FILE" $USER_NAME
|
|
|
|
execute "mv $TMP_PROPERTY_FILE $SERVER_PROPERTY_FILE" $USER_NAME
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "World $1 not found."
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2015-07-13 03:53:47 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Migrate all worlds from old-style MSCS configuration if necessary.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
migrateWorldsConfig() {
|
|
|
|
if [ ! -f "$WORLDS_LOCATION/mscs-worlds-config-migrated" ]; then
|
|
|
|
echo "Migrating worlds to new mscs.properties config file if needed"
|
|
|
|
for WORLD in $(getAvailableWorlds); do
|
|
|
|
migrateOldMSCSConfig "$WORLD"
|
|
|
|
done
|
|
|
|
execute "touch '$WORLDS_LOCATION/mscs-worlds-config-migrated'" $USER_NAME
|
|
|
|
echo "Remove file '$WORLDS_LOCATION/mscs-worlds-config-migrated' to repeat"
|
|
|
|
echo "the migration process in the next execution."
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2015-07-10 10:18:23 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Migrate old disabled worlds if any.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
migrateOldDisabledWorlds() {
|
|
|
|
local WORLD WORLDS
|
|
|
|
if [ -d "$OLD_DISABLED_WORLDS_LOCATION" ]; then
|
|
|
|
# Be sure worlds directory exists
|
|
|
|
execute "mkdir -p '$WORLDS_LOCATION'" $USER_NAME
|
|
|
|
|
|
|
|
for WORLD in $(ls "$OLD_DISABLED_WORLDS_LOCATION"); do
|
|
|
|
if [ -d "$OLD_DISABLED_WORLDS_LOCATION/$WORLD" ]; then
|
|
|
|
echo "Migrating old version's disabled world: $WORLD"
|
|
|
|
execute "mv '$OLD_DISABLED_WORLDS_LOCATION/$WORLD' \
|
|
|
|
'$WORLDS_LOCATION'" $USER_NAME
|
|
|
|
migrateOldMSCSConfig "$WORLD"
|
|
|
|
setMSCSValue "$WORLD" mscs-enabled false
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
# Try to remove old disabled worlds dir if empty
|
|
|
|
if ! execute "rmdir '$OLD_DISABLED_WORLDS_LOCATION' > /dev/null 2>&1" \
|
|
|
|
$USER_NAME; then
|
|
|
|
echo "Warning: old version's disabled world dir not emty after migration"
|
|
|
|
echo " Dir: $OLD_DISABLED_WORLDS_LOCATION"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2013-06-24 13:20:10 -07:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Begin.
|
|
|
|
# ---------------------------------------------------------------------------
|
2013-06-24 11:26:09 -07:00
|
|
|
|
2015-07-10 10:18:23 -07:00
|
|
|
# Only root or $USER_NAME should execute this script
|
|
|
|
checkPermission
|
|
|
|
|
2015-07-13 03:53:47 -07:00
|
|
|
# Migrate config of not already migrated worlds
|
|
|
|
migrateWorldsConfig
|
|
|
|
|
2015-07-10 10:18:23 -07:00
|
|
|
# Migrate old version's disabled worlds if any
|
|
|
|
migrateOldDisabledWorlds
|
|
|
|
|
2014-11-29 19:10:02 -07:00
|
|
|
# Make sure that Java, Perl, Python, Wget, Rdiff-backup, and Socat are installed.
|
2013-06-24 11:26:09 -07:00
|
|
|
if [ ! -e "$JAVA" ]; then
|
2013-08-04 09:09:40 -07:00
|
|
|
printf "ERROR: Java not found!\n"
|
|
|
|
printf "Try installing this with:\n"
|
2013-08-09 21:04:24 -07:00
|
|
|
printf "sudo apt-get install default-jre"
|
2013-08-04 09:09:40 -07:00
|
|
|
exit 1
|
2013-06-24 11:26:09 -07:00
|
|
|
fi
|
|
|
|
if [ ! -e "$PERL" ]; then
|
2013-08-04 09:09:40 -07:00
|
|
|
printf "ERROR: Perl not found!\n"
|
|
|
|
printf "Try installing this with:\n"
|
|
|
|
printf "sudo apt-get install perl\n"
|
|
|
|
exit 1
|
2013-06-24 11:26:09 -07:00
|
|
|
fi
|
|
|
|
if [ ! -e "$PYTHON" ]; then
|
2013-08-04 09:09:40 -07:00
|
|
|
printf "ERROR: Python not found!\n"
|
|
|
|
printf "Try installing this with:\n"
|
|
|
|
printf "sudo apt-get install python\n"
|
|
|
|
exit 1
|
2013-06-24 11:26:09 -07:00
|
|
|
fi
|
|
|
|
if [ ! -e "$WGET" ]; then
|
2013-08-04 09:09:40 -07:00
|
|
|
printf "ERROR: GNU Wget not found!\n"
|
|
|
|
printf "Try installing this with:\n"
|
|
|
|
printf "sudo apt-get install wget\n"
|
|
|
|
exit 1
|
2013-06-24 11:26:09 -07:00
|
|
|
fi
|
|
|
|
if [ ! -e "$RDIFF_BACKUP" ]; then
|
2013-08-04 09:09:40 -07:00
|
|
|
printf "ERROR: rdiff-backup not found!\n"
|
|
|
|
printf "Try installing this with:\n"
|
|
|
|
printf "sudo apt-get install rdiff-backup\n"
|
|
|
|
exit 1
|
2013-06-24 11:26:09 -07:00
|
|
|
fi
|
2013-12-01 10:57:09 -07:00
|
|
|
if [ ! -e "$SOCAT" ]; then
|
|
|
|
printf "ERROR: socat not found!\n"
|
|
|
|
printf "Try installing this with:\n"
|
|
|
|
printf "sudo apt-get install socat\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-06-24 11:26:09 -07:00
|
|
|
|
|
|
|
|
|
|
|
# Respond to the command line arguments.
|
|
|
|
case "$1" in
|
2013-08-04 09:09:40 -07:00
|
|
|
start)
|
2013-12-02 22:07:57 -07:00
|
|
|
checkPermission
|
2013-08-04 09:09:40 -07:00
|
|
|
# Figure out which worlds to start.
|
2013-12-27 12:59:13 -07:00
|
|
|
WORLDS=$(getEnabledWorlds)
|
2013-10-30 10:50:06 -07:00
|
|
|
# If there are no worlds in the list, then use the default world.
|
|
|
|
if [ ! -n "$WORLDS" ]; then
|
|
|
|
WORLDS="$DEFAULT_WORLD"
|
|
|
|
createWorld "$DEFAULT_WORLD" "$DEFAULT_PORT" "$DEFAULT_IP"
|
|
|
|
fi
|
|
|
|
# If an optional argument was supplied, verify it is a valid world.
|
2013-12-27 12:59:13 -07:00
|
|
|
if [ -n "$2" ] && [ $(listContains "$2" "$WORLDS") -eq 1 ]; then
|
2013-10-19 19:38:54 -07:00
|
|
|
WORLDS="$2"
|
|
|
|
elif [ -n "$2" ]; then
|
|
|
|
printf "World '$2' not recognized.\n"
|
|
|
|
printf " Usage: $0 $1 <world>\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-08-04 09:09:40 -07:00
|
|
|
# Start each world requested, if not already running.
|
|
|
|
printf "Starting Minecraft Server:"
|
|
|
|
for WORLD in $WORLDS; do
|
|
|
|
if [ $(serverRunning $WORLD) -eq 0 ]; then
|
|
|
|
printf " $WORLD"
|
|
|
|
start $WORLD
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
printf ".\n"
|
|
|
|
;;
|
|
|
|
stop|force-stop)
|
2013-12-02 22:07:57 -07:00
|
|
|
checkPermission
|
2013-08-04 09:09:40 -07:00
|
|
|
# Figure out which worlds to stop.
|
2013-12-27 12:59:13 -07:00
|
|
|
WORLDS=$(getEnabledWorlds)
|
|
|
|
if [ -n "$2" ] && [ $(listContains "$2" "$WORLDS") -eq 1 ]; then
|
2013-10-19 19:38:54 -07:00
|
|
|
WORLDS="$2"
|
|
|
|
elif [ -n "$2" ]; then
|
|
|
|
printf "World '$2' not recognized.\n"
|
|
|
|
printf " Usage: $0 $1 <world>\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-08-04 09:09:40 -07:00
|
|
|
# Stop each world requested, if running.
|
|
|
|
printf "Stopping Minecraft Server:"
|
|
|
|
for WORLD in $WORLDS; do
|
|
|
|
# Try to stop the world cleanly.
|
|
|
|
if [ $(serverRunning $WORLD) -eq 1 ]; then
|
|
|
|
printf " $WORLD"
|
2013-10-19 11:50:50 -07:00
|
|
|
if [ $(printf "%d" $(queryStatus $WORLD | cut -f6)) -gt 0 ]; then
|
2013-08-05 21:28:55 -07:00
|
|
|
sendCommand $WORLD "say The server admin has initiated a server shut down."
|
|
|
|
sendCommand $WORLD "say The server will shut down in 1 minute..."
|
|
|
|
sleep 60
|
|
|
|
sendCommand $WORLD "say The server is now shutting down."
|
|
|
|
fi
|
2013-08-04 09:09:40 -07:00
|
|
|
sendCommand $WORLD "save-all"
|
|
|
|
sendCommand $WORLD "save-off"
|
|
|
|
if [ "$1" = "force-stop" ]; then
|
|
|
|
forceStop $WORLD
|
|
|
|
else
|
|
|
|
stop $WORLD
|
|
|
|
fi
|
2013-11-01 16:08:07 -07:00
|
|
|
elif [ "$1" = "force-stop" ]; then
|
|
|
|
printf " $WORLD"
|
|
|
|
forceStop $WORLD
|
2013-08-04 09:09:40 -07:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
printf ".\n"
|
|
|
|
;;
|
|
|
|
restart|reload|force-restart|force-reload)
|
2013-12-02 22:07:57 -07:00
|
|
|
checkPermission
|
2013-08-04 09:09:40 -07:00
|
|
|
# Figure out which worlds to restart.
|
2013-12-27 12:59:13 -07:00
|
|
|
WORLDS=$(getEnabledWorlds)
|
|
|
|
if [ -n "$2" ] && [ $(listContains "$2" "$WORLDS") -eq 1 ]; then
|
2013-10-19 19:38:54 -07:00
|
|
|
WORLDS="$2"
|
|
|
|
elif [ -n "$2" ]; then
|
|
|
|
printf "World '$2' not recognized.\n"
|
|
|
|
printf " Usage: $0 $1 <world>\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-08-04 09:09:40 -07:00
|
|
|
# Restart each world requested, start those not already
|
|
|
|
# running.
|
|
|
|
printf "Restarting Minecraft Server:"
|
|
|
|
for WORLD in $WORLDS; do
|
|
|
|
printf " $WORLD"
|
|
|
|
if [ $(serverRunning $WORLD) -eq 1 ]; then
|
2013-10-19 11:50:50 -07:00
|
|
|
if [ $(printf "%d" $(queryStatus $WORLD | cut -f6)) -gt 0 ]; then
|
2013-08-06 07:09:18 -07:00
|
|
|
sendCommand $WORLD "say The server admin has initiated a server restart."
|
2013-08-05 21:28:55 -07:00
|
|
|
sendCommand $WORLD "say The server will restart in 1 minute..."
|
|
|
|
sleep 60
|
|
|
|
sendCommand $WORLD "say The server is now restarting."
|
|
|
|
fi
|
2013-08-04 09:09:40 -07:00
|
|
|
sendCommand $WORLD "save-all"
|
|
|
|
sendCommand $WORLD "save-off"
|
|
|
|
if [ "$(echo \"$1\" | cut -d '-' -f1)" = "force" ]; then
|
|
|
|
forceStop $WORLD
|
|
|
|
else
|
|
|
|
stop $WORLD
|
|
|
|
fi
|
|
|
|
sleep 5
|
|
|
|
fi
|
|
|
|
start $WORLD
|
|
|
|
done
|
|
|
|
printf ".\n"
|
|
|
|
;;
|
2013-10-19 09:57:29 -07:00
|
|
|
create|new)
|
2013-12-02 22:07:57 -07:00
|
|
|
checkPermission
|
2013-10-19 09:57:29 -07:00
|
|
|
if [ ! -n "$2" ]; then
|
|
|
|
printf "A name for the new world must be supplied.\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [ ! -n "$3" ]; then
|
|
|
|
printf "A port for the new world must be supplied.\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-10-30 11:44:27 -07:00
|
|
|
printf "Creating Minecraft world: $2"
|
2013-10-19 09:57:29 -07:00
|
|
|
createWorld "$2" "$3" "$4"
|
2013-10-30 11:44:27 -07:00
|
|
|
printf ".\n"
|
2013-10-19 09:57:29 -07:00
|
|
|
;;
|
2013-10-19 10:15:16 -07:00
|
|
|
delete|remove)
|
2013-12-02 22:07:57 -07:00
|
|
|
checkPermission
|
2013-12-27 12:59:13 -07:00
|
|
|
# Get list of enabled worlds.
|
2015-07-09 16:44:25 -07:00
|
|
|
WORLDS=$(getAvailableWorlds)
|
2013-12-27 12:59:13 -07:00
|
|
|
if [ ! -n "$2" ] || [ $(listContains "$2" "$WORLDS") -eq 0 ]; then
|
2013-10-19 10:15:16 -07:00
|
|
|
printf "World not found, unable to delete world '$2'.\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-10-30 11:44:27 -07:00
|
|
|
printf "Deleting Minecraft world: $2"
|
2013-10-19 10:39:44 -07:00
|
|
|
if [ $(serverRunning "$2") -eq 1 ]; then
|
|
|
|
# If the world server has users logged in, announce that the world is
|
|
|
|
# being deleted.
|
2013-10-19 11:58:47 -07:00
|
|
|
if [ $(printf "%d" $(queryStatus $2 | cut -f6)) -gt 0 ]; then
|
2013-10-19 10:39:44 -07:00
|
|
|
sendCommand "$2" "say The server admin is deleting this world."
|
|
|
|
sendCommand "$2" "say The server will be deleted in 1 minute..."
|
|
|
|
sleep 60
|
|
|
|
sendCommand "$2" "say The server is now shutting down."
|
|
|
|
fi
|
|
|
|
# Stop the world server.
|
|
|
|
stop "$2"
|
|
|
|
sleep 5
|
|
|
|
fi
|
2013-10-19 10:15:16 -07:00
|
|
|
# Delete the world.
|
|
|
|
deleteWorld "$2"
|
2013-10-30 11:44:27 -07:00
|
|
|
printf ".\n"
|
2013-10-19 10:15:16 -07:00
|
|
|
;;
|
2013-10-19 10:47:23 -07:00
|
|
|
disable)
|
2013-12-02 22:07:57 -07:00
|
|
|
checkPermission
|
2013-12-27 12:59:13 -07:00
|
|
|
# Get list of enabled worlds.
|
|
|
|
WORLDS=$(getEnabledWorlds)
|
|
|
|
if [ ! -n "$2" ] || [ $(listContains "$2" "$WORLDS") -eq 0 ]; then
|
2013-10-19 10:47:23 -07:00
|
|
|
printf "World not found, unable to disable world '$2'.\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-10-30 11:44:27 -07:00
|
|
|
printf "Disabling Minecraft world: $2"
|
2013-10-19 10:47:23 -07:00
|
|
|
if [ $(serverRunning "$2") -eq 1 ]; then
|
|
|
|
# If the world server has users logged in, announce that the world is
|
|
|
|
# being disabled.
|
2013-10-19 11:58:47 -07:00
|
|
|
if [ $(printf "%d" $(queryStatus $2 | cut -f6)) -gt 0 ]; then
|
2013-10-19 10:47:23 -07:00
|
|
|
sendCommand "$2" "say The server admin is disabling this world."
|
|
|
|
sendCommand "$2" "say The server will be disabled in 1 minute..."
|
|
|
|
sleep 60
|
|
|
|
sendCommand "$2" "say The server is now shutting down."
|
|
|
|
fi
|
|
|
|
# Stop the world server.
|
|
|
|
stop "$2"
|
|
|
|
sleep 5
|
|
|
|
fi
|
|
|
|
# Disable the world.
|
|
|
|
disableWorld "$2"
|
2013-10-30 11:44:27 -07:00
|
|
|
printf ".\n"
|
2013-10-19 10:47:23 -07:00
|
|
|
;;
|
2013-10-19 10:57:04 -07:00
|
|
|
enable)
|
2013-12-02 22:07:57 -07:00
|
|
|
checkPermission
|
2015-07-09 14:35:29 -07:00
|
|
|
# Get list of disabled worlds.
|
|
|
|
WORLDS=$(getDisabledWorlds)
|
|
|
|
if [ ! -n "$2" ] || [ $(listContains "$2" "$WORLDS") -eq 0 ]; then
|
2013-10-19 10:57:04 -07:00
|
|
|
printf "World not found, unable to enable world '$2'.\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-10-30 11:44:27 -07:00
|
|
|
printf "Enabling Minecraft world: $2"
|
2013-10-19 10:57:04 -07:00
|
|
|
# Enable the world.
|
|
|
|
enableWorld "$2"
|
2013-10-19 11:37:00 -07:00
|
|
|
# Start the world.
|
|
|
|
start "$2"
|
2013-10-30 11:44:27 -07:00
|
|
|
printf ".\n"
|
2013-10-19 10:57:04 -07:00
|
|
|
;;
|
2013-12-02 19:27:52 -07:00
|
|
|
ls|list)
|
2013-12-03 14:55:54 -07:00
|
|
|
# Grab the desired list of worlds.
|
|
|
|
WORLDS=""
|
|
|
|
case "$2" in
|
|
|
|
enabled)
|
2013-12-27 12:59:13 -07:00
|
|
|
WORLDS=$(getEnabledWorlds)
|
2013-12-03 14:55:54 -07:00
|
|
|
;;
|
|
|
|
disabled)
|
|
|
|
WORLDS=$(getDisabledWorlds)
|
|
|
|
;;
|
|
|
|
running)
|
2013-12-27 12:59:13 -07:00
|
|
|
for WORLD in $(getEnabledWorlds); do
|
2013-12-03 14:55:54 -07:00
|
|
|
if [ $(serverRunning $WORLD) -eq 1 ]; then
|
|
|
|
WORLDS="$WORLDS $WORLD"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
stopped)
|
2013-12-27 12:59:13 -07:00
|
|
|
for WORLD in $(getEnabledWorlds); do
|
2013-12-03 14:55:54 -07:00
|
|
|
if [ $(serverRunning $WORLD) -eq 0 ]; then
|
|
|
|
WORLDS="$WORLDS $WORLD"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
;;
|
2015-07-07 02:36:58 -07:00
|
|
|
"")
|
2015-07-08 04:21:06 -07:00
|
|
|
WORLDS=$(getAvailableWorlds)
|
2013-12-03 14:55:54 -07:00
|
|
|
;;
|
2015-07-07 02:36:58 -07:00
|
|
|
*)
|
|
|
|
echo "Unknown list option: $2."
|
|
|
|
echo " Try '$0 help' for help."
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
ls)
|
|
|
|
# Simple list
|
|
|
|
for WORLD in $WORLDS; do
|
2015-07-09 16:44:25 -07:00
|
|
|
WPORT=$(getServerPropertiesValue "$WORLD" server-port "")
|
2015-07-08 04:21:06 -07:00
|
|
|
printf " $WORLD: $WPORT"
|
2015-07-09 16:44:25 -07:00
|
|
|
if [ $(isWorldEnabled "$WORLD") -eq 1 ]; then
|
2015-07-08 04:21:06 -07:00
|
|
|
printf '\n'
|
2015-07-09 16:44:25 -07:00
|
|
|
else
|
|
|
|
printf ' (disabled)\n'
|
2015-07-08 04:21:06 -07:00
|
|
|
fi
|
2015-07-07 02:36:58 -07:00
|
|
|
done
|
|
|
|
;;
|
|
|
|
list)
|
|
|
|
# Detailed list
|
|
|
|
for WORLD in $WORLDS; do
|
2015-07-08 04:21:06 -07:00
|
|
|
printf " $WORLD:"
|
2015-07-09 16:44:25 -07:00
|
|
|
if [ $(isWorldEnabled "$WORLD") -eq 1 ]; then
|
2015-07-08 04:21:06 -07:00
|
|
|
printf '\n'
|
2015-07-09 16:44:25 -07:00
|
|
|
else
|
|
|
|
printf ' (disabled)\n'
|
2015-07-08 04:21:06 -07:00
|
|
|
fi
|
2015-07-07 02:36:58 -07:00
|
|
|
for PROP in $DETAILED_LISTING_PROPERTIES; do
|
2015-07-08 04:21:06 -07:00
|
|
|
printf " $PROP="
|
2015-07-09 16:44:25 -07:00
|
|
|
getServerPropertiesValue "$WORLD" "$PROP" ""
|
2015-07-07 02:36:58 -07:00
|
|
|
done
|
|
|
|
done
|
|
|
|
;;
|
2013-12-03 14:55:54 -07:00
|
|
|
esac
|
2013-12-02 19:27:52 -07:00
|
|
|
;;
|
2013-08-04 09:09:40 -07:00
|
|
|
status|show)
|
2013-12-02 22:07:57 -07:00
|
|
|
checkPermission
|
2013-08-04 09:09:40 -07:00
|
|
|
# Figure out which worlds to show the status for.
|
2015-07-09 16:44:25 -07:00
|
|
|
if [ -z "$2" ]; then
|
|
|
|
WORLDS="$(getAvailableWorlds)"
|
|
|
|
elif [ $(isWorldAvailable "$2") -eq 1 ]; then
|
2013-10-19 19:38:54 -07:00
|
|
|
WORLDS="$2"
|
2015-07-09 16:44:25 -07:00
|
|
|
else
|
2013-10-19 19:38:54 -07:00
|
|
|
printf "World '$2' not recognized.\n"
|
|
|
|
printf " Usage: $0 $1 <world>\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-08-04 09:09:40 -07:00
|
|
|
# Show the status of each world requested.
|
|
|
|
printf "Minecraft Server Status:\n"
|
|
|
|
for WORLD in $WORLDS; do
|
|
|
|
printf " $WORLD: "
|
2013-08-05 16:32:23 -07:00
|
|
|
worldStatus $WORLD
|
2013-08-04 09:09:40 -07:00
|
|
|
done
|
|
|
|
;;
|
|
|
|
sync|synchronize)
|
2013-12-02 22:07:57 -07:00
|
|
|
checkPermission
|
2013-08-04 09:09:40 -07:00
|
|
|
# Figure out which worlds to synchronize.
|
2013-12-27 12:59:13 -07:00
|
|
|
WORLDS=$(getEnabledWorlds)
|
|
|
|
if [ -n "$2" ] && [ $(listContains "$2" "$WORLDS") -eq 1 ]; then
|
2013-10-19 19:38:54 -07:00
|
|
|
WORLDS="$2"
|
|
|
|
elif [ -n "$2" ]; then
|
|
|
|
printf "World '$2' not recognized.\n"
|
|
|
|
printf " Usage: $0 $1 <world>\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-08-04 09:09:40 -07:00
|
|
|
# Synchronize the images for each world.
|
|
|
|
printf "Synchronizing Minecraft Server:"
|
|
|
|
for WORLD in $WORLDS; do
|
|
|
|
if [ $(serverRunning $WORLD) -eq 1 ]; then
|
|
|
|
printf " $WORLD"
|
|
|
|
sendCommand $WORLD "save-all"
|
|
|
|
if [ $ENABLE_MIRROR -eq 1 ]; then
|
|
|
|
sendCommand $WORLD "save-off"
|
|
|
|
sleep 20
|
|
|
|
syncMirrorImage $WORLD
|
|
|
|
sendCommand $WORLD "save-on"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
printf ".\n"
|
|
|
|
;;
|
2014-12-20 23:21:58 -07:00
|
|
|
broadcast)
|
|
|
|
checkPermission
|
|
|
|
# Get list of enabled worlds.
|
|
|
|
WORLDS=$(getEnabledWorlds)
|
|
|
|
if [ -n "$2" ]; then
|
|
|
|
# Remove broadcast from the command line arguments.
|
|
|
|
shift 1
|
|
|
|
# Broadcast the message to all of the enabled worlds.
|
|
|
|
printf "Broadcasting command to world:"
|
|
|
|
for WORLD in $WORLDS; do
|
|
|
|
if [ $(serverRunning $WORLD) -eq 1 ]; then
|
|
|
|
printf " $WORLD"
|
|
|
|
sendCommand $WORLD "$*"
|
|
|
|
fi
|
2015-07-02 22:11:19 -07:00
|
|
|
done
|
2014-12-20 23:21:58 -07:00
|
|
|
printf ".\n"
|
|
|
|
else
|
|
|
|
printf "Usage: $0 $1 <command>\n"
|
|
|
|
printf " ie: $0 $1 say Hello World!\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
;;
|
2013-08-04 09:09:40 -07:00
|
|
|
send)
|
2013-12-02 22:07:57 -07:00
|
|
|
checkPermission
|
2013-12-27 12:59:13 -07:00
|
|
|
# Get list of enabled worlds.
|
|
|
|
WORLDS=$(getEnabledWorlds)
|
2013-08-04 09:09:40 -07:00
|
|
|
# Check for the world command line argument.
|
2013-12-27 12:59:13 -07:00
|
|
|
if [ -n "$2" ] && [ $(listContains $2 "$WORLDS") -eq 1 ] && [ -n "$3" ]; then
|
2013-08-04 09:09:40 -07:00
|
|
|
WORLD=$2
|
|
|
|
shift 2
|
|
|
|
printf "Sending command to world: $WORLD - '$*'.\n"
|
|
|
|
sendCommand $WORLD "$*"
|
|
|
|
else
|
|
|
|
printf "Usage: $0 $1 <world> <command>\n"
|
|
|
|
printf " ie: $0 $1 world say Hello World!\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
;;
|
2014-02-06 15:47:52 -07:00
|
|
|
console)
|
|
|
|
checkPermission
|
|
|
|
# Get list of enabled worlds.
|
|
|
|
WORLDS=$(getEnabledWorlds)
|
|
|
|
# Check for the world command line argument.
|
|
|
|
if [ -n "$2" ] && [ $(listContains $2 "$WORLDS") -eq 1 ]; then
|
|
|
|
printf "Connecting to server console: $2.\n"
|
|
|
|
printf " Hit <Ctrl-D> to detach.\n"
|
|
|
|
sleep 3
|
|
|
|
serverConsole $2
|
|
|
|
else
|
|
|
|
if [ -n "$2" ]; then
|
|
|
|
printf "Minecraft world $2 not found!\n"
|
|
|
|
else
|
|
|
|
printf "Minecraft world not provided!\n"
|
|
|
|
fi
|
|
|
|
printf " Usage: $0 $1 <world>\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
;;
|
2013-08-04 09:09:40 -07:00
|
|
|
watch)
|
2013-12-02 22:07:57 -07:00
|
|
|
checkPermission
|
2013-12-27 12:59:13 -07:00
|
|
|
# Get list of enabled worlds.
|
|
|
|
WORLDS=$(getEnabledWorlds)
|
2013-08-04 09:09:40 -07:00
|
|
|
# Check for the world command line argument.
|
2013-12-27 12:59:13 -07:00
|
|
|
if [ -n "$2" ] && [ $(listContains $2 "$WORLDS") -eq 1 ]; then
|
2013-08-04 09:09:40 -07:00
|
|
|
printf "Monitoring Minecraft Server: $2.\n"
|
|
|
|
watchLog $2
|
|
|
|
else
|
|
|
|
if [ -n "$2" ]; then
|
|
|
|
printf "Minecraft world $2 not found!\n"
|
|
|
|
else
|
|
|
|
printf "Minecraft world not provided!\n"
|
|
|
|
fi
|
|
|
|
printf " Usage: $0 $1 <world>\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
logrotate)
|
2013-12-02 22:07:57 -07:00
|
|
|
checkPermission
|
2013-08-04 09:09:40 -07:00
|
|
|
# Figure out which worlds to rotate the log.
|
2013-12-27 12:59:13 -07:00
|
|
|
WORLDS=$(getEnabledWorlds)
|
|
|
|
if [ -n "$2" ] && [ $(listContains "$2" "$WORLDS") -eq 1 ]; then
|
2013-10-19 19:38:54 -07:00
|
|
|
WORLDS="$2"
|
|
|
|
elif [ -n "$2" ]; then
|
|
|
|
printf "World '$2' not recognized.\n"
|
|
|
|
printf " Usage: $0 $1 <world>\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-08-04 09:09:40 -07:00
|
|
|
# Backup each world requested.
|
|
|
|
printf "Rotating Minecraft Server Log:"
|
|
|
|
for WORLD in $WORLDS; do
|
|
|
|
printf " $WORLD"
|
|
|
|
rotateLog $WORLD
|
|
|
|
done
|
|
|
|
printf ".\n"
|
|
|
|
;;
|
|
|
|
backup)
|
2013-12-02 22:07:57 -07:00
|
|
|
checkPermission
|
2013-08-04 09:09:40 -07:00
|
|
|
# Figure out which worlds to backup.
|
2013-12-27 12:59:13 -07:00
|
|
|
WORLDS=$(getEnabledWorlds)
|
|
|
|
if [ -n "$2" ] && [ $(listContains "$2" "$WORLDS") -eq 1 ]; then
|
2013-10-19 19:38:54 -07:00
|
|
|
WORLDS="$2"
|
|
|
|
elif [ -n "$2" ]; then
|
|
|
|
printf "World '$2' not recognized.\n"
|
|
|
|
printf " Usage: $0 $1 <world>\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-08-04 09:09:40 -07:00
|
|
|
# Backup each world requested.
|
|
|
|
printf "Backing up Minecraft Server:"
|
|
|
|
for WORLD in $WORLDS; do
|
|
|
|
printf " $WORLD"
|
|
|
|
if [ $(serverRunning $WORLD) -eq 1 ]; then
|
|
|
|
sendCommand $WORLD "say Backing up the world."
|
|
|
|
sendCommand $WORLD "save-all"
|
|
|
|
sendCommand $WORLD "save-off"
|
|
|
|
sleep 20
|
|
|
|
worldBackup $WORLD
|
|
|
|
sendCommand $WORLD "save-on"
|
|
|
|
sendCommand $WORLD "say Backup complete."
|
|
|
|
else
|
|
|
|
worldBackup $WORLD
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
printf ".\n"
|
|
|
|
;;
|
2014-09-01 12:27:46 -07:00
|
|
|
list-backups)
|
|
|
|
if [ -n "$2" ] && [ $(listContains "$2" "$(getEnabledWorlds)") -eq 1 ]; then
|
|
|
|
worldBackupList "$2"
|
|
|
|
elif [ -n "$2" ]; then
|
|
|
|
printf "World '$2' not recognized.\n"
|
|
|
|
printf " Usage: $0 $1 <world>\n"
|
|
|
|
exit 1
|
2015-07-02 22:11:19 -07:00
|
|
|
else
|
2014-09-01 12:27:46 -07:00
|
|
|
printf "World not supplied.\n"
|
|
|
|
printf " Usage: $0 $1 <world>\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
;;
|
2014-09-01 12:32:27 -07:00
|
|
|
restore-backup)
|
|
|
|
if [ -n "$2" ] && [ $(listContains "$2" "$(getEnabledWorlds)") -eq 1 ]; then
|
|
|
|
worldBackupRestore "$2" "$3"
|
|
|
|
elif [ -n "$2" ]; then
|
|
|
|
printf "World '$2' not recognized.\n"
|
|
|
|
printf " Usage: $0 $1 <world>\n"
|
|
|
|
exit 1
|
2015-07-02 22:11:19 -07:00
|
|
|
else
|
2014-09-01 12:32:27 -07:00
|
|
|
printf "World not supplied.\n"
|
|
|
|
printf " Usage: $0 $1 <world>\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
;;
|
2013-08-04 09:09:40 -07:00
|
|
|
update)
|
2013-12-02 22:07:57 -07:00
|
|
|
checkPermission
|
2013-11-01 12:20:59 -07:00
|
|
|
# Figure out which worlds to update.
|
2013-12-27 12:59:13 -07:00
|
|
|
WORLDS=$(getEnabledWorlds)
|
|
|
|
if [ -n "$2" ] && [ $(listContains "$2" "$WORLDS") -eq 1 ]; then
|
2013-11-01 12:20:59 -07:00
|
|
|
WORLDS="$2"
|
|
|
|
elif [ -n "$2" ]; then
|
|
|
|
printf "World '$2' not recognized.\n"
|
|
|
|
printf " Usage: $0 $1 <world>\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-08-04 09:09:40 -07:00
|
|
|
# Stop all of the world servers and backup the worlds.
|
2015-06-05 18:13:38 -07:00
|
|
|
RUNNING=
|
2013-08-04 09:09:40 -07:00
|
|
|
printf "Stopping Minecraft Server:"
|
2013-11-01 12:20:59 -07:00
|
|
|
for WORLD in $WORLDS; do
|
2013-08-04 09:09:40 -07:00
|
|
|
if [ $(serverRunning $WORLD) -eq 1 ]; then
|
2015-06-05 18:13:38 -07:00
|
|
|
RUNNING="$RUNNING $WORLD"
|
2013-08-04 09:09:40 -07:00
|
|
|
printf " $WORLD"
|
2013-10-19 11:50:50 -07:00
|
|
|
if [ $(printf "%d" $(queryStatus $WORLD | cut -f6)) -gt 0 ]; then
|
2013-08-05 21:28:55 -07:00
|
|
|
sendCommand $WORLD "say The server admin has initiated a software update."
|
|
|
|
sendCommand $WORLD "say The server will restart and update in 1 minute..."
|
|
|
|
sleep 60
|
|
|
|
sendCommand $WORLD "say The server is now restarting."
|
|
|
|
fi
|
2013-08-04 09:09:40 -07:00
|
|
|
sendCommand $WORLD "save-all"
|
|
|
|
sendCommand $WORLD "save-off"
|
|
|
|
stop $WORLD
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
printf ".\n"
|
|
|
|
printf "Backing up Minecraft Server:"
|
2013-11-01 12:20:59 -07:00
|
|
|
for WORLD in $WORLDS; do
|
2013-08-04 09:09:40 -07:00
|
|
|
printf " $WORLD"
|
|
|
|
worldBackup $WORLD
|
|
|
|
done
|
|
|
|
printf ".\n"
|
|
|
|
# Update the server software.
|
2013-11-01 12:20:59 -07:00
|
|
|
printf "Updating Server Software:"
|
|
|
|
for WORLD in $WORLDS; do
|
|
|
|
printf " $WORLD"
|
|
|
|
updateServerSoftware "$WORLD"
|
|
|
|
done
|
2013-08-04 09:09:40 -07:00
|
|
|
printf ".\n"
|
|
|
|
printf "Restarting Minecraft Server:"
|
2015-06-05 18:13:38 -07:00
|
|
|
for WORLD in $RUNNING; do
|
2013-08-04 09:09:40 -07:00
|
|
|
printf " $WORLD"
|
|
|
|
start $WORLD
|
|
|
|
done
|
|
|
|
printf ".\n"
|
|
|
|
;;
|
|
|
|
map|overviewer)
|
2013-12-02 22:07:57 -07:00
|
|
|
checkPermission
|
2013-08-04 09:09:40 -07:00
|
|
|
# Make sure that the Minecraft Overviewer software exists.
|
|
|
|
if [ ! -e "$OVERVIEWER_BIN" ]; then
|
2014-05-06 06:53:55 -07:00
|
|
|
printf "Minecraft Overviewer software not found.\n"
|
2013-08-04 09:09:40 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
# Figure out which worlds to map.
|
2013-12-27 12:59:13 -07:00
|
|
|
WORLDS=$(getEnabledWorlds)
|
|
|
|
if [ -n "$2" ] && [ $(listContains "$2" "$WORLDS") -eq 1 ]; then
|
2013-10-19 19:38:54 -07:00
|
|
|
WORLDS="$2"
|
|
|
|
elif [ -n "$2" ]; then
|
|
|
|
printf "World '$2' not recognized.\n"
|
|
|
|
printf " Usage: $0 $1 <world>\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-08-04 09:09:40 -07:00
|
|
|
# Run Minecraft Overviewer on each world requested.
|
|
|
|
printf "Running Minecraft Overviewer mapping:"
|
|
|
|
for WORLD in $WORLDS; do
|
|
|
|
printf " $WORLD"
|
2014-09-16 12:37:38 -07:00
|
|
|
overviewer "$WORLD"
|
2013-08-04 09:09:40 -07:00
|
|
|
done
|
|
|
|
printf ".\n"
|
|
|
|
;;
|
2015-03-03 19:27:43 -07:00
|
|
|
usage|help)
|
|
|
|
printf "Minecraft Server Control Script\n"
|
|
|
|
printf "\n"
|
|
|
|
printf "$USAGE\n"
|
|
|
|
;;
|
2013-08-04 09:09:40 -07:00
|
|
|
*)
|
2014-01-04 19:41:24 -07:00
|
|
|
printf "Error in command line usage.\n"
|
2013-08-04 09:09:40 -07:00
|
|
|
printf "\n"
|
|
|
|
printf "$USAGE\n"
|
|
|
|
exit 1
|
|
|
|
;;
|
2013-06-24 11:26:09 -07:00
|
|
|
esac
|
|
|
|
exit 0
|