2018-03-29 09:10:19 +02:00
|
|
|
|
package link
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
|
|
"github.com/ncw/rclone/cmd"
|
|
|
|
|
"github.com/ncw/rclone/fs/operations"
|
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
|
cmd.Root.AddCommand(commandDefintion)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var commandDefintion = &cobra.Command{
|
|
|
|
|
Use: "link remote:path",
|
|
|
|
|
Short: `Generate public link to file/folder.`,
|
|
|
|
|
Long: `
|
|
|
|
|
rclone link will create or retrieve a public link to the given file or folder.
|
|
|
|
|
|
|
|
|
|
rclone link remote:path/to/file
|
|
|
|
|
rclone link remote:path/to/folder/
|
|
|
|
|
|
|
|
|
|
If successful, the last line of the output will contain the link. Exact
|
|
|
|
|
capabilities depend on the remote, but the link will always be created with
|
|
|
|
|
the least constraints – e.g. no expiry, no password protection, accessible
|
|
|
|
|
without account.
|
|
|
|
|
`,
|
|
|
|
|
Run: func(command *cobra.Command, args []string) {
|
|
|
|
|
cmd.CheckArgs(1, 1, command, args)
|
|
|
|
|
fsrc, remote := cmd.NewFsFile(args[0])
|
|
|
|
|
cmd.Run(false, false, command, func() error {
|
|
|
|
|
link, err := operations.PublicLink(fsrc, remote)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
2018-09-04 21:02:35 +02:00
|
|
|
|
if link != "" {
|
|
|
|
|
fmt.Println(link)
|
|
|
|
|
}
|
2018-03-29 09:10:19 +02:00
|
|
|
|
return nil
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
}
|