Files
MUTN/main.go
T

155 lines
3.5 KiB
Go

package main
import (
"github.com/rwinkhart/MUTN/src/cli"
"github.com/rwinkhart/MUTN/src/offline"
"os"
"strings"
)
func main() {
args := os.Args
argsCount := len(args)
// if no arguments are supplied...
if argsCount == 1 {
// list all entries
cli.EntryListGen()
} else {
// if the first argument is an entry...
if strings.HasPrefix(args[1], "/") {
// store location of target entry
targetLocation := offline.EntryRoot + offline.PathSeparator + args[1][1:]
// entry reader shortcut (if no other arguments are supplied)
if argsCount == 2 {
cli.EntryReaderShortcut(targetLocation, true)
// perform other operations on the entry (if other arguments are supplied)
} else if argsCount == 3 {
switch args[2] {
case "show", "-s":
cli.EntryReaderShortcut(targetLocation, false)
case "shear":
offline.Shear(targetLocation)
case "gen":
cli.AddEntry(targetLocation, true, 1)
case "copy":
cli.HelpCopy()
case "edit":
cli.HelpEdit()
case "add":
cli.HelpAdd()
default:
cli.HelpMain()
}
} else if argsCount >= 4 {
// declare entry field to perform target operation on
switch args[2] {
case "copy":
var field int // indicates which (numbered) field to copy
switch args[3] {
case "password", "-p":
field = 0
case "username", "-u":
field = 1
case "url", "-l":
field = 2
case "note", "-n":
field = 3
default:
cli.HelpCopy()
}
offline.CopyArgument(targetLocation, field, args[0])
case "edit":
var field rune
field = field // TODO temporary to avoid unused variable error
switch args[3] {
case "password", "-p":
field = 'p'
case "username", "-u":
field = 'u'
case "url", "-l":
field = 'l'
case "note", "-n":
field = 'n'
case "rename", "-r":
cli.RenameCli(targetLocation)
default:
cli.HelpEdit()
}
// TODO offline.EditEntry(targetLocation, field), exit after run
case "add":
switch args[3] {
case "password", "-p":
if argsCount == 4 {
cli.AddEntry(targetLocation, true, 0)
} else {
switch args[4] {
case "show", "-s":
cli.AddEntry(targetLocation, false, 0)
default:
cli.AddEntry(targetLocation, true, 0)
}
}
case "note", "-n":
cli.AddEntry(targetLocation, true, 2)
case "folder", "-f":
offline.AddFolder(targetLocation)
default:
cli.HelpAdd()
}
case "gen":
if argsCount == 4 {
switch args[3] {
case "show", "-s":
cli.AddEntry(targetLocation, false, 1)
case "update", "-u": // TODO offline.GenUpdate(targetLocation), exit after run
default:
cli.HelpGen()
}
} else if args[3] == "update" || args[3] == "-u" {
switch args[4] {
case "show", "-s":
cli.AddEntry(targetLocation, false, 1)
default:
cli.AddEntry(targetLocation, true, 1)
}
}
cli.HelpGen()
default:
cli.HelpMain()
}
}
// if the first argument is not an entry...
} else {
switch args[1] {
case "clipclear":
offline.ClipClearArgument()
case "sync": // TODO online.Sync(), exit after run
case "init": // TODO offline.Init(), exit after run
case "tweak": // TODO offline.Tweak(), exit after run
case "add":
cli.HelpAdd()
case "edit":
cli.HelpEdit()
case "copy":
cli.HelpCopy()
case "gen":
cli.HelpGen()
case "version", "-v":
cli.Version()
default:
cli.HelpMain()
}
}
}
}