diff options
author | 2025-02-20 15:02:04 +0100 | |
---|---|---|
committer | 2025-02-20 15:02:07 +0100 | |
commit | 1e75f8998e8ba9c88ce6dbf7e809e30c233eb611 (patch) | |
tree | 682442c3b3c8786e1781ea53c81d84ba213bd3a9 | |
parent | 9772e7f357585f567c7d93e138870f460f0342ab (diff) |
`withStore` creates repository/ initial commitmain
-rw-r--r-- | src/Store/Store.hs | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/src/Store/Store.hs b/src/Store/Store.hs index 61be89b..94382af 100644 --- a/src/Store/Store.hs +++ b/src/Store/Store.hs @@ -1,3 +1,5 @@ +{-# LANGUAGE LambdaCase #-} + module Store.Store ( StoreM, withStore, @@ -71,11 +73,25 @@ type StoreM = StoreT IO withStore :: FilePath -> G.RefName -> StoreM a -> IO a withStore repoPath ref action = do - repo <- G.openRepository GB.lgFactory G.defaultRepositoryOptions {G.repoPath} + repo <- + G.openRepository + GB.lgFactory + G.defaultRepositoryOptions + { G.repoPath, + G.repoAutoCreate = True + } + (cid, tid) <- G.runRepository GB.lgFactory repo do - Just cid <- fmap Tagged <$> G.resolveReference ref - tid <- (.commitTree) <$> G.lookupCommit cid - pure (cid, tid) + fmap Tagged <$> G.resolveReference ref >>= \case + Nothing -> do + now <- lift (utcToZonedTime <$> getCurrentTimeZone <*> getCurrentTime) + let sig = G.Signature "author" "email" now + tid <- G.createTree (pure ()) + cid <- G.commitOid <$> G.createCommit [] tid sig sig "auto-init" (Just ref) + pure (cid, tid) + Just cid -> do + tid <- (.commitTree) <$> G.lookupCommit cid + pure (cid, tid) runReaderT (evalStateT (runStoreT action) (State {cid, tid})) |