-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcmd_put.go
40 lines (33 loc) · 1.19 KB
/
cmd_put.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
////////////////////////////////////////////////////////////////////////////
// Program: wireframe
// Purpose: wire framing
// Authors: Myself <[email protected]> (c) 2018, All rights reserved
////////////////////////////////////////////////////////////////////////////
package main
import (
"fmt"
"io"
"io/ioutil"
"os"
"github.com/mkideal/cli"
"github.com/mkideal/cli/clis"
)
////////////////////////////////////////////////////////////////////////////
// put
func putCLI(ctx *cli.Context) error {
rootArgv = ctx.RootArgv().(*rootT)
argv := ctx.Argv().(*putT)
clis.Setup(fmt.Sprintf("%s::%s", progname, ctx.Path()), rootArgv.Verbose.Value())
clis.Verbose(2, "<%s> -\n %+v\n %+v\n %v\n", ctx.Path(), rootArgv, argv, ctx.Args())
Opts.Self, Opts.Host, Opts.Port, Opts.Daemonize, Opts.Verbose =
rootArgv.Self, rootArgv.Host, rootArgv.Port, rootArgv.Daemonize, rootArgv.Verbose.Value()
fileo, err := ioutil.TempFile(os.TempDir(), progname+".tmp.")
clis.AbortOn("Create temp file", err)
return DoPut(argv.Filei, fileo)
}
//
func DoPut(bi io.Reader, bw io.Writer) error {
fmt.Printf("%s v %s. Upload into service\n", progname, version)
fmt.Println("Copyright (C) 2018, Myself <[email protected]>")
return nil
}