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-26 18:44:36 +00:00
|
|
|
|
import Assistant.XMPP
|
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-27 04:06:17 +00:00
|
|
|
|
import Utility.ThreadScheduler
|
2012-10-24 19:42:02 +00:00
|
|
|
|
|
|
|
|
|
import Network.Protocol.XMPP
|
|
|
|
|
import Control.Concurrent
|
|
|
|
|
import qualified Data.Set as S
|
2012-10-24 20:21:45 +00:00
|
|
|
|
import qualified Git.Branch
|
2012-10-27 04:06:17 +00:00
|
|
|
|
import Data.Time.Clock
|
2012-10-24 17:35:43 +00:00
|
|
|
|
|
|
|
|
|
thisThread :: ThreadName
|
|
|
|
|
thisThread = "PushNotifier"
|
|
|
|
|
|
2012-10-27 04:42:14 +00:00
|
|
|
|
controllerThread :: PushNotifier -> IO () -> IO ()
|
|
|
|
|
controllerThread pushnotifier a = forever $ do
|
|
|
|
|
tid <- forkIO a
|
|
|
|
|
waitRestart pushnotifier
|
|
|
|
|
killThread tid
|
|
|
|
|
|
2012-10-24 19:42:02 +00:00
|
|
|
|
pushNotifierThread :: ThreadState -> DaemonStatusHandle -> PushNotifier -> NamedThread
|
2012-10-29 06:21:04 +00:00
|
|
|
|
pushNotifierThread st dstatus pushnotifier = NamedThread thisThread $ liftIO $
|
2012-10-27 04:42:14 +00:00
|
|
|
|
controllerThread pushnotifier $ do
|
|
|
|
|
v <- runThreadState st $ getXMPPCreds
|
|
|
|
|
case v of
|
|
|
|
|
Nothing -> noop
|
|
|
|
|
Just c -> loop c =<< getCurrentTime
|
2012-10-26 16:55:29 +00:00
|
|
|
|
where
|
2012-10-27 04:06:17 +00:00
|
|
|
|
loop c starttime = do
|
|
|
|
|
void $ connectXMPP c $ \jid -> do
|
|
|
|
|
fulljid <- bindJID jid
|
2012-10-29 06:21:04 +00:00
|
|
|
|
liftIO $ brokendebug thisThread ["XMPP connected", show fulljid]
|
2012-10-28 21:07:29 +00:00
|
|
|
|
putStanza $ gitAnnexPresence gitAnnexSignature
|
2012-10-27 04:06:17 +00:00
|
|
|
|
s <- getSession
|
|
|
|
|
_ <- liftIO $ forkIO $ void $ runXMPP s $
|
|
|
|
|
receivenotifications
|
|
|
|
|
sendnotifications
|
|
|
|
|
now <- getCurrentTime
|
|
|
|
|
if diffUTCTime now starttime > 300
|
|
|
|
|
then do
|
2012-10-29 06:21:04 +00:00
|
|
|
|
brokendebug thisThread ["XMPP connection lost; reconnecting"]
|
2012-10-27 04:06:17 +00:00
|
|
|
|
loop c now
|
|
|
|
|
else do
|
2012-10-29 06:21:04 +00:00
|
|
|
|
brokendebug thisThread ["XMPP connection failed; will retry"]
|
2012-10-27 04:06:17 +00:00
|
|
|
|
threadDelaySeconds (Seconds 300)
|
|
|
|
|
loop c =<< getCurrentTime
|
|
|
|
|
|
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-28 21:07:29 +00:00
|
|
|
|
putStanza $ gitAnnexPresence $ encodePushNotification us
|
2012-10-24 19:42:02 +00:00
|
|
|
|
|
|
|
|
|
receivenotifications = forever $ do
|
|
|
|
|
s <- getStanza
|
2012-10-29 06:21:04 +00:00
|
|
|
|
liftIO $ brokendebug 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
|
|
|
|
|
|
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-29 06:21:04 +00:00
|
|
|
|
brokendebug thisThread $ "push notification for" :
|
2012-10-24 20:21:45 +00:00
|
|
|
|
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
|