]> git.immae.eu Git - github/shaarli/Shaarli.git/commitdiff
PLUGIN wallabag
authorArthurHoaro <arthur@hoa.ro>
Wed, 15 Jul 2015 10:05:36 +0000 (12:05 +0200)
committerArthurHoaro <arthur@hoa.ro>
Sat, 7 Nov 2015 15:45:20 +0000 (16:45 +0100)
Add a Wallabag icon in linklist for each link.

COPYING
plugins/wallabag/README.md [new file with mode: 0644]
plugins/wallabag/config.php.dist [new file with mode: 0644]
plugins/wallabag/wallabag.html [new file with mode: 0644]
plugins/wallabag/wallabag.php [new file with mode: 0644]
plugins/wallabag/wallabag.png [new file with mode: 0644]

diff --git a/COPYING b/COPYING
index 1044a3b04ad75e85d01ea221f451a2adea577e84..22929463e48ee2a32c7caf44649903c813a96483 100644 (file)
--- a/COPYING
+++ b/COPYING
@@ -68,6 +68,10 @@ Files: inc/awesomplete*
 License: MIT License (http://opensource.org/licenses/MIT)
 Copyright: (C) 2015 Lea Verou - https://github.com/LeaVerou/awesomplete
 
+Files: plugins/wallabag/wallabag.png
+License: MIT License (http://opensource.org/licenses/MIT)
+Copyright: (C) 2015 Nicolas Lœuillet - https://github.com/wallabag/wallabag
+
 ----------------------------------------------------
 ZLIB/LIBPNG LICENSE
 
diff --git a/plugins/wallabag/README.md b/plugins/wallabag/README.md
new file mode 100644 (file)
index 0000000..08e0d44
--- /dev/null
@@ -0,0 +1,29 @@
+## Save to Wallabag plugin for Shaarli
+
+For each link in your Shaarli, adds a button to save the target page in your [wallabag](https://www.wallabag.org/).
+
+### Installation/configuration
+Clone this repository inside your `tpl/plugins/` directory, or download the archive and unpack it there.  
+The directory structure should look like:
+
+```
+└── tpl
+    └── plugins
+        └── wallabag
+            ├── README.md
+            ├── wallabag.html
+            └── wallabag.png
+```
+
+To enable the plugin, add `'wallabag'` to your list of enabled plugins in `data/options.php` (`PLUGINS` array)
+. This should look like:
+
+```
+$GLOBALS['config']['PLUGINS'] = array('qrcode', 'any_other_plugin', 'wallabag')
+```
+
+Then, set the `WALLABAG_URL` variable in `data/options.php` pointing to your wallabag URL. Example:
+
+```
+$GLOBALS['config']['WALLABAG_URL'] = 'http://demo.wallabag.org' ; //Base URL of your wallabag installation
+```
\ No newline at end of file
diff --git a/plugins/wallabag/config.php.dist b/plugins/wallabag/config.php.dist
new file mode 100644 (file)
index 0000000..7cf0d30
--- /dev/null
@@ -0,0 +1,3 @@
+<?php
+
+$GLOBALS['plugins']['WALLABAG_URL'] = 'https://demo.wallabag.org/';
\ No newline at end of file
diff --git a/plugins/wallabag/wallabag.html b/plugins/wallabag/wallabag.html
new file mode 100644 (file)
index 0000000..ddcf812
--- /dev/null
@@ -0,0 +1 @@
+<span><a href="%s/?plainurl=%s" target="_blank"><img width="13" height="13" src="%s/wallabag/wallabag.png" title="Save to wallabag" /></a></span>
diff --git a/plugins/wallabag/wallabag.php b/plugins/wallabag/wallabag.php
new file mode 100644 (file)
index 0000000..db8151c
--- /dev/null
@@ -0,0 +1,31 @@
+<?php
+
+// don't raise unnecessary warnings
+if (is_file(PluginManager::$PLUGINS_PATH . '/wallabag/config.php')) {
+    include PluginManager::$PLUGINS_PATH . '/wallabag/config.php';
+}
+
+if (!isset($GLOBALS['plugins']['WALLABAG_URL'])) {
+    header('Content-Type: text/plain; charset=utf-8');
+    echo 'Wallabag plugin error: '. PHP_EOL;
+    echo '  Please copy "plugins/wallabag/config.php.dist" to config.php and configure your Wallabag URL.'. PHP_EOL;
+    echo '  You can also define "$GLOBALS[\'plugins\'][\'WALLABAG_URL\']" in your global Shaarli config.php file.';
+    exit;
+}
+
+/**
+ * Add wallabag icon to link_plugin when rendering linklist.
+ *
+ * @param $data - linklist data.
+ * @return mixed - linklist data with wallabag plugin.
+ */
+function hook_wallabag_render_linklist($data) {
+    $wallabag_html = file_get_contents(PluginManager::$PLUGINS_PATH . '/wallabag/wallabag.html');
+
+    foreach ($data['links'] as &$value) {
+        $wallabag = sprintf($wallabag_html, $GLOBALS['plugins']['WALLABAG_URL'], $value['url'], PluginManager::$PLUGINS_PATH);
+        $value['link_plugin'][] = $wallabag;
+    }
+
+    return $data;
+}
diff --git a/plugins/wallabag/wallabag.png b/plugins/wallabag/wallabag.png
new file mode 100644 (file)
index 0000000..70aad33
Binary files /dev/null and b/plugins/wallabag/wallabag.png differ