From b6c39699bc27218eff840e79f0d7d7a7570157c0 Mon Sep 17 00:00:00 2001 From: Cyril Levis <git@levis.name> Date: Mon, 23 Sep 2024 08:57:38 +0200 Subject: [PATCH] chore: add plugins in the image --- .docker/app/Dockerfile | 7 ++- plugins/owncloud/init.php | 99 ++++++++++++++++++++++++++++++++++ plugins/owncloud/owncloud.js | 27 ++++++++++ plugins/owncloud/owncloud.png | Bin 0 -> 625 bytes 4 files changed, 132 insertions(+), 1 deletion(-) create mode 100644 plugins/owncloud/init.php create mode 100644 plugins/owncloud/owncloud.js create mode 100644 plugins/owncloud/owncloud.png diff --git a/.docker/app/Dockerfile b/.docker/app/Dockerfile index ccad1e47c..63eaf8c6e 100644 --- a/.docker/app/Dockerfile +++ b/.docker/app/Dockerfile @@ -54,9 +54,14 @@ ADD .docker/app/config.docker.php ${SCRIPT_ROOT} COPY . ${SRC_DIR} ARG ORIGIN_REPO_XACCEL=https://git.tt-rss.org/fox/ttrss-nginx-xaccel.git - RUN git clone --depth=1 ${ORIGIN_REPO_XACCEL} ${SRC_DIR}/plugins.local/nginx_xaccel +ARG ORIGIN_REPO_SMTP=https://git.tt-rss.org/fox/ttrss-mailer-smtp.git +RUN git clone --depth=1 ${ORIGIN_REPO_SMTP} ${SRC_DIR}/plugins.local/mailer_smtp + +ARG ORIGIN_REPO_MASTODON=https://framagit.org/framasoft/ttrss/ttrss_mastodon.git +RUN git clone --depth=1 ${ORIGIN_REPO_MASTODON} ${SRC_DIR}/plugins.local/mastodon + ENV OWNER_UID=1000 ENV OWNER_GID=1000 diff --git a/plugins/owncloud/init.php b/plugins/owncloud/init.php new file mode 100644 index 000000000..44defbc91 --- /dev/null +++ b/plugins/owncloud/init.php @@ -0,0 +1,99 @@ +<?php +require_once "config.php"; + +class OwnCloud extends Plugin { + private $host; + + function about() { + return array(1.0, + "Adds support for OwnCloud ReadLater", + "cy8aer"); + } + + function init($host) { + $this->host = $host; + + $host->add_hook($host::HOOK_ARTICLE_BUTTON, $this); + $host->add_hook($host::HOOK_PREFS_TAB, $this); + } + + function save() { + $owncloud_url = db_escape_string($_POST["owncloud_url"]); + $this->host->set($this, "owncloud", $owncloud_url); + echo "Value set to $owncloud_url"; + } + + function get_js() { + return file_get_contents(dirname(__FILE__) . "/owncloud.js"); + } + + function hook_prefs_tab($args) { + if ($args != "prefPrefs") return; + + print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__("Owncloud")."\">"; + + print "<br/>"; + + $value = $this->host->get($this, "owncloud"); + print "<form dojoType=\"dijit.form.Form\">"; + + print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\"> + evt.preventDefault(); + if (this.validate()) { + console.log(dojo.objectToQuery(this.getValues())); + new Ajax.Request('backend.php', { + parameters: dojo.objectToQuery(this.getValues()), + onComplete: function(transport) { + notify_info(transport.responseText); + } + }); + } + </script>"; + + print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pluginhandler\">"; + print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"save\">"; + print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"plugin\" value=\"owncloud\">"; + print "<table width=\"100%\" class=\"prefPrefsList\">"; + print "<tr><td width=\"40%\">".__("Owncloud url")."</td>"; + print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\" name=\"owncloud_url\" regExp='^(http|https)://.*' value=\"$value\"></td></tr>"; + print "</table>"; + print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".__("Save")."</button>"; + + print "</form>"; + + print "</div>"; #pane + + } + + function hook_article_button($line) { + return "<img src=\"".basename(dirname(__DIR__))."/owncloud/owncloud.png\" + style=\"cursor : pointer\" style=\"cursor : pointer\" + onclick=\"ownArticle(".$line["id"].")\" + class='tagsPic' title='".__('Bookmark on OwnCloud ')."'>"; + } + + function getOwnCloud() { + $id = db_escape_string($_REQUEST['id']); + + $result = db_query("SELECT title, link + FROM ttrss_entries, ttrss_user_entries + WHERE id = '$id' AND ref_id = id AND owner_uid = " .$_SESSION['uid']); + + if (db_num_rows($result) != 0) { + $title = truncate_string(strip_tags(db_fetch_result($result, 0, 'title')), + 100, '...'); + $article_link = db_fetch_result($result, 0, 'link'); + } + + $own_url = $this->host->get($this, "owncloud"); + + print json_encode(array("title" => $title, "link" => $article_link, + "id" => $id, "ownurl" => $own_url)); + } + + function api_version() { + return 2; + } + +} +?> diff --git a/plugins/owncloud/owncloud.js b/plugins/owncloud/owncloud.js new file mode 100644 index 000000000..df929e015 --- /dev/null +++ b/plugins/owncloud/owncloud.js @@ -0,0 +1,27 @@ +function ownArticle(id) { + try { + var query = "?op=pluginhandler&plugin=owncloud&method=getOwnCloud&id=" + param_escape(id); + + console.log(query); + + var d = new Date(); + var ts = d.getTime(); + + var w = window.open('backend.php?op=backend&method=loading', 'ttrss_tweet', + "status=0,toolbar=0,location=0,width=600,height=500,scrollbars=1,menubar=0"); + + new Ajax.Request("backend.php", { + parameters: query, + onComplete: function(transport) { + var ti = JSON.parse(transport.responseText); + + var share_url = ti.ownurl + "/apps/bookmarks/addBm.php?output=popup&url=" + param_escape(ti.link) + + '&title=' + ti.title; + + w.location.href = share_url; + } }); + } catch (e) { + exception_error("ownArticle", e); + } +} + diff --git a/plugins/owncloud/owncloud.png b/plugins/owncloud/owncloud.png new file mode 100644 index 0000000000000000000000000000000000000000..d31ba924be958e7017a0ae5643a4700d93dc858b GIT binary patch literal 625 zcmV-%0*?KOP)<h;3K|Lk000e1NJLTq000mG000mO1^@s6AM^iV00006VoOIv0RI60 z0RN!9r;`8x010qNS#tmY3ljhU3ljkVnw%H_000McNliru+y)v39s(y07VZE50scuu zK~y-)rI5=@lu;OmpL4z$#~IP_l1)?2R9ZoW1ZCo&Hc3+&5z(R|qUEfDh^R%hD5!;- z`Ul!Xn{FFzk!T@^U9br?EE2<{i(pfl+HJnk@4PKCNvyExS-t0+_xI!BsNlNlu-2YS z8XZO9VIc^%!E_j7$1Q(g^$o4`4iqjHio&IoDnnW8wMIwD5RH!NKWUe(2oZ}`;qzwy z&BQZD+p;vVXoMV}mkZ}kU|AL~24Au3;1N<O`?npIKTvx1=b^5ql8fh05?EYBxFpE< z<R@}`UIN8MtSSxD)7OuP%qf^-P*~t+d}5N3<Od!mo)8QyLV)Grr5xDXK*~;Y<=U<J z1%(BE)~+d~@ys!@+-`<m4-?tEVRmU{co{8sJJ}N1gg4v6<*UuucKXL-r2deMeVmX- z-F+e=lAfB9#LWCFJ$=u`aU2m5X}aAmq4Jo7%44D%w$)IOpGQeBK%)C854w6msd=9@ zJ?)@o?zdJ~aCrZ2^7C@h{R1xn2remRY<z-fbp=^&H;!Xw!;WM4ma=CH28Z5q`gok3 z+iP*%>+0d?sYYt6HqzRDpLfYo9``=u&F~2O_S6Hy^`=&Gb9{XM@|EQKQEoQ3QCCw* z%biYCs5~b82O7c7I4#)PU^+6*8%&2b#*P~?ZU1B<*hWm7F?RerEYQz3`t_W@00000 LNkvXXu0mjfK%X9( literal 0 HcmV?d00001 -- GitLab