cwtch/app/app.go

66 lines
1.3 KiB
Go
Raw Normal View History

2018-04-30 21:47:21 +00:00
package app
import (
"cwtch.im/cwtch/connectivity/tor"
2018-05-28 18:05:06 +00:00
"cwtch.im/cwtch/peer"
"log"
2018-04-30 21:47:21 +00:00
)
// Application is a facade over a cwtchPeer that provides some wrapping logic.
2018-04-30 21:47:21 +00:00
type Application struct {
2018-06-29 19:04:52 +00:00
Peer peer.CwtchPeerInterface
TorManager *tor.Manager
2018-04-30 21:47:21 +00:00
}
// NewProfile creates a new cwtchPeer with a given name.
func (app *Application) NewProfile(name string, filename string, password string) error {
profile := peer.NewCwtchPeer(name, password)
2018-04-30 21:47:21 +00:00
app.Peer = profile
err := profile.Save(filename)
if err == nil {
_, err := tor.NewTorManager(9050, 9051)
if err != nil {
return err
}
go func() {
err := app.Peer.Listen()
if err != nil {
log.Panic(err)
}
}()
}
return err
2018-04-30 21:47:21 +00:00
}
2018-05-16 21:11:04 +00:00
// SetProfile loads an existing profile from the given filename.
func (app *Application) SetProfile(filename string, password string) error {
profile, err := peer.LoadCwtchPeer(filename, password)
if err != nil {
return err
}
2018-04-30 21:47:21 +00:00
app.Peer = profile
if err == nil {
2018-06-29 19:04:52 +00:00
tm, err := tor.NewTorManager(9050, 9051)
if err != nil {
return err
}
2018-06-29 19:04:52 +00:00
app.TorManager = tm
go func() {
err := app.Peer.Listen()
if err != nil {
log.Panic(err)
}
}()
2018-04-30 21:47:21 +00:00
}
return err
}
2018-05-16 21:11:55 +00:00
// PeerRequest attempts to setup peer relationship with the given onion address.`
2018-04-30 21:47:21 +00:00
func (app *Application) PeerRequest(onion string) {
app.Peer.PeerWithOnion(onion)
}