33 lines
1.2 KiB
Haskell
33 lines
1.2 KiB
Haskell
module Jobs.Handler.SendNotification.CorrectionsNotDistributed
|
|
( dispatchNotificationCorrectionsNotDistributed
|
|
) where
|
|
|
|
import Import
|
|
|
|
import Handler.Utils.Mail
|
|
|
|
import Text.Hamlet
|
|
import qualified Data.CaseInsensitive as CI
|
|
|
|
dispatchNotificationCorrectionsNotDistributed :: SheetId -> UserId -> Handler ()
|
|
dispatchNotificationCorrectionsNotDistributed nSheet jRecipient = do
|
|
(Course{..}, Sheet{..}, nbrSubs) <- runDB $ do
|
|
sheet <- getJust nSheet
|
|
course <- belongsToJust sheetCourse sheet
|
|
nbrSubs <- count [ SubmissionSheet ==. nSheet
|
|
, SubmissionRatingBy ==. Nothing
|
|
]
|
|
return (course, sheet, nbrSubs)
|
|
when (nbrSubs > 0) . userMailT jRecipient $ do
|
|
replaceMailHeader "Auto-Submitted" $ Just "auto-generated"
|
|
setSubjectI $ MsgMailSubjectSubmissionsUnassigned courseShorthand sheetName
|
|
MsgRenderer mr <- getMailMsgRenderer
|
|
let termDesc = mr . ShortTermIdentifier $ unTermKey courseTerm
|
|
tid = courseTerm
|
|
ssh = courseSchool
|
|
csh = courseShorthand
|
|
shn = sheetName
|
|
|
|
addAlternatives $
|
|
providePreferredAlternative ($(ihamletFile "templates/mail/correctionsUndistributed.hamlet") :: HtmlUrlI18n UniWorXMessage (Route UniWorX))
|