scut-reminder/scut.go

149 lines
3.7 KiB
Go
Raw Normal View History

2023-07-25 14:29:22 -04:00
package main
import (
"encoding/json"
"flag"
"fmt"
"io/ioutil"
2023-07-25 22:08:58 -04:00
"os"
"path/filepath"
"strings"
"text/tabwriter"
"unicode"
2023-07-25 14:29:22 -04:00
)
type App struct {
Name string `json:"name"`
Shortcuts map[string]string `json:"shortcuts"`
}
type Config struct {
Apps []App `json:"apps"`
}
2023-07-26 10:52:41 -04:00
func getHomeDir() string {
// get home directory
home, err := os.UserHomeDir()
if err != nil {
panic(err)
}
return home
}
func getConfigScutDir() string {
// get home directory
home := getHomeDir()
// get config directory
configDir := home + "/.config/scut/config/"
return configDir
}
2023-07-25 22:08:58 -04:00
func loadConfig(dir string) Config {
apps := []App{}
// Ouvre le répertoire config
files, err := ioutil.ReadDir(dir)
if err != nil {
//panic(err)
fmt.Println("Le répertoire config est inexistant !")
os.Exit(1)
}
// Lis tous les fichiers .json
for _, file := range files {
if filepath.Ext(file.Name()) == ".json" {
data, _ := ioutil.ReadFile(dir + "/" + file.Name())
var app App
json.Unmarshal(data, &app)
apps = append(apps, app)
}
}
config := Config{
Apps: apps,
}
return config
}
2023-07-25 14:29:22 -04:00
func main() {
2023-07-25 22:08:58 -04:00
underline := "- -- - -- - -- - -- - -- - -- - -- - -- - -- - --"
2023-07-25 14:29:22 -04:00
flag.Usage = func() {
fmt.Println("")
2023-07-25 22:08:58 -04:00
fmt.Println(underline)
fmt.Println(" Scut-Reminder : Gestion des raccourcis")
fmt.Println(underline)
fmt.Println("\n Options :")
fmt.Println(underline)
fmt.Printf(" -c PathDuDossierConfig || Path du dossier de configuration au lieu du répertoire ./config (par défaut)\n")
fmt.Printf(" -a Nom Application || Afficher les raccourcis de l'application spécifiée\n")
fmt.Printf(" -f fitre || Filtrer les raccourcis qui contiennent le filtre\n")
fmt.Printf(" -h || Afficher cette aide\n")
2023-07-25 14:29:22 -04:00
fmt.Println("")
2023-07-25 22:08:58 -04:00
fmt.Println(" Example :")
fmt.Println(underline)
fmt.Printf(" scut || Affiche la liste des applications\n\n")
fmt.Printf(" scut -c MaConfig.json -a \"nevim\" || Affiche liste des raccourcis de nevim de MaConfig.json \n\n")
fmt.Printf(" scut -a \"Visual Studio Code\" || Affiche liste des raccourcis de vscode \n\n")
fmt.Printf(" scut -a \"Kitty\" -f quit || Affiche liste des raccourcis qui contient 'quit' \n\n")
2023-07-25 14:29:22 -04:00
fmt.Println("")
}
2023-07-26 10:52:41 -04:00
configDir := flag.String("c", getConfigScutDir(), "Config directory")
2023-07-25 22:08:58 -04:00
2023-07-25 14:29:22 -04:00
appName := flag.String("a", "", "Application name")
2023-07-25 22:08:58 -04:00
filter := flag.String("f", "", "Filter")
2023-07-25 14:29:22 -04:00
flag.Parse()
2023-07-25 22:08:58 -04:00
config := loadConfig(*configDir)
cleanFilter := strings.TrimFunc(*filter, func(r rune) bool {
return !unicode.IsGraphic(r)
})
2023-07-25 14:29:22 -04:00
if *appName == "" {
// List all applications
2023-07-25 22:08:58 -04:00
fmt.Println(underline)
fmt.Println(" A P P L I C A T I O N S")
fmt.Println(underline)
2023-07-25 14:29:22 -04:00
for _, app := range config.Apps {
fmt.Printf("%s\n", app.Name)
}
2023-07-25 22:08:58 -04:00
fmt.Println()
2023-07-25 14:29:22 -04:00
} else {
2023-07-25 22:08:58 -04:00
w := tabwriter.NewWriter(os.Stdout, 0, 0, 10, '.', 0)
if *filter != "" {
for _, app := range config.Apps {
if strings.ToUpper(app.Name) == strings.ToUpper(*appName) {
fmt.Println(underline)
fmt.Fprintln(w, " S H O R T C U T S : "+app.Name)
fmt.Println(underline)
for shortcut, desc := range app.Shortcuts {
if strings.Contains(strings.ToUpper(shortcut), strings.ToUpper(cleanFilter)) || strings.Contains(strings.ToUpper(desc), strings.ToUpper(cleanFilter)) {
fmt.Fprintf(w, "%s \t %s\n", shortcut, desc)
}
}
}
}
w.Flush()
} else {
for _, app := range config.Apps {
if strings.ToUpper(app.Name) == strings.ToUpper(*appName) {
fmt.Println(underline)
fmt.Fprintln(w, " S H O R T C U T S : "+app.Name)
fmt.Println(underline)
for shortcut, desc := range app.Shortcuts {
fmt.Fprintf(w, "%s \t %s\n", shortcut, desc)
}
2023-07-25 14:29:22 -04:00
}
}
2023-07-25 22:08:58 -04:00
w.Flush()
2023-07-25 14:29:22 -04:00
}
}
2023-07-25 22:08:58 -04:00
2023-07-25 14:29:22 -04:00
}