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;
|
|
|
|
|
2012-12-25 07:02:08 +01:00
|
|
|
function about() {
|
2012-12-24 12:39:42 +01:00
|
|
|
return array(1.0,
|
|
|
|
"Share article by unique URL",
|
|
|
|
"fox");
|
|
|
|
}
|
|
|
|
|
2012-12-25 07:02:08 +01:00
|
|
|
function init($host) {
|
2012-12-23 11:52:18 +01:00
|
|
|
$this->host = $host;
|
|
|
|
|
|
|
|
$host->add_hook($host::HOOK_ARTICLE_BUTTON, $this);
|
2013-07-11 12:11:41 +02:00
|
|
|
$host->add_hook($host::HOOK_PREFS_TAB_SECTION, $this);
|
2012-12-23 11:52:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function get_js() {
|
|
|
|
return file_get_contents(dirname(__FILE__) . "/share.js");
|
|
|
|
}
|
|
|
|
|
2013-07-11 12:11:41 +02:00
|
|
|
function get_prefs_js() {
|
|
|
|
return file_get_contents(dirname(__FILE__) . "/share_prefs.js");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-11 12:03:40 +02:00
|
|
|
function unshare() {
|
|
|
|
$id = db_escape_string($_REQUEST['id']);
|
|
|
|
|
|
|
|
db_query("UPDATE ttrss_user_entries SET uuid = '' WHERE int_id = '$id'
|
|
|
|
AND owner_uid = " . $_SESSION['uid']);
|
|
|
|
|
|
|
|
print "OK";
|
|
|
|
}
|
|
|
|
|
2013-07-11 12:11:41 +02:00
|
|
|
function hook_prefs_tab_section($id) {
|
|
|
|
if ($id == "prefFeedsPublishedGenerated") {
|
|
|
|
|
|
|
|
print_warning(__("You can disable all articles shared by unique URLs here."));
|
|
|
|
|
|
|
|
print "<p>";
|
|
|
|
|
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return clearArticleAccessKeys()\">".
|
|
|
|
__('Unshare all articles')."</button> ";
|
|
|
|
|
|
|
|
print "</p>";
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Silent
|
|
|
|
function clearArticleKeys() {
|
|
|
|
db_query("UPDATE ttrss_user_entries SET uuid = '' WHERE
|
|
|
|
owner_uid = " . $_SESSION["uid"]);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-11 12:03:40 +02:00
|
|
|
function newkey() {
|
|
|
|
$id = db_escape_string($_REQUEST['id']);
|
|
|
|
|
|
|
|
$uuid = db_escape_string(sha1(uniqid(rand(), true)));
|
|
|
|
|
|
|
|
db_query("UPDATE ttrss_user_entries SET uuid = '$uuid' WHERE int_id = '$id'
|
|
|
|
AND owner_uid = " . $_SESSION['uid']);
|
|
|
|
|
|
|
|
print json_encode(array("link" => $uuid));
|
|
|
|
}
|
|
|
|
|
2012-12-23 11:52:18 +01:00
|
|
|
function hook_article_button($line) {
|
2013-03-20 22:59:08 +01:00
|
|
|
return "<img src=\"plugins/share/share.png\"
|
2011-12-21 05:46:39 +01:00
|
|
|
class='tagsPic' style=\"cursor : pointer\"
|
|
|
|
onclick=\"shareArticle(".$line['int_id'].")\"
|
|
|
|
title='".__('Share by URL')."'>";
|
|
|
|
}
|
|
|
|
|
|
|
|
function shareArticle() {
|
2013-04-17 16:34:18 +02:00
|
|
|
$param = db_escape_string($_REQUEST['param']);
|
2011-12-21 05:46:39 +01:00
|
|
|
|
2013-04-17 16:34:18 +02:00
|
|
|
$result = db_query("SELECT uuid, ref_id FROM ttrss_user_entries WHERE int_id = '$param'
|
2011-12-21 05:46:39 +01:00
|
|
|
AND owner_uid = " . $_SESSION['uid']);
|
|
|
|
|
|
|
|
if (db_num_rows($result) == 0) {
|
|
|
|
print "Article not found.";
|
|
|
|
} else {
|
|
|
|
|
|
|
|
$uuid = db_fetch_result($result, 0, "uuid");
|
|
|
|
$ref_id = db_fetch_result($result, 0, "ref_id");
|
|
|
|
|
|
|
|
if (!$uuid) {
|
2013-04-17 16:34:18 +02:00
|
|
|
$uuid = db_escape_string(sha1(uniqid(rand(), true)));
|
|
|
|
db_query("UPDATE ttrss_user_entries SET uuid = '$uuid' WHERE int_id = '$param'
|
2011-12-21 05:46:39 +01:00
|
|
|
AND owner_uid = " . $_SESSION['uid']);
|
|
|
|
}
|
|
|
|
|
2013-03-28 11:01:25 +01:00
|
|
|
print "<h2>". __("You can share this article by the following unique URL:") . "</h2>";
|
2011-12-21 05:46:39 +01:00
|
|
|
|
|
|
|
$url_path = get_self_url_prefix();
|
|
|
|
$url_path .= "/public.php?op=share&key=$uuid";
|
|
|
|
|
|
|
|
print "<div class=\"tagCloudContainer\">";
|
2013-07-11 12:03:40 +02:00
|
|
|
print "<a id='gen_article_url' href='$url_path' target='_blank'>$url_path</a>";
|
2011-12-21 05:46:39 +01:00
|
|
|
print "</div>";
|
|
|
|
|
2013-04-17 16:34:18 +02:00
|
|
|
/* if (!label_find_id(__('Shared'), $_SESSION["uid"]))
|
|
|
|
label_create(__('Shared'), $_SESSION["uid"]);
|
2011-12-21 05:46:39 +01:00
|
|
|
|
2013-04-17 16:34:18 +02:00
|
|
|
label_add_article($ref_id, __('Shared'), $_SESSION['uid']); */
|
2011-12-21 05:46:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
print "<div align='center'>";
|
|
|
|
|
2013-07-11 12:03:40 +02:00
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('shareArticleDlg').unshare()\">".
|
|
|
|
__('Unshare article')."</button>";
|
|
|
|
|
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('shareArticleDlg').newurl()\">".
|
|
|
|
__('Generate new URL')."</button>";
|
|
|
|
|
2011-12-21 05:46:39 +01:00
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('shareArticleDlg').hide()\">".
|
|
|
|
__('Close this window')."</button>";
|
|
|
|
|
|
|
|
print "</div>";
|
|
|
|
}
|
|
|
|
|
2013-04-19 15:31:56 +02:00
|
|
|
function api_version() {
|
|
|
|
return 2;
|
|
|
|
}
|
2011-12-21 05:46:39 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
?>
|