aboutsummaryrefslogtreecommitdiff
path: root/Assistant/WebApp/Configurators
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-09-03 00:39:55 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-09-03 00:39:55 -0400
commitb584d96c131a23d0f7d6ed424a8915e9e15a6bc4 (patch)
treeda5f81e4000a58326a95fc94cd5a5ad22e76e34c /Assistant/WebApp/Configurators
parent6a45ca465877c3dcf17e4f41ff538dd66b2438c0 (diff)
rsync.net configurator display
Doesn't set up the repo yet.
Diffstat (limited to 'Assistant/WebApp/Configurators')
-rw-r--r--Assistant/WebApp/Configurators/Ssh.hs27
1 files changed, 24 insertions, 3 deletions
diff --git a/Assistant/WebApp/Configurators/Ssh.hs b/Assistant/WebApp/Configurators/Ssh.hs
index b8e2b351a..334ee0807 100644
--- a/Assistant/WebApp/Configurators/Ssh.hs
+++ b/Assistant/WebApp/Configurators/Ssh.hs
@@ -42,10 +42,10 @@ data SshServer = SshServer
}
deriving (Show)
-sshServerAForm :: Text -> AForm WebApp WebApp SshServer
+sshServerAForm :: (Maybe Text) -> AForm WebApp WebApp SshServer
sshServerAForm localusername = SshServer
<$> aopt check_hostname "Host name" Nothing
- <*> aopt check_username "User name" (Just $ Just localusername)
+ <*> aopt check_username "User name" (Just localusername)
<*> aopt textField "Directory" (Just $ Just $ T.pack gitAnnexAssistantDefaultDir)
where
check_hostname = checkM (liftIO . checkdns) textField
@@ -83,7 +83,7 @@ getAddSshR = sshConfigurator $ do
u <- liftIO $ T.pack . userName
<$> (getUserEntryForID =<< getEffectiveUserID)
((result, form), enctype) <- lift $
- runFormGet $ renderBootstrap $ sshServerAForm u
+ runFormGet $ renderBootstrap $ sshServerAForm (Just u)
case result of
FormSuccess sshserver -> do
(status, needspubkey) <- liftIO $ testServer sshserver
@@ -320,3 +320,24 @@ genSshKey sshdata = do
sshpubkeyfile = sshprivkeyfile ++ ".pub"
mangledhost = "git-annex-" ++ T.unpack (sshHostName sshdata) ++ user
user = maybe "" (\u -> "-" ++ T.unpack u) (sshUserName sshdata)
+
+getAddRsyncNetR :: Handler RepHtml
+getAddRsyncNetR = bootstrap (Just Config) $ do
+ sideBarDisplay
+ setTitle "Add a Rsync.net repository"
+ ((result, form), enctype) <- lift $
+ runFormGet $ renderBootstrap $ sshServerAForm Nothing
+ let showform status = do
+ let authtoken = webAppFormAuthToken
+ $(widgetFile "configurators/addrsync.net")
+ case result of
+ FormSuccess sshserver -> do
+ let host = fromMaybe "" $ hostname sshserver
+ checkhost host showform $ do
+ error "TODO"
+ _ -> showform UntestedServer
+ where
+ checkhost host showform a
+ | ".rsync.net" `T.isSuffixOf` T.toLower host = a
+ | otherwise = showform $ UnusableServer
+ "That is not a rsync.net host name."