-- eidolon -- A simple gallery in Haskell and Yesod -- Copyright (C) 2015 Amedeo Molnár -- -- This program is free software: you can redistribute it and/or modify -- it under the terms of the GNU Affero General Public License as published -- by the Free Software Foundation, either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU Affero General Public License for more details. -- -- You should have received a copy of the GNU Affero General Public License -- along with this program. If not, see . module Handler.Profile where import Import import Data.Maybe import qualified Data.Text as T import System.FilePath import Yesod.RssFeed import Yesod.AtomFeed getProfileR :: UserId -> Handler Html getProfileR ownerId = do tempOwner <- runDB $ get ownerId case tempOwner of Just owner -> do let ownerSlug = userSlug owner userAlbs <- runDB $ selectList [AlbumOwner ==. ownerId] [Asc AlbumTitle] allAlbs <- runDB $ selectList [] [Asc AlbumTitle] almostAlbs <- mapM (\alb -> if ownerId `elem` albumShares (entityVal alb) then return $ Just alb else return Nothing ) allAlbs let sharedAlbs = removeItem Nothing almostAlbs recentMedia <- runDB $ selectList [MediumOwner ==. ownerId] [Desc MediumTime] msu <- lookupSession "userId" presence <- case msu of Just tempUserId -> do let userId = getUserIdFromText tempUserId return (userId == ownerId) Nothing -> return False defaultLayout $ do setTitle $ toHtml ("Eidolon :: " `T.append` userSlug owner `T.append` "'s profile") rssLink (UserFeedRssR ownerId) $ userSlug owner `T.append` "'s feed" atomLink (UserFeedAtomR ownerId) $ userSlug owner `T.append` "'s feed" $(widgetFile "profile") Nothing -> do setMessage "This profile does not exist" redirect HomeR getUserR :: Text -> Handler Html getUserR ownerName = do tempOwner <- runDB $ getBy $ UniqueUser ownerName case tempOwner of Just (Entity ownerId _) -> getProfileR ownerId Nothing -> do setMessage "This user does not exist" redirect HomeR