ttrss/plugins/mailto/init.php

96 lines
2.4 KiB
PHP
Raw Normal View History

<?php
class MailTo extends Plugin {
private $host;
function about() {
return array(null,
"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);
$host->add_hook($host::HOOK_HEADLINE_TOOLBAR_SELECT_MENU_ITEM, $this);
}
function hook_headline_toolbar_select_menu_item($feed_id, $is_cat) {
2021-02-17 13:53:00 +01:00
return "<div dojoType='dijit.MenuItem' onclick='Plugins.Mailto.send()'>".__('Forward by email (mailto:)')."</div>";
}
function get_js() {
return file_get_contents(__DIR__ . "/init.js");
}
function hook_article_button($line) {
2018-12-06 06:59:15 +01:00
return "<i class='material-icons' style=\"cursor : pointer\"
onclick=\"Plugins.Mailto.send(".$line["id"].")\"
2021-02-17 13:53:00 +01:00
title='".__('Forward by email (mailto:)')."'>mail_outline</i>";
}
function emailArticle() {
$ids = explode(",", clean($_REQUEST['ids']));
2017-12-03 08:16:32 +01:00
$ids_qmarks = arr_qmarks($ids);
$tpl = new Templator();
$tpl->readTemplateFromFile("email_article_template.txt");
$tpl->setVariable('USER_NAME', $_SESSION["name"], true);
//$tpl->setVariable('USER_EMAIL', $user_email, true);
$tpl->setVariable('TTRSS_HOST', $_SERVER["HTTP_HOST"], true);
2017-12-03 08:16:32 +01:00
$sth = $this->pdo->prepare("SELECT DISTINCT link, content, title
FROM ttrss_user_entries, ttrss_entries WHERE id = ref_id AND
2017-12-03 08:16:32 +01:00
id IN ($ids_qmarks) AND owner_uid = ?");
$sth->execute(array_merge($ids, [$_SESSION['uid']]));
2017-12-03 08:16:32 +01:00
if (count($ids) > 1) {
$subject = __("[Forwarded]") . " " . __("Multiple articles");
2017-12-03 08:16:32 +01:00
} else {
$subject = "";
}
2017-12-03 08:16:32 +01:00
while ($line = $sth->fetch()) {
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);
2021-02-17 13:53:00 +01:00
$mailto_link = "mailto:?subject=".rawurlencode($subject)."&body=".rawurlencode($content);
2021-02-17 13:53:00 +01:00
?>
2021-02-17 13:53:00 +01:00
<section>
<div class='panel text-center'>
<a target="_blank" href="<?= htmlspecialchars($mailto_link) ?>">
<?= __("Click to open your mail client") ?>
</a>
</div>
</section>
2021-02-17 13:53:00 +01:00
<footer class='text-center'>
<?= \Controls\submit_tag(__('Close this dialog')) ?>
</footer>
2021-02-17 13:53:00 +01:00
<?php
}
2013-04-19 15:31:56 +02:00
function api_version() {
return 2;
}
}