summaryrefslogtreecommitdiff
path: root/data/extensions/google_drive@0xbeef.coffee/google_drive.js
diff options
context:
space:
mode:
Diffstat (limited to 'data/extensions/google_drive@0xbeef.coffee/google_drive.js')
-rw-r--r--data/extensions/google_drive@0xbeef.coffee/google_drive.js105
1 files changed, 0 insertions, 105 deletions
diff --git a/data/extensions/google_drive@0xbeef.coffee/google_drive.js b/data/extensions/google_drive@0xbeef.coffee/google_drive.js
deleted file mode 100644
index be4398c..0000000
--- a/data/extensions/google_drive@0xbeef.coffee/google_drive.js
+++ /dev/null
@@ -1,105 +0,0 @@
-/*
-Copyright (C) 2017 Nathan Nichols
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL NATHAN NICHOLS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-*/
-
-function parseURL(a){
- let url = new URL(a);
- var result = Object.create(null);
- for(let i of url.searchParams) {
- result[i[0]] = i[1];
- }
- return JSON.stringify(result, undefined, 4);
-}
-var id;
-var url;
-function form_check(){
- console.log("boop");
- var format = "";
- var input = document.getElementsByTagName("input");
- if(input[input.length-1].value != "Expected 3 letter file extension"){
- format = input[input.length-1].value;
- } else{
- for(var i = 0; i < input.length-1; i++){
- if(input[i].value != ""){
- format = input[i].value;
- break;
- }
- }
- if(format == ""){
- return 0;
- }
- }
-
- // Supposed to look like this:
- // https://docs.google.com/document/export?format=FORMAT&id=ID
- // Thanks to Alyssa Rosenzweig.
- var new_url = 'https://docs.google.com/document/export?format='+format+'&id='+id;
- document.location.assign(new_url);
- return 0;
-}
-
-
-var contains_apostrophe = "You don't really want to store your data in a cloudy service do you?";
-var opts_form =
- ' <br>'+
- ' <h1>Google Drive without non-free Javascript</h1>'+
- ' '+contains_apostrophe+'<br><br><br>'+
- ' <div id="opts">'+
- ' <b>Please select the format to download in:</b><br><br>'+
- ' <input type="radio" name="format" value="txt"> Plain text ("txt")<br>'+
- ' <input type="radio" name="format" value="odt"> ODT ("odt")<br><br>'+
- ' Or try to get the document in a different format, '+
- ' ("png", "avi", "pdf", etc..):<br><br>'+
- ' <input type="text" value="Expected 3 letter file extension"><br><br>'+
- ' <button id="submit">Go fetch the document<br>'+
- ' </div>'+
- ''+
- ''+
- '';
-
-// see if its a document or not.
-function check_valid(){
- id = "no ID found.";
- var url_arr = document.location.href.split("/");
-
- for(var i = 0; i < url_arr.length-1; i++){
- if(url_arr[i] == "d"){
- id = url_arr[i+1];
- break;
- }
- }
- if(id == "no ID found."){
- // do nothing because it could be an info page or something
- console.log("no id found.");
- return false;
- }
- else {
- return true;
- }
-}
-
-
-
-function main(){
- if(check_valid()){
- console.log("---------------------------------"+Date.now()+":Detected Google Drive."+"---------------------------------");
- window.stop();
- document.head.innerHTML = "";
- document.body.innerHTML = opts_form;
- document.body.style.textAlign = "center";
- document.getElementById("opts").style.textAlign = "left";
- //document.getElementsById("opts").style.float = "left";
- document.body.style.marginTop = "2%"
- document.body.style.marginLeft = "25%"
- document.body.style.marginRight = "25%"
- document.getElementById("submit").addEventListener("click",form_check);
- }
- return 0;
-}
-main();