From a59923cc6ea585cdc2abdbcb0f667e1cb52437d4 Mon Sep 17 00:00:00 2001
From: Bob Mottram <bob@freedombone.net>
Date: Sat, 22 Apr 2017 19:07:23 +0100
Subject: [PATCH] Set qvitter background

---
 src/freedombone-utils-gnusocialtools | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/src/freedombone-utils-gnusocialtools b/src/freedombone-utils-gnusocialtools
index 09afbed0e..940064f7f 100755
--- a/src/freedombone-utils-gnusocialtools
+++ b/src/freedombone-utils-gnusocialtools
@@ -87,6 +87,31 @@ function pleroma_set_background_image_from_url {
                     echo "\$config['site']['qvitter']['sitebackground'] = 'img/bg_custom.${ext}';" >> /var/www/${domain_name}/htdocs/config.php
                 fi
             fi
+        else
+            # qvitter background
+            if [ -d /var/www/${domain_name}/htdocs/local/plugins/Qvitter/img ]; then
+                cd /var/www/${domain_name}/htdocs/local/plugins/Qvitter/img
+
+                # remove any existing image
+                if [ -f bg_custom.${ext} ]; then
+                    rm bg_custom.${ext}
+                fi
+
+                # get the new image
+                wget "$url" -O bg_custom.${ext}
+                if [ ! -f bg_custom.${ext} ]; then
+                    echo "$url"
+                    echo $'Custom background image for Qvitter could not be downloaded'
+                    echo "3"
+                    return
+                fi
+                if ! grep -q "bg_custom.${ext}" /var/www/${domain_name}/htdocs/config.php; then
+                    if grep -q 'sitebackground' /var/www/${domain_name}/htdocs/config.php; then
+                        sed -i '/sitebackground/d' /var/www/${domain_name}/htdocs/config.php
+                    fi
+                    echo "\$config['site']['qvitter']['sitebackground'] = 'img/bg_custom.${ext}';" >> /var/www/${domain_name}/htdocs/config.php
+                fi
+            fi
         fi
     else
         echo "2"
-- 
GitLab