1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
package cmd
import (
"encoding/json"
"fmt"
"git.db.org.ai/dborg/internal/client"
"git.db.org.ai/dborg/internal/config"
"github.com/spf13/cobra"
)
var xCmd = &cobra.Command{
Use: "x [username]",
Short: "Search Twitter/X username history",
Long: `Search for Twitter/X username history and previous usernames`,
Args: cobra.ExactArgs(1),
RunE: runXSearch,
}
func init() {
rootCmd.AddCommand(xCmd)
}
func runXSearch(cmd *cobra.Command, args []string) error {
apiKey, _ := cmd.Flags().GetString("api-key")
cfg := config.New().WithAPIKey(apiKey)
c, err := client.New(cfg)
if err != nil {
return err
}
response, err := c.SearchTwitterHistory(args[0])
if err != nil {
return err
}
if response.Error != "" {
return fmt.Errorf("API error: %s", response.Error)
}
if len(response.PreviousUsernames) > 0 {
output, err := json.MarshalIndent(response.PreviousUsernames, "", " ")
if err != nil {
return fmt.Errorf("failed to format response: %w", err)
}
fmt.Println(string(output))
} else if response.Response != "" {
fmt.Println(response.Response)
} else if response.Data != nil {
output, err := json.MarshalIndent(response.Data, "", " ")
if err != nil {
return fmt.Errorf("failed to format response: %w", err)
}
fmt.Println(string(output))
} else {
fmt.Println("No username history found")
}
return nil
}
|