1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-07-01 12:40:50 +02:00
ttrss/plugins/mail/init.php

232 lines
6.1 KiB
PHP
Raw Normal View History

2011-12-21 05:46:39 +01:00
<?php
2012-12-23 12:29:16 +01:00
class Mail extends Plugin {
2012-12-23 11:52:18 +01:00
2017-12-03 08:38:17 +01:00
/* @var PluginHost $host */
2012-12-23 11:52:18 +01:00
private $host;
function about() {
return array(1.0,
2013-03-19 17:39:07 +01:00
"Share article via email",
"fox");
}
function init($host) {
2012-12-23 11:52:18 +01:00
$this->host = $host;
$host->add_hook($host::HOOK_ARTICLE_BUTTON, $this);
$host->add_hook($host::HOOK_PREFS_TAB, $this);
$host->add_hook($host::HOOK_HEADLINE_TOOLBAR_SELECT_MENU_ITEM, $this);
2012-12-23 11:52:18 +01:00
}
function get_js() {
return file_get_contents(__DIR__ . "/mail.js");
2012-12-23 11:52:18 +01:00
}
function hook_headline_toolbar_select_menu_item($feed_id, $is_cat) {
return "<div dojoType='dijit.MenuItem' onclick='Plugins.Mail.send()'>".__('Forward by email')."</div>";
}
function save() {
2017-12-03 08:38:17 +01:00
$addresslist = $_POST["addresslist"];
$this->host->set($this, "addresslist", $addresslist);
echo __("Mail addresses saved.");
}
function hook_prefs_tab($args) {
if ($args != "prefPrefs") return;
print "<div dojoType=\"dijit.layout.AccordionPane\"
title=\"<i class='material-icons'>mail</i> ".__('Mail plugin')."\">";
print "<p>" . __("You can set predefined email addressed here (comma-separated list):") . "</p>";
print "<form dojoType=\"dijit.form.Form\">";
print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
evt.preventDefault();
if (this.validate()) {
console.log(dojo.objectToQuery(this.getValues()));
new Ajax.Request('backend.php', {
parameters: dojo.objectToQuery(this.getValues()),
onComplete: function(transport) {
2018-12-02 18:56:30 +01:00
Notify.info(transport.responseText);
}
});
//this.reset();
}
</script>";
2021-02-16 12:32:06 +01:00
print \Controls\hidden_tag("op", "pluginhandler");
print \Controls\hidden_tag("method", "save");
print \Controls\hidden_tag("plugin", "mail");
$addresslist = $this->host->get($this, "addresslist");
print "<textarea dojoType=\"dijit.form.SimpleTextarea\" style='font-size : 12px; width : 50%' rows=\"3\"
name='addresslist'>$addresslist</textarea>";
print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
__("Save")."</button>";
print "</form>";
print "</div>";
}
2012-12-23 11:52:18 +01:00
function hook_article_button($line) {
2018-12-06 06:59:15 +01:00
return "<i class='material-icons' style=\"cursor : pointer\"
onclick=\"Plugins.Mail.send(".$line["id"].")\"
2018-12-06 06:59:15 +01:00
title='".__('Forward by email')."'>mail</i>";
2011-12-21 05:46:39 +01:00
}
function emailArticle() {
$ids = explode(",", clean($_REQUEST['ids']));
2017-12-03 08:38:17 +01:00
$ids_qmarks = arr_qmarks($ids);
2011-12-21 05:46:39 +01:00
print "<form onsubmit=\"return false\">";
2021-02-16 12:32:06 +01:00
print \Controls\hidden_tag("op", "pluginhandler");
print \Controls\hidden_tag("plugin", "mail");
print \Controls\hidden_tag("method", "sendEmail");
2011-12-21 05:46:39 +01:00
2017-12-03 08:38:17 +01:00
$sth = $this->pdo->prepare("SELECT email, full_name FROM ttrss_users WHERE
2018-01-02 00:59:28 +01:00
id = ?");
2017-12-03 08:38:17 +01:00
$sth->execute([$_SESSION['uid']]);
2011-12-21 05:46:39 +01:00
2017-12-03 08:38:17 +01:00
if ($row = $sth->fetch()) {
$user_email = htmlspecialchars($row['email']);
$user_name = htmlspecialchars($row['full_name']);
} else {
$user_name = "";
$user_email = "";
2017-12-03 08:38:17 +01:00
}
2011-12-21 05:46:39 +01:00
if (!$user_name)
$user_name = $_SESSION['name'];
2011-12-21 05:46:39 +01:00
2021-02-16 12:32:06 +01:00
print \Controls\hidden_tag("from_email", "$user_email");
print \Controls\hidden_tag("from_name", "$user_name");
2011-12-21 05:46:39 +01:00
$tpl = new Templator();
2011-12-21 05:46:39 +01:00
$tpl->readTemplateFromFile("email_article_template.txt");
2011-12-21 05:46:39 +01:00
$tpl->setVariable('USER_NAME', $_SESSION["name"], true);
$tpl->setVariable('USER_EMAIL', $user_email, true);
$tpl->setVariable('TTRSS_HOST', $_SERVER["HTTP_HOST"], true);
2011-12-21 05:46:39 +01:00
2017-12-03 08:38:17 +01:00
$sth = $this->pdo->prepare("SELECT DISTINCT link, content, title, note
2011-12-21 05:46:39 +01:00
FROM ttrss_user_entries, ttrss_entries WHERE id = ref_id AND
2017-12-03 08:38:17 +01:00
id IN ($ids_qmarks) AND owner_uid = ?");
$sth->execute(array_merge($ids, [$_SESSION['uid']]));
2011-12-21 05:46:39 +01:00
2017-12-03 08:38:17 +01:00
if (count($ids) > 1) {
2011-12-21 05:46:39 +01:00
$subject = __("[Forwarded]") . " " . __("Multiple articles");
} else {
$subject = "";
2011-12-21 05:46:39 +01:00
}
2017-12-03 08:38:17 +01:00
while ($line = $sth->fetch()) {
2011-12-21 05:46:39 +01:00
if (!$subject)
$subject = __("[Forwarded]") . " " . htmlspecialchars($line["title"]);
$tpl->setVariable('ARTICLE_TITLE', strip_tags($line["title"]));
$tnote = strip_tags($line["note"]);
if( $tnote != ''){
$tpl->setVariable('ARTICLE_NOTE', $tnote, true);
$tpl->addBlock('note');
}
2011-12-21 05:46:39 +01:00
$tpl->setVariable('ARTICLE_URL', strip_tags($line["link"]));
$tpl->addBlock('article');
}
$tpl->addBlock('email');
$content = "";
$tpl->generateOutputToString($content);
print "<table width='100%'><tr><td>";
$addresslist = explode(",", $this->host->get($this, "addresslist"));
2011-12-21 05:46:39 +01:00
print __('To:');
print "</td><td>";
print \Controls\select_tag("destination", "", $addresslist,
["style" => "width: 30em", "required" => 1, "dojoType" => "dijit.form.ComboBox"]);
2011-12-21 05:46:39 +01:00
print "</td></tr><tr><td>";
print __('Subject:');
print "</td><td>";
print "<input dojoType='dijit.form.ValidationTextBox' required='true'
style='width : 30em;' name='subject' value=\"$subject\" id='subject'>";
2011-12-21 05:46:39 +01:00
print "</td></tr>";
print "<tr><td colspan='2'><textarea dojoType='dijit.form.SimpleTextarea'
style='height : 200px; font-size : 12px; width : 98%' rows=\"20\"
2011-12-21 05:46:39 +01:00
name='content'>$content</textarea>";
print "</td></tr></table>";
print "<footer>";
print \Controls\submit_tag(__('Send email'));
print \Controls\cancel_dialog_tag(__('Cancel'));
print "</footer>";
2011-12-21 05:46:39 +01:00
print "</form>";
2011-12-21 05:46:39 +01:00
}
function sendEmail() {
$reply = array();
/*$mail->AddReplyTo(strip_tags($_REQUEST['from_email']),
2014-08-06 08:47:09 +02:00
strip_tags($_REQUEST['from_name']));
//$mail->AddAddress($_REQUEST['destination']);
$addresses = explode(';', $_REQUEST['destination']);
foreach($addresses as $nextaddr)
$mail->AddAddress($nextaddr);
2011-12-21 05:46:39 +01:00
2013-04-03 20:55:46 +02:00
$mail->IsHTML(false);
$mail->Subject = $_REQUEST['subject'];
$mail->Body = $_REQUEST['content'];
2011-12-21 05:46:39 +01:00
$rc = $mail->Send(); */
$to = $_REQUEST["destination"];
$subject = strip_tags($_REQUEST["subject"]);
$message = strip_tags($_REQUEST["content"]);
$from = strip_tags($_REQUEST["from_email"]);
$mailer = new Mailer();
2018-11-22 14:36:10 +01:00
$rc = $mailer->mail(["to_address" => $to,
"headers" => ["Reply-To: $from"],
"subject" => $subject,
"message" => $message]);
2011-12-21 05:46:39 +01:00
2013-04-03 20:55:46 +02:00
if (!$rc) {
$reply['error'] = $mailer->error();
2011-12-21 05:46:39 +01:00
} else {
2017-12-03 08:38:17 +01:00
//save_email_address($destination);
2013-04-03 20:55:46 +02:00
$reply['message'] = "UPDATE_COUNTERS";
2011-12-21 05:46:39 +01:00
}
print json_encode($reply);
}
2013-04-19 15:31:56 +02:00
function api_version() {
return 2;
}
2011-12-21 05:46:39 +01:00
}