2011-12-21 04:46:39 +00:00
|
|
|
<?php
|
2012-12-23 11:29:16 +00:00
|
|
|
class Share extends Plugin {
|
2012-12-23 10:52:18 +00:00
|
|
|
private $host;
|
|
|
|
|
2012-12-25 06:02:08 +00:00
|
|
|
function about() {
|
2012-12-24 11:39:42 +00:00
|
|
|
return array(1.0,
|
|
|
|
"Share article by unique URL",
|
|
|
|
"fox");
|
|
|
|
}
|
|
|
|
|
2017-12-03 06:43:18 +00:00
|
|
|
/* @var PluginHost $host */
|
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
|
|
|
}
|
|
|
|
|
|
|
|
function get_js() {
|
|
|
|
return file_get_contents(dirname(__FILE__) . "/share.js");
|
|
|
|
}
|
|
|
|
|
2018-12-05 19:19:46 +00:00
|
|
|
function get_css() {
|
|
|
|
return file_get_contents(dirname(__FILE__) . "/share.css");
|
|
|
|
}
|
|
|
|
|
2013-07-11 10:11:41 +00:00
|
|
|
function get_prefs_js() {
|
|
|
|
return file_get_contents(dirname(__FILE__) . "/share_prefs.js");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
print "OK";
|
|
|
|
}
|
|
|
|
|
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-02-16 19:07:37 +00:00
|
|
|
<h2><?= __("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()">
|
|
|
|
<?= __('Unshare all articles') ?></button>
|
|
|
|
<?php
|
2013-07-11 10:11:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Silent
|
|
|
|
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
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
print json_encode(array("link" => $uuid));
|
|
|
|
}
|
|
|
|
|
2012-12-23 10:52:18 +00:00
|
|
|
function hook_article_button($line) {
|
2018-12-05 19:19:46 +00:00
|
|
|
$img_class = $line['uuid'] ? "shared" : "";
|
2013-07-11 12:20:24 +00:00
|
|
|
|
2018-12-05 19:19:46 +00:00
|
|
|
return "<i id='SHARE-IMG-".$line['int_id']."' class='material-icons icon-share $img_class'
|
|
|
|
style='cursor : pointer' onclick=\"Plugins.Share.shareArticle(".$line['int_id'].")\"
|
2018-12-05 19:33:09 +00:00
|
|
|
title='".__('Share by URL')."'>link</i>";
|
2011-12-21 04:46:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function shareArticle() {
|
2017-12-03 06:43:18 +00:00
|
|
|
$param = $_REQUEST['param'];
|
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 = ?");
|
|
|
|
$sth->execute([$param, $_SESSION['uid']]);
|
2011-12-21 04:46:39 +00:00
|
|
|
|
2017-12-03 06:43:18 +00:00
|
|
|
if ($row = $sth->fetch()) {
|
2011-12-21 04:46:39 +00:00
|
|
|
|
2017-12-03 06:43:18 +00:00
|
|
|
$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 = ?");
|
|
|
|
$sth->execute([$uuid, $param, $_SESSION['uid']]);
|
2011-12-21 04:46:39 +00:00
|
|
|
}
|
|
|
|
|
2021-02-16 19:07:37 +00:00
|
|
|
$url_path = htmlspecialchars(get_self_url_prefix() . "/public.php?op=share&key=$uuid");
|
2011-12-21 04:46:39 +00:00
|
|
|
|
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'>
|
|
|
|
<a id='gen_article_url' href="<?= $url_path ?>"
|
|
|
|
target='_blank' rel='noopener noreferrer'><?= $url_path ?></a>
|
|
|
|
</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 {
|
|
|
|
print "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
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|