gosuki/browsers/firefox/cli_commands.go

130 lines
3.0 KiB
Go
Raw Normal View History

2023-09-16 15:25:25 +00:00
//
// Copyright ⓒ 2023 Chakib Ben Ziane <contact@blob42.xyz> and [`GoSuki` contributors]
// (https://github.com/blob42/gosuki/graphs/contributors).
//
// All rights reserved.
//
// SPDX-License-Identifier: AGPL-3.0-or-later
//
// This file is part of GoSuki.
//
// GoSuki is free software: you can redistribute it and/or modify it under the terms of
// the GNU Affero General Public License as published by the Free Software Foundation,
// either version 3 of the License, or (at your option) any later version.
//
// GoSuki is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
// PURPOSE. See the GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License along with
// gosuki. If not, see <http://www.gnu.org/licenses/>.
// 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"
2023-09-16 19:41:33 +00:00
"git.blob42.xyz/gosuki/gosuki/cmd"
"git.blob42.xyz/gosuki/gosuki/internal/logging"
"git.blob42.xyz/gosuki/gosuki/pkg/browsers/mozilla"
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,
}
2019-02-26 10:23:00 +00:00
ffCheckVFSCmd = cli.Command{
Name: "check",
Aliases: []string{"c"},
Action: ffCheckVFS,
}
2019-02-26 10:23:00 +00:00
ffVFSCommands = cli.Command{
Name: "vfs",
Usage: "VFS locking commands",
Subcommands: []*cli.Command{
&ffUnlockVFSCmd,
&ffCheckVFSCmd,
2019-02-26 10:23:00 +00:00
},
}
ffListProfilesCmd = cli.Command{
Name: "list",
Aliases: []string{"l"},
Action: ffListProfiles,
}
2019-02-26 10:23:00 +00:00
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
//FIX: Remove since profile listing is implemented at the main module level
func ffListProfiles(_ *cli.Context) error {
flavours := FirefoxProfileManager.ListFlavours()
for _, f := range flavours {
profs, err := FirefoxProfileManager.GetProfiles(f.Name)
if err != nil {
return err
}
for _, p := range profs {
if fullPath, err := p.AbsolutePath(); err != nil {
return err
} else {
fmt.Printf("%-10s \t %s\n", p.Name, fullPath)
}
}
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
}