2012-10-24 19:42:02 +00:00
|
|
|
|
{- git-annex assistant push notification thread, using XMPP
|
|
|
|
|
-
|
|
|
|
|
- This handles both sending outgoing push notifications, and receiving
|
|
|
|
|
- incoming push notifications.
|
2012-10-24 17:35:43 +00:00
|
|
|
|
-
|
|
|
|
|
- Copyright 2012 Joey Hess <joey@kitenet.net>
|
|
|
|
|
-
|
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
|
-}
|
|
|
|
|
|
|
|
|
|
module Assistant.Threads.PushNotifier where
|
|
|
|
|
|
|
|
|
|
import Assistant.Common
|
2012-10-24 19:42:02 +00:00
|
|
|
|
import Assistant.ThreadedMonad
|
|
|
|
|
import Assistant.DaemonStatus
|
2012-10-24 17:35:43 +00:00
|
|
|
|
import Assistant.Pushes
|
2012-10-24 20:21:45 +00:00
|
|
|
|
import Assistant.Sync
|
2012-10-24 19:42:02 +00:00
|
|
|
|
import qualified Remote
|
2012-10-26 16:55:29 +00:00
|
|
|
|
import Utility.FileMode
|
|
|
|
|
import Utility.SRV
|
2012-10-24 19:42:02 +00:00
|
|
|
|
|
|
|
|
|
import Network.Protocol.XMPP
|
|
|
|
|
import Network
|
|
|
|
|
import Control.Concurrent
|
|
|
|
|
import qualified Data.Text as T
|
|
|
|
|
import qualified Data.Set as S
|
2012-10-24 20:21:45 +00:00
|
|
|
|
import qualified Git.Branch
|
2012-10-25 17:04:43 +00:00
|
|
|
|
import Data.XML.Types
|
2012-10-26 16:55:29 +00:00
|
|
|
|
import Control.Exception as E
|
2012-10-24 17:35:43 +00:00
|
|
|
|
|
|
|
|
|
thisThread :: ThreadName
|
|
|
|
|
thisThread = "PushNotifier"
|
|
|
|
|
|
2012-10-24 19:42:02 +00:00
|
|
|
|
pushNotifierThread :: ThreadState -> DaemonStatusHandle -> PushNotifier -> NamedThread
|
|
|
|
|
pushNotifierThread st dstatus pushnotifier = NamedThread thisThread $ do
|
|
|
|
|
v <- runThreadState st $ getXMPPCreds
|
|
|
|
|
case v of
|
2012-10-26 18:17:09 +00:00
|
|
|
|
Nothing -> return () -- no creds? exit thread
|
2012-10-26 16:55:29 +00:00
|
|
|
|
Just c -> void $ connectXMPP c $ \jid -> do
|
|
|
|
|
fulljid <- bindJID jid
|
|
|
|
|
liftIO $ debug thisThread ["XMPP connected", show fulljid]
|
2012-10-24 19:42:02 +00:00
|
|
|
|
s <- getSession
|
2012-10-25 19:30:49 +00:00
|
|
|
|
_ <- liftIO $ forkOS $ void $ runXMPP s $
|
2012-10-24 21:23:21 +00:00
|
|
|
|
receivenotifications
|
|
|
|
|
sendnotifications
|
2012-10-26 16:55:29 +00:00
|
|
|
|
where
|
2012-10-24 21:23:21 +00:00
|
|
|
|
sendnotifications = forever $ do
|
2012-10-24 19:42:02 +00:00
|
|
|
|
us <- liftIO $ waitPush pushnotifier
|
2012-10-25 17:04:43 +00:00
|
|
|
|
let payload = [extendedAway, encodePushNotification us]
|
2012-10-25 17:29:18 +00:00
|
|
|
|
let notification = (emptyPresence PresenceAvailable)
|
2012-10-25 17:04:43 +00:00
|
|
|
|
{ presencePayloads = payload }
|
2012-10-25 17:29:18 +00:00
|
|
|
|
putStanza notification
|
2012-10-24 19:42:02 +00:00
|
|
|
|
|
|
|
|
|
receivenotifications = forever $ do
|
|
|
|
|
s <- getStanza
|
2012-10-25 17:04:43 +00:00
|
|
|
|
liftIO $ debug thisThread ["received XMPP:", show s]
|
2012-10-24 19:42:02 +00:00
|
|
|
|
case s of
|
2012-10-25 17:04:43 +00:00
|
|
|
|
ReceivedPresence p@(Presence { presenceType = PresenceAvailable }) ->
|
|
|
|
|
liftIO $ pull st dstatus $
|
|
|
|
|
concat $ catMaybes $
|
|
|
|
|
map decodePushNotification $
|
|
|
|
|
presencePayloads p
|
2012-10-24 19:42:02 +00:00
|
|
|
|
_ -> noop
|
|
|
|
|
|
|
|
|
|
{- Everything we need to know to connect to an XMPP server. -}
|
|
|
|
|
data XMPPCreds = XMPPCreds
|
|
|
|
|
{ xmppUsername :: T.Text
|
|
|
|
|
, xmppPassword :: T.Text
|
|
|
|
|
, xmppHostname :: HostName
|
|
|
|
|
, xmppPort :: Int
|
2012-10-24 23:09:02 +00:00
|
|
|
|
, xmppJID :: T.Text
|
2012-10-24 19:42:02 +00:00
|
|
|
|
}
|
|
|
|
|
deriving (Read, Show)
|
|
|
|
|
|
2012-10-26 16:55:29 +00:00
|
|
|
|
{- Note that this must be run in a bound thread; gnuTLS requires it. -}
|
|
|
|
|
connectXMPP :: XMPPCreds -> (JID -> XMPP a) -> IO (Either SomeException ())
|
|
|
|
|
connectXMPP c a = case parseJID (xmppJID c) of
|
|
|
|
|
Nothing -> error "bad JID"
|
2012-10-26 18:38:04 +00:00
|
|
|
|
Just jid -> runInBoundThread $ connectXMPP' jid c a
|
2012-10-26 16:55:29 +00:00
|
|
|
|
|
|
|
|
|
{- Do a SRV lookup, but if it fails, fall back to the cached xmppHostname. -}
|
|
|
|
|
connectXMPP' :: JID -> XMPPCreds -> (JID -> XMPP a) -> IO (Either SomeException ())
|
|
|
|
|
connectXMPP' jid c a = go =<< lookupSRV srvrecord
|
|
|
|
|
where
|
2012-10-26 18:17:09 +00:00
|
|
|
|
srvrecord = mkSRVTcp "xmpp-client" $
|
|
|
|
|
T.unpack $ strDomain $ jidDomain jid
|
2012-10-26 16:55:29 +00:00
|
|
|
|
serverjid = JID Nothing (jidDomain jid) Nothing
|
|
|
|
|
|
|
|
|
|
go [] = run (xmppHostname c)
|
|
|
|
|
(PortNumber $ fromIntegral $ xmppPort c)
|
|
|
|
|
(a jid)
|
|
|
|
|
go ((h,p):rest) = do
|
|
|
|
|
{- Try each SRV record in turn, until one connects,
|
|
|
|
|
- at which point the MVar will be full. -}
|
|
|
|
|
mv <- newEmptyMVar
|
|
|
|
|
r <- run h p $ do
|
|
|
|
|
liftIO $ putMVar mv ()
|
|
|
|
|
a jid
|
|
|
|
|
ifM (isEmptyMVar mv) (go rest, return r)
|
|
|
|
|
|
|
|
|
|
run h p a' = do
|
|
|
|
|
liftIO $ debug thisThread ["XMPP trying", h]
|
|
|
|
|
E.try (runClientError (Server serverjid h p) jid (xmppUsername c) (xmppPassword c) (void a')) :: IO (Either SomeException ())
|
|
|
|
|
|
|
|
|
|
{- XMPP runClient, that throws errors rather than returning an Either -}
|
|
|
|
|
runClientError :: Server -> JID -> T.Text -> T.Text -> XMPP a -> IO a
|
|
|
|
|
runClientError s j u p x = either (error . show) return =<< runClient s j u p x
|
|
|
|
|
|
2012-10-24 19:42:02 +00:00
|
|
|
|
getXMPPCreds :: Annex (Maybe XMPPCreds)
|
|
|
|
|
getXMPPCreds = do
|
|
|
|
|
f <- xmppCredsFile
|
|
|
|
|
s <- liftIO $ catchMaybeIO $ readFile f
|
|
|
|
|
return $ readish =<< s
|
|
|
|
|
|
|
|
|
|
setXMPPCreds :: XMPPCreds -> Annex ()
|
|
|
|
|
setXMPPCreds creds = do
|
|
|
|
|
f <- xmppCredsFile
|
|
|
|
|
liftIO $ do
|
|
|
|
|
h <- openFile f WriteMode
|
|
|
|
|
modifyFileMode f $ removeModes
|
|
|
|
|
[groupReadMode, otherReadMode]
|
|
|
|
|
hPutStr h (show creds)
|
|
|
|
|
hClose h
|
|
|
|
|
|
|
|
|
|
xmppCredsFile :: Annex FilePath
|
|
|
|
|
xmppCredsFile = do
|
|
|
|
|
dir <- fromRepo gitAnnexCredsDir
|
|
|
|
|
return $ dir </> "notify-xmpp"
|
|
|
|
|
|
2012-10-25 17:04:43 +00:00
|
|
|
|
{- Marks the client as extended away. -}
|
|
|
|
|
extendedAway :: Element
|
|
|
|
|
extendedAway = Element (Name (T.pack "show") Nothing Nothing) []
|
|
|
|
|
[NodeContent $ ContentText $ T.pack "xa"]
|
|
|
|
|
|
|
|
|
|
{- Name of a git-annex tag, in our own XML namespace.
|
|
|
|
|
- (Not using a namespace URL to avoid unnecessary bloat.) -}
|
|
|
|
|
gitAnnexTagName :: Name
|
|
|
|
|
gitAnnexTagName = Name (T.pack "git-annex") (Just $ T.pack "git-annex") Nothing
|
2012-10-24 19:42:02 +00:00
|
|
|
|
|
2012-10-25 17:04:43 +00:00
|
|
|
|
pushAttr :: Name
|
|
|
|
|
pushAttr = Name (T.pack "push") Nothing Nothing
|
2012-10-24 19:42:02 +00:00
|
|
|
|
|
2012-10-25 17:29:18 +00:00
|
|
|
|
uuidSep :: T.Text
|
|
|
|
|
uuidSep = T.pack ","
|
|
|
|
|
|
2012-10-25 17:04:43 +00:00
|
|
|
|
{- git-annex tag with one push attribute per UUID pushed to. -}
|
|
|
|
|
encodePushNotification :: [UUID] -> Element
|
|
|
|
|
encodePushNotification us = Element gitAnnexTagName
|
2012-10-25 17:29:18 +00:00
|
|
|
|
[(pushAttr, [ContentText pushvalue])] []
|
|
|
|
|
where
|
|
|
|
|
pushvalue = T.intercalate uuidSep $
|
|
|
|
|
map (T.pack . fromUUID) us
|
2012-10-24 19:42:02 +00:00
|
|
|
|
|
2012-10-25 17:04:43 +00:00
|
|
|
|
decodePushNotification :: Element -> Maybe [UUID]
|
|
|
|
|
decodePushNotification (Element name attrs _nodes)
|
|
|
|
|
| name == gitAnnexTagName && not (null us) = Just us
|
|
|
|
|
| otherwise = Nothing
|
|
|
|
|
where
|
2012-10-25 17:29:18 +00:00
|
|
|
|
us = map (toUUID . T.unpack) $
|
|
|
|
|
concatMap (T.splitOn uuidSep . T.concat . map fromContent . snd) $
|
2012-10-25 17:04:43 +00:00
|
|
|
|
filter ispush attrs
|
|
|
|
|
ispush (k, _) = k == pushAttr
|
|
|
|
|
fromContent (ContentText t) = t
|
|
|
|
|
fromContent (ContentEntity t) = t
|
2012-10-24 19:42:02 +00:00
|
|
|
|
|
2012-10-24 20:21:45 +00:00
|
|
|
|
{- We only pull from one remote out of the set listed in the push
|
|
|
|
|
- notification, as an optimisation.
|
|
|
|
|
-
|
|
|
|
|
- Note that it might be possible (though very unlikely) for the push
|
|
|
|
|
- notification to take a while to be sent, and multiple pushes happen
|
|
|
|
|
- before it is sent, so it includes multiple remotes that were pushed
|
|
|
|
|
- to at different times.
|
|
|
|
|
-
|
|
|
|
|
- It could then be the case that the remote we choose had the earlier
|
|
|
|
|
- push sent to it, but then failed to get the later push, and so is not
|
|
|
|
|
- fully up-to-date. If that happens, the pushRetryThread will come along
|
|
|
|
|
- and retry the push, and we'll get another notification once it succeeds,
|
|
|
|
|
- and pull again. -}
|
|
|
|
|
pull :: ThreadState -> DaemonStatusHandle -> [UUID] -> IO ()
|
|
|
|
|
pull _ _ [] = noop
|
|
|
|
|
pull st dstatus us = do
|
2012-10-24 19:42:02 +00:00
|
|
|
|
rs <- filter matching . syncRemotes <$> getDaemonStatus dstatus
|
2012-10-24 20:21:45 +00:00
|
|
|
|
debug thisThread $ "push notification for" :
|
|
|
|
|
map (fromUUID . Remote.uuid ) rs
|
|
|
|
|
pullone rs =<< runThreadState st (inRepo Git.Branch.current)
|
2012-10-24 17:35:43 +00:00
|
|
|
|
where
|
2012-10-24 19:42:02 +00:00
|
|
|
|
matching r = Remote.uuid r `S.member` s
|
|
|
|
|
s = S.fromList us
|
2012-10-24 20:21:45 +00:00
|
|
|
|
|
|
|
|
|
pullone [] _ = noop
|
|
|
|
|
pullone (r:rs) branch =
|
|
|
|
|
unlessM (all id . fst <$> manualPull st branch [r]) $
|
|
|
|
|
pullone rs branch
|