From ae2c5fe141a11e598032d1b3ac26aafc4d961799 Mon Sep 17 00:00:00 2001 From: Unknown Date: Mon, 2 Apr 2018 14:08:43 +0100 Subject: add documentation and main repo --- main-repo/wget93/wget93.js | 52 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 main-repo/wget93/wget93.js (limited to 'main-repo/wget93/wget93.js') diff --git a/main-repo/wget93/wget93.js b/main-repo/wget93/wget93.js new file mode 100644 index 0000000..8734730 --- /dev/null +++ b/main-repo/wget93/wget93.js @@ -0,0 +1,52 @@ +le._apps.wget93 = { + exec: function() + { + try { + if (this.arg.arguments.length == 0) { + $log(`wget93 v0.1.0 by 1024x2 +wget93 [url] [output] +example: wget93 http://tobefa.ir/youhavetoha.ve /a/veryhightounderstand/rickandmor.ty + +NOTE: Downloading binary files doesn't work, only text.`); + } else if (this.arg.arguments.length != 2) { + throw new Error("missing url/destination"); + } else { + $log.info("Downloading..."); + var url = this.arg.arguments[0]; + if (this.arg.arguments[1].startsWith("/a/")) { + var output = this.arg.arguments[1].substring(3); + } else { + var output = this.arg.arguments[1]; + } + var request = new XMLHttpRequest(); + request.addEventListener("load", function () { + if (request.status != 200) { + $log.error("❌ wget93: " + request.statusText); + } else { + $log.succes("✔️ Downloaded!"); + $log.info("Saving..."); + $store.set(output, request.responseText); + $log.succes("✔️ Saved!"); + $explorer.refresh(); + } + }); + request.addEventListener("error", function () { + $log.error("❌ wget93: couldn't download file"); + if (!!window.chrome) { + $log.info("This may be caused by \"Allow-Control-Allow-Origin\" garbage. Click here to download an extension that fixes this."); + } else if (navigator.userAgent.indexOf("Firefox") > 0) { + $log.info("This may be caused by \"Allow-Control-Allow-Origin\" garbage. Click here to download an addon that fixes this."); + } else { + $log.info("This may be caused by \"Allow-Control-Allow-Origin\" garbage."); + } + }); + request.open("GET", url); + request.send(); + } + } catch(error) { + $log.error("❌ wget93: " + error.message); + } + }, + hascli: true, + terminal: true +}; \ No newline at end of file -- cgit v1.2.3