@@ -16,8 +16,6 @@ Cyan='\033[0;36m' # Cyan
16
16
White=' \033[0;37m' # White
17
17
18
18
set -o pipefail
19
- readonly file=" $2 "
20
- readonly u_folder=" $3 "
21
19
readonly status_dir=" $( mktemp -d) "
22
20
23
21
trap " rm -rf $status_dir " EXIT
@@ -31,11 +29,11 @@ sudo curl https://rclone.org/install.sh 2>/dev/null | sudo bash > /dev/null 2>&1
31
29
echo " "
32
30
echo " ${orange} Please install jq manually, No script found"
33
31
echo " Possibly with
34
- ${aqua} sudo apt-get install jq ${normal} OR
35
- ${aqua} sudo pacman -S jq ${normal} OR
32
+ ${aqua} sudo apt-get install jq ${normal} OR
33
+ ${aqua} sudo pacman -S jq ${normal} OR
36
34
${aqua} sudo dnf install jq ${normal} OR
37
35
${aqua} sudo zypper install jq ${normal} OR
38
- ${aqua} apk add jq ${normal} OR
36
+ ${aqua} apk add jq ${normal} OR
39
37
${aqua} pkg install jq${normal} "
40
38
echo ' '
41
39
}
@@ -61,19 +59,36 @@ setup () {
61
59
then
62
60
echo " ${aqua} Dependencies not found. Make sure to proceed with the command 'ksau dependencies'"
63
61
echo " ${aqua} Please install jq manually, No script found"
64
- echo " Possibly with
65
- ${aqua} sudo apt-get install jq ${normal} OR
66
- ${aqua} sudo pacman -S jq ${normal} OR
62
+ echo " Possibly with
63
+ ${aqua} sudo apt-get install jq ${normal} OR
64
+ ${aqua} sudo pacman -S jq ${normal} OR
67
65
${aqua} sudo dnf install jq ${normal} OR
68
66
${aqua} sudo zypper install jq ${normal} OR
69
- ${aqua} apk add jq ${normal} OR
67
+ ${aqua} apk add jq ${normal} OR
70
68
${aqua} pkg install jq${normal} "
71
69
exit
72
70
fi
73
71
fi
74
72
echo " Setup Completed"
75
73
}
76
74
75
+ # Generates new filename with random strings at last (before extension if present).
76
+ # new name for 'myfile.txt' -> 'myfile-78e11b8c.txt'
77
+ # new name for 'myfile' -> 'myfile-78e11b8c'
78
+ add_random_string () {
79
+ local filename=" $1 "
80
+ local extension=" ${filename##* .} "
81
+ local name=" ${filename% .* } "
82
+ local random_string=" $( date +%s | sha256sum | base64 | head -c 8) "
83
+ if [ -z " $extension " ]; then
84
+ new_filename=" $name -$random_string "
85
+ else
86
+ new_filename=" $name -$random_string .$extension "
87
+ fi
88
+ }
89
+
90
+ # Simple progressbar animation.
91
+ # Usage : progress_bar ${percentage} ${upload_speed} $(eta) ${status}
77
92
progress_bar () {
78
93
if [ " $( tput cols) " -lt 84 ]; then
79
94
[ -z $1 ] && set -- " (Starting)" " ..." " ..." " ..."
@@ -106,12 +121,14 @@ progress_bar() {
106
121
fi
107
122
}
108
123
124
+ # Upload file to give folder and use new filename if -r argument was passed and printing out new animation.
109
125
rclone_progress_bar () {
110
126
tput civis
111
127
echo " Starting download..."
112
128
rm -f log
113
129
touch log
114
- rclone -P --checkers=32 --onedrive-chunk-size 60M copy " $file " oned:/" ${u_folder} " | tee log > /dev/null || touch " $status_dir /failed" &
130
+ if [ -z " $new_filename " ]; then new_filename=$( basename " $file " ) ; fi
131
+ rclone -P --checkers=32 --onedrive-chunk-size 60M copyto " $file " oned:/" ${u_folder} " /" $new_filename " | tee log > /dev/null || touch " $status_dir /failed" &
115
132
until [ -z " $( jobs -r) " ]; do
116
133
if [ -f " $status_dir /failed" ]; then
117
134
echo
@@ -124,6 +141,8 @@ rclone_progress_bar() {
124
141
done # || echo -ne "\rDownload Can't be completed, Check download link." && tput cnorm && exit 1
125
142
tput cnorm
126
143
}
144
+
145
+ # Final part of animation if upload was succesfull.
127
146
end_animation () {
128
147
tput civis
129
148
@@ -194,6 +213,7 @@ function url_encode() {
194
213
-e ' s/~/%7e/g'
195
214
}
196
215
216
+ # rclone_progress_bar -> progress_bar -> end_animation -> Print dowload link.
197
217
upload () {
198
218
echo " Initializing process, might take up to 10 seconds..."
199
219
rclone_progress_bar
@@ -203,29 +223,37 @@ upload () {
203
223
exit 1
204
224
fi
205
225
end_animation
206
- u_file=$( basename " ${file} " )
207
- url_file=$( url_encode " $u_file " )
208
- url_folder=$( jq -rn --arg x " ${u_folder} " ' $x|@uri' )
226
+ url_file=$( url_encode " ${new_filename} " )
227
+ url_folder=$( jq -rn --arg x " ${u_folder%/ } " ' $x|@uri' )
209
228
echo " Upload Completed "
210
229
echo " Download link - ${lightgreen} https://index.sauraj.eu.org/${url_folder} /${url_file}${normal} "
211
230
}
212
231
213
232
help () {
214
233
echo "
234
+ ${aqua} Usage : ksau [OPTION]... [FILE]...${normal}
235
+
236
+ ${aqua} upload [FILE] [FOLDER]${normal} : Uploads the given file to the given folder
237
+ on index.
238
+
239
+ ${aqua} upload -r [FILE] [FOLDER]${normal} : Uploads the given file to the given folder
240
+ but with new filename with random strings
241
+ at last (before extension if present).
215
242
216
- ${aqua} Usage : ksau <options> <params> ${normal}
243
+ ${aqua} setup ${normal} : Recquired while using first time.
217
244
218
- ${aqua} upload <filename> <folder to upload>${normal} : Uploads the given file to the given folder.
219
- ${aqua} setup${normal} : Recquired while using first time.
220
- ${aqua} update${normal} : Fetch and install latest version available.
221
- ${aqua} dependencies${normal} : Installs recquired dependencies.
222
- ${aqua} help${normal} : To get this message.
223
- ${aqua} version${normal} : To get version info.
245
+ ${aqua} update${normal} : Fetch and install latest version
246
+ available.
247
+
248
+ ${aqua} dependencies${normal} : Installs recquired dependencies.
249
+
250
+ ${aqua} help${normal} : To get this message.
251
+
252
+ ${aqua} version${normal} : To get version info.
224
253
225
254
Example : ${lightgreen} ksau upload test.txt Public
226
255
227
256
${orange} Tool By Sauraj (@Ksauraj)${normal}
228
-
229
257
"
230
258
}
231
259
@@ -242,22 +270,35 @@ update () {
242
270
}
243
271
244
272
version () {
245
- echo " ${orange} Version - 1.4.2 (Stable) ${normal} "
273
+ echo " ${orange} Version - 1.5.1 (Stable) ${normal} "
246
274
}
247
275
248
276
if [[ $1 == " upload" ]]; then
249
- upload
277
+ if [[ $2 == " -r" ]]; then
278
+ shift
279
+ readonly file=" $2 "
280
+ readonly u_folder=" $3 "
281
+ add_random_string $( basename " $file " )
282
+ upload
283
+ else
284
+ readonly file=" $2 "
285
+ readonly u_folder=" $3 "
286
+ upload
287
+ fi
250
288
elif [[ $1 == " setup" ]]; then
251
- setup
289
+ setup
252
290
elif [[ $1 == " dependencies" ]]; then
253
- dependencies
291
+ dependencies
254
292
elif [[ $1 == " update" ]]; then
255
- update
293
+ update
256
294
elif [[ $1 == " version" ]]; then
257
- version
295
+ version
258
296
elif [[ $1 == " help" ]]; then
259
- help
297
+ help
260
298
elif [[ $1 == " " ]]; then
261
- help
299
+ help
300
+ else
301
+ echo " Unknown Argument passed."
302
+ help
262
303
fi
263
304
0 commit comments