]> git.wh0rd.org Git - tt-rss.git/blob - plugins/mail/init.php
added a personalized email template. if the file:
[tt-rss.git] / plugins / mail / init.php
1 <?php
2 class Mail extends Plugin {
3
4         private $host;
5
6         function about() {
7                 return array(1.0,
8                         "Share article via email",
9                         "fox");
10         }
11
12         function init($host) {
13                 $this->host = $host;
14
15                 $host->add_hook($host::HOOK_ARTICLE_BUTTON, $this);
16         }
17
18         function get_js() {
19                 return file_get_contents(dirname(__FILE__) . "/mail.js");
20         }
21
22         function hook_article_button($line) {
23                 return "<img src=\"plugins/mail/mail.png\"
24                                         class='tagsPic' style=\"cursor : pointer\"
25                                         onclick=\"emailArticle(".$line["id"].")\"
26                                         alt='Zoom' title='".__('Forward by email')."'>";
27         }
28
29         function emailArticle() {
30
31                 $param = db_escape_string($_REQUEST['param']);
32
33                 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pluginhandler\">";
34                 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"plugin\" value=\"mail\">";
35                 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"sendEmail\">";
36
37                 $result = db_query("SELECT email, full_name FROM ttrss_users WHERE
38                         id = " . $_SESSION["uid"]);
39
40                 $user_email = htmlspecialchars(db_fetch_result($result, 0, "email"));
41                 $user_name = htmlspecialchars(db_fetch_result($result, 0, "full_name"));
42
43                 if (!$user_name) $user_name = $_SESSION['name'];
44
45                 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"from_email\" value=\"$user_email\">";
46                 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"from_name\" value=\"$user_name\">";
47
48                 require_once "lib/MiniTemplator.class.php";
49
50                 $tpl = new MiniTemplator;
51                 $tpl_t = new MiniTemplator;
52
53                 $templ_name = "templates/email_article_template.txt";
54                 if(file_exists("templates/my_email_article_template.txt"))
55                         $templ_name = "templates/my_email_article_template.txt";
56                 $tpl->readTemplateFromFile($templ_name);
57
58                 $tpl->setVariable('USER_NAME', $_SESSION["name"], true);
59                 $tpl->setVariable('USER_EMAIL', $user_email, true);
60                 $tpl->setVariable('TTRSS_HOST', $_SERVER["HTTP_HOST"], true);
61
62                 $result = db_query("SELECT link, content, title, note 
63                         FROM ttrss_user_entries, ttrss_entries WHERE id = ref_id AND
64                         id IN ($param) AND owner_uid = " . $_SESSION["uid"]);
65
66                 if (db_num_rows($result) > 1) {
67                         $subject = __("[Forwarded]") . " " . __("Multiple articles");
68                 }
69
70                 while ($line = db_fetch_assoc($result)) {
71
72                         if (!$subject)
73                                 $subject = __("[Forwarded]") . " " . htmlspecialchars($line["title"]);
74
75                         $tpl->setVariable('ARTICLE_TITLE', strip_tags($line["title"]));
76                         $tnote = strip_tags($line["note"]);
77                         if( $tnote != ''){
78                                 $tpl->setVariable('ARTICLE_NOTE', $tnote, true);
79                                 $tpl->addBlock('note');
80                         }
81                         $tpl->setVariable('ARTICLE_URL', strip_tags($line["link"]));
82
83                         $tpl->addBlock('article');
84                 }
85
86                 $tpl->addBlock('email');
87
88                 $content = "";
89                 $tpl->generateOutputToString($content);
90
91                 print "<table width='100%'><tr><td>";
92
93                 print __('From:');
94
95                 print "</td><td>";
96
97                 print "<input dojoType=\"dijit.form.TextBox\" disabled=\"1\" style=\"width : 30em;\"
98                                 value=\"$user_name <$user_email>\">";
99
100                 print "</td></tr><tr><td>";
101
102                 print __('To:');
103
104                 print "</td><td>";
105
106                 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"true\"
107                                 style=\"width : 30em;\"
108                                 name=\"destination\" id=\"emailArticleDlg_destination\">";
109
110                 print "<div class=\"autocomplete\" id=\"emailArticleDlg_dst_choices\"
111                                 style=\"z-index: 30; display : none\"></div>";
112
113                 print "</td></tr><tr><td>";
114
115                 print __('Subject:');
116
117                 print "</td><td>";
118
119                 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"true\"
120                                 style=\"width : 30em;\"
121                                 name=\"subject\" value=\"$subject\" id=\"subject\">";
122
123                 print "</td></tr>";
124
125                 print "<tr><td colspan='2'><textarea dojoType=\"dijit.form.SimpleTextarea\" style='font-size : 12px; width : 100%' rows=\"20\"
126                         name='content'>$content</textarea>";
127
128                 print "</td></tr></table>";
129
130                 print "<div class='dlgButtons'>";
131                 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('emailArticleDlg').execute()\">".__('Send e-mail')."</button> ";
132                 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('emailArticleDlg').hide()\">".__('Cancel')."</button>";
133                 print "</div>";
134
135                 //return;
136         }
137
138         function sendEmail() {
139                 require_once 'classes/ttrssmailer.php';
140
141                 $reply = array();
142
143                 $mail = new ttrssMailer();
144
145                 $mail->From = strip_tags($_REQUEST['from_email']);
146                 $mail->FromName = strip_tags($_REQUEST['from_name']);
147                 //$mail->AddAddress($_REQUEST['destination']);
148                 $addresses = explode(';', $_REQUEST['destination']);
149                 foreach($addresses as $nextaddr)
150                         $mail->AddAddress($nextaddr);
151
152                 $mail->IsHTML(false);
153                 $mail->Subject = $_REQUEST['subject'];
154                 $mail->Body = $_REQUEST['content'];
155
156                 $rc = $mail->Send();
157
158                 if (!$rc) {
159                         $reply['error'] =  $mail->ErrorInfo;
160                 } else {
161                         save_email_address(db_escape_string($destination));
162                         $reply['message'] = "UPDATE_COUNTERS";
163                 }
164
165                 print json_encode($reply);
166         }
167
168         function completeEmails() {
169                 $search = db_escape_string($_REQUEST["search"]);
170
171                 print "<ul>";
172
173                 foreach ($_SESSION['stored_emails'] as $email) {
174                         if (strpos($email, $search) !== false) {
175                                 print "<li>$email</li>";
176                         }
177                 }
178
179                 print "</ul>";
180         }
181
182         function api_version() {
183                 return 2;
184         }
185
186 }
187 ?>