git-annex/Assistant/WebApp/MakeRemote.hs

44 lines
1.3 KiB
Haskell
Raw Normal View History

2013-10-28 15:33:14 +00:00
{- git-annex assistant webapp making remotes
-
- Copyright 2012 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU AGPL version 3 or higher.
-}
2013-10-28 15:33:14 +00:00
module Assistant.WebApp.MakeRemote (
module Assistant.MakeRemote,
module Assistant.WebApp.MakeRemote
) where
import Assistant.Common
import Assistant.WebApp.Types
import Assistant.Sync
import qualified Remote
import qualified Types.Remote as Remote
import qualified Config
import Config.Cost
2013-09-27 04:15:50 +00:00
import Types.StandardGroups
import Git.Types (RemoteName)
2013-09-27 04:15:50 +00:00
import Logs.PreferredContent
import Assistant.MakeRemote
2013-09-27 04:15:50 +00:00
import Utility.Yesod
2013-09-27 04:15:50 +00:00
{- Runs an action that creates or enables a cloud remote,
- and finishes setting it up, then starts syncing with it,
- and finishes by displaying the page to edit it.
-
- This includes displaying the connectionNeeded nudge if appropariate.
-}
setupCloudRemote :: StandardGroup -> Maybe Cost -> Annex RemoteName -> Handler a
setupCloudRemote = setupRemote $ redirect . EditNewCloudRepositoryR
setupRemote :: (UUID -> Handler a) -> StandardGroup -> Maybe Cost -> Annex RemoteName -> Handler a
setupRemote postsetup defaultgroup mcost getname = do
r <- liftAnnex $ addRemote getname
liftAnnex $ do
setStandardGroup (Remote.uuid r) defaultgroup
maybe noop (Config.setRemoteCost (Remote.repo r)) mcost
2013-09-27 04:15:50 +00:00
liftAssistant $ syncRemote r
postsetup $ Remote.uuid r