forked from typecho-fans/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSmtpService.php
176 lines (146 loc) · 6.06 KB
/
SmtpService.php
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
164
165
166
167
168
169
170
171
172
173
174
175
176
<?php
/**
* @author gaobinzhan <gaobinzhan@gmail.com>
* @modify 小码农 <chengshongguo@qq.com> 增加实例化方法
*/
require_once 'Service.php';
require_once 'Extend/SMTP.php';
require_once 'Extend/PHPMailer.php';
class SmtpService extends Service
{
public static function create(){
static $instance ;
if (!$instance){
$instance = new SmtpService();
}
return $instance;
}
public function __handler($active, $comment, $plugin)
{
try {
$isPushBlogger = $plugin->isPushBlogger;
if ($comment['authorId'] == 1 && $isPushBlogger == 1 && !$comment['parent']) return false;
$isPushCommentReply = $plugin->isPushCommentReply;
$options = Helper::options();
$smtpHost = $plugin->smtpHost;
$smtpPort = $plugin->smtpPort;
$smtpUser = $plugin->smtpUser;
$smtpPass = $plugin->smtpPass;
$smtpAuth = $plugin->smtpAuth;
$smtpSecure = $plugin->smtpSecure;
$authorTemplate = $plugin->authorTemplate;
$replyTemplate = $plugin->replyTemplate;
$smtpFromAlias = empty($plugin->smtpFromAlias) ? $options->title : $plugin->smtpFromAlias;
$toAddress = $comment['mail'];
if (empty($smtpHost) || empty($smtpPort) || empty($smtpUser) || empty($smtpPass) || empty($smtpSecure)) throw new \Exception('缺少SMTP邮件推送配置');
$parentComment = NULL;
if ($comment['authorId'] != $comment['ownerId']) {
$author = self::getWidget('Users', 'uid', $comment['ownerId']);
$toAddress = $author->mail;
$parentComment = NULL;
}
if ($comment['parent'] && $comment['parent'] > 0) {
$parentComment = self::getWidget('Comments', 'coid', $comment['parent']);
if (isset($parentComment->coid) && $comment['mail'] != $parentComment->mail) {
$toAddress = $parentComment->mail;
}
}
if (!is_null($parentComment) && $isPushCommentReply != 1) return false;
list($subject, $body) = self::getSubjectAndBody($parentComment, $options, $comment, $active, $authorTemplate, $replyTemplate);
$mail = new PHPMailer(true);
$mail->CharSet = "UTF-8";
$mail->SMTPDebug = 0;
$mail->isSMTP();
$mail->Host = $smtpHost;
$mail->SMTPAuth = empty($smtpAuth) ? false : $smtpAuth;
$mail->Username = $smtpUser;
$mail->Password = $smtpPass;
$mail->SMTPSecure = $smtpSecure;
$mail->Port = $smtpPort;
$mail->setFrom($smtpUser, $smtpFromAlias);
$mail->addAddress($toAddress);
$mail->addReplyTo($smtpUser, $smtpFromAlias);
$mail->isHTML(true);
$mail->Subject = $subject;
$mail->Body = $body;
$mail->AltBody = '如果邮件客户端不支持HTML则显示此内容';
$result = $mail->send();
self::logger(__CLASS__, $toAddress, json_encode($mail), $result);
} catch (\Exception $exception) {
self::logger(__CLASS__, '', '', '', $exception->getMessage());
}
}
private function getSubjectAndBody($parentComment, $options, $comment, $active, $authorTemplate, $replyTemplate)
{
if (!is_null($parentComment)) {
if (is_null($replyTemplate) || empty($replyTemplate)) {
$html = file_get_contents(dirname(__DIR__) . '/theme/reply.html');
} else {
$html = $replyTemplate;
}
} else {
if (is_null($authorTemplate) || empty($authorTemplate)) {
$html = file_get_contents(dirname(__DIR__) . '/theme/author.html');
} else {
$html = $authorTemplate;
}
}
/*$html = !is_null($parentComment) ?
file_get_contents(dirname(__DIR__) . '/theme/reply.html') :
file_get_contents(dirname(__DIR__) . '/theme/author.html');*/
$subject = !is_null($parentComment) ?
_t('您在 [' . trim($options->title) . '] 的评论有了新的回复!') :
_t('您在 [' . trim($options->title) . '] 发表的文章有新评论!');
$body = !is_null($parentComment) ? str_replace(
[
'{blogUrl}',
'{blogName}',
'{author}',
'{permalink}',
'{title}',
'{text}',
'{replyAuthor}',
'{replyText}',
'{commentUrl}'
],
[
trim($options->siteUrl),
trim($options->title),
trim($parentComment->author),
trim($active->permalink . '#comment-' . $comment['coid']),
trim($active->title),
trim($parentComment->text),
trim($comment['author']),
trim($comment['text']),
trim($active->permalink . '#comment-' . $comment['coid'])
], $html) : str_replace(
[
'{blogUrl}',
'{blogName}',
'{author}',
'{permalink}',
'{title}',
'{text}',
'{ip}'
],
[
trim($options->siteUrl),
trim($options->title),
trim($comment['author']),
trim($active->permalink . '#comment-' . $comment['coid']),
trim($active->title),
trim($comment['text']),
trim($comment['ip'])
], $html
);
return [$subject, $body];
}
private function getWidget($table, $key, $val)
{
$className = 'Widget_Abstract_' . $table;
$db = Typecho_Db::get();
$widget = new $className(Typecho_Request::getInstance(), Typecho_Widget_Helper_Empty::getInstance());
$db->fetchRow($widget->select()->where($key . ' = ?', $val)->limit(1), array($widget, 'push'));
return $widget;
}
}