{- This file is part of Vervis. - - Written in 2016, 2018 by fr33domlover . - - ♡ Copying is an act of love. Please copy, reuse and share. - - The author(s) have dedicated all copyright and related and neighboring - rights to this software to the public domain worldwide. This software is - distributed without any warranty. - - You should have received a copy of the CC0 Public Domain Dedication along - with this software. If not, see - . -} module Vervis.Migration ( migrateDB ) where import Prelude import Control.Monad (unless) import Control.Monad.IO.Class (MonadIO) import Control.Monad.Trans.Class (lift) import Control.Monad.Trans.Reader (ReaderT, runReaderT) import Data.ByteString (ByteString) import Data.Foldable (traverse_, for_) import Data.Maybe (fromMaybe, listToMaybe) import Data.Proxy import Data.Text (Text) import Database.Persist import Database.Persist.Migration import Database.Persist.Schema import Database.Persist.Schema.PostgreSQL (schemaBackend) import Database.Persist.Sql (SqlBackend, toSqlKey) import Web.PathPieces (toPathPiece) import Vervis.Migration.Model import Vervis.Model import Vervis.Model.Ident import Vervis.Model.Workflow changes :: MonadIO m => [SchemaT SqlBackend m ()] changes = [ -- 1 traverse_ addEntity model_2016_08_04 -- 2 , unsetFieldDefault "Sharer" "created" -- 3 , unsetFieldDefault "Project" "nextTicket" -- 4 , unsetFieldDefault "Repo" "vcs" -- 5 , unsetFieldDefault "Repo" "mainBranch" -- 6 , removeField "Ticket" "done" -- 7 , addField "Ticket" (Just "'TSNew'") $ Field "status" (FTPrim $ backendDataType (Proxy :: Proxy Text)) FieldRequired -- 8 , traverse_ addEntity model_2016_09_01_just_workflow -- 9 , traverse_ addEntity model_2016_09_01_rest -- 10 , do let key = fromBackendKey defaultBackendKey :: Key Workflow2016 noProjects <- lift $ null <$> selectKeysList [] [LimitTo 1 :: SelectOpt Project] unless noProjects $ lift $ do msid <- listToMaybe <$> selectKeysList [] [Asc SharerId, LimitTo 1] for_ msid $ \ sid -> do let ident = text2wfl "dummy" w = Workflow2016 sid ident Nothing Nothing WSPublic insertKey key w addField "Project" (Just $ toPathPiece key) $ Field "workflow" (FTRef "Workflow") FieldRequired -- 11 , addField "Workflow" (Just "'WSSharer'") (Field "scope" (FTPrim $ backendDataType (Proxy :: Proxy Text)) FieldRequired ) -- 12 , changeFieldType "Person" "hash" $ backendDataType (Proxy :: Proxy ByteString) -- 13 , unsetFieldMaybe "Person" "email" "'no@email'" -- 14 , addField "Person" (Just "TRUE") Field { fieldName = "verified" , fieldType = FTPrim $ backendDataType (Proxy :: Proxy Bool) , fieldMaybe = FieldRequired } -- 15 , addField "Person" (Just "''") Field { fieldName = "verifiedKey" , fieldType = FTPrim $ backendDataType (Proxy :: Proxy Text) , fieldMaybe = FieldRequired } -- 16 , addField "Person" (Just "''") Field { fieldName = "resetPassphraseKey" , fieldType = FTPrim $ backendDataType (Proxy :: Proxy Text) , fieldMaybe = FieldRequired } -- 17 , renameField "Person" "hash" "passphraseHash" ] migrateDB :: MonadIO m => ReaderT SqlBackend m () migrateDB = runMigrations schemaBackend changes