mirror of
https://github.com/HackPlan/RootPanel.git
synced 2026-04-23 19:21:04 +08:00
46 lines
1.2 KiB
CoffeeScript
46 lines
1.2 KiB
CoffeeScript
{mAccount, mNotification} = app.models
|
|
{i18n, config} = app
|
|
|
|
{NOTICE, EVENT, LOG} = exports =
|
|
NOTICE: 'notice'
|
|
EVENT: 'event'
|
|
LOG: 'log'
|
|
|
|
exports.notice_level =
|
|
ticket_create: NOTICE
|
|
ticket_reply: NOTICE
|
|
ticket_update: EVENT
|
|
|
|
exports.createNotice = (account, type, notice, callback) ->
|
|
level = exports.notice_level[type]
|
|
|
|
mNotification.createNotice account, null, type, level, notice, (notification) ->
|
|
app.mailer.sendMail
|
|
from: config.email.send_from
|
|
to: account.email
|
|
subject: notice.title
|
|
html: notice.body
|
|
, ->
|
|
callback notification
|
|
|
|
exports.createGroupNotice = (group, type, notice, callback) ->
|
|
level = exports.notice_level[type]
|
|
|
|
mNotification.createNotice null, group, type, level, notice, (notification) ->
|
|
unless level == NOTICE
|
|
callback notification
|
|
|
|
mAccount.find
|
|
group: 'root'
|
|
.toArray (err, accounts) ->
|
|
async.each accounts, (account, callback) ->
|
|
app.mailer.sendMail
|
|
from: config.email.send_from
|
|
to: account.email
|
|
subject: notice.title
|
|
html: notice.body
|
|
, ->
|
|
callback()
|
|
, ->
|
|
callback notification
|