forked from andreafabrizi/Dropbox-Uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dropShell.sh
executable file
·315 lines (232 loc) · 7.21 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
#!/usr/bin/env bash
#
# DropShell
#
# Copyright (C) 2013 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 2 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.
#
DU="./dropbox_uploader.sh"
SHELL_HISTORY=~/.dropshell_history
DU_OPT="-q"
BIN_DEPS="id readlink ls basename ls pwd cut"
VERSION="0.1"
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 Intractive 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="/"
while (true); do
#Reading command from shell
read -e -p "$username@DropBox:$CWD$ " input
#Tokenizing command
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)
#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
;;
cd)
OLD_CWD=$CWD
if [ -z "$arg1" ]; then
CWD="/"
else
arg1=${input:3} #All the arguments
fi
CWD=$(normalize_path "$CWD/$arg1/")
$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
;;
pwd)
echo $CWD
;;
get)
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
;;
put)
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
;;
rm)
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
;;
mkdir)
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
;;
mv)
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
;;
free)
$DU $DU_OPT info | grep "Free:" | cut -f 2
;;
lls)
ls -l
;;
lpwd)
pwd
;;
lcd)
cd "$arg1"
;;
help)
echo -e "Availabe commands: ls, cd, pwd, get, put, rm, mkdir, mv, free, lls, lpwd, lcd, help, exit\n"
;;
quit|exit)
exit 0
;;
*)
if [ ! -z "$cmd" ]; then
echo -ne "Unknown command: $cmd\n"
fi
;;
esac
done