Skip to content

Commit

Permalink
Add README and upload function stub
Browse files Browse the repository at this point in the history
  • Loading branch information
fat0troll committed Mar 30, 2019
1 parent 1a93f57 commit ff258dd
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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).
21 changes: 21 additions & 0 deletions domains/yandex/v1/exported.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}

Expand All @@ -40,7 +54,14 @@ func Process() {
sendCode(authCode)
}

filePath, _ := c.Flagger.GetStringValue("file")
if filePath != "" {
uploadFile()
}

if !checkAuth() {
authorize()
}

showHelp()
}
15 changes: 15 additions & 0 deletions domains/yandex/v1/help.go
Original file line number Diff line number Diff line change
@@ -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)
}
2 changes: 2 additions & 0 deletions domains/yandex/v1/requests.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,5 @@ func sendCode(code int) {

os.Exit(0)
}

func uploadFile() {}

0 comments on commit ff258dd

Please sign in to comment.