aboutsummaryrefslogblamecommitdiff
path: root/cmd/add.go
blob: 6367f10baf0a833e674d16b54817df534faad8e7 (plain) (tree)
1
2
3
4
5
6
7
8
9




                 
                                
                                

                                                  





























                                                                          







                                          











                                                                                     
package cmd

import (
	"strings"

	"github.com/spf13/afero"
	"github.com/spf13/cobra"

	"github.com/neonxp/track/internal/tracker"
)

// addCmd represents the add command
var addCmd = &cobra.Command{
	Use:   "add",
	Short: "Add activity",
	Long:  `Add new activity that we can track`,
	Run: func(cmd *cobra.Command, args []string) {
		titles := []string{}
		tags := []string{}
		contexts := []string{}
		for _, s := range args {
			if len(s) == 0 {
				continue
			}
			if s[0:1] == "#" {
				if len(s[1:]) >= 1 {
					tags = append(tags, s[1:])
					continue
				}
			}
			if s[0:1] == "@" {
				if len(s[1:]) >= 1 {
					contexts = append(contexts, s[1:])
					continue
				}
			}
			titles = append(titles, s)
		}
		title := strings.Join(titles, " ")

		fs := afero.NewOsFs()
		tr, err := tracker.New(fs)
		if err != nil {
			cmd.PrintErr(err)
			return
		}

		activityID, err := tr.Add(title, tags, contexts)
		if err != nil {
			cmd.PrintErr(err)
			return
		}
		cmd.Printf("Activity #%d added! Now you can start it.\n", activityID)
	},
}

func init() {
	rootCmd.AddCommand(addCmd)
}