summaryrefslogtreecommitdiff
path: root/builder.sh
blob: cc650900d84da96cff08baf1bfa073560d1b3e1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
#!/bin/bash

# Minecraft Java serverdir builder

function fail(){
	>&2 echo $@
	exit 1
}

function perror() {
	echo $@
} >&2

# 1: file 2: attribute
function serverprop_get() {
	sed -n "s/$2=\(.*\)$/\1/p" "$1"
}

# 1: file 2: attribute 3: value
function serverprop_set() {
	if grep -s "^$2=.*$" "$1"; then
		sed -ni "s/$2=.*$/$2=$3/g" "$1"
	else
		echo "$2=$3" >> "$1"
	fi
}

function confirm() {
	[ -z "$NO_INTERACTIVE" ] || return 1

	read -p "$@ [y/N] " choice
	case $choice in
		[yY]*)
			return 0;;
		*)
			return 1
	esac
}

# Sub Commands

## world

function world() {
	local CMD="$1"
	case $CMD in
		list) ;&
		create) ;&
		clone) ;&
		backup) ;&
		delete) ;&
		unassign) ;&
		assign)
			shift
			eval 'world_$CMD "$@"'
			;;
		*)
			fail "world: Unknown argument $CMD"
	esac

	exit $?
}

function world_exists() {
	[ -d "$WORLDS/$1" ]
	return $?
}

function world_list() {
	for WORLD in $WORLDS/*/; do
		WORLD=$(basename $WORLD)
		[ -e "$WORLDS/$WORLD.lock" ] && source "$WORLDS/$WORLD.lock"
		[ -z "$ASSIGNED_TO" ] || WORLD="$WORLD (-> $ASSIGNED_TO)"
		echo $WORLD
	done
}

# 1: world 2: instance
function world_assign() {
	local WORLD="$1"
	local INSTANCE="$2"

	world_exists "$WORLD" \
		||  ( confirm "World not found. Create?" \
		&& world_create "$WORLD" \
		|| fail "World $WORLD not found." )

	if [ -f "$WORLDS/$WORLD.lock" ]; then
		source "$WORLDS/$WORLD.lock"
		[ "$ASSIGNED_TO" = "$INSTANCE" ] \
			|| fail "$WORLD is already used by another instance."
	fi

	[ -L "$INSTANCES/$INSTANCE/$WORLD" ] \
		&& rm "$INSTANCES/$INSTANCE/$WORLD"
	[ -e "$INSTANCES/$INSTANCE/$WORLD" ] \
		&& fail "A file/folder named $WORLD already exists in the instance directory."

	echo "ASSIGNED_TO=\"$INSTANCE\"" > "$WORLDS/$WORLD.lock"

	ln -s "$WORLDS/$WORLD" "$INSTANCES/$INSTANCE/$WORLD"
	serverprop_set "$INSTANCES/$INSTANCE/server.properties" level-name "$WORLD"
}

# 1: world
function world_unassign() {
	local WORLD="$1"
	world_exists "$WORLD" || fail "World $WORLD not found."

	[ -f "$WORLDS/$WORLD.lock" ] || fail "World is not in use."
	source "$WORLDS/$WORLD.lock"
	rm "$WORLDS/$WORLD.lock"

	[ -L "$INSTANCES/$ASSIGNED_TO/$WORLD" ] && rm "$INSTANCES/$ASSIGNED_TO/$WORLD"
	echo "$WORLD was assigned to $ASSIGNED_TO"

	#serverprop_set "$WORLDS/$WORLD/settings.sh" LOCK 1
}

function world_clone() {
	fail "TODO"
}

function world_backup() {
	fail "TODO"
}

function world_restore() {
	fail "TODO"
}

function world_delete() {
	fail "TODO"
}

# 1: name
function world_create() {
	world_exists "$1" && fail "World already exists"
	mkdir "$WORLDS/$1"
}

## instance

function instance() {
	local CMD="$1"
	case $CMD in
		list) ;&
		create) ;&
		delete) ;&
		start) ;&
		stop) ;&
		status)
			shift
			eval 'instance_$CMD "$@"'
			;;
		*)
			fail "instance: Unknown argument $CMD"
	esac

	exit $?
}

function instance_list() {
	for INSTANCE in $INSTANCES/*/; do
		INSTANCE="$(basename "$INSTANCE")"
		instance_status "$INSTANCE" > /dev/null 2>&1 && INSTANCE+=" (RUNNING)"
		echo "$INSTANCE"
	done
	return 0
}

function instance_status() {
	instance_exists "$1" || fail "instance $1 not found."

	local PWD="$(pwd)"

	cd "$INSTANCES/$1"

	$RUNNER status
	local RET=$?

	cd "$PWD"
	return $RET
}

function instance_exists() {
	[ -d "$INSTANCES/$1" ]
	return $?
}

# 1: name
function instance_create() {
	local NAME="$1"

	instance_exists "$NAME" && fail "$NAME already exists."
	mkdir "$INSTANCES/$NAME"

	confirm "Accept minecraft EULA?" && serverprop_set "$INSTANCES/$NAME/eula.txt" eula true
}

function instance_start() {
	instance_exists "$1" || fail "instance $1 not found."

	fail "TODO"
}

function instance_stop() {
	fail "TODO"
}

## version

function version() {
	local CMD="$1"
	case $CMD in
		list) ;&
		install) ;&
		uninstall)
			shift
			eval 'version_$CMD "$@"'
			;;
		*)
			fail "version: Unknown argument $CMD"
	esac

	exit $?
}

function version_exists() {
	[ -f "$VERSIONS/$1.jar" ]
	return $?
}

function version_list() {
	for VERSION in $VERSIONS/*.jar; do
		VERSION="$(basename "$VERSION")"

		echo "${VERSION%%.jar}"
	done
	return 0
}

# 1: version 2: instance
function version_install() {
	local VERSION="$1"
	local INSTANCE="$2"
	instance_exists "$INSTANCE" || fail "instance $1 not found."
	version_exists "$VERSION" || fail "version $2 not found."

	local PWD=$(pwd)
	cd "$INSTANCES/$INSTANCE"

	[ -e "$VERSION.jar" ] && rm "$VERSION.jar"

	ln -s "$VERSIONS/$VERSION.jar" "$VERSION.jar"

	serverprop_set settings.sh MCJAR "$VERSION.jar"

	cd "$PWD"
}

function version_uninstall() {
	fail "TODO"
}

# NO_INTERACTIVE=1

PREFIX=$(pwd)
VERSIONS="$PREFIX/versions"
WORLDS="$PREFIX/worlds"
INSTANCES="$PREFIX/instances"

RUNNER="$PREFIX/runner.sh"

[ -e ./settings.sh ] || fail "settings.sh not found."
source ./settings.sh

CMD="$1"
case $CMD in
	world) ;&
	instance) ;&
	version)
		shift
		eval '$CMD "$@"'
		;;
	*)
		fail "Unknown option $1"
esac