2011-12-21 04:46:39 +00:00
|
|
|
<?php
|
2012-12-23 11:29:16 +00:00
|
|
|
class Share extends Plugin {
|
2021-11-13 16:49:37 +00:00
|
|
|
/** @var PluginHost $host */
|
2012-12-23 10:52:18 +00:00
|
|
|
private $host;
|
|
|
|
|
2012-12-25 06:02:08 +00:00
|
|
|
function about() {
|
2021-03-01 09:11:42 +00:00
|
|
|
return array(null,
|
2012-12-24 11:39:42 +00:00
|
|
|
"Share article by unique URL",
|
|
|
|
"fox");
|
|
|
|
}
|
|
|
|
|
2012-12-25 06:02:08 +00:00
|
|
|
function init($host) {
|
2012-12-23 10:52:18 +00:00
|
|
|
$this->host = $host;
|
|
|
|
|
|
|
|
$host->add_hook($host::HOOK_ARTICLE_BUTTON, $this);
|
2013-07-11 10:11:41 +00:00
|
|
|
$host->add_hook($host::HOOK_PREFS_TAB_SECTION, $this);
|
2012-12-23 10:52:18 +00:00
|
|
|
}
|
|
|
|
|
2021-02-17 06:59:14 +00:00
|
|
|
function is_public_method($method) {
|
|
|
|
return $method == "get";
|
|
|
|
}
|
|
|
|
|
2012-12-23 10:52:18 +00:00
|
|
|
function get_js() {
|
2021-02-17 05:52:39 +00:00
|
|
|
return file_get_contents(__DIR__ . "/share.js");
|
2012-12-23 10:52:18 +00:00
|
|
|
}
|
|
|
|
|
2018-12-05 19:19:46 +00:00
|
|
|
function get_css() {
|
2021-02-17 05:52:39 +00:00
|
|
|
return file_get_contents(__DIR__ . "/share.css");
|
2018-12-05 19:19:46 +00:00
|
|
|
}
|
|
|
|
|
2013-07-11 10:11:41 +00:00
|
|
|
function get_prefs_js() {
|
2021-02-17 05:52:39 +00:00
|
|
|
return file_get_contents(__DIR__ . "/share_prefs.js");
|
2013-07-11 10:11:41 +00:00
|
|
|
}
|
|
|
|
|
2021-11-13 16:49:37 +00:00
|
|
|
/** @return void */
|
2013-07-11 10:03:40 +00:00
|
|
|
function unshare() {
|
2017-12-03 06:43:18 +00:00
|
|
|
$id = $_REQUEST['id'];
|
2013-07-11 10:03:40 +00:00
|
|
|
|
2017-12-03 06:43:18 +00:00
|
|
|
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET uuid = '' WHERE int_id = ?
|
|
|
|
AND owner_uid = ?");
|
|
|
|
$sth->execute([$id, $_SESSION['uid']]);
|
2013-07-11 10:03:40 +00:00
|
|
|
|
2021-02-17 05:52:39 +00:00
|
|
|
print __("Article unshared");
|
2013-07-11 10:03:40 +00:00
|
|
|
}
|
|
|
|
|
2021-11-13 17:07:13 +00:00
|
|
|
/**
|
|
|
|
* @param string $id
|
2021-11-13 16:49:37 +00:00
|
|
|
* @return void */
|
2013-07-11 10:11:41 +00:00
|
|
|
function hook_prefs_tab_section($id) {
|
|
|
|
if ($id == "prefFeedsPublishedGenerated") {
|
2021-02-16 19:07:37 +00:00
|
|
|
?>
|
|
|
|
<hr/>
|
2013-07-11 10:11:41 +00:00
|
|
|
|
2021-03-06 20:51:48 +00:00
|
|
|
<?= format_notice("You can disable all articles shared by unique URLs here.") ?></h2>
|
2013-07-11 10:11:41 +00:00
|
|
|
|
2021-02-16 19:07:37 +00:00
|
|
|
<button class='alt-danger' dojoType='dijit.form.Button' onclick="return Plugins.Share.clearKeys()">
|
2021-03-06 20:51:48 +00:00
|
|
|
<?= \Controls\icon('delete') ?>
|
2021-02-16 19:07:37 +00:00
|
|
|
<?= __('Unshare all articles') ?></button>
|
|
|
|
<?php
|
2013-07-11 10:11:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-13 16:49:37 +00:00
|
|
|
/** @return void */
|
2013-07-11 10:11:41 +00:00
|
|
|
function clearArticleKeys() {
|
2017-12-03 06:43:18 +00:00
|
|
|
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET uuid = '' WHERE
|
|
|
|
owner_uid = ?");
|
|
|
|
$sth->execute([$_SESSION['uid']]);
|
2013-07-11 10:11:41 +00:00
|
|
|
|
2021-02-17 05:52:39 +00:00
|
|
|
print __("Shared URLs cleared.");
|
2013-07-11 10:11:41 +00:00
|
|
|
}
|
|
|
|
|
2021-11-13 16:49:37 +00:00
|
|
|
/** @return void */
|
2013-07-11 10:03:40 +00:00
|
|
|
function newkey() {
|
2017-12-03 06:43:18 +00:00
|
|
|
$id = $_REQUEST['id'];
|
|
|
|
$uuid = uniqid_short();
|
2013-07-11 10:03:40 +00:00
|
|
|
|
2017-12-03 06:43:18 +00:00
|
|
|
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET uuid = ? WHERE int_id = ?
|
|
|
|
AND owner_uid = ?");
|
|
|
|
$sth->execute([$uuid, $id, $_SESSION['uid']]);
|
2013-07-11 10:03:40 +00:00
|
|
|
|
2021-02-17 05:52:39 +00:00
|
|
|
print json_encode(["link" => $uuid]);
|
2013-07-11 10:03:40 +00:00
|
|
|
}
|
|
|
|
|
2021-11-13 16:49:37 +00:00
|
|
|
/**
|
|
|
|
* @param array<string,mixed> $line
|
|
|
|
*
|
|
|
|
* @return string */
|
2012-12-23 10:52:18 +00:00
|
|
|
function hook_article_button($line) {
|
2021-02-17 05:52:39 +00:00
|
|
|
$icon_class = !empty($line['uuid']) ? "is-shared" : "";
|
2013-07-11 12:20:24 +00:00
|
|
|
|
2021-02-17 05:52:39 +00:00
|
|
|
return "<i class='material-icons icon-share share-icon-".$line['int_id']." $icon_class'
|
2018-12-05 19:19:46 +00:00
|
|
|
style='cursor : pointer' onclick=\"Plugins.Share.shareArticle(".$line['int_id'].")\"
|
2022-01-14 15:08:33 +00:00
|
|
|
title=\"".__('Share by URL')."\">link</i>";
|
2011-12-21 04:46:39 +00:00
|
|
|
}
|
|
|
|
|
2021-11-13 16:49:37 +00:00
|
|
|
/** @return void */
|
2021-02-17 06:59:14 +00:00
|
|
|
function get() {
|
|
|
|
$uuid = clean($_REQUEST["key"] ?? "");
|
|
|
|
|
|
|
|
if ($uuid) {
|
|
|
|
$sth = $this->pdo->prepare("SELECT ref_id, owner_uid
|
|
|
|
FROM ttrss_user_entries WHERE uuid = ?");
|
|
|
|
$sth->execute([$uuid]);
|
|
|
|
|
|
|
|
if ($row = $sth->fetch()) {
|
|
|
|
header("Content-Type: text/html");
|
|
|
|
|
|
|
|
$id = $row["ref_id"];
|
|
|
|
$owner_uid = $row["owner_uid"];
|
|
|
|
|
2021-02-17 09:10:19 +00:00
|
|
|
$this->format_article($id, $owner_uid);
|
2021-02-17 06:59:14 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
|
|
|
|
print "Article not found.";
|
|
|
|
}
|
|
|
|
|
2021-11-13 16:49:37 +00:00
|
|
|
private function format_article(int $id, int $owner_uid) : void {
|
2021-02-17 06:59:14 +00:00
|
|
|
|
|
|
|
$pdo = Db::pdo();
|
|
|
|
|
|
|
|
$sth = $pdo->prepare("SELECT id,title,link,content,feed_id,comments,int_id,lang,
|
|
|
|
".SUBSTRING_FOR_DATE."(updated,1,16) as updated,
|
|
|
|
(SELECT site_url FROM ttrss_feeds WHERE id = feed_id) as site_url,
|
|
|
|
(SELECT title FROM ttrss_feeds WHERE id = feed_id) as feed_title,
|
|
|
|
(SELECT hide_images FROM ttrss_feeds WHERE id = feed_id) as hide_images,
|
|
|
|
(SELECT always_display_enclosures FROM ttrss_feeds WHERE id = feed_id) as always_display_enclosures,
|
|
|
|
num_comments,
|
|
|
|
tag_cache,
|
|
|
|
author,
|
|
|
|
guid,
|
|
|
|
note
|
|
|
|
FROM ttrss_entries,ttrss_user_entries
|
|
|
|
WHERE id = ? AND ref_id = id AND owner_uid = ?");
|
|
|
|
$sth->execute([$id, $owner_uid]);
|
|
|
|
|
|
|
|
if ($line = $sth->fetch()) {
|
|
|
|
|
|
|
|
$line["tags"] = Article::_get_tags($id, $owner_uid, $line["tag_cache"]);
|
|
|
|
unset($line["tag_cache"]);
|
|
|
|
|
|
|
|
$line["content"] = Sanitizer::sanitize($line["content"],
|
|
|
|
$line['hide_images'],
|
2021-11-11 19:59:25 +00:00
|
|
|
$owner_uid, $line["site_url"], null, $line["id"]);
|
2021-02-17 06:59:14 +00:00
|
|
|
|
|
|
|
PluginHost::getInstance()->chain_hooks_callback(PluginHost::HOOK_RENDER_ARTICLE,
|
|
|
|
function ($result) use (&$line) {
|
|
|
|
$line = $result;
|
|
|
|
},
|
|
|
|
$line);
|
|
|
|
|
2021-02-17 09:10:19 +00:00
|
|
|
$enclosures = Article::_get_enclosures($line["id"]);
|
2021-05-12 01:46:52 +00:00
|
|
|
list ($og_image, $og_stream) = Article::_get_image($enclosures, $line['content'], $line["site_url"] ?? "", $line);
|
2021-02-17 09:10:19 +00:00
|
|
|
|
|
|
|
$content_decoded = html_entity_decode($line["title"], ENT_NOQUOTES | ENT_HTML401);
|
|
|
|
$parsed_updated = TimeHelper::make_local_datetime($line["updated"], true, $owner_uid, true);
|
|
|
|
|
2021-02-17 06:59:14 +00:00
|
|
|
$line['content'] = DiskCache::rewrite_urls($line['content']);
|
|
|
|
|
2021-03-21 06:35:43 +00:00
|
|
|
if (!$og_image)
|
|
|
|
$og_image = Config::get_self_url() . "/images/favicon-512px.png";
|
|
|
|
|
2021-02-17 09:10:19 +00:00
|
|
|
ob_start();
|
2021-02-17 06:59:14 +00:00
|
|
|
|
2021-02-17 09:10:19 +00:00
|
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
|
|
|
|
<title><?= $line["title"] ?></title>
|
2021-02-19 16:29:43 +00:00
|
|
|
<?= javascript_tag("js/common.js") ?>
|
2021-02-17 09:10:19 +00:00
|
|
|
<?= javascript_tag("js/utility.js") ?>
|
2021-02-17 06:59:14 +00:00
|
|
|
<style type='text/css'>
|
2021-02-17 09:10:19 +00:00
|
|
|
@media (prefers-color-scheme: dark) {
|
2021-02-17 06:59:14 +00:00
|
|
|
body {
|
|
|
|
background : #222;
|
|
|
|
}
|
|
|
|
}
|
2021-02-17 09:10:19 +00:00
|
|
|
body.css_loading * {
|
2021-02-17 06:59:14 +00:00
|
|
|
display : none;
|
|
|
|
}
|
|
|
|
</style>
|
2021-02-17 09:10:19 +00:00
|
|
|
<link rel='shortcut icon' type='image/png' href='images/favicon.png'>
|
|
|
|
<link rel='icon' type='image/png' sizes='72x72' href='images/favicon-72px.png'>
|
|
|
|
|
|
|
|
<meta property='og:title' content="<?= htmlspecialchars($content_decoded) ?>">
|
|
|
|
<meta property='og:description' content="<?= htmlspecialchars(
|
|
|
|
truncate_string(
|
|
|
|
preg_replace("/[\r\n\t]/", "",
|
2021-02-17 06:59:14 +00:00
|
|
|
preg_replace("/ {1,}/", " ",
|
2021-02-17 09:10:19 +00:00
|
|
|
strip_tags($content_decoded)
|
2021-02-17 06:59:14 +00:00
|
|
|
)
|
2021-02-17 09:10:19 +00:00
|
|
|
), 500, "...")) ?>">
|
2021-11-14 18:20:59 +00:00
|
|
|
<meta property='og:image' content="<?= htmlspecialchars($og_image) ?>">
|
2023-02-23 23:46:40 +00:00
|
|
|
<?= Config::get_override_links() ?>
|
2021-03-21 06:35:43 +00:00
|
|
|
</head>
|
2021-02-17 09:10:19 +00:00
|
|
|
|
|
|
|
<body class='flat ttrss_utility ttrss_zoom css_loading'>
|
|
|
|
<div class='container'>
|
|
|
|
|
|
|
|
<div class='content post'>
|
|
|
|
<div class='header'>
|
2021-03-11 19:08:40 +00:00
|
|
|
<div class='row'>
|
|
|
|
<?php if (!empty($line["link"])) { ?>
|
|
|
|
<h1>
|
|
|
|
<a rel='noopener noreferrer'
|
|
|
|
href="<?= htmlspecialchars($line["link"]) ?>"><?= htmlspecialchars($line["title"]) ?></a>
|
|
|
|
</h1>
|
|
|
|
<?php } else { ?>
|
|
|
|
<h1><?= $line["title"] ?></h1>
|
|
|
|
<?php } ?>
|
|
|
|
</div>
|
2021-02-17 09:10:19 +00:00
|
|
|
<div class='row'>
|
|
|
|
<div><?= $line['author'] ?></div>
|
|
|
|
<div><?= $parsed_updated ?></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class='content' lang="<?= $line['lang'] ? $line['lang'] : "en" ?>">
|
|
|
|
<?= $line["content"] ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
<?php
|
2021-02-17 06:59:14 +00:00
|
|
|
|
2021-02-17 09:10:19 +00:00
|
|
|
$rv = ob_get_contents();
|
|
|
|
ob_end_clean();
|
2021-02-17 06:59:14 +00:00
|
|
|
|
2021-02-17 09:10:19 +00:00
|
|
|
PluginHost::getInstance()->chain_hooks_callback(PluginHost::HOOK_FORMAT_ARTICLE,
|
2021-02-17 06:59:14 +00:00
|
|
|
function ($result) use (&$rv) {
|
|
|
|
$rv = $result;
|
|
|
|
},
|
|
|
|
$rv, $line);
|
|
|
|
|
2021-02-17 09:10:19 +00:00
|
|
|
print $rv;
|
|
|
|
}
|
2021-02-17 06:59:14 +00:00
|
|
|
}
|
|
|
|
|
2021-11-13 16:49:37 +00:00
|
|
|
/** @return void */
|
2021-02-17 05:52:39 +00:00
|
|
|
function shareDialog() {
|
|
|
|
$id = (int)clean($_REQUEST['id'] ?? 0);
|
2011-12-21 04:46:39 +00:00
|
|
|
|
2017-12-03 06:43:18 +00:00
|
|
|
$sth = $this->pdo->prepare("SELECT uuid FROM ttrss_user_entries WHERE int_id = ?
|
|
|
|
AND owner_uid = ?");
|
2021-02-17 05:52:39 +00:00
|
|
|
$sth->execute([$id, $_SESSION['uid']]);
|
2011-12-21 04:46:39 +00:00
|
|
|
|
2017-12-03 06:43:18 +00:00
|
|
|
if ($row = $sth->fetch()) {
|
|
|
|
$uuid = $row['uuid'];
|
2011-12-21 04:46:39 +00:00
|
|
|
|
|
|
|
if (!$uuid) {
|
2017-12-03 06:43:18 +00:00
|
|
|
$uuid = uniqid_short();
|
|
|
|
|
|
|
|
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET uuid = ? WHERE int_id = ?
|
|
|
|
AND owner_uid = ?");
|
2021-02-17 05:52:39 +00:00
|
|
|
$sth->execute([$uuid, $id, $_SESSION['uid']]);
|
2011-12-21 04:46:39 +00:00
|
|
|
}
|
|
|
|
|
2021-02-17 06:59:14 +00:00
|
|
|
$url_path = $this->host->get_public_method_url($this, "get", ["key" => $uuid]);
|
2021-02-16 19:07:37 +00:00
|
|
|
?>
|
2011-12-21 04:46:39 +00:00
|
|
|
|
2021-02-16 19:07:37 +00:00
|
|
|
<header><?= __("You can share this article by the following unique URL:") ?></header>
|
2011-12-21 04:46:39 +00:00
|
|
|
|
2021-02-16 19:07:37 +00:00
|
|
|
<section>
|
|
|
|
<div class='panel text-center'>
|
2021-02-17 05:52:39 +00:00
|
|
|
<a class='target-url' href="<?= htmlspecialchars($url_path) ?>"
|
|
|
|
target='_blank' rel='noopener noreferrer'><?= htmlspecialchars($url_path) ?></a>
|
2021-02-16 19:07:37 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
2017-12-03 06:43:18 +00:00
|
|
|
|
2021-02-16 19:07:37 +00:00
|
|
|
<?php
|
2017-12-03 06:43:18 +00:00
|
|
|
|
|
|
|
} else {
|
2021-02-17 05:52:39 +00:00
|
|
|
print format_error(__("Article not found."));
|
2011-12-21 04:46:39 +00:00
|
|
|
}
|
|
|
|
|
2021-02-16 19:07:37 +00:00
|
|
|
?>
|
|
|
|
<footer class='text-center'>
|
|
|
|
<?= \Controls\button_tag(__('Unshare article'), '', ['class' => 'alt-danger', 'onclick' => "App.dialogOf(this).unshare()"]) ?>
|
|
|
|
<?= \Controls\button_tag(__('Generate new URL'), '', ['onclick' => "App.dialogOf(this).newurl()"]) ?>
|
|
|
|
<?= \Controls\submit_tag(__("Close this window")) ?>
|
|
|
|
</footer>
|
|
|
|
<?php
|
2011-12-21 04:46:39 +00:00
|
|
|
}
|
|
|
|
|
2021-11-13 16:49:37 +00:00
|
|
|
/** @return int */
|
2013-04-19 13:31:56 +00:00
|
|
|
function api_version() {
|
|
|
|
return 2;
|
|
|
|
}
|
2011-12-21 04:46:39 +00:00
|
|
|
|
2019-02-21 13:21:16 +00:00
|
|
|
}
|