56 lines
1.2 KiB
Go
56 lines
1.2 KiB
Go
package reach
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"forge.cadoles.com/Pyxis/golang-socketio"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
const (
|
|
eventUpdate = "update"
|
|
eventOPKGUpdateResult = "opkg update result"
|
|
)
|
|
|
|
// OPKGUpdateStatus embeds informations about OPKG update status
|
|
type OPKGUpdateStatus struct {
|
|
Active bool `json:"active"`
|
|
State string `json:"state"`
|
|
Locked bool `json:"locked"`
|
|
}
|
|
|
|
// OPKGUpdate asks the ReachRS module to start an OPKG update
|
|
func (c *Client) OPKGUpdate() (*OPKGUpdateStatus, error) {
|
|
|
|
var err error
|
|
var status *OPKGUpdateStatus
|
|
var wg sync.WaitGroup
|
|
|
|
wg.Add(1)
|
|
|
|
err = c.conn.On(eventOPKGUpdateResult, func(h *gosocketio.Channel, st *OPKGUpdateStatus) {
|
|
status = st
|
|
c.conn.Off(eventOPKGUpdateResult)
|
|
wg.Done()
|
|
})
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "error while binding to '%s' event", eventOPKGUpdateResult)
|
|
}
|
|
|
|
c.logf("sending '%s' event", eventUpdate)
|
|
if err = c.conn.Emit(eventUpdate, nil); err != nil {
|
|
return nil, errors.Wrapf(err, "error while emitting '%s' event", eventUpdate)
|
|
}
|
|
c.logf("'%s' event sent", eventUpdate)
|
|
|
|
wg.Wait()
|
|
|
|
c.logf(
|
|
"opkg update result: active: %v, state: %v, locked: %v",
|
|
status.Active, status.State, status.Locked,
|
|
)
|
|
|
|
return status, err
|
|
|
|
}
|