Lint / lint (push) Waiting to run
Release / Release (push) Waiting to run
Scan for secrets / test (push) Waiting to run
Snifftest / Run Snifftest (push) Waiting to run
Test / test (push) Waiting to run
Test / test-detectors (push) Waiting to run
Test / test-community (push) Waiting to run
* Init attempt at tui with bubble tea. Co-authored-by: mcastorina <[email protected]> * Add starting and source selection options Co-authored-by: mcastorina <[email protected]> * Rewrite models into a state machine * Update source descriptions * Make subpages implement tea.Model * Rename page0 and page1 to be more descriptive * Adjust styling and adding color consts Co-authored-by: mcastorina <[email protected]> * Add helper generic function to call Update and type cast * Setup plumbing for source configuration page * Use CLI introspection for source configuration (WIP) * Experiment with table view * Replace table with form fields Co-authored-by: mcastorina <[email protected]> * Change 🔒 to 💸 * Copy components from soft-serve Co-authored-by: hxnyk <[email protected]> * Copy styles from soft-serve Co-authored-by: hxnyk <[email protected]> * Copy common from soft-serve Co-authored-by: hxnyk <[email protected]> * Refactor into pages This is still a WIP, but the main structure is there. Co-authored-by: hxnyk <[email protected]> * Trying out selector for wizard intro Co-authored-by: mcastorina <[email protected]> * Use selector with custom View Co-authored-by: hxnyk <[email protected]> * Change Item to be an enum Co-authored-by: hxnyk <[email protected]> * Add link pages Co-authored-by: mcastorina <[email protected]> * Update source select to use selector Co-authored-by: mcastorina <[email protected]> * Delete source configure page and add blank tabs Co-authored-by: hxnyk <[email protected]> * Add tab placeholder pages for configurationi Co-authored-by: mcastorina <[email protected]> * Added headers and style to each tab Co-authored-by: hxnyk <[email protected]> * Update with new sources * Remove kingpin attribute from SourceItem * Add basic form field and source structuring * Hookup git form fields with an underlying textinput component Co-authored-by: hxnyk <[email protected]> * Update forms for git and github Co-authored-by: mcastorina <[email protected]> * Add labels per text input * Add sources and adjust styling * add basic trufflehog configuration page * Add skip button to textinputs component * Emit and handle textinputs skip/submit button commands * Don't quit when q is pressed on the sourceConfigurePage * Build trufflehog command based on source config vals Co-authored-by: mcastorina <[email protected]> * Build flags based on truffle config inputs * Update summary section * Add generated truffle fields Co-authored-by: mcastorina <[email protected]> * update summary to correctly print info * Go back a page when escape key is pressed * WIP run page list Co-authored-by: hxnyk <[email protected]> * Allow running trufflehog from the run page Co-authored-by: hxnyk <[email protected]> * Add option to view help docs Co-authored-by: mcastorina <[email protected]> * comment out unused styles and remove unused types * Capitalize H in TruffleHog * remove unneeded fmt.Sprintf --------- Co-authored-by: mcastorina <[email protected]>
72 lines
1.6 KiB
Go
72 lines
1.6 KiB
Go
package source_configure
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/charmbracelet/bubbles/key"
|
|
tea "github.com/charmbracelet/bubbletea"
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/tui/common"
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/tui/sources"
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/tui/styles"
|
|
)
|
|
|
|
type SourceComponent struct {
|
|
common.Common
|
|
parent *SourceConfigure
|
|
form tea.Model
|
|
}
|
|
|
|
func NewSourceComponent(common common.Common, parent *SourceConfigure) *SourceComponent {
|
|
return &SourceComponent{
|
|
Common: common,
|
|
parent: parent,
|
|
}
|
|
}
|
|
|
|
func (m *SourceComponent) SetForm(form tea.Model) {
|
|
m.form = form
|
|
}
|
|
|
|
func (m *SourceComponent) Init() tea.Cmd {
|
|
return nil
|
|
}
|
|
|
|
func (m *SourceComponent) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
|
// TODO: Add a focus variable.
|
|
if m.form != nil {
|
|
model, cmd := m.form.Update(msg)
|
|
m.form = model
|
|
return m, cmd
|
|
}
|
|
return m, nil
|
|
}
|
|
|
|
func (m *SourceComponent) View() string {
|
|
var view strings.Builder
|
|
|
|
view.WriteString(styles.BoldTextStyle.Render("\nConfiguring "+styles.PrimaryTextStyle.Render(m.parent.configTabSource)) + "\n")
|
|
|
|
view.WriteString(styles.HintTextStyle.Render("* required field") + "\n\n")
|
|
|
|
sourceNote := sources.GetSourceNotes(m.parent.configTabSource)
|
|
if len(sourceNote) > 0 {
|
|
view.WriteString("⭐ " + sourceNote + " ⭐\n\n")
|
|
}
|
|
|
|
if m.form != nil {
|
|
view.WriteString(m.form.View())
|
|
view.WriteString("\n")
|
|
}
|
|
return view.String()
|
|
}
|
|
|
|
func (m *SourceComponent) ShortHelp() []key.Binding {
|
|
// TODO: actually return something
|
|
return nil
|
|
}
|
|
|
|
func (m *SourceComponent) FullHelp() [][]key.Binding {
|
|
// TODO: actually return something
|
|
return nil
|
|
}
|