after setting up a new repo, go to a special version of the configuration page
This commit is contained in:
parent
5b9900133c
commit
f31d292ab1
6 changed files with 35 additions and 13 deletions
|
@ -115,7 +115,13 @@ editRepositoryAForm def = RepoConfig
|
||||||
_ -> []
|
_ -> []
|
||||||
|
|
||||||
getEditRepositoryR :: UUID -> Handler RepHtml
|
getEditRepositoryR :: UUID -> Handler RepHtml
|
||||||
getEditRepositoryR uuid = bootstrap (Just Config) $ do
|
getEditRepositoryR = editForm False
|
||||||
|
|
||||||
|
getEditNewRepositoryR :: UUID -> Handler RepHtml
|
||||||
|
getEditNewRepositoryR = editForm True
|
||||||
|
|
||||||
|
editForm :: Bool -> UUID -> Handler RepHtml
|
||||||
|
editForm new uuid = bootstrap (Just Config) $ do
|
||||||
sideBarDisplay
|
sideBarDisplay
|
||||||
setTitle "Configure repository"
|
setTitle "Configure repository"
|
||||||
|
|
||||||
|
@ -129,11 +135,11 @@ getEditRepositoryR uuid = bootstrap (Just Config) $ do
|
||||||
maybe noop (changeEnabled r) =<<
|
maybe noop (changeEnabled r) =<<
|
||||||
runAnnex undefined (setRepoConfig r input)
|
runAnnex undefined (setRepoConfig r input)
|
||||||
redirect RepositoriesR
|
redirect RepositoriesR
|
||||||
_ -> showform form enctype
|
_ -> showform form enctype curr
|
||||||
where
|
where
|
||||||
showform form enctype = do
|
showform form enctype curr = do
|
||||||
|
let istransfer = repoGroup curr == RepoGroupStandard TransferGroup
|
||||||
let authtoken = webAppFormAuthToken
|
let authtoken = webAppFormAuthToken
|
||||||
description <- lift $
|
|
||||||
runAnnex T.empty $ T.pack . concat <$>
|
|
||||||
Remote.prettyListUUIDs [uuid]
|
|
||||||
$(widgetFile "configurators/editrepository")
|
$(widgetFile "configurators/editrepository")
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -185,19 +185,19 @@ getAddDriveR = bootstrap (Just Config) $ do
|
||||||
((res, form), enctype) <- lift $ runFormGet $
|
((res, form), enctype) <- lift $ runFormGet $
|
||||||
selectDriveForm (sort writabledrives) Nothing
|
selectDriveForm (sort writabledrives) Nothing
|
||||||
case res of
|
case res of
|
||||||
FormSuccess (RemovableDrive { mountPoint = d }) -> lift $ do
|
FormSuccess (RemovableDrive { mountPoint = d }) -> lift $
|
||||||
go $ T.unpack d
|
make (T.unpack d) >>= redirect . EditNewRepositoryR
|
||||||
redirect RepositoriesR
|
|
||||||
_ -> do
|
_ -> do
|
||||||
let authtoken = webAppFormAuthToken
|
let authtoken = webAppFormAuthToken
|
||||||
$(widgetFile "configurators/adddrive")
|
$(widgetFile "configurators/adddrive")
|
||||||
where
|
where
|
||||||
go mountpoint = do
|
make mountpoint = do
|
||||||
liftIO $ makerepo dir
|
liftIO $ makerepo dir
|
||||||
u <- liftIO $ initRepo dir $ Just remotename
|
u <- liftIO $ initRepo dir $ Just remotename
|
||||||
r <- addremote dir remotename
|
r <- addremote dir remotename
|
||||||
runAnnex () $ setStandardGroup u TransferGroup
|
runAnnex () $ setStandardGroup u TransferGroup
|
||||||
syncRemote r
|
syncRemote r
|
||||||
|
return u
|
||||||
where
|
where
|
||||||
dir = mountpoint </> gitAnnexAssistantDefaultDir
|
dir = mountpoint </> gitAnnexAssistantDefaultDir
|
||||||
remotename = takeFileName mountpoint
|
remotename = takeFileName mountpoint
|
||||||
|
|
|
@ -125,4 +125,4 @@ makeS3Remote (S3Creds ak sk) name setup config = do
|
||||||
return remotename
|
return remotename
|
||||||
setup r
|
setup r
|
||||||
liftIO $ syncNewRemote st (daemonStatus webapp) (scanRemotes webapp) r
|
liftIO $ syncNewRemote st (daemonStatus webapp) (scanRemotes webapp) r
|
||||||
redirect RepositoriesR
|
redirect $ EditNewRepositoryR $ Remote.uuid r
|
||||||
|
|
|
@ -291,7 +291,7 @@ makeSshRepo forcersync setup sshdata = do
|
||||||
(scanRemotes webapp)
|
(scanRemotes webapp)
|
||||||
forcersync sshdata
|
forcersync sshdata
|
||||||
setup r
|
setup r
|
||||||
redirect RepositoriesR
|
redirect $ EditRepositoryR $ Remote.uuid r
|
||||||
|
|
||||||
getAddRsyncNetR :: Handler RepHtml
|
getAddRsyncNetR :: Handler RepHtml
|
||||||
getAddRsyncNetR = do
|
getAddRsyncNetR = do
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
/config/repository/new NewRepositoryR GET
|
/config/repository/new NewRepositoryR GET
|
||||||
/config/repository/switchto/#FilePath SwitchToRepositoryR GET
|
/config/repository/switchto/#FilePath SwitchToRepositoryR GET
|
||||||
/config/repository/edit/#UUID EditRepositoryR GET
|
/config/repository/edit/#UUID EditRepositoryR GET
|
||||||
|
/config/repository/edit/new/#UUID EditNewRepositoryR GET
|
||||||
|
|
||||||
/config/repository/add/drive AddDriveR GET
|
/config/repository/add/drive AddDriveR GET
|
||||||
/config/repository/add/ssh AddSshR GET
|
/config/repository/add/ssh AddSshR GET
|
||||||
|
|
|
@ -1,6 +1,17 @@
|
||||||
<div .span9 .hero-unit>
|
<div .span9 .hero-unit>
|
||||||
<h2>
|
<h2>
|
||||||
Configuring repository: #{description}
|
Configuring repository
|
||||||
|
$if new
|
||||||
|
<p>
|
||||||
|
This repository is set up and ready to go!
|
||||||
|
<p>
|
||||||
|
Now you can do a little more configuring of it, if you like. #
|
||||||
|
Perhaps enter a better description than the automatically generated one.
|
||||||
|
$if istransfer
|
||||||
|
<div .alert .alert-info>
|
||||||
|
This repository is currently in the transfer group. That's the #
|
||||||
|
right choice if you'll use it to shuttle data back and forth #
|
||||||
|
between other repositories. Otherwise, pick one of the other groups.
|
||||||
<p>
|
<p>
|
||||||
<form .form-horizontal enctype=#{enctype}>
|
<form .form-horizontal enctype=#{enctype}>
|
||||||
<fieldset>
|
<fieldset>
|
||||||
|
@ -11,3 +22,7 @@
|
||||||
Save Changes
|
Save Changes
|
||||||
<a .btn href="@{RepositoriesR}">
|
<a .btn href="@{RepositoriesR}">
|
||||||
Cancel
|
Cancel
|
||||||
|
$if new
|
||||||
|
<p>
|
||||||
|
In a hurry? Feel free to skip this step! You can always come back #
|
||||||
|
and configure this repository later.
|
||||||
|
|
Loading…
Add table
Reference in a new issue