Making a config package for Generating keymappings
Following changes have been made: 1. Moving the getMusicDirectory() to config package 2. Moving the config.go to config package 3. Generating a Function Map that will be used for Generating keymappings in main.go 4. Using the config packge in main.go 5. First we are reading the user configuration values with config.ReadConfig() and then we are reading the mappings with config.ReadMappings() with the help of Function Map that is generated.
This commit is contained in:
parent
2ecee3678a
commit
1572a460b0
34
config.go
34
config.go
@ -1,34 +0,0 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"github.com/spf13/viper"
|
||||
)
|
||||
|
||||
var (
|
||||
HOME_DIR, _ = os.UserHomeDir()
|
||||
defaults = map[string]interface{}{
|
||||
"ADDITIONAL_PADDING_X": 12,
|
||||
"ADDITIONAL_PADDING_Y": 16,
|
||||
"IMAGE_WIDTH_EXTRA_X": -1.5,
|
||||
"IMAGE_WIDTH_EXTRA_Y": -3.75,
|
||||
"MUSIC_DIRECTORY": getMusicDirectory() + "/",
|
||||
"PORT": "6600",
|
||||
"DEFAULT_IMAGE_PATH": "default.jpg",
|
||||
"COVER_IMAGE_PATH": "cover.jpg",
|
||||
}
|
||||
)
|
||||
|
||||
func readConfig() {
|
||||
for k, v := range defaults {
|
||||
viper.SetDefault(k, v)
|
||||
}
|
||||
viper.SetConfigName("config")
|
||||
viper.AddConfigPath(HOME_DIR + "/.config/goMP")
|
||||
err := viper.ReadInConfig()
|
||||
if err != nil {
|
||||
fmt.Println("Could Not Read Config file.")
|
||||
}
|
||||
}
|
210
main.go
210
main.go
@ -1,10 +1,12 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"log"
|
||||
"strconv"
|
||||
"time"
|
||||
|
||||
"github.com/aditya-K2/goMP/config"
|
||||
"github.com/fhs/gompd/mpd"
|
||||
"github.com/gdamore/tcell/v2"
|
||||
"github.com/spf13/viper"
|
||||
@ -16,7 +18,7 @@ var Repeat bool
|
||||
var InsidePlaylist bool = true
|
||||
|
||||
func main() {
|
||||
readConfig()
|
||||
config.ReadConfig()
|
||||
// Connect to MPD server
|
||||
conn, err := mpd.Dial("tcp", "localhost:"+viper.GetString("MPD_PORT"))
|
||||
if err != nil {
|
||||
@ -53,10 +55,8 @@ func main() {
|
||||
return UI.expandedView.GetInnerRect()
|
||||
})
|
||||
|
||||
UI.expandedView.SetInputCapture(func(e *tcell.EventKey) *tcell.EventKey {
|
||||
switch e.Rune() {
|
||||
case 108: // L : Key
|
||||
{
|
||||
var kMap = map[string]func(){
|
||||
"showChildrenContent": func() {
|
||||
r, _ := UI.expandedView.GetSelection()
|
||||
if !InsidePlaylist {
|
||||
if len(dirTree.children[r].children) == 0 {
|
||||
@ -69,135 +69,195 @@ func main() {
|
||||
} else {
|
||||
conn.Play(r)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
case 112: // P : Key
|
||||
{
|
||||
},
|
||||
"togglePlayBack": func() {
|
||||
togglePlayBack(*conn)
|
||||
return nil
|
||||
}
|
||||
case 104: // H : Key
|
||||
{
|
||||
},
|
||||
"showParentContent": func() {
|
||||
if !InsidePlaylist {
|
||||
if dirTree.parent != nil {
|
||||
Update(*conn, dirTree.parent.children, UI.expandedView)
|
||||
dirTree = dirTree.parent
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
case 110: // N : Key
|
||||
{
|
||||
},
|
||||
"nextSong": func() {
|
||||
conn.Next()
|
||||
return nil
|
||||
}
|
||||
case 99: // C : Key
|
||||
{
|
||||
},
|
||||
"clearPlaylist": func() {
|
||||
conn.Clear()
|
||||
if InsidePlaylist {
|
||||
UpdatePlaylist(*conn, UI.expandedView)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
case 78: // Shift - N : Key
|
||||
{
|
||||
},
|
||||
"previousSong": func() {
|
||||
conn.Previous()
|
||||
return nil
|
||||
}
|
||||
case 97: // A : Key
|
||||
{
|
||||
},
|
||||
"addToPlaylist": func() {
|
||||
if !InsidePlaylist {
|
||||
r, _ := UI.expandedView.GetSelection()
|
||||
conn.Add(dirTree.children[r].absolutePath)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
case 122: // Z : Key
|
||||
{
|
||||
},
|
||||
"toggleRandom": func() {
|
||||
err := conn.Random(!Random)
|
||||
if err == nil {
|
||||
Random = !Random
|
||||
}
|
||||
return nil
|
||||
}
|
||||
case 114: // R : Key
|
||||
{
|
||||
},
|
||||
"toggleRepeat": func() {
|
||||
err := conn.Repeat(!Repeat)
|
||||
if err == nil {
|
||||
Repeat = !Repeat
|
||||
}
|
||||
return nil
|
||||
}
|
||||
case 45: // Minus : Key
|
||||
{
|
||||
},
|
||||
"decreaseVolume": func() {
|
||||
if Volume <= 0 {
|
||||
Volume = 0
|
||||
} else {
|
||||
Volume -= 10
|
||||
}
|
||||
conn.SetVolume(int(Volume))
|
||||
return nil
|
||||
}
|
||||
case 61: // Plus : Key
|
||||
{
|
||||
},
|
||||
"increaseVolume": func() {
|
||||
if Volume >= 100 {
|
||||
Volume = 100
|
||||
} else {
|
||||
Volume += 10
|
||||
}
|
||||
conn.SetVolume(int(Volume))
|
||||
return nil
|
||||
}
|
||||
case 50: // 2 : Key
|
||||
{
|
||||
},
|
||||
"navigateToFiles": func() {
|
||||
InsidePlaylist = false
|
||||
UI.Navbar.Select(1, 0)
|
||||
Update(*conn, dirTree.children, UI.expandedView)
|
||||
return nil
|
||||
}
|
||||
case 49: // 1 : Key
|
||||
{
|
||||
},
|
||||
"navigateToPlaylist": func() {
|
||||
InsidePlaylist = true
|
||||
UI.Navbar.Select(0, 0)
|
||||
UpdatePlaylist(*conn, UI.expandedView)
|
||||
return nil
|
||||
}
|
||||
case 51: // 3 : Key
|
||||
{
|
||||
},
|
||||
"navigateToMostPlayed": func() {
|
||||
InsidePlaylist = false
|
||||
UI.Navbar.Select(2, 0)
|
||||
return nil
|
||||
}
|
||||
case 113: // q : Key
|
||||
{
|
||||
},
|
||||
"quit": func() {
|
||||
UI.App.Stop()
|
||||
return nil
|
||||
}
|
||||
case 115: // s: key
|
||||
{
|
||||
},
|
||||
"stop": func() {
|
||||
conn.Stop()
|
||||
return nil
|
||||
}
|
||||
case 117: // u : key
|
||||
{
|
||||
},
|
||||
"updateDB": func() {
|
||||
_, err = conn.Update("")
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
},
|
||||
"deleteSongFromPlaylist": func() {
|
||||
if InsidePlaylist {
|
||||
r, _ := UI.expandedView.GetSelection()
|
||||
conn.Delete(r, -1)
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
config.ReadMappings(kMap)
|
||||
|
||||
UI.expandedView.SetInputCapture(func(e *tcell.EventKey) *tcell.EventKey {
|
||||
switch e.Rune() {
|
||||
case 108: // L : Key
|
||||
{
|
||||
kMap["showChildrenContent"]()
|
||||
return nil
|
||||
}
|
||||
case 112: // P : Key
|
||||
{
|
||||
kMap["togglePlayBack"]()
|
||||
return nil
|
||||
}
|
||||
case 104: // H : Key
|
||||
{
|
||||
kMap["showParentContent"]()
|
||||
return nil
|
||||
}
|
||||
case 110: // N : Key
|
||||
{
|
||||
kMap["nextSong"]()
|
||||
return nil
|
||||
}
|
||||
case 99: // C : Key
|
||||
{
|
||||
kMap["clearPlaylist"]()
|
||||
return nil
|
||||
}
|
||||
case 78: // Shift - N : Key
|
||||
{
|
||||
kMap["previousSong"]()
|
||||
return nil
|
||||
}
|
||||
case 97: // A : Key
|
||||
{
|
||||
kMap["addToPlaylist"]()
|
||||
return nil
|
||||
}
|
||||
case 122: // Z : Key
|
||||
{
|
||||
kMap["toggleRandom"]()
|
||||
return nil
|
||||
}
|
||||
case 114: // R : Key
|
||||
{
|
||||
kMap["toggleRepeat"]()
|
||||
return nil
|
||||
}
|
||||
case 45: // Minus : Key
|
||||
{
|
||||
kMap["decreaseVolume"]()
|
||||
return nil
|
||||
}
|
||||
case 61: // Plus : Key
|
||||
{
|
||||
kMap["increaseVolume"]()
|
||||
return nil
|
||||
}
|
||||
case 50: // 2 : Key
|
||||
{
|
||||
kMap["navigateToFiles"]()
|
||||
return nil
|
||||
}
|
||||
case 49: // 1 : Key
|
||||
{
|
||||
kMap["navigateToPlaylist"]()
|
||||
return nil
|
||||
}
|
||||
case 51: // 3 : Key
|
||||
{
|
||||
kMap["navigateToMostPlayed"]()
|
||||
return nil
|
||||
}
|
||||
case 113: // q : Key
|
||||
{
|
||||
kMap["quit"]()
|
||||
return nil
|
||||
}
|
||||
case 115: // s: key
|
||||
{
|
||||
kMap["stop"]()
|
||||
return nil
|
||||
}
|
||||
case 117: // u : key
|
||||
{
|
||||
kMap["updateDB"]()
|
||||
return nil
|
||||
}
|
||||
case 100: // d : key
|
||||
{
|
||||
if InsidePlaylist {
|
||||
r, _ := UI.expandedView.GetSelection()
|
||||
conn.Delete(r, -1)
|
||||
kMap["deleteSongFromPlaylist"]()
|
||||
return nil
|
||||
} else {
|
||||
return e
|
||||
}
|
||||
}
|
||||
default:
|
||||
{
|
||||
fmt.Println(e.Rune())
|
||||
return e
|
||||
}
|
||||
}
|
||||
|
26
utils.go
26
utils.go
@ -1,8 +1,6 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"strconv"
|
||||
"strings"
|
||||
"syscall"
|
||||
@ -82,27 +80,3 @@ func formatString(a interface{}) string {
|
||||
return "Paused"
|
||||
}
|
||||
}
|
||||
|
||||
func getMusicDirectory() string {
|
||||
content, err := ioutil.ReadFile(HOME_DIR + "/.config/mpd/mpd.conf")
|
||||
if err != nil {
|
||||
fmt.Println("No Config File for mpd Found")
|
||||
panic(err)
|
||||
}
|
||||
ab := string(content)
|
||||
maps := strings.Split(ab, "\n")
|
||||
for _, j := range maps {
|
||||
if strings.Contains(j, "music_directory") {
|
||||
s := strings.SplitAfter(strings.ReplaceAll(j, " ", ""), "y")[1]
|
||||
s = strings.ReplaceAll(s, "\t", "")
|
||||
d := ""
|
||||
for z, m := range s {
|
||||
if (z != 0) && (z != (len(s) - 1)) {
|
||||
d += string(m)
|
||||
}
|
||||
}
|
||||
return d
|
||||
}
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user