get url to copy of self

This commit is contained in:
2018-09-27 13:24:59 +03:00
parent 1609ac6bc8
commit 0c50cd2045
2 changed files with 11 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ from utils.utils import *
from utils.crypt import * from utils.crypt import *
__FLEES_VERSION__ = "20180920.0" __FLEES_VERSION__ = "20180927.0"
app = Flask(__name__) app = Flask(__name__)
app.config.from_object(__name__) app.config.from_object(__name__)
config_values = read_config(app) config_values = read_config(app)

View File

@@ -15,6 +15,7 @@ _help() {
url Get the direct share url url Get the direct share url
upload Get URL for uploads [no arguments] upload Get URL for uploads [no arguments]
update Update flip client [no arguments] update Update flip client [no arguments]
self Get URL to install this client to another computer
Name: Any string for the clipboard name. default: 0 Name: Any string for the clipboard name. default: 0
@@ -128,7 +129,14 @@ _url() { # name
} }
_upload_url() { _upload_url() {
echo "This information is a security risk, watch where it's shared" echo "This information is a security risk, watch where it's shared"
echo "curl -s $FLEES_ROOTURL/script/upload/$FLEES_SHARE/$FLEES_TOKEN | bash /dev/stdin file_to_upload.ext" echo "# curl -s $FLEES_ROOTURL/script/upload/$FLEES_SHARE/$FLEES_TOKEN | bash /dev/stdin file_to_upload.ext"
exit
}
_self_url() {
SELF=$( basename "$0" )
echo "This information is a security risk, watch where it's shared!"
echo ""
echo "# curl $FLEES_ROOTURL/script/flip/$FLEES_SHARE/$FLEES_TOKEN -o $SELF && chmod +x $SELF"
exit exit
} }
_msg() { _msg() {
@@ -177,6 +185,7 @@ CMD=list
[[ "$1" = "url" ]] && { CMD=url; ARG1=$CMD; } [[ "$1" = "url" ]] && { CMD=url; ARG1=$CMD; }
[[ "$1" = "update" ]] && { _update_client; } [[ "$1" = "update" ]] && { _update_client; }
[[ "$1" = "upload" ]] && { _upload_url; } [[ "$1" = "upload" ]] && { _upload_url; }
[[ "$1" = "self" ]] && { _self_url; }
[[ "$1" = "h" || "$1" = "help" ]] && _help [[ "$1" = "h" || "$1" = "help" ]] && _help
[[ "$CMD" = list ]] && { [[ "$CMD" = list ]] && {