view cmds/multipass-add/add.go @ 18:00d30c67b56d

Put all the library stuff into multipass/file.
author Paul Fisher <paul@pfish.zone>
date Sun, 01 Nov 2015 12:16:51 -0500
parents 342f63116bfd
children
line wrap: on
line source

// multipass-add allows a user to add an entry to their multipass database.

package main

import (
	"bufio"
	"fmt"
	"os"

	"pfish.zone/go/multipass/file"
)

func main() {
	passfile, err := file.ForMe()
	if err != nil {
		fmt.Println(err.Error())
		os.Exit(1)
	}
	reader := bufio.NewReader(os.Stdin)
	fmt.Print("Describe password: ")
	text, err := reader.ReadString('\n')
	if err != nil {
		fmt.Println(err.Error())
		os.Exit(1)
	}
	text = text[:len(text)-1]
	entry, password, err := file.NewEntry(text)
	if err != nil {
		fmt.Println(err.Error())
		os.Exit(1)
	}
	err = passfile.Add(entry)
	if err != nil {
		fmt.Println("Couldn't create a password:")
		fmt.Println(err.Error())
		os.Exit(1)
	}
	fmt.Printf("New password: %s\n", password)
}