2013-03-19 14:32:49 +00:00
|
|
|
<?php
|
|
|
|
class MailTo extends Plugin {
|
|
|
|
private $host;
|
|
|
|
|
|
|
|
function about() {
|
|
|
|
return array(1.0,
|
|
|
|
"Share article via email (using mailto: links, invoking your mail client)",
|
|
|
|
"fox");
|
|
|
|
}
|
|
|
|
|
|
|
|
function init($host) {
|
|
|
|
$this->host = $host;
|
|
|
|
|
|
|
|
$host->add_hook($host::HOOK_ARTICLE_BUTTON, $this);
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_js() {
|
|
|
|
return file_get_contents(dirname(__FILE__) . "/init.js");
|
|
|
|
}
|
|
|
|
|
|
|
|
function hook_article_button($line) {
|
2018-12-06 05:59:15 +00:00
|
|
|
return "<i class='material-icons' style=\"cursor : pointer\"
|
2018-12-03 11:21:50 +00:00
|
|
|
onclick=\"Plugins.Mailto.send(".$line["id"].")\"
|
2018-12-06 05:59:15 +00:00
|
|
|
title='".__('Forward by email')."'>mail_outline</i>";
|
2013-03-19 14:32:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function emailArticle() {
|
|
|
|
|
2017-12-03 07:16:32 +00:00
|
|
|
$ids = explode(",", $_REQUEST['param']);
|
|
|
|
$ids_qmarks = arr_qmarks($ids);
|
2013-03-19 14:32:49 +00:00
|
|
|
|
2020-03-13 11:40:35 +00:00
|
|
|
$tpl = new Templator();
|
2013-03-19 14:32:49 +00:00
|
|
|
|
2020-03-13 11:40:35 +00:00
|
|
|
$tpl->readTemplateFromFile("email_article_template.txt");
|
2013-03-19 14:32:49 +00:00
|
|
|
|
|
|
|
$tpl->setVariable('USER_NAME', $_SESSION["name"], true);
|
2017-04-26 17:57:36 +00:00
|
|
|
//$tpl->setVariable('USER_EMAIL', $user_email, true);
|
2013-03-19 14:32:49 +00:00
|
|
|
$tpl->setVariable('TTRSS_HOST', $_SERVER["HTTP_HOST"], true);
|
|
|
|
|
|
|
|
|
2017-12-03 07:16:32 +00:00
|
|
|
$sth = $this->pdo->prepare("SELECT DISTINCT link, content, title
|
2013-03-19 14:32:49 +00:00
|
|
|
FROM ttrss_user_entries, ttrss_entries WHERE id = ref_id AND
|
2017-12-03 07:16:32 +00:00
|
|
|
id IN ($ids_qmarks) AND owner_uid = ?");
|
|
|
|
$sth->execute(array_merge($ids, [$_SESSION['uid']]));
|
2013-03-19 14:32:49 +00:00
|
|
|
|
2017-12-03 07:16:32 +00:00
|
|
|
if (count($ids) > 1) {
|
2013-03-19 14:32:49 +00:00
|
|
|
$subject = __("[Forwarded]") . " " . __("Multiple articles");
|
2017-12-03 07:16:32 +00:00
|
|
|
} else {
|
|
|
|
$subject = "";
|
2013-03-19 14:32:49 +00:00
|
|
|
}
|
|
|
|
|
2017-12-03 07:16:32 +00:00
|
|
|
while ($line = $sth->fetch()) {
|
2013-03-19 14:32:49 +00:00
|
|
|
|
|
|
|
if (!$subject)
|
|
|
|
$subject = __("[Forwarded]") . " " . htmlspecialchars($line["title"]);
|
|
|
|
|
|
|
|
$tpl->setVariable('ARTICLE_TITLE', strip_tags($line["title"]));
|
|
|
|
$tpl->setVariable('ARTICLE_URL', strip_tags($line["link"]));
|
|
|
|
|
|
|
|
$tpl->addBlock('article');
|
|
|
|
}
|
|
|
|
|
|
|
|
$tpl->addBlock('email');
|
|
|
|
|
|
|
|
$content = "";
|
|
|
|
$tpl->generateOutputToString($content);
|
|
|
|
|
2014-08-26 14:15:13 +00:00
|
|
|
$mailto_link = htmlspecialchars("mailto:?subject=".rawurlencode($subject).
|
2013-04-10 18:48:09 +00:00
|
|
|
"&body=".rawurlencode($content));
|
2013-03-19 14:32:49 +00:00
|
|
|
|
|
|
|
print __("Clicking the following link to invoke your mail client:");
|
|
|
|
|
2018-12-09 13:27:29 +00:00
|
|
|
print "<div class='panel text-center'>";
|
2013-03-19 14:32:49 +00:00
|
|
|
print "<a target=\"_blank\" href=\"$mailto_link\">".
|
|
|
|
__("Forward selected article(s) by email.")."</a>";
|
|
|
|
print "</div>";
|
|
|
|
|
|
|
|
print __("You should be able to edit the message before sending in your mail client.");
|
|
|
|
|
|
|
|
print "<p>";
|
|
|
|
|
2019-02-22 07:48:56 +00:00
|
|
|
print "<footer class='text-center'>";
|
|
|
|
print "<button dojoType='dijit.form.Button' onclick=\"dijit.byId('emailArticleDlg').hide()\">".__('Close this dialog')."</button>";
|
|
|
|
print "</footer>";
|
2013-03-19 14:32:49 +00:00
|
|
|
|
|
|
|
//return;
|
|
|
|
}
|
|
|
|
|
2013-04-19 13:31:56 +00:00
|
|
|
function api_version() {
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
2013-03-19 14:32:49 +00:00
|
|
|
}
|