2021-08-21 08:19:49 +00:00
|
|
|
/*
|
|
|
|
* itd uses bluetooth low energy to communicate with InfiniTime devices
|
|
|
|
* Copyright (C) 2021 Arsen Musayelyan
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2022-11-25 01:36:25 +00:00
|
|
|
"context"
|
2022-11-21 19:59:54 +00:00
|
|
|
|
2021-08-24 15:54:08 +00:00
|
|
|
"go.arsenm.dev/infinitime"
|
2022-11-25 01:36:25 +00:00
|
|
|
"go.arsenm.dev/itd/mpris"
|
2022-03-11 21:14:23 +00:00
|
|
|
"go.arsenm.dev/itd/translit"
|
2023-01-04 23:06:05 +00:00
|
|
|
"go.arsenm.dev/logger/log"
|
2021-08-21 08:19:49 +00:00
|
|
|
)
|
|
|
|
|
2022-11-21 19:59:54 +00:00
|
|
|
func initMusicCtrl(ctx context.Context, dev *infinitime.Device) error {
|
2022-11-25 01:36:25 +00:00
|
|
|
mpris.Init(ctx)
|
2021-08-21 08:19:49 +00:00
|
|
|
|
2022-03-11 21:14:23 +00:00
|
|
|
maps := k.Strings("notifs.translit.use")
|
|
|
|
translit.Transliterators["custom"] = translit.Map(k.Strings("notifs.translit.custom"))
|
|
|
|
|
2022-11-25 01:36:25 +00:00
|
|
|
mpris.OnChange(func(ct mpris.ChangeType, val string) {
|
2022-03-11 21:14:23 +00:00
|
|
|
newVal := translit.Transliterate(val, maps...)
|
2021-08-21 08:19:49 +00:00
|
|
|
if !firmwareUpdating {
|
2021-11-25 00:44:36 +00:00
|
|
|
switch ct {
|
2022-11-21 19:59:54 +00:00
|
|
|
case mpris.ChangeTypeStatus:
|
2022-11-25 01:36:25 +00:00
|
|
|
dev.Music.SetStatus(val == "Playing")
|
2022-11-21 19:59:54 +00:00
|
|
|
case mpris.ChangeTypeTitle:
|
2022-11-25 01:36:25 +00:00
|
|
|
dev.Music.SetTrack(newVal)
|
2022-11-21 19:59:54 +00:00
|
|
|
case mpris.ChangeTypeAlbum:
|
2022-11-25 01:36:25 +00:00
|
|
|
dev.Music.SetAlbum(newVal)
|
2022-11-21 19:59:54 +00:00
|
|
|
case mpris.ChangeTypeArtist:
|
2022-03-11 21:14:23 +00:00
|
|
|
dev.Music.SetArtist(newVal)
|
2021-11-25 00:44:36 +00:00
|
|
|
}
|
2021-08-21 08:19:49 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
// Watch for music events
|
|
|
|
musicEvtCh, err := dev.Music.WatchEvents()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
go func() {
|
|
|
|
// For every music event received
|
|
|
|
for musicEvt := range musicEvtCh {
|
|
|
|
// Perform appropriate action based on event
|
|
|
|
switch musicEvt {
|
|
|
|
case infinitime.MusicEventPlay:
|
2022-11-21 19:59:54 +00:00
|
|
|
mpris.Play()
|
2021-08-21 08:19:49 +00:00
|
|
|
case infinitime.MusicEventPause:
|
2022-11-21 19:59:54 +00:00
|
|
|
mpris.Pause()
|
2021-08-21 08:19:49 +00:00
|
|
|
case infinitime.MusicEventNext:
|
2022-11-21 19:59:54 +00:00
|
|
|
mpris.Next()
|
2021-08-21 08:19:49 +00:00
|
|
|
case infinitime.MusicEventPrev:
|
2022-11-21 19:59:54 +00:00
|
|
|
mpris.Prev()
|
2021-08-21 08:19:49 +00:00
|
|
|
case infinitime.MusicEventVolUp:
|
2022-11-21 19:59:54 +00:00
|
|
|
mpris.VolUp(uint(k.Int("music.vol.interval")))
|
2021-08-21 08:19:49 +00:00
|
|
|
case infinitime.MusicEventVolDown:
|
2022-11-21 19:59:54 +00:00
|
|
|
mpris.VolDown(uint(k.Int("music.vol.interval")))
|
2021-08-21 08:19:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Log completed initialization
|
2023-01-04 23:06:05 +00:00
|
|
|
log.Info("Initialized InfiniTime music controls").Send()
|
2021-08-21 08:19:49 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|