1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163:
<?php
class CreateAttachment_Notify_Background extends SMF_BackgroundTask
{
public function execute()
{
global $smcFunc, $sourcedir, $scripturl, $modSettings, $language;
$request = $smcFunc['db_query']('', '
SELECT a.id_attach, m.id_board, m.id_msg, m.id_topic, m.id_member, m.subject
FROM {db_prefix}attachments AS a
INNER JOIN {db_prefix}messages AS m ON (m.id_msg = a.id_msg)
WHERE a.id_attach = {int:attachment}
AND a.attachment_type = {int:attachment_type}
AND a.approved = {int:is_approved}',
array(
'attachment' => $this->_details['id'],
'attachment_type' => 0,
'is_approved' => 0,
)
);
if ($smcFunc['db_num_rows']($request) == 0)
return true;
list ($id_attach, $id_board, $id_msg, $id_topic, $id_member, $subject) = $smcFunc['db_fetch_row']($request);
$smcFunc['db_free_result']($request);
require_once($sourcedir . '/Subs-Members.php');
$modMembers = membersAllowedTo('approve_posts', $id_board);
$request = $smcFunc['db_query']('', '
SELECT id_member, email_address, lngfile, real_name
FROM {db_prefix}members
WHERE id_member IN ({array_int:members})',
array(
'members' => array_merge($modMembers, array($id_member)),
)
);
$members = array();
$watched = array();
$real_name = '';
while ($row = $smcFunc['db_fetch_assoc']($request))
{
if ($row['id_member'] == $id_member)
$real_name = $row['real_name'];
else
{
$members[] = $row['id_member'];
$watched[$row['id_member']] = $row;
}
}
$smcFunc['db_free_result']($request);
if (empty($members))
return true;
require_once($sourcedir . '/Subs-Notify.php');
$members = array_unique($members);
$prefs = getNotifyPrefs($members, 'unapproved_attachment', true);
foreach ($watched as $member => $data)
{
$pref = !empty($prefs[$member]['unapproved_attachment']) ? $prefs[$member]['unapproved_attachment'] : 0;
if ($pref & self::RECEIVE_NOTIFY_EMAIL)
{
require_once($sourcedir . '/Subs-Post.php');
require_once($sourcedir . '/ScheduledTasks.php');
loadEssentialThemeData();
$emaildata = loadEmailTemplate(
'unapproved_attachment',
array(
'SUBJECT' => $subject,
'LINK' => $scripturl . '?topic=' . $id_topic . '.msg' . $id_msg . '#msg' . $id_msg,
),
empty($data['lngfile']) || empty($modSettings['userLanguage']) ? $language : $data['lngfile']
);
sendmail(
$data['email_address'],
$emaildata['subject'],
$emaildata['body'],
null,
'ma' . $id_attach,
$emaildata['is_html']
);
}
if ($pref & self::RECEIVE_NOTIFY_ALERT)
{
$alert_rows[] = array(
'alert_time' => time(),
'id_member' => $member,
'id_member_started' => $id_member,
'member_name' => $real_name,
'content_type' => 'msg',
'content_id' => $id_msg,
'content_action' => 'unapproved_attachment',
'is_read' => 0,
'extra' => $smcFunc['json_encode'](
array(
'topic' => $id_topic,
'board' => $id_board,
'content_subject' => $subject,
'content_link' => $scripturl . '?msg=' . $id_msg,
)
),
);
}
}
if (!empty($alert_rows))
{
$smcFunc['db_insert'](
'insert',
'{db_prefix}user_alerts',
array(
'alert_time' => 'int',
'id_member' => 'int',
'id_member_started' => 'int',
'member_name' => 'string',
'content_type' => 'string',
'content_id' => 'int',
'content_action' => 'string',
'is_read' => 'int',
'extra' => 'string',
),
$alert_rows,
array()
);
updateMemberData(array_keys($watched), array('alerts' => '+'));
}
return true;
}
}
?>