ttrss/plugins/share/init.php

132 lines
3.3 KiB
PHP
Raw Normal View History

2011-12-21 05:46:39 +01:00
<?php
2012-12-23 12:29:16 +01:00
class Share extends Plugin {
2012-12-23 11:52:18 +01:00
private $host;
function about() {
return array(1.0,
"Share article by unique URL",
"fox");
}
/* @var PluginHost $host */
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_SECTION, $this);
2012-12-23 11:52:18 +01:00
}
function get_js() {
return file_get_contents(__DIR__ . "/share.js");
2012-12-23 11:52:18 +01:00
}
function get_css() {
return file_get_contents(__DIR__ . "/share.css");
}
function get_prefs_js() {
return file_get_contents(__DIR__ . "/share_prefs.js");
}
function unshare() {
$id = $_REQUEST['id'];
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET uuid = '' WHERE int_id = ?
AND owner_uid = ?");
$sth->execute([$id, $_SESSION['uid']]);
print __("Article unshared");
}
function hook_prefs_tab_section($id) {
if ($id == "prefFeedsPublishedGenerated") {
?>
<hr/>
<h2><?= __("You can disable all articles shared by unique URLs here.") ?></h2>
<button class='alt-danger' dojoType='dijit.form.Button' onclick="return Plugins.Share.clearKeys()">
<?= __('Unshare all articles') ?></button>
<?php
}
}
function clearArticleKeys() {
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET uuid = '' WHERE
owner_uid = ?");
$sth->execute([$_SESSION['uid']]);
print __("Shared URLs cleared.");
}
function newkey() {
$id = $_REQUEST['id'];
$uuid = uniqid_short();
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET uuid = ? WHERE int_id = ?
AND owner_uid = ?");
$sth->execute([$uuid, $id, $_SESSION['uid']]);
print json_encode(["link" => $uuid]);
}
2012-12-23 11:52:18 +01:00
function hook_article_button($line) {
$icon_class = !empty($line['uuid']) ? "is-shared" : "";
return "<i class='material-icons icon-share share-icon-".$line['int_id']." $icon_class'
style='cursor : pointer' onclick=\"Plugins.Share.shareArticle(".$line['int_id'].")\"
title='".__('Share by URL')."'>link</i>";
2011-12-21 05:46:39 +01:00
}
function shareDialog() {
$id = (int)clean($_REQUEST['id'] ?? 0);
2011-12-21 05:46:39 +01:00
$sth = $this->pdo->prepare("SELECT uuid FROM ttrss_user_entries WHERE int_id = ?
AND owner_uid = ?");
$sth->execute([$id, $_SESSION['uid']]);
2011-12-21 05:46:39 +01:00
if ($row = $sth->fetch()) {
$uuid = $row['uuid'];
2011-12-21 05:46:39 +01:00
if (!$uuid) {
$uuid = uniqid_short();
$sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET uuid = ? WHERE int_id = ?
AND owner_uid = ?");
$sth->execute([$uuid, $id, $_SESSION['uid']]);
2011-12-21 05:46:39 +01:00
}
$url_path = get_self_url_prefix() . "/public.php?op=share&key=$uuid";
2011-12-21 05:46:39 +01:00
?>
2011-12-21 05:46:39 +01:00
<header><?= __("You can share this article by the following unique URL:") ?></header>
2011-12-21 05:46:39 +01:00
<section>
<div class='panel text-center'>
<a class='target-url' href="<?= htmlspecialchars($url_path) ?>"
target='_blank' rel='noopener noreferrer'><?= htmlspecialchars($url_path) ?></a>
</div>
</section>
<?php
} else {
print format_error(__("Article not found."));
2011-12-21 05:46:39 +01: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 05:46:39 +01:00
}
2013-04-19 15:31:56 +02:00
function api_version() {
return 2;
}
2011-12-21 05:46:39 +01:00
}