forked from andreafabrizi/Dropbox-Uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dropShell.sh
executable file
·422 lines (339 loc) · 8.48 KB
/
dropShell.sh
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
#!/usr/bin/env bash
#
# DropShell
#
# Copyright (C) 2013-2014 Andrea Fabrizi <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
#Looking for dropbox uploader
if [ -f "./dropbox_uploader.sh" ]; then
DU="./dropbox_uploader.sh"
else
DU=$(which dropbox_uploader.sh)
if [ $? -ne 0 ]; then
echo "Dropbox Uploader not found!"
exit 1
fi
fi
#For MacOSX, install coreutils (which includes greadlink)
# $brew install coreutils
if [ "${OSTYPE:0:6}" == "darwin" -o "${OSTYPE:0:7}" == "freebsd" ]; then
READLINK="greadlink"
else
READLINK="readlink"
fi
SHELL_HISTORY=~/.dropshell_history
DU_OPT="-q"
BIN_DEPS="id $READLINK ls basename ls pwd cut"
VERSION="0.2"
umask 077
#Dependencies check
for i in $BIN_DEPS; do
which $i > /dev/null
if [ $? -ne 0 ]; then
echo -e "Error: Required program could not be found: $i"
exit 1
fi
done
#Check DropBox Uploader
if [ ! -f "$DU" ]; then
echo "Dropbox Uploader not found: $DU"
echo "Please change the 'DU' variable according to the Dropbox Uploader location."
exit 1
else
DU=$($READLINK -m "$DU")
fi
#Returns the current user
function get_current_user
{
id -nu
}
function normalize_path
{
$READLINK -m "$1"
}
################
#### START ####
################
echo -e "DropShell v$VERSION"
echo -e "The Interactive Dropbox SHELL"
echo -e "Andrea Fabrizi - [email protected]\n"
echo -e "Type help for the list of the available commands.\n"
history -r "$SHELL_HISTORY"
username=$(get_current_user)
#Initial Working Directory
CWD="/"
function sh_ls
{
local arg1=$1
#Listing current dir
if [ -z "$arg1" ]; then
"$DU" $DU_OPT list "$CWD"
#Listing $arg1
else
#Relative or absolute path?
if [ ${arg1:0:1} == "/" ]; then
"$DU" $DU_OPT list "$(normalize_path "$arg1")"
else
"$DU" $DU_OPT list "$(normalize_path "$CWD/$arg1")"
fi
#Checking for errors
if [ $? -ne 0 ]; then
echo -e "ls: cannot access '$arg1': No such file or directory"
fi
fi
}
function sh_cd
{
local arg1=$1
OLD_CWD=$CWD
if [ -z "$arg1" ]; then
CWD="/"
elif [ ${arg1:0:1} == "/" ]; then
CWD=$arg1
else
CWD=$(normalize_path "$OLD_CWD/$arg1/")
fi
"$DU" $DU_OPT list "$CWD" > /dev/null
#Checking for errors
if [ $? -ne 0 ]; then
echo -e "cd: $arg1: No such file or directory"
CWD=$OLD_CWD
fi
}
function sh_get
{
local arg1=$1
local arg2=$2
if [ ! -z "$arg1" ]; then
#Relative or absolute path?
if [ ${arg1:0:1} == "/" ]; then
"$DU" $DU_OPT download "$(normalize_path "$arg1")" "$arg2"
else
"$DU" $DU_OPT download "$(normalize_path "$CWD/$arg1")" "$arg2"
fi
#Checking for errors
if [ $? -ne 0 ]; then
echo -e "get: Download error"
fi
#args error
else
echo -e "get: missing operand"
echo -e "syntax: get <FILE/DIR> [LOCAL_FILE/DIR]"
fi
}
function sh_put
{
local arg1=$1
local arg2=$2
if [ ! -z "$arg1" ]; then
#Relative or absolute path?
if [ "${arg2:0:1}" == "/" ]; then
"$DU" $DU_OPT upload "$arg1" "$(normalize_path "$arg2")"
else
"$DU" $DU_OPT upload "$arg1" "$(normalize_path "$CWD/$arg2")"
fi
#Checking for errors
if [ $? -ne 0 ]; then
echo -e "put: Upload error"
fi
#args error
else
echo -e "put: missing operand"
echo -e "syntax: put <FILE/DIR> <REMOTE_FILE/DIR>"
fi
}
function sh_rm
{
local arg1=$1
if [ ! -z "$arg1" ]; then
#Relative or absolute path?
if [ ${arg1:0:1} == "/" ]; then
"$DU" $DU_OPT remove "$(normalize_path "$arg1")"
else
"$DU" $DU_OPT remove "$(normalize_path "$CWD/$arg1")"
fi
#Checking for errors
if [ $? -ne 0 ]; then
echo -e "rm: cannot remove '$arg1'"
fi
#args error
else
echo -e "rm: missing operand"
echo -e "syntax: rm <FILE/DIR>"
fi
}
function sh_mkdir
{
local arg1=$1
if [ ! -z "$arg1" ]; then
#Relative or absolute path?
if [ ${arg1:0:1} == "/" ]; then
"$DU" $DU_OPT mkdir "$(normalize_path "$arg1")"
else
"$DU" $DU_OPT mkdir "$(normalize_path "$CWD/$arg1")"
fi
#Checking for errors
if [ $? -ne 0 ]; then
echo -e "mkdir: cannot create directory '$arg1'"
fi
#args error
else
echo -e "mkdir: missing operand"
echo -e "syntax: mkdir <DIR_NAME>"
fi
}
function sh_mv
{
local arg1=$1
local arg2=$2
if [ ! -z "$arg1" -a ! -z "$arg2" ]; then
#SRC relative or absolute path?
if [ ${arg1:0:1} == "/" ]; then
SRC="$arg1"
else
SRC="$CWD/$arg1"
fi
#DST relative or absolute path?
if [ ${arg2:0:1} == "/" ]; then
DST="$arg2"
else
DST="$CWD/$arg2"
fi
"$DU" $DU_OPT move "$(normalize_path "$SRC")" "$(normalize_path "$DST")"
#Checking for errors
if [ $? -ne 0 ]; then
echo -e "mv: cannot move '$arg1' to '$arg2'"
fi
#args error
else
echo -e "mv: missing operand"
echo -e "syntax: mv <FILE/DIR> <DEST_FILE/DIR>"
fi
}
function sh_cp
{
local arg1=$1
local arg2=$2
if [ ! -z "$arg1" -a ! -z "$arg2" ]; then
#SRC relative or absolute path?
if [ ${arg1:0:1} == "/" ]; then
SRC="$arg1"
else
SRC="$CWD/$arg1"
fi
#DST relative or absolute path?
if [ ${arg2:0:1} == "/" ]; then
DST="$arg2"
else
DST="$CWD/$arg2"
fi
"$DU" $DU_OPT copy "$(normalize_path "$SRC")" "$(normalize_path "$DST")"
#Checking for errors
if [ $? -ne 0 ]; then
echo -e "cp: cannot copy '$arg1' to '$arg2'"
fi
#args error
else
echo -e "cp: missing operand"
echo -e "syntax: cp <FILE/DIR> <DEST_FILE/DIR>"
fi
}
function sh_free
{
"$DU" $DU_OPT info | grep "Free:" | cut -f 2
}
function sh_cat
{
local arg1=$1
if [ ! -z "$arg1" ]; then
tmp_cat="/tmp/sh_cat_$RANDOM"
sh_get "$arg1" "$tmp_cat"
cat "$tmp_cat"
rm -fr "$tmp_cat"
#args error
else
echo -e "cat: missing operand"
echo -e "syntax: cat <FILE>"
fi
}
while (true); do
#Reading command from shell
read -e -p "$username@Dropbox:$CWD$ " input
#Tokenizing command
eval tokens=($input)
cmd=${tokens[0]}
arg1=${tokens[1]}
arg2=${tokens[2]}
#Saving command in the history file
history -s "$input"
history -w "$SHELL_HISTORY"
case $cmd in
ls)
sh_ls "$arg1"
;;
cd)
sh_cd "$arg1"
;;
pwd)
echo $CWD
;;
get)
sh_get "$arg1" "$arg2"
;;
put)
sh_put "$arg1" "$arg2"
;;
rm)
sh_rm "$arg1"
;;
mkdir)
sh_mkdir "$arg1"
;;
mv)
sh_mv "$arg1" "$arg2"
;;
cp)
sh_cp "$arg1" "$arg2"
;;
cat)
sh_cat "$arg1"
;;
free)
sh_free
;;
lls)
ls -l
;;
lpwd)
pwd
;;
lcd)
cd "$arg1"
;;
help)
echo -e "Supported commands: ls, cd, pwd, get, put, cat, rm, mkdir, mv, cp, free, lls, lpwd, lcd, help, exit\n"
;;
quit|exit)
exit 0
;;
*)
if [ ! -z "$cmd" ]; then
echo -ne "Unknown command: $cmd\n"
fi
;;
esac
done