浏览代码

Remove off-site links within ghost blog

Bob Mottram 8 年前
父节点
当前提交
24db8ee43c
共有 1 个文件被更改,包括 33 次插入0 次删除
  1. 33
    0
      src/freedombone-app-ghost

+ 33
- 0
src/freedombone-app-ghost 查看文件

47
                  DDNS_PROVIDER
47
                  DDNS_PROVIDER
48
                  MY_USERNAME)
48
                  MY_USERNAME)
49
 
49
 
50
+function ghost_replace_jquery {
51
+    sed -i "s|code.jquery.com/jquery-${previous_jquery_version}.min.js|$GHOST_DOMAIN_NAME/jquery-${jquery_version}.js|g" content/themes/casper/default.hbs
52
+    sed -i "s|code.jquery.com/jquery-${previous_jquery_version}.min.js|$GHOST_DOMAIN_NAME/jquery-${jquery_version}.js|g" core/server/data/migration/fixtures/004/01-move-jquery-with-alert.js
53
+    sed -i "s|code.jquery.com/jquery-${previous_jquery_version}.min.js|$GHOST_DOMAIN_NAME/jquery-${jquery_version}.js|g" node_modules/gscan/app/tpl/layouts/default.hbs
54
+}
55
+
56
+function ghost_remove_offsite_links {
57
+    cd /var/www/$GHOST_DOMAIN_NAME/htdocs
58
+
59
+    # remove google font links
60
+    # Note that the privacy options in config.js aren't sufficient to remove Google's tentacles
61
+    sed -i "s/fonts.googleapis.com/$GHOST_DOMAIN_NAME/g" content/themes/casper/default.hbs
62
+    sed -i "s/fonts.googleapis.com/$GHOST_DOMAIN_NAME/g" core/server/apps/amp/lib/views/amp.hbs
63
+
64
+    # copy jquery locally
65
+    previous_jquery_version='1.12.0'
66
+    jquery_version='1.12.4'
67
+    if [ ! -f /var/www/$GHOST_DOMAIN_NAME/htdocs/jquery-${jquery_version}.js ]; then
68
+        wget https://code.jquery.com/jquery-${jquery_version}.js
69
+        jquery_hash=$(sha256sum jquery-${jquery_version}.js | awk -F ' ' '{print $1}')
70
+        if [[ "$jquery_hash" != '430f36f9b5f21aae8cc9dca6a81c4d3d84da5175eaedcf2fdc2c226302cb3575' ]]; then
71
+            echo $'Unexpected jquery hash value'
72
+            exit 258442
73
+        fi
74
+    fi
75
+    ghost_replace_jquery
76
+    previous_jquery_version='1.11.3'
77
+    ghost_replace_jquery
78
+}
79
+
50
 function ghost_replace_proprietary_services {
80
 function ghost_replace_proprietary_services {
51
     replace_file=$1
81
     replace_file=$1
52
 
82
 
130
     ghost_replace_services
160
     ghost_replace_services
131
     chown -R ghost: /var/www/${GHOST_DOMAIN_NAME}/htdocs
161
     chown -R ghost: /var/www/${GHOST_DOMAIN_NAME}/htdocs
132
 
162
 
163
+    ghost_remove_offsite_links
133
     systemctl restart ghost
164
     systemctl restart ghost
134
 }
165
 }
135
 
166
 
361
     echo '[Install]' >> /etc/systemd/system/ghost.service
392
     echo '[Install]' >> /etc/systemd/system/ghost.service
362
     echo 'WantedBy=multi-user.target' >> /etc/systemd/system/ghost.service
393
     echo 'WantedBy=multi-user.target' >> /etc/systemd/system/ghost.service
363
 
394
 
395
+    ghost_remove_offsite_links
396
+
364
     systemctl enable ghost
397
     systemctl enable ghost
365
     systemctl daemon-reload
398
     systemctl daemon-reload
366
     systemctl start ghost
399
     systemctl start ghost