Skip to content

Commit c8ceb06

Browse files
author
Sauraj
authored
ksau: Bump to version 1.5.1 (Stable).
* ksau: Add new argument handler to rename file with random string. * ksau: Update readme. * ksau: Bump to version 1.5.1 (Stable).
1 parent 62d53c7 commit c8ceb06

File tree

3 files changed

+94
-37
lines changed

3 files changed

+94
-37
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
log

README.md

+23-8
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ksau dependencies
3131

3232
### To upload
3333
```
34-
ksau upload <filename> <folder to upload>
34+
ksau upload [FILE] [FOLDER] # Uploads the given file to the given folder on index.
3535
#Example - ksau upload test.txt Public
3636
```
3737

@@ -46,19 +46,34 @@ ksau version
4646
```
4747
## Usage
4848
```
49-
upload <filename> <folder to upload>${normal} : Uploads the given file to the given folder.
50-
setup : Recquired while using first time.
51-
update : Fetch and install latest version available.
52-
dependencies : Installs recquired dependencies.
53-
help : To get this message.
54-
version: To get version info.
49+
Usage : ksau [OPTION]... [FILE]...
50+
51+
upload [FILE] [FOLDER] : Uploads the given file to the given folder
52+
on index.
53+
54+
upload -r [FILE] [FOLDER] : Uploads the given file to the given folder
55+
but with new filename with random strings
56+
at last (before extension if present).
57+
58+
setup : Recquired while using first time.
59+
60+
update : Fetch and install latest version available.
61+
62+
dependencies : Installs recquired dependencies.
63+
64+
help : To get this message.
65+
66+
version : To get version info.
67+
68+
Example : ksau upload test.txt Public
69+
5570
```
5671

5772
### Abuse alert
5873
Please don't abuse, we have limited storage.
5974
Also I'm sharing my configs just for community use and I get nothing from it.
6075

6176
### Create Your Own
62-
Just change your `rclone config` and `index link` in `ksau` (L40 & L71).
77+
Just change your `rclone config` and `index link` in `ksau`.
6378

6479
### Tool By @Ksauraj (@noobyysauraj)

ksau

+70-29
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ Cyan='\033[0;36m' # Cyan
1616
White='\033[0;37m' # White
1717

1818
set -o pipefail
19-
readonly file="$2"
20-
readonly u_folder="$3"
2119
readonly status_dir="$(mktemp -d)"
2220

2321
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
3129
echo ""
3230
echo "${orange}Please install jq manually, No script found"
3331
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
3634
${aqua}sudo dnf install jq ${normal}OR
3735
${aqua}sudo zypper install jq ${normal}OR
38-
${aqua}apk add jq ${normal}OR
36+
${aqua}apk add jq ${normal}OR
3937
${aqua}pkg install jq${normal}"
4038
echo ''
4139
}
@@ -61,19 +59,36 @@ setup () {
6159
then
6260
echo "${aqua}Dependencies not found. Make sure to proceed with the command 'ksau dependencies'"
6361
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
6765
${aqua}sudo dnf install jq ${normal}OR
6866
${aqua}sudo zypper install jq ${normal}OR
69-
${aqua}apk add jq ${normal}OR
67+
${aqua}apk add jq ${normal}OR
7068
${aqua}pkg install jq${normal}"
7169
exit
7270
fi
7371
fi
7472
echo "Setup Completed"
7573
}
7674

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}
7792
progress_bar() {
7893
if [ "$(tput cols)" -lt 84 ]; then
7994
[ -z $1 ] && set -- "(Starting)" "..." "..." "..."
@@ -106,12 +121,14 @@ progress_bar() {
106121
fi
107122
}
108123

124+
# Upload file to give folder and use new filename if -r argument was passed and printing out new animation.
109125
rclone_progress_bar() {
110126
tput civis
111127
echo "Starting download..."
112128
rm -f log
113129
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" &
115132
until [ -z "$(jobs -r)" ]; do
116133
if [ -f "$status_dir/failed" ]; then
117134
echo
@@ -124,6 +141,8 @@ rclone_progress_bar() {
124141
done #|| echo -ne "\rDownload Can't be completed, Check download link." && tput cnorm && exit 1
125142
tput cnorm
126143
}
144+
145+
# Final part of animation if upload was succesfull.
127146
end_animation() {
128147
tput civis
129148

@@ -194,6 +213,7 @@ function url_encode() {
194213
-e 's/~/%7e/g'
195214
}
196215

216+
# rclone_progress_bar -> progress_bar -> end_animation -> Print dowload link.
197217
upload () {
198218
echo "Initializing process, might take up to 10 seconds..."
199219
rclone_progress_bar
@@ -203,29 +223,37 @@ upload () {
203223
exit 1
204224
fi
205225
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')
209228
echo " Upload Completed "
210229
echo " Download link - ${lightgreen}https://index.sauraj.eu.org/${url_folder}/${url_file}${normal} "
211230
}
212231

213232
help () {
214233
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).
215242
216-
${aqua}Usage : ksau <options> <params>${normal}
243+
${aqua}setup${normal} : Recquired while using first time.
217244
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.
224253
225254
Example : ${lightgreen}ksau upload test.txt Public
226255
227256
${orange}Tool By Sauraj (@Ksauraj)${normal}
228-
229257
"
230258
}
231259

@@ -242,22 +270,35 @@ update () {
242270
}
243271

244272
version () {
245-
echo "${orange}Version - 1.4.2 (Stable) ${normal}"
273+
echo "${orange}Version - 1.5.1 (Stable) ${normal}"
246274
}
247275

248276
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
250288
elif [[ $1 == "setup" ]]; then
251-
setup
289+
setup
252290
elif [[ $1 == "dependencies" ]]; then
253-
dependencies
291+
dependencies
254292
elif [[ $1 == "update" ]]; then
255-
update
293+
update
256294
elif [[ $1 == "version" ]]; then
257-
version
295+
version
258296
elif [[ $1 == "help" ]]; then
259-
help
297+
help
260298
elif [[ $1 == "" ]]; then
261-
help
299+
help
300+
else
301+
echo "Unknown Argument passed."
302+
help
262303
fi
263304

0 commit comments

Comments
 (0)