This repository has been archived by the owner on Sep 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
finish from
secman list
command pipe view and list functions
- Loading branch information
Showing
2 changed files
with
650 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,173 @@ | ||
package lister | ||
|
||
import ( | ||
"github.com/abdfnx/bubbles/list" | ||
"github.com/scmn-dev/secman/constants" | ||
tea "github.com/charmbracelet/bubbletea" | ||
"github.com/charmbracelet/bubbles/spinner" | ||
"github.com/charmbracelet/bubbles/viewport" | ||
"github.com/scmn-dev/secman/internal/shared" | ||
) | ||
|
||
type model struct { | ||
width, height int | ||
styles shared.Styles | ||
|
||
loginsList list.Model | ||
creditCardsList list.Model | ||
emailsList list.Model | ||
notesList list.Model | ||
serversList list.Model | ||
|
||
viewport viewport.Model | ||
spinner spinner.Model | ||
state int | ||
} | ||
|
||
const ( | ||
LOGIN = iota | ||
CC | ||
NOTE | ||
SERVER | ||
) | ||
|
||
var ( | ||
st = shared.DefaultStyles() | ||
states = []int{LOGIN, CC, EMAIL, NOTE, SERVER} | ||
) | ||
|
||
type Config interface { | ||
PWs(p string) []list.Item | ||
} | ||
|
||
var conf Config = SPW() | ||
|
||
func (m model) Init() tea.Cmd { | ||
return tea.Batch(m.spinner.Tick) | ||
} | ||
|
||
func (m *model) handleKeys(msg tea.KeyMsg) tea.Cmd { | ||
var cmds []tea.Cmd | ||
var cmd tea.Cmd | ||
|
||
switch msg.Type { | ||
case tea.KeyCtrlC: | ||
cmd = tea.Quit | ||
cmds = append(cmds, cmd) | ||
case tea.KeyTab: | ||
m.switchState(+1) | ||
default: | ||
m.loginsList, cmd = m.loginsList.Update(msg) | ||
cmds = append(cmds, cmd) | ||
|
||
m.creditCardsList, cmd = m.creditCardsList.Update(msg) | ||
cmds = append(cmds, cmd) | ||
|
||
m.emailsList, cmd = m.emailsList.Update(msg) | ||
cmds = append(cmds, cmd) | ||
|
||
m.notesList, cmd = m.notesList.Update(msg) | ||
cmds = append(cmds, cmd) | ||
|
||
m.serversList, cmd = m.serversList.Update(msg) | ||
cmds = append(cmds, cmd) | ||
|
||
m.viewport, cmd = m.viewport.Update(msg) | ||
cmds = append(cmds, cmd) | ||
|
||
m.spinner, cmd = m.spinner.Update(msg) | ||
cmds = append(cmds, cmd) | ||
} | ||
|
||
return tea.Batch(cmds...) | ||
} | ||
|
||
func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) { | ||
var ( | ||
cmds []tea.Cmd | ||
) | ||
|
||
switch msg := msg.(type) { | ||
case tea.WindowSizeMsg: | ||
m.width, m.height = msg.Width, msg.Height | ||
height := m.height | ||
|
||
listViewWidth := int(constants.LIST_PROPORTION * float64(m.width)) | ||
listWidth := listViewWidth - st.ListView.GetHorizontalFrameSize() | ||
m.loginsList.SetSize(listWidth, height) | ||
m.creditCardsList.SetSize(listWidth, height) | ||
m.emailsList.SetSize(listWidth, height) | ||
m.notesList.SetSize(listWidth, height) | ||
m.serversList.SetSize(listWidth, height) | ||
|
||
detailViewWidth := m.width - listViewWidth | ||
m.viewport = viewport.New(detailViewWidth, height) | ||
m.viewport.SetContent(m.detailView()) | ||
|
||
case tea.KeyMsg: | ||
cmds = append(cmds, m.handleKeys(msg)) | ||
} | ||
|
||
return m, tea.Batch(cmds...) | ||
} | ||
|
||
func Lister() *model { | ||
loginPWs := conf.PWs("-l") | ||
ccPWs := conf.PWs("-c") | ||
emailPWs := conf.PWs("-e") | ||
notePWs := conf.PWs("-n") | ||
serverPWs := conf.PWs("-s") | ||
|
||
l := list.NewModel(loginPWs, list.NewDefaultDelegate(), constants.SECMAN_LIST_WIDTH, constants.SECMAN_LIST_HEIGHT) | ||
l.Title = "Logins List" | ||
l.Styles.Title = st.ListTitle | ||
l.SetShowFilter(false) | ||
l.SetFilteringEnabled(false) | ||
|
||
c := list.NewModel(ccPWs, list.NewDefaultDelegate(), constants.SECMAN_LIST_WIDTH, constants.SECMAN_LIST_HEIGHT) | ||
c.Title = "Credit Cards List" | ||
c.Styles.Title = st.ListTitle | ||
c.SetShowFilter(false) | ||
c.SetFilteringEnabled(false) | ||
|
||
e := list.NewModel(emailPWs, list.NewDefaultDelegate(), constants.SECMAN_LIST_WIDTH, constants.SECMAN_LIST_HEIGHT) | ||
e.Title = "Emails List" | ||
e.Styles.Title = st.ListTitle | ||
e.SetShowFilter(false) | ||
e.SetFilteringEnabled(false) | ||
|
||
n := list.NewModel(notePWs, list.NewDefaultDelegate(), constants.SECMAN_LIST_WIDTH, constants.SECMAN_LIST_HEIGHT) | ||
n.Title = "Notes List" | ||
n.Styles.Title = st.ListTitle | ||
n.SetShowFilter(false) | ||
n.SetFilteringEnabled(false) | ||
|
||
r := list.NewModel(serverPWs, list.NewDefaultDelegate(), constants.SECMAN_LIST_WIDTH, constants.SECMAN_LIST_HEIGHT) | ||
r.Title = "Servers List" | ||
r.Styles.Title = st.ListTitle | ||
r.SetShowFilter(false) | ||
r.SetFilteringEnabled(false) | ||
|
||
s := spinner.New() | ||
s.Spinner = spinner.Dot | ||
|
||
m := &model{ | ||
styles: st, | ||
loginsList: l, | ||
creditCardsList: c, | ||
emailsList: e, | ||
notesList: n, | ||
serversList: r, | ||
spinner: s, | ||
state: LOGIN, | ||
} | ||
|
||
return m | ||
} | ||
|
||
func (m *model) switchState(direction int) { | ||
newState := (m.state + direction) % len(states) | ||
|
||
m.state = newState | ||
} |
Oops, something went wrong.