From cf8a2655d7ec63cf65ef6c2eb03a41fc2e4447ef Mon Sep 17 00:00:00 2001 From: sergiotarxz Date: Tue, 19 Jan 2021 23:06:23 +0100 Subject: [PATCH] Adding logo credits Destiny. --- lib/Peertube/DL/public/css/index.css | 274 ------------------ lib/Peertube/DL/public/img/spinner.svg | 16 - lib/Peertube/DL/public/index.html | 68 ----- lib/Peertube/DL/public/js/peertube-dl-web.js | 2 - .../public/dist/img/peertube-dl-logo.png | Bin 0 -> 3701 bytes themes/default/public/dist/index.html | 1 + 6 files changed, 1 insertion(+), 360 deletions(-) delete mode 100644 lib/Peertube/DL/public/css/index.css delete mode 100644 lib/Peertube/DL/public/img/spinner.svg delete mode 100644 lib/Peertube/DL/public/index.html delete mode 100644 lib/Peertube/DL/public/js/peertube-dl-web.js create mode 100644 themes/default/public/dist/img/peertube-dl-logo.png diff --git a/lib/Peertube/DL/public/css/index.css b/lib/Peertube/DL/public/css/index.css deleted file mode 100644 index d36581e..0000000 --- a/lib/Peertube/DL/public/css/index.css +++ /dev/null @@ -1,274 +0,0 @@ -body { - height: 99.9%; - margin: 0; - padding: 0; -} - -a { - color: blue; -} - -a:hover,a:focus { - text-decoration: underline; -} - -#video { - width: 100%; - margin: 3px; -} - -#modal-video-container { - display: none; - background: white; - position: fixed; - top: 50%; - left: 50%; - height: 100%; - width: 100%; - transform: translate(-50%, -50%); - border: black 1px solid; -} - -#modal-video-container.active { - display: block; -} - -.video-container-bar { - display: flex; - justify-content: right; -} - -#close-and-reset-video-container { - margin-top: 0.25rem; - margin-right: 0.25rem; - border: 1px solid black; -} - -#close-and-reset-video-container:hover:#close-and-reset-video-container:focus { - background: black; - color: white; -} - -#download-video-container { - margin: 10px; - justify-content: center; -} - -#download-video-container a { - display: none; - padding-left: 5px; - padding-right: 5px; - padding-top: 5px; - padding-bottom: 5px; - width: 100%; - background: #0a0; - border-radius: 5px; - font-size: 30px; - color: white; - height: 30px; -} - -#download-video-container a.active { - display: block; -} - -#download-video-container a embed { - height: 30px; -} - -#video-container { - display: flex; - align-items: center; - justify-content: center; - flex-direction: column; - height: 100%; -} - -.block { - display: block; -} - -.application-container { - display: flex; - align-items: center; - justify-content: center; - flex-direction: column; - text-align: center; - height: 100%; - background: #000; - color: white; -} - -#download-form { - display: flex; - justify-content: center; - flex-direction: column; -} - -#download-form-button { - margin-top: 5px; - height: 50px; - font-size: 1.5rem; - background: #fff; - color: black; - border: none; -} - -h2 { - font-size: 2rem; -} - -#modal-loading { - display: none; - position: fixed; - top: 50%; - left: 50%; - height: 100%; - width: 100%; - transform: translate(-50%, -50%); - border: black 1px solid; - justify-content: right; - align-items: center; -} - -#modal-loading.active { - display: flex; -} - -#modal-loading embed { - width: 10%; -} - -#poping-notice { - display: none; - position: fixed; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - border: black 1px solid; - width: 91%; - background: white; - padding: 10px; - border-radius: 15px; - max-height: 95%; - overflow-y: scroll; -} - -#poping-notice.active { - display: block; -} - -#poping-notice-container-bar { - display: flex; - justify-content: center; - font-size: 5rem; -} - -#close-poping-notice { - width: 150px; - height: 150px; - align-items: center; - display: flex; - text-align: center; - justify-content: center; - border-radius: 50%; - background: #0f0; - color: black; - text-decoration: none; -} - -#close-poping-notice:hover,#close-poping-notice:focus { - background: black; - color: white; -} - -#modal-format-selector { - display: none; - background: white; - position: fixed; - top: 50%; - left: 50%; - height: 100%; - width: 100%; - transform: translate(-50%, -50%); - border: black 1px solid; - flex-direction: column; - overflow-y: scroll; -} - -#modal-format-selector.active { - display: flex; -} - -#modal-format-selector > h2 { - text-align: center; -} - -#modal-format-selector > p { - margin-left: 2rem; -} - -#modal-format-selector .format-list { - box-sizing: border-box; - background: #fff; - margin: 2rem; -} - -#close-modal-format-selector { - margin-top: 0.50rem; - margin-right: 0.50rem; - border: 1px solid black; - background: grey; - color: white; - width: 25px; - height: 25px; - text-align: center; - font-size: 20px; - font-weight: bold; -} - -#close-modal-format-selector:hover,#close-modal-format-selector:focus { - background: black; -} - -.format-list > div { - width: 100%; - display: grid; - grid-auto-columns: 50%; - grid-template-areas: "a a"; -} - -.format-list > div > a { - border: 1px solid black; - display: flex; - align-items: center; - justify-content: center; - font-size: 1.5rem; - padding-right: 5%; - padding-left: 5%; - text-decoration: none; - color: black; - background: #eee; - overflow-wrap: anywhere; -} - -.format-list > div > a:hover { - background: black; - color: white; -} - -.format-list > div > a:after { - padding-bottom: 100%; - display: block; - content: ""; -} - -div.video-formats a { - background: #f00; -} - -@media (min-width: 668px) { - #poping-notice { - width: 629px; - } -} diff --git a/lib/Peertube/DL/public/img/spinner.svg b/lib/Peertube/DL/public/img/spinner.svg deleted file mode 100644 index d2b1ee8..0000000 --- a/lib/Peertube/DL/public/img/spinner.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/lib/Peertube/DL/public/index.html b/lib/Peertube/DL/public/index.html deleted file mode 100644 index 4eac01f..0000000 --- a/lib/Peertube/DL/public/index.html +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - -
-

Peertube-dl Web Application

-
- - -
-
- - - -
-
-

This webpage is free as in freedom software, it is offered to you with the hope it will be useful, but without any warranty, - you can find the source code at my gitea with docs to setup your own - webpage like this, this software is licensed under the AGPLv3 license which means you MUST convey the source code in a human readable form - if you distribute this software or use it as an service to users of service or distributees.

- -

I hope that if you find a non supported url which should be supported, a bug, or a feature you would like this webpage to have you file an issue in - https://gitea.sergiotarxz.freemyip.com/sergiotarxz/Peertube-dl/issues - to help this software improve since I find tracking users a pretty bad way to discover bugs and potential good features.

- -

This webpage may load third party resources depending on the url you give to it which may put cookies in your browser, you are - encouraged to frecuently delete your browser cookies to avoid those third parties tracking you on internet, Firefox offers you an - option to delete cookies as soon as you close the browser which may be a good idea to enable in the orwellian internet of today.

-
-
- X -
-
- - diff --git a/lib/Peertube/DL/public/js/peertube-dl-web.js b/lib/Peertube/DL/public/js/peertube-dl-web.js deleted file mode 100644 index f035de2..0000000 --- a/lib/Peertube/DL/public/js/peertube-dl-web.js +++ /dev/null @@ -1,2 +0,0 @@ -(()=>{"use strict";class e{constructor(){this.query_selector="#poping-notice",this.closePopingNotice.addEventListener("click",(e=>{this.setVisible(!1)}))}setVisible(e){e?this.element.classList.add("active"):this.element.classList.remove("active")}setMessage(e){if(!e instanceof Array)throw"Message is not instance of Array.";let t=document.createElement("p");for(let o of e)if("string"==typeof o||o instanceof String)o=document.createTextNode(o),t.appendChild(o);else{if(!(o instanceof Node))throw"Node is not a instance of Node nor a String";t.appendChild(o)}this.popingNoticeContent.innerHTML="",this.popingNoticeContent.appendChild(t)}get querySelector(){return this.query_selector}get element(){return document.querySelector(this.querySelector)}get popingNoticeContent(){return this.element.querySelector("#poping-notice-content")}get closePopingNotice(){return this.element.querySelector("#close-poping-notice")}}class t{constructor(e){this.query_selector="#download-form",this.callback=t=>{t.preventDefault(),e(this.downloadFormUrl.value)},this.addEventListeners()}addEventListeners(){this.downloadFormButton.addEventListener("click",this.callback),this.element.addEventListener("submit",this.callback)}get downloadFormButton(){return this.element.querySelector("#download-form-button")}get downloadFormUrl(){return this.element.querySelector("#download-form-url")}get querySelector(){return this.query_selector}get element(){return document.querySelector(this.querySelector)}}class o{constructor(){this.query_selector="#modal-loading"}setVisible(e){e?this.element.classList.add("active"):this.element.classList.remove("active")}get element(){return document.querySelector(this.querySelector)}get querySelector(){return this.query_selector}}class i{constructor(){this.query_selector="#modal-video-container",this.addEventListeners()}setVisible(e){e?this.element.classList.add("active"):(this.element.classList.remove("active"),this.downloadVideoPrepare.classList.add("active"),this.downloadVideoLoading.classList.remove("active"),this.downloadVideo.classList.remove("active"))}addEventListeners(){this.downloadVideoPrepare.addEventListener("click",this.downloadPrepareHandler.bind(this)),this.closeAndResetVideoContainer.addEventListener("click",(e=>{this.setVisible(!1)}))}downloadPrepareHandler(e){this.downloadVideoPrepare.classList.remove("active"),this.downloadVideoLoading.classList.add("active"),this.generateBlobVideo(this.URLVideo).then((e=>{this.downloadVideo.href=URL.createObjectURL(e),this.downloadVideo.download=this.filename,this.downloadVideoLoading.classList.remove("active"),this.downloadVideo.classList.add("active")}))}async generateBlobVideo(e){return await fetch(e,{mode:"cors"}).then((e=>e.blob())).catch((t=>this.generateBlobVideoByProxy(e)))}async generateBlobVideoByProxy(e){return await fetch("/proxy_to_get",{method:"POST",mode:"cors",cache:"no-cache",headers:{"Content-Type":"application/json"},body:JSON.stringify({url:e})}).then((e=>e.blob()))}onCanPlay(e){video.addEventListener("canplay",(t=>{e()}))}setURLVideo(e){this.url_video=e,video.src=e}setFilename(e){this.filename=e}get closeAndResetVideoContainer(){return this.element.querySelector("#close-and-reset-video-container")}get downloadVideo(){return this.element.querySelector("#download-video")}get URLVideo(){return this.url_video}get closeAndResetVideoContainer(){return this.element.querySelector("#close-and-reset-video-container")}get downloadVideoLoading(){return this.element.querySelector("#download-video-loading")}get downloadVideoPrepare(){return this.element.querySelector("#download-video-prepare")}get video(){return this.element.querySelector("#video")}get element(){return document.querySelector(this.querySelector)}get querySelector(){return this.query_selector}}class r{constructor(){this.query_selector="#modal-format-selector",this.addEventListeners()}appendFormat(e,t,o,i){let r=document.createElement("a");r.innerText=o?"Id: "+t.id+"\nFormat: "+t.mimeType+"\nQualityLabel: "+t.qualityLabel+"p\nBitrate: "+t.bitrate+"\n"+(void 0!==t.audioSampleRate?"AudioSampleRate: "+t.audioSampleRate+".\n":"No audio."):"Id: "+t.id+"\nFormat: "+t.mimeType+"\nAudioSampleRate: "+t.audioSampleRate+"\nBitrate: "+t.bitrate+".\n",r.addEventListener("click",(e=>{i(t.id)})),e.appendChild(r)}prepareFormatSelector(e,t,o,i,r){this.titleFormatSelector.innerText=e,this.descriptionFormatSelector.innerText=t,this.videoFormats.innerHTML="",this.audioFormats.innerHTML="";for(let e of o)this.appendFormat(this.audioFormats,e,!1,r);for(let e of i)this.appendFormat(this.videoFormats,e,!0,r)}setVisible(e){e?this.element.classList.add("active"):this.element.classList.remove("active")}addEventListeners(){this.closeFormatSelector.addEventListener("click",(e=>{this.setVisible(!1)}))}get videoFormats(){return this.element.querySelector(".video-formats")}get audioFormats(){return this.element.querySelector(".audio-formats")}get titleFormatSelector(){return this.element.querySelector("h2")}get descriptionFormatSelector(){return this.element.querySelector("p")}get closeFormatSelector(){return this.element.querySelector("#close-modal-format-selector")}get element(){return document.querySelector(this.querySelector)}get querySelector(){return this.query_selector}}class s{constructor(){this.poping_notice=new e,this.download_form=new t(this.onDownloadFormGot.bind(this)),this.loading_modal=new o,this.video_container=new i,this.format_selector=new r}init(){this.popingNotice.setVisible(!0)}onDownloadFormGot(e){this.dispatchURL(e)}dispatchURL(e,t){let o;this.loadingModal.setVisible(!0),this.queryAPI(e,t).then((t=>{if(void 0!==t.options&&void 0!==t.options.list_formats&&t.options.list_formats){if(void 0===t.formats||void 0===t.formats.audio_formats||void 0===t.formats.video_formats)throw"Format object is not valid.";this.formatSelector.prepareFormatSelector(t.title,t.description,t.formats.audio_formats,t.formats.video_formats,(t=>{this.loadingModal.setVisible(!0),this.dispatchURL(e,t)})),this.formatSelector.setVisible(!0),this.loadingModal.setVisible(!1)}else this.videoContainer.onCanPlay(this.onCanPlayVideoContainer.bind(this)),this.videoContainer.setURLVideo(t.url),this.videoContainer.setFilename(t.filename)})).catch((t=>{o=t.toString(),this.loadingModal.setVisible(!1);let i=document.createElement("a");i.href=e,i.innerText=e;let r=document.createElement("a");r.href="https://gitea.sergiotarxz.freemyip.com/sergiotarxz/Peertube-dl/issues",r.innerText="here",this.popingNotice.setMessage(["The url ",i," is not supported, the error was: ",o," if you think this is an error, report it ",r,"."]),this.popingNotice.setVisible(!0)}))}onCanPlayVideoContainer(){this.videoContainer.setVisible(!0),this.loadingModal.setVisible(!1)}async queryAPI(e,t){let o={url:e};return void 0!==t&&(o.format=t),(await fetch("/api",{method:"POST",mode:"cors",cache:"no-cache",headers:{"Content-Type":"application/json"},body:JSON.stringify(o)})).json()}get formatSelector(){return this.format_selector}get videoContainer(){return this.video_container}get downloadForm(){return this.download_form}get popingNotice(){return this.poping_notice}get loadingModal(){return this.loading_modal}}window.addEventListener("load",(e=>{(new s).init()}))})(); -//# sourceMappingURL=peertube-dl-web.js.map \ No newline at end of file diff --git a/themes/default/public/dist/img/peertube-dl-logo.png b/themes/default/public/dist/img/peertube-dl-logo.png new file mode 100644 index 0000000000000000000000000000000000000000..f884590d368d1e60c6f1f908c147f1c285b44caa GIT binary patch literal 3701 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 NSl?W)Oy^4YKLD4{YIXns literal 0 HcmV?d00001 diff --git a/themes/default/public/dist/index.html b/themes/default/public/dist/index.html index 4eac01f..ba44a88 100644 --- a/themes/default/public/dist/index.html +++ b/themes/default/public/dist/index.html @@ -2,6 +2,7 @@ +