blob: 40540fe47833bbc2d0ab1fc6c03fd9241810f08e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
module Main (main) where
import Control.Concurrent.Chan
import Control.Exception
import Control.Monad
import qualified Data.Text.IO as T
import System.Environment
import System.IO
import System.IO.Error
import Identity
import Network
import PubKey
import Storage
main :: IO ()
main = do
[bhost] <- getArgs
st <- openStorage "test"
idhead <- catchJust (guard . isDoesNotExistError) (loadHead st "identity") $ \_ -> do
putStr "Name: "
hFlush stdout
name <- T.getLine
(secret, public) <- generateKeys st
(devSecret, devPublic) <- generateKeys st
owner <- wrappedStore st =<< sign secret =<< wrappedStore st (emptyIdentity public) { idName = Just name }
base <- signAdd devSecret =<< sign secret =<<
wrappedStore st (emptyIdentity devPublic) { idOwner = Just owner }
Right h <- replaceHead base (Left (st, "identity"))
return h
let sidentity = wrappedLoad (headRef idhead) :: Stored Identity
print $ fromStored sidentity
chan <- peerDiscovery bhost sidentity
void $ forever $ print =<< readChan chan
return ()
|