Add README and upload function stub

master
Vladimir Hodakov 2019-03-30 04:44:51 +04:00
parent 1a93f57ff8
commit ff258dde2d
Signed by: Vladimir Hodakov
GPG Key ID: 673980B6882F82C6
4 changed files with 47 additions and 0 deletions

9
README.md Normal file
View File

@ -0,0 +1,9 @@
# Yandex.Disk File Pusher
## English
This app is useful when you want to upload single file to Yandex.Disk but don't want to fiddle with sync official client or WebDAV. It is especially useful for automating backups (e. g. in conjuction with Proxmox's ``vzdump``.)
## Russian
Эта утилита полезна, если вы хотите загрузить единичный файл на Яндекс.Диск, но не хотите связываться с полноценным приложением для синхронизации или WebDAV. Особенно такая утилита полезна для автоматизации заливки резервных копий (например, в связке с ``vzdump`` из состава Proxmox).

View File

@ -30,6 +30,20 @@ func New(cc *context.Context) {
DefaultValue: 0000000,
})
_ = c.Flagger.AddFlag(&flagger.Flag{
Name: "uploadPath",
Description: "Path to upload your file on Yandex.Disk. Must exist before uploading.",
Type: "string",
DefaultValue: "/",
})
_ = c.Flagger.AddFlag(&flagger.Flag{
Name: "file",
Description: "Path to file that will be uploaded. Max upload size - 50 GB",
Type: "string",
DefaultValue: "",
})
dlog.Info().Msg("Domain initialized")
}
@ -40,7 +54,14 @@ func Process() {
sendCode(authCode)
}
filePath, _ := c.Flagger.GetStringValue("file")
if filePath != "" {
uploadFile()
}
if !checkAuth() {
authorize()
}
showHelp()
}

15
domains/yandex/v1/help.go Normal file
View File

@ -0,0 +1,15 @@
// Yandex Disk File Pusher
// Copyright (c) 2019 Vladimir "fat0troll" Hodakov
package yandexv1
import (
"os"
)
func showHelp() {
dlog.Info().Msg("This app is authorized for uploading your files one by one to Yandex.Disk.")
dlog.Info().Msg("For information how to use this app, run yapusher with -h flag or head to https://github.com/fat0troll/yapusher/blob/master/README.")
os.Exit(0)
}

View File

@ -57,3 +57,5 @@ func sendCode(code int) {
os.Exit(0)
}
func uploadFile() {}