summaryrefslogtreecommitdiffstats
path: root/fb.in
blob: 9fe6392dee656428e925b12d3f2c6e13b3dd1374 (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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
#!/bin/bash
#----------------------------------------------------
# Author:       Florian "Bluewind" Pritz <flo@xssn.at>
# Contributor:  Moritz Wilhelmy
#
# Licensed under GPLv3
#   (see COPYING for full license text)
#
#----------------------------------------------------
# Optional dependency: xclip
#----------------------------------------------------

pastebin="https://paste.xinu.at"
warnsize=10485760
libdir="@LIBDIR@"

# the calling conventions for stat(1) are highly system dependent
stat='stat -c %s' # GNU stat(1) is the default since most people have it

clipboard_cmd=xclip

case "`uname -s`" in
	*BSD)  stat='stat -f %z';;
	Minix) stat='stat -size';;
	Darwin)
		stat='stat -f %z'
		clipboard_cmd=pbcopy
		;;
esac

if [ -z "$XDG_CONFIG_HOME" ]; then
	XDG_CONFIG_HOME="$HOME/.config"
fi

apikey_file="$XDG_CONFIG_HOME/fb-client/apikey"

config_file="$XDG_CONFIG_HOME/fb-client/config"
if [ -e "$config_file" ]; then
	. "$config_file"
fi

version="@VERSION@"
delete=
extension=""
filename="stdin"
get=
multipaste=
multipaste_ids=()
tar=
compress=0
display_history=
create_apikey=
clipboard=""
exitcode=0
debug=
useragent="fb-client/shell-$version"
default_curlopts=(-# -L -A "$useragent" --speed-time 30 --speed-limit 1 --connect-timeout 10)

base64_encode() {
	if type base64 2>&1 >/dev/null; then
		printf "%s" "$1" | base64
	elif type openssl 2>&1 >/dev/null; then
		printf "%s" "$1" | openssl enc -base64
	else
		printf "%s\n" "Warning: can't find base64 nor openssl executable" >&2
		printf "%s\n" "         filename of uploaded file will be set to stdin" >&2
		printf "%s\n" "stdin"
	fi
}

request_helper() {
	# available modes are: d, u, m
	mode=$1
	url=$2
	file=$3

	# if available use the external helper, else fall back to calling curl
	if [ -x "$libdir/fb-helper" ]; then
		helperopts=(-u "$url")

		if [ "$debug" ]; then
			helperopts+=(-D)
		fi

		if [ -e "$apikey_file" ]; then
			helperopts+=(-a $apikey_file)
		fi

		if [ "$mode" = "u" ]; then
			helperopts+=(-f "$file")
		fi

		if [ "$mode" = "m" ]; then
			for id in "${multipaste_ids[@]}"; do
				helperopts+=(-F "ids[]=$id")
			done
		fi
		$libdir/fb-helper "${helperopts[@]}"
	else
		curlopts=(${default_curlopts[@]})

		require_executable curl

		if [ -e "$apikey_file" ]; then
			curlopts+=("-F" "apikey=<${apikey_file}")
		else
			curlopts+=("-n")
		fi

		if [ "$debug" ]; then
			curlopts+=("-v")
		fi

		if [ "$mode" = "m" ]; then
			for id in "${multipaste_ids[@]}"; do
				curlopts+=(-F "ids[]=$id")
			done
		fi

		if [ "$mode" = "d" ]; then
			curlopts+=("-s")
		fi

		if [ "$mode" = "u" ]; then
			basefilename=`basename -- "$file"`
			if [ "`$stat -- "$file"`" -eq "0" ] || printf "%s" "$basefilename" | grep -F -q ","; then
				if  [ "`wc -c < "$file"`" -eq "0" ]; then
					printf "%s\n" "Error: skipping 0-byte file: \"$file\"" >&2
					return 1
				fi
				base64fn="`base64_encode "$basefilename"`"
				curl "${curlopts[@]}" -F "file=@-" -F "filename=$base64fn" "$url" < "$file" -o /dev/stdout
			else
				curl "${curlopts[@]}" -F "file=@$file" "$url" -o /dev/stdout
			fi
		else
			curl "${curlopts[@]}" "$url"
		fi
	fi
}

require_executable() {
	if ! type $1 >/dev/null; then
		printf "%s\n" "Error: $1 not found. Please install." >&2
		exit 1
	fi
}

is_url() {
	if printf "%s" "$i" | grep -qE "^(f|ht)tp(s)?://.+"; then
		return 0
	fi
	return 1
}

is_pastebin_url() {
	if printf "%s" "$i" | grep -qE "^$pastebin.+"; then
		return 0
	fi

	return 1
}

do_tar_upload() {
	if [ "$compress" = "1" ]; then
		file="$tmpdir/$filename.tar.gz"
		tar -cf - -- "$@" | gzip -n -c > "$file" || return 1
	elif [ "$compress" = "2" ]; then
		file="$tmpdir/$filename.tar.xz"
		tar -cf - -- "$@" | xz -c > "$file" || return 1
	else
		file="$tmpdir/$filename.tar"
		tar -cf "$file" -- "$@" || return 1
	fi
	compress=0
	do_upload "$file" || return 1
}

do_upload() {
	local extra=""
	file="$1"
	basefilename="`basename -- "$file"`"
	basedirname="`dirname -- "$file"`"

	if [ ! -r "$file" ]; then
		# sh doesn't have perror so this message can't be more precise
		printf "%s\n" "Error: File \"$file\" is not readable/not found." >&2
		return 1
	fi

	if [ -d "$file" ]; then
		cd "$basedirname"
		if [ "$compress" = "1" ]; then
			file="$tmpdir/$basefilename.tar.gz"
			tar -cf - -- "$basefilename" | gzip -n -c > "$file" || return 1
		elif [ "$compress" = "2" ]; then
			file="$tmpdir/$basefilename.tar.xz"
			tar -cf - -- "$basefilename" | xz -c > "$file" || return 1
		else
			file="$tmpdir/$basefilename.tar"
			tar -cf "$file" -- "$basefilename" || return 1
		fi
	else
		if [ "$compress" = "1" ]; then
			gzip -n -c -- "$file" > "$tmpdir/$basefilename.gz" || return 1
			file="$tmpdir/$basefilename.gz"
		elif [ "$compress" = "2" ]; then
			xz -c -- "$file" > "$tmpdir/$basefilename.xz" || return 1
			file="$tmpdir/$basefilename.xz"
		fi
	fi

	tmpfile=`mktemp "$tmpdir/data.XXXXXX"`
	if [ "`$stat -- "$file"`" -gt "$warnsize" ]; then
		warnsize=`request_helper d "$pastebin/file/get_max_size"`
		if [ "`$stat -- "$file"`" -gt "$warnsize" ]; then
			printf "%s\n" "Warning: Your upload is too big and would be rejected. Maximum size is: $warnsize bytes. Skipping..." >&2
			return 1
		fi
	fi

	request_helper u "$pastebin/file/do_upload" "$file" > $tmpfile || return 1

	sed '$d' $tmpfile >&2
	url=`tail -1 $tmpfile`"$extension"
	rm "$tmpfile"
	printf "%s\n" "$url"
	if printf "%s" "$url" | grep -qE "^https?://"; then
		if [ -z "$clipboard" ]; then
			clipboard="$url"
		else
			clipboard="$clipboard $url"
		fi
	fi
}

read_stdin() {
	if tty -s; then
		printf "%s\n" "^C to exit, ^D to send"
	fi
	cat > "$1"
}

read_string() {
	read -r tmp
	echo "$tmp"
}

id_from_arg() {
	local regex="https?:\/\/[^\/]+\/([^\/]+).*"
	if [[ $1 =~ $regex ]]; then
		printf "%s" "${BASH_REMATCH[1]}"
	else
		printf "%s" "$1"
	fi
}

create_apikey() {
	if [ -z "$HOST" ]; then
		HOST=`hostname`
	fi

	require_executable curl

	printf "%s" "Username: "
	read_string | tr -d "\n" > "$tmpdir/username"

	printf "%s" "Password: "
	stty -echo
	read_string | tr -d "\n" > "$tmpdir/password"
	stty echo
	printf "\n"

	curlopts=(${default_curlopts[@]})
	if [ "$debug" ]; then
		curlopts+=(-v)
	fi

	curl "${curlopts[@]}" -w "%{http_code}\n" -s -F "username=<$tmpdir/username" -F "password=<$tmpdir/password" -F "comment=fb-client $USER@$HOST" "$pastebin/user/create_apikey" > "$tmpdir/api-result"

	rm "$tmpdir/username" "$tmpdir/password"

	status_code=`tail -n 1 "$tmpdir/api-result"`

	if [ "$status_code" == "200" ]; then
		if [ ! -d "$XDG_CONFIG_HOME/fb-client/" ]; then
			mkdir -p "$XDG_CONFIG_HOME/fb-client"
		fi
		head -n 1 "$tmpdir/api-result" > "$apikey_file"
		return 0
	fi

	echo "Failed to generate API key:" >&2
	sed '$d' "$tmpdir/api-result" >&2

	return 1
}

help() {
	cat <<!
fb-client version $version
usage: [cat |] `basename "$0"` [switches] [options] [<file(s)|ID(s)|folder(s)>]

  Upload/nopaste file(s)/stdin to paste.xinu.at and copy URL(s) to clipboard.

  Switches:
    -d <ID(s)>     delete the IDs
    -g <ID(s)>     download the IDs and output on stdout (use with care!)
    -m             create a multipaste
    -h             this help
    -v             show the client version
    -H             display an upload history
    -a             create a new api key

  Options:
    -e <extension>   extension for default highlighting (e.g. "diff")
    -n <file name>   file name to use for upload when reading from stdin
                     Defaults to "stdin"
    -t               upload a tar file containing all files (and directories)
    -c               compress the file being uploaded with gz or xz if used 2 times
                     When used in conjunction with -g this decompresses the download
    -D               show debugging information
!
}

if ! type getopts >/dev/null 2>&1; then
	printf "%s\n" "Error: getopts is not supported by your shell" >&2
	exit 1
fi

while getopts "e:n:gmdhHatcvD" option; do
	case $option in
		e) extension="$OPTARG";;
		n) filename="$OPTARG";;
		g) get=1;;
		m) multipaste=1;;
		c) compress=`expr $compress + 1`;;
		t) tar=1;;
		d) delete=1;;
		H) display_history=1;;
		a) create_apikey=1;;
		v) printf "%s\n" "$version"; exit 0;;
		D) debug=1;;
		h|\?) help; exit 0;;
	esac
done

shift `expr $OPTIND - 1`

if [[ "$#" -gt 1 && ! "$tar" ]]; then
	multipaste=1
fi

if [ "$compress" = "1" ]; then
	require_executable gzip
elif [ "$compress" = "2" ]; then
	require_executable xz
fi

tmpdir="`mktemp -dt "fb.XXXXXX"`"
trap "rm -rf '${tmpdir}'" EXIT TERM

if [ "$delete" ] || [ "$get" ]; then
	if [ $# -eq 0 ]; then
		printf "%s\n" "Error: no ID specified" >&2
		exit 1
	fi
	for i in "$@"; do
		i=$(id_from_arg "$i")
		if [ "$delete" ]; then
			request_helper d "$pastebin/file/delete/$i" || exitcode=1

		elif [ "$get" ]; then
			if [ "$compress" = "1" ]; then
				request_helper d "$pastebin/$i" | gzip -cd || exitcode=1
			elif [ "$compress" = "2" ]; then
				request_helper d "$pastebin/$i" | xz -cd || exitcode=1
			else
				request_helper d "$pastebin/$i" || exitcode=1
			fi
		fi
	done
elif [ "$display_history" ]; then
	request_helper d "$pastebin/file/upload_history" || exitcode=1
elif [ "$create_apikey" ]; then
	create_apikey
	exit $?
elif [ $# -eq 0 ]; then
	if [ "$tar" ]; then
		printf "%s\n" "Error: -t is not supported when operating on stdin" >&2
		exit 1
	fi
	read_stdin "$tmpdir/$filename"
	do_upload "$tmpdir/$filename" || exitcode=1
else
	if [ "$tar" ]; then
		have_url=
		for i in "$@"; do
			if is_url "$i"; then
				have_url=1
			fi
		done
		if [ "$have_url" ]; then
			# TODO: support -t when passing URLs as arguments
			printf "%s\n" "Error: -t is not yet supported when operating on a URL" >&2
			exit 1
		else
			do_tar_upload "$@" || exitcode=1
		fi
	else
		for i in "$@"; do
			if is_url "$i"; then
				if [ "$multipaste" ]; then
					if is_pastebin_url "$i"; then
						multipaste_ids+=("$(id_from_arg "$i")")
						continue
					fi
				fi

				cd $tmpdir
				if ! request_helper d "$i" > "`basename "$i"`"; then
					exitcode=1
					continue
				fi
				for f in *; do
					if ! do_upload "$f"; then
						exitcode=1
					fi
					rm -f -- "$f"
				done
			else
				do_upload "$i" || exitcode=1
			fi
		done
	fi

	if [ "$multipaste" ]; then
		for url in $clipboard; do
			id="$(id_from_arg "$url")"
			multipaste_ids+=("$id")
		done

		tmpfile=`mktemp "$tmpdir/data.XXXXXX"`
		request_helper m "$pastebin/file/do_multipaste" > $tmpfile || exitcode=1

		sed '$d' $tmpfile >&2
		url=`tail -1 $tmpfile`"$extension"
		printf "%s\n" "$url"
		if printf "%s" "$url" | grep -qE "^https?://"; then
			clipboard="$url"
		fi
	fi
fi

if [ "$clipboard" != "" ]; then
	type $clipboard_cmd >/dev/null 2>&1 && printf "%s" "$clipboard" | nohup $clipboard_cmd >/dev/null 2>&1
fi

exit $exitcode

#vim: set noet: