Skip to content

Commit e92c027

Browse files
committed
feat: add Output
1 parent 7aaefb1 commit e92c027

12 files changed

+77
-69
lines changed

cmd/author.go

+7-4
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,20 @@ func authorRun(cmd *cobra.Command, args []string) {
4545
return
4646
}
4747
if result.Data.Email != "" {
48+
raw, _ := result.Marshal()
4849
if init.JSON {
49-
raw, _ := result.Marshal()
5050
json, _ := output.DisplayJSON(string(raw))
5151
fmt.Println(json)
52-
return
5352
}
5453
if init.YAML {
55-
raw, _ := result.Marshal()
5654
yaml, _ := output.DisplayYAML(string(raw))
5755
fmt.Println(yaml)
58-
return
56+
}
57+
if init.Output != "" {
58+
err := output.CreateOutput(init.Output, string(raw))
59+
if err != nil {
60+
fmt.Println("Error creating file:", err)
61+
}
5962
}
6063
return
6164
}

cmd/count.go

+7-4
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,20 @@ func countRun(cmd *cobra.Command, args []string) {
4646
return
4747
}
4848
if result.Data.Total > 0 {
49+
raw, _ := result.Marshal()
4950
if init.JSON {
50-
raw, _ := result.Marshal()
5151
json, _ := output.DisplayJSON(string(raw))
5252
fmt.Println(json)
53-
return
5453
}
5554
if init.YAML {
56-
raw, _ := result.Marshal()
5755
yaml, _ := output.DisplayYAML(string(raw))
5856
fmt.Println(yaml)
59-
return
57+
}
58+
if init.Output != "" {
59+
err := output.CreateOutput(init.Output, string(raw))
60+
if err != nil {
61+
fmt.Println("Error creating file:", err)
62+
}
6063
}
6164
return
6265
}

cmd/enrich.go

+7-4
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,20 @@ func enrichRun(cmd *cobra.Command, args []string) {
4646
return
4747
}
4848
if result.Data.Email != "" {
49+
raw, _ := result.Marshal()
4950
if init.JSON {
50-
raw, _ := result.Marshal()
5151
json, _ := output.DisplayJSON(string(raw))
5252
fmt.Println(json)
53-
return
5453
}
5554
if init.YAML {
56-
raw, _ := result.Marshal()
5755
yaml, _ := output.DisplayYAML(string(raw))
5856
fmt.Println(yaml)
59-
return
57+
}
58+
if init.Output != "" {
59+
err := output.CreateOutput(init.Output, string(raw))
60+
if err != nil {
61+
fmt.Println("Error creating file:", err)
62+
}
6063
}
6164
return
6265
}

cmd/linkedin.go

+7-4
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,20 @@ func linkedinRun(cmd *cobra.Command, args []string) {
4646
return
4747
}
4848
if result.Data.Email != "" {
49+
raw, _ := result.Marshal()
4950
if init.JSON {
50-
raw, _ := result.Marshal()
5151
json, _ := output.DisplayJSON(string(raw))
5252
fmt.Println(json)
53-
return
5453
}
5554
if init.YAML {
56-
raw, _ := result.Marshal()
5755
yaml, _ := output.DisplayYAML(string(raw))
5856
fmt.Println(yaml)
59-
return
57+
}
58+
if init.Output != "" {
59+
err := output.CreateOutput(init.Output, string(raw))
60+
if err != nil {
61+
fmt.Println("Error creating file:", err)
62+
}
6063
}
6164
return
6265
}

cmd/root.go

-3
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ func init() {
2929
rootCmd.PersistentFlags().StringVarP(&conn.Secret, "secret", "s", "", "Tomba API SECRET.")
3030
rootCmd.PersistentFlags().StringVarP(&conn.Target, "target", "t", "", "TARGET SPECIFICATION Can pass email, Domain, URL, Linkedin URL.")
3131
rootCmd.PersistentFlags().StringVarP(&conn.Output, "output", "o", "", "Save the results to file.")
32-
rootCmd.PersistentFlags().BoolVarP(&conn.Pretty, "pretty", "p", true, "output pretty format.")
33-
rootCmd.PersistentFlags().BoolVarP(&conn.Color, "color", "n", true, "disable color output.")
3432
rootCmd.PersistentFlags().BoolVarP(&conn.JSON, "json", "j", true, "output JSON format.")
35-
rootCmd.PersistentFlags().BoolVarP(&conn.CSV, "csv", "c", false, "output CSV format.")
3633
rootCmd.PersistentFlags().BoolVarP(&conn.YAML, "yaml", "y", false, "output YAML format.")
3734
}

cmd/search.go

+7-4
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,20 @@ func searchRun(cmd *cobra.Command, args []string) {
4646
return
4747
}
4848
if result.Meta.Total > 0 {
49+
raw, _ := result.Marshal()
4950
if init.JSON {
50-
raw, _ := result.Marshal()
5151
json, _ := output.DisplayJSON(string(raw))
5252
fmt.Println(json)
53-
return
5453
}
5554
if init.YAML {
56-
raw, _ := result.Marshal()
5755
yaml, _ := output.DisplayYAML(string(raw))
5856
fmt.Println(yaml)
59-
return
57+
}
58+
if init.Output != "" {
59+
err := output.CreateOutput(init.Output, string(raw))
60+
if err != nil {
61+
fmt.Println("Error creating file:", err)
62+
}
6063
}
6164
return
6265
}

cmd/status.go

+7-4
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,19 @@ func statusRun(cmd *cobra.Command, args []string) {
4444
fmt.Println(util.ErrorIcon(), util.Red(start.ErrErrInvalidLogin.Error()))
4545
return
4646
}
47+
raw, _ := result.Marshal()
4748
if init.JSON {
48-
raw, _ := result.Marshal()
4949
json, _ := output.DisplayJSON(string(raw))
5050
fmt.Println(json)
51-
return
5251
}
5352
if init.YAML {
54-
raw, _ := result.Marshal()
5553
yaml, _ := output.DisplayYAML(string(raw))
5654
fmt.Println(yaml)
57-
return
55+
}
56+
if init.Output != "" {
57+
err := output.CreateOutput(init.Output, string(raw))
58+
if err != nil {
59+
fmt.Println("Error creating file:", err)
60+
}
5861
}
5962
}

cmd/verify.go

+7-4
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,20 @@ func verifyRun(cmd *cobra.Command, args []string) {
5151
fmt.Println(util.WarningIcon(), util.Yellow("Tomba is designed to contact other professionals. This email is used to create personal email addresses so we don't the verification. 💡"))
5252
return
5353
}
54+
raw, _ := result.Marshal()
5455
if init.JSON {
55-
raw, _ := result.Marshal()
5656
json, _ := output.DisplayJSON(string(raw))
5757
fmt.Println(json)
58-
return
5958
}
6059
if init.YAML {
61-
raw, _ := result.Marshal()
6260
yaml, _ := output.DisplayYAML(string(raw))
6361
fmt.Println(yaml)
64-
return
62+
}
63+
if init.Output != "" {
64+
err := output.CreateOutput(init.Output, string(raw))
65+
if err != nil {
66+
fmt.Println("Error creating file:", err)
67+
}
6568
}
6669
return
6770
}

pkg/output/file.go

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
package output
2+
3+
import "os"
4+
5+
// CreateOutput creates a new file with the given filename and writes the data to it.
6+
func CreateOutput(filename string, data string) error {
7+
// Create a new file with the given filename
8+
file, err := os.Create(filename)
9+
if err != nil {
10+
return err
11+
}
12+
defer file.Close()
13+
14+
// Write the data to the file
15+
_, err = file.WriteString(data)
16+
if err != nil {
17+
return err
18+
}
19+
20+
return nil
21+
}

pkg/output/table.go

-32
This file was deleted.

pkg/start/init.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ type Parameters struct {
2020
Target string // Can pass email, Domain, URL, Linkedin URL or TXT file for bulk.
2121
Output string
2222
JSON bool
23-
CSV bool
2423
YAML bool
2524
Color bool
2625
Pretty bool
@@ -31,6 +30,9 @@ type Parameters struct {
3130
func New(conn Conn) *Conn {
3231
// Read the config file
3332
conf, err := config.ReadConfigFile()
33+
if conn.YAML {
34+
conn.Parameters.JSON = false
35+
}
3436
if err != nil {
3537
fmt.Println("Error reading config file:", err)
3638
}

snapcraft.yaml

+4-5
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ description: |
55
Tomba.io (CLI) utility to search or verify lists of email addresses in minutes can significantly improve productivity and efficiency for individuals and businesses dealing with large email databases. This utility can automate the process of checking the validity and deliverability of email addresses, saving valuable time and resources. Let's explore the features and benefits of such a CLI utility:
66
77
* Instantly locate email addresses from any website https://tomba.io/domain-search .
8-
* Email verify to confirm an email address' authenticity https://tomba.io/email-verifier.
9-
* Enrich email with data. https://tomba.io/enrichment https://tomba.io/enrichment.
10-
* Instantly discover the email addresses of Linkedin URLs https://tomba.io/linkedin-finder.
11-
* Instantly discover the email addresses of article authors https://tomba.io/author-finder.
8+
* Email verify to confirm an email address' authenticity https://tomba.io/email-verifier .
9+
* Enrich email with data https://tomba.io/enrichment .
10+
* Instantly discover the email addresses of Linkedin URLs https://tomba.io/linkedin-finder .
11+
* Instantly discover the email addresses of article authors https://tomba.io/author-finder .
1212
1313
This snap is built via the build.snapcraft.io service from the snapcraft.yaml definition at https://github.com/tomba-io/email to ensure source and build transparency.
1414
issues: https://github.com/tomba-io/email/issues
@@ -20,7 +20,6 @@ grade: stable
2020
base: core20
2121

2222
confinement: strict
23-
adopt-info: email
2423

2524
apps:
2625
email:

0 commit comments

Comments
 (0)