gosuki/firefox/cli_commands.go

100 lines
1.9 KiB
Go
Raw Normal View History

// TODO: add cli options to set/get options
// TODO: move browser module commands to their own module packag
2022-11-07 20:58:35 +00:00
package firefox
2019-02-26 10:23:00 +00:00
import (
"fmt"
2022-11-07 20:58:35 +00:00
"git.sp4ke.xyz/sp4ke/gomark/cmd"
2020-11-06 17:50:36 +00:00
"git.sp4ke.xyz/sp4ke/gomark/logging"
2022-11-07 20:58:35 +00:00
"git.sp4ke.xyz/sp4ke/gomark/mozilla"
"git.sp4ke.xyz/sp4ke/gomark/utils"
2019-02-26 10:23:00 +00:00
2020-08-12 18:13:01 +00:00
"github.com/urfave/cli/v2"
2019-02-26 10:23:00 +00:00
)
var fflog = logging.GetLogger("FF")
var ffUnlockVFSCmd = cli.Command{
Name: "unlock",
Aliases: []string{"u"},
Action: ffUnlockVFS,
}
var ffCheckVFSCmd = cli.Command{
Name: "check",
Aliases: []string{"c"},
Action: ffCheckVFS,
}
var ffVFSCommands = cli.Command{
Name: "vfs",
Usage: "VFS locking commands",
Subcommands: []*cli.Command{
&ffUnlockVFSCmd,
&ffCheckVFSCmd,
2019-02-26 10:23:00 +00:00
},
}
var ffListProfilesCmd = cli.Command{
Name: "list",
Aliases: []string{"l"},
Action: ffListProfiles,
}
var ffProfilesCmds = cli.Command{
Name: "profiles",
Aliases: []string{"p"},
Usage: "Profiles commands",
Subcommands: []*cli.Command{
&ffListProfilesCmd,
2019-02-26 10:23:00 +00:00
},
}
var FirefoxCmds = &cli.Command{
2019-02-26 10:23:00 +00:00
Name: "firefox",
Aliases: []string{"ff"},
Usage: "firefox related commands",
Subcommands: []*cli.Command{
&ffVFSCommands,
&ffProfilesCmds,
2019-02-26 10:23:00 +00:00
},
//Action: unlockFirefox,
}
2022-11-07 20:58:35 +00:00
func init() {
cmd.RegisterModCommand(BrowserName, FirefoxCmds)
}
//TODO: #54 define interface for modules to handle and list profiles
func ffListProfiles(_ *cli.Context) error {
2022-11-07 20:58:35 +00:00
profs, err := FirefoxProfileManager.GetProfiles()
2019-02-26 10:23:00 +00:00
if err != nil {
return err
2019-02-26 10:23:00 +00:00
}
for _, p := range profs {
2022-12-11 22:06:07 +00:00
fmt.Printf("%-10s \t %s\n", p.Name, utils.ExpandPath(FirefoxProfileManager.ConfigDir, p.Path))
2019-02-26 10:23:00 +00:00
}
2019-02-26 18:41:02 +00:00
return nil
2019-02-26 10:23:00 +00:00
}
func ffCheckVFS(_ *cli.Context) error {
2022-11-07 20:58:35 +00:00
err := mozilla.CheckVFSLock("path to profile")
2019-02-26 10:23:00 +00:00
if err != nil {
return err
2019-02-26 10:23:00 +00:00
}
return nil
2019-02-26 10:23:00 +00:00
}
func ffUnlockVFS(_ *cli.Context) error {
2022-11-07 20:58:35 +00:00
err := mozilla.UnlockPlaces("path to profile")
2019-02-26 10:23:00 +00:00
if err != nil {
return err
2019-02-26 10:23:00 +00:00
}
return nil
2019-02-26 10:23:00 +00:00
}