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);
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_js() {
|
|
|
|
return file_get_contents(dirname(__FILE__) . "/share.js");
|
|
|
|
}
|
|
|
|
|
|
|
|
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\">";
|
|
|
|
print "<a id='pub_opml_url' href='$url_path' target='_blank'>$url_path</a>";
|
|
|
|
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'>";
|
|
|
|
|
|
|
|
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('shareArticleDlg').hide()\">".
|
|
|
|
__('Close this window')."</button>";
|
|
|
|
|
|
|
|
print "</div>";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
?>
|