eidolon/Handler/ProfileDelete.hs

56 lines
1.8 KiB
Haskell
Raw Normal View History

2014-09-05 18:40:12 +00:00
module Handler.ProfileDelete where
import Import
2014-12-27 23:30:53 +00:00
import Helper
2014-09-05 18:40:12 +00:00
import qualified Data.Text as T
import Data.Maybe
2014-12-07 06:55:03 +00:00
import qualified Data.List as L
2014-09-05 18:40:12 +00:00
import System.Directory
import System.FilePath
getProfileDeleteR :: UserId -> Handler Html
getProfileDeleteR userId = do
2014-12-27 23:01:40 +00:00
checkRes <- profileCheck userId
case checkRes of
Right user -> do
defaultLayout $ do
setTitle "Eidolon :: Delete user profile"
$(widgetFile "profileDelete")
Left (errorMsg, route) -> do
setMessage errorMsg
redirect $ route
2014-09-05 18:40:12 +00:00
postProfileDeleteR :: UserId -> Handler Html
postProfileDeleteR userId = do
2014-12-27 23:01:40 +00:00
checkRes <- profileCheck userId
case checkRes of
Right user -> do
confirm <- lookupPostParam "confirm"
case confirm of
Just "confirm" -> do
albumList <- return $ userAlbums user
mapM (\albumId -> do
album <- runDB $ getJust albumId
mediaList <- return $ albumContent album
mapM (\med -> do
commEnts <- runDB $ selectList [CommentOrigin ==. med] []
mapM (\ent -> runDB $ delete $ entityKey ent) commEnts
medium <- runDB $ getJust med
liftIO $ removeFile (normalise $ L.tail $ mediumPath medium)
liftIO $ removeFile (normalise $ L.tail $ mediumThumb medium)
runDB $ delete med
) mediaList
runDB $ delete albumId
) albumList
runDB $ delete userId
liftIO $ removeDirectoryRecursive $ "static" </> "data" </> (T.unpack $ extractKey userId)
deleteSession "userId"
setMessage "User deleted successfully"
redirect $ HomeR
_ -> do
setMessage "You must confirm the deletion"
redirect $ ProfileSettingsR userId
Left (errorMsg, route) -> do
setMessage errorMsg
redirect $ route