package main import ( app2 "cwtch.im/cwtch/app" "cwtch.im/cwtch/app/utils" "cwtch.im/cwtch/peer" "cwtch.im/cwtch/protocol/connections" "errors" "fmt" "git.openprivacy.ca/openprivacy/connectivity/tor" "os" "time" ) func waitForPeerGroupConnection(peer peer.CwtchPeer, groupID string) error { for { group := peer.GetGroup(groupID) if group != nil { state, _ := peer.GetGroupState(groupID) if state == connections.FAILED { return errors.New("Connection to group " + groupID + " failed!") } if state != connections.AUTHENTICATED { fmt.Printf("peer %v waiting to authenticate with group %v 's server, current state: %v\n", peer.GetOnion(), groupID, connections.ConnectionStateName[state]) time.Sleep(time.Second * 10) continue } } else { return errors.New("peer server connections should have entry for server but do not") } break } return nil } func main() { if len(os.Args) != 2 { fmt.Printf("Usage: ./servermon SERVER_ADDRESS\n") os.Exit(1) } serverAddr := os.Args[1] acn, err := tor.NewTorACN(".", "") if err != nil { fmt.Printf("Could not start tor: %v\n", err) os.Exit(1) } app := app2.NewApp(acn, ".") app.CreatePeer("servermon", "be gay, do crimes") botPeer := utils.WaitGetPeer(app, "servermon") fmt.Printf("Connecting to %v...\n", serverAddr) botPeer.JoinServer(serverAddr) groupID, _, err := botPeer.StartGroup(serverAddr) if err != nil { fmt.Printf("Error creating group on server %v: %v\n", serverAddr, err) os.Exit(1) } err = waitForPeerGroupConnection(botPeer, groupID) if err != nil { fmt.Printf("Could not connect to server %v: %v\n", serverAddr, err) os.Exit(1) } timeout := 1 * time.Second timeElapsed := 0 * time.Second for { err := botPeer.SendMessageToGroup(groupID, timeout.String()) if err != nil { fmt.Printf("Sent to group on server %v failed at interval %v of total %v with: %v\n", serverAddr, timeout, timeElapsed, err) os.Exit(1) } else { fmt.Printf("Successfully sent message to %v at interval %v of total %v\n", serverAddr, timeout, timeElapsed) } time.Sleep(timeout) timeElapsed += timeout if timeout < 2*time.Minute { timeout = timeout * 2 } } }