Skip to content
Snippets Groups Projects
Commit 8855f02a authored by Jonas Leder's avatar Jonas Leder
Browse files

rewrite of the error pages

parent 19cb4f3a
No related branches found
No related tags found
No related merge requests found
Pipeline #567 failed
...@@ -14,8 +14,6 @@ if (strpos($_SERVER['HTTP_HOST'], '.onion') !== false) { ...@@ -14,8 +14,6 @@ if (strpos($_SERVER['HTTP_HOST'], '.onion') !== false) {
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>404 - Page not found</title> <title>404 - Page not found</title>
<link href="/css/error.css" rel="stylesheet"> <link href="/css/error.css" rel="stylesheet">
<script src="/error/jquery-2.1.3.js"></script>
<script src="/error/typed.js"></script>
</head> </head>
<body> <body>
<!-- Matomo Image Tracker--> <!-- Matomo Image Tracker-->
...@@ -31,7 +29,7 @@ if (strpos($_SERVER['HTTP_HOST'], '.onion') !== false) { ...@@ -31,7 +29,7 @@ if (strpos($_SERVER['HTTP_HOST'], '.onion') !== false) {
<section class="terminal"> <section class="terminal">
<div class="history"></div> <div class="history"></div>
$&nbsp;<span class="prompt"></span> $&nbsp;<span class="prompt"></span>
<span class="typed-cursor"></span> <span class="typed-cursor">|</span>
</section> </section>
</div> </div>
<!-- data --> <!-- data -->
...@@ -40,25 +38,23 @@ if (strpos($_SERVER['HTTP_HOST'], '.onion') !== false) { ...@@ -40,25 +38,23 @@ if (strpos($_SERVER['HTTP_HOST'], '.onion') !== false) {
<script> <script>
var data = [ var data = [
{ {
action: 'type', strings: "openFiles",
strings: ["Accessing files.."], output: 'Accessing files...',
output: '<span class="gray">grabbing files.. </span><br>&nbsp;',
postDelay: 1000 postDelay: 1000
}, },
{ {
action: 'type', strings: "getFile \"" + window.location.pathname + "\"",
strings: ["404 File not found"], output: "404 File not found, it looks like you're trying to access a file, that doesn't exist in our system.",
output: '<span class="gray">It looks like you want to access a file that\'s not found</span><br>&nbsp;',
postDelay: 1000 postDelay: 1000
}, },
{ {
action: 'type', strings: "getErrorMessage",
strings: ["These are not the error codes you're looking for.", 'Please either report this error to an administrator or return back and forget you were here...'], output: "These are not the error codes you're looking for. Please either report this error to an administrator or return back and forget you were here...",
postDelay: 2000 postDelay: 2000
} }
]; ];
</script> </script>
<script src="/error/error.js"></script> <script src="/js/error.js"></script>
</body> </body>
</html> </html>
\ No newline at end of file
$(function() {
runScripts(data, 0);
});
function runScripts(data, pos) {
var prompt = $('.prompt'),
script = data[pos];
if(script.clear === true) {
$('.history').html('');
}
switch(script.action) {
case 'type':
// cleanup for next execution
prompt.removeData();
$('.typed-cursor').text('');
prompt.typed({
strings: script.strings,
typeSpeed: 30,
callback: function() {
var history = $('.history').html();
history = history ? [history] : [];
history.push('$ ' + prompt.text());
if(script.output) {
history.push(script.output);
prompt.html('');
$('.history').html(history.join('<br>'));
}
// scroll to bottom of screen
$('.terminal').scrollTop($('.terminal').height());
// Run next script
pos++;
if(pos < data.length) {
setTimeout(function() {
runScripts(data, pos);
}, script.postDelay || 1000);
}
}
});
break;
case 'view':
break;
}
}
This diff is collapsed.
// The MIT License (MIT)
// Typed.js | Copyright (c) 2014 Matt Boldt | www.mattboldt.com
// 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 THE
// AUTHORS OR COPYRIGHT HOLDERS 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($){
"use strict";
var Typed = function(el, options){
// chosen element to manipulate text
this.el = $(el);
// options
this.options = $.extend({}, $.fn.typed.defaults, options);
// text content of element
this.text = this.el.text();
// typing speed
this.typeSpeed = this.options.typeSpeed;
// add a delay before typing starts
this.startDelay = this.options.startDelay;
// backspacing speed
this.backSpeed = this.options.backSpeed;
// amount of time to wait before backspacing
this.backDelay = this.options.backDelay;
// input strings of text
this.strings = this.options.strings;
// character number position of current string
this.strPos = 0;
// current array position
this.arrayPos = 0;
// number to stop backspacing on.
// default 0, can change depending on how many chars
// you want to remove at the time
this.stopNum = 0;
// Looping logic
this.loop = this.options.loop;
this.loopCount = this.options.loopCount;
this.curLoop = 0;
// for stopping
this.stop = false;
// All systems go!
this.build();
};
Typed.prototype = {
constructor: Typed
, init: function(){
// begin the loop w/ first current string (global self.string)
// current string will be passed as an argument each time after this
var self = this;
self.timeout = setTimeout(function() {
// Start typing
self.typewrite(self.strings[self.arrayPos], self.strPos);
}, self.startDelay);
}
, build: function(){
// Insert cursor
this.cursor = $("<span class=\"typed-cursor\">|</span>");
this.el.after(this.cursor);
this.init();
}
// pass current string state to each function, types 1 char per call
, typewrite: function(curString, curStrPos){
// exit when stopped
if(this.stop === true)
return;
// varying values for setTimeout during typing
// can't be global since number changes each time loop is executed
var humanize = Math.round(Math.random() * (100 - 30)) + this.typeSpeed;
var self = this;
// ------------- optional ------------- //
// backpaces a certain string faster
// ------------------------------------ //
if (self.arrayPos == 1){
self.stopNum = 3;
self.backDelay = 10;
}
//every other time, delete the whole typed string
else{
self.stopNum = 0;
self.backDelay = self.options.backDelay;
}
// contain typing function in a timeout humanize'd delay
self.timeout = setTimeout(function() {
// check for an escape character before a pause value
// format: \^\d+ eg: ^1000 should be able to print the ^ too using ^^
// single ^ are removed from string
var charPause = 0;
var substr = curString.substr(curStrPos);
if (substr.charAt(0) === '^') {
var e = 1;
if(substr.match(/^\^\d+/)) {
substr = substr.replace(/^\^(\d+).*/, "$1");
e += substr.length;
charPause = parseInt(substr);
}
// strip out the escape character and pause value so they're not printed
curString = curString.substring(0,curStrPos)+curString.substring(curStrPos+e);
}
// timeout for any pause after a character
self.timeout = setTimeout(function() {
if(curStrPos === curString.length) {
// fires callback function
self.options.onStringTyped(self.arrayPos);
// is this the final string
if(self.arrayPos === self.strings.length-1) {
// animation that occurs on the last typed string
self.options.callback();
self.curLoop++;
// quit if we wont loop back
if(self.loop === false || self.curLoop === self.loopCount)
return;
}
self.timeout = setTimeout(function(){
self.backspace(curString, curStrPos);
}, self.backDelay);
} else {
/* call before functions if applicable */
if(curStrPos === 0)
self.options.preStringTyped(self.arrayPos);
// start typing each new char into existing string
// curString: arg, self.text: original text inside element
self.el.text(self.text + curString.substr(0, curStrPos+1));
// add characters one by one
curStrPos++;
// loop the function
self.typewrite(curString, curStrPos);
}
// end of character pause
}, charPause);
// humanized value for typing
}, humanize);
}
, backspace: function(curString, curStrPos){
// exit when stopped
if (this.stop === true) {
return;
}
// varying values for setTimeout during typing
// can't be global since number changes each time loop is executed
var humanize = Math.round(Math.random() * (100 - 30)) + this.backSpeed;
var self = this;
self.timeout = setTimeout(function() {
// ----- this part is optional ----- //
// check string array position
// on the first string, only delete one word
// the stopNum actually represents the amount of chars to
// keep in the current string. In my case it's 14.
// if (self.arrayPos == 1){
// self.stopNum = 14;
// }
//every other time, delete the whole typed string
// else{
// self.stopNum = 0;
// }
// ----- continue important stuff ----- //
// replace text with current text + typed characters
self.el.text(self.text + curString.substr(0, curStrPos));
// if the number (id of character in current string) is
// less than the stop number, keep going
if (curStrPos > self.stopNum){
// subtract characters one by one
curStrPos--;
// loop the function
self.backspace(curString, curStrPos);
}
// if the stop number has been reached, increase
// array position to next string
else if (curStrPos <= self.stopNum) {
self.arrayPos++;
if(self.arrayPos === self.strings.length) {
self.arrayPos = 0;
self.init();
} else
self.typewrite(self.strings[self.arrayPos], curStrPos);
}
// humanized value for typing
}, humanize);
}
// Start & Stop currently not working
// , stop: function() {
// var self = this;
// self.stop = true;
// clearInterval(self.timeout);
// }
// , start: function() {
// var self = this;
// if(self.stop === false)
// return;
// this.stop = false;
// this.init();
// }
// Reset and rebuild the element
, reset: function(){
var self = this;
clearInterval(self.timeout);
var id = this.el.attr('id');
this.el.after('<span id="' + id + '"/>')
this.el.remove();
this.cursor.remove();
// Send the callback
self.options.resetCallback();
}
};
$.fn.typed = function (option) {
return this.each(function () {
var $this = $(this)
, data = $this.data('typed')
, options = typeof option == 'object' && option;
if (!data) $this.data('typed', (data = new Typed(this, options)));
if (typeof option == 'string') data[option]();
});
};
$.fn.typed.defaults = {
strings: ["These are the default values...", "You know what you should do?", "Use your own!", "Have a great day!"],
// typing speed
typeSpeed: 0,
// time before typing starts
startDelay: 0,
// backspacing speed
backSpeed: 0,
// time before backspacing
backDelay: 500,
// loop
loop: false,
// false = infinite
loopCount: false,
// call when done callback function
callback: function() {},
// starting callback function before each string
preStringTyped: function() {},
//callback for every typed string
onStringTyped: function() {},
// callback for reset
resetCallback: function() {}
};
}(window.jQuery);
\ No newline at end of file
...@@ -17,8 +17,6 @@ function getError500() ...@@ -17,8 +17,6 @@ function getError500()
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>500 - Internal Server error</title> <title>500 - Internal Server error</title>
<link href="/css/error.css" rel="stylesheet"> <link href="/css/error.css" rel="stylesheet">
<script src="/error/jquery-2.1.3.js"></script>
<script src="/error/typed.js"></script>
</head> </head>
<body> <body>
<!-- Matomo Image Tracker--> <!-- Matomo Image Tracker-->
...@@ -42,27 +40,25 @@ function getError500() ...@@ -42,27 +40,25 @@ function getError500()
</div> </div>
<script> <script>
var data = [ var data = [
{ {
action: 'type', strings: "openFiles",
strings: ["Accessing restricted files.."], output: 'Accessing files...',
output: '<span class="gray">grabbing files.. </span><br>&nbsp;', postDelay: 1000
postDelay: 1000 },
}, {
{ strings: "getFile \"" + window.location.pathname + "\"",
action: 'type', output: '500 Internal Server error, it looks like our server has a problem.',
strings: ["500 Internal Error"], postDelay: 1000
output: '<span class="gray">It looks like there is a bug</span><br>&nbsp;', },
postDelay: 1000 {
}, strings: "getErrorMessage",
{ output: "These are not the error codes you're looking for. Please either report this error to an administrator or return back and forget you were here...",
action: 'type', postDelay: 2000
strings: ["These are not the error codes you're looking for.", 'Please either report this error to an administrator or return back and forget you were here...'], }
postDelay: 2000
}
]; ];
</script> </script>
<script src="/error/error.js"></script> <script src="/js/error.js"></script>
</body> </body>
</html> </html>
EOF; EOF;
......
let intervalTime = 150;
let terminal:HTMLElement = <HTMLElement> document.getElementsByClassName("terminal")[0];
let historyContainer:HTMLElement = <HTMLElement> terminal.getElementsByClassName("history")[0];
let promptContainer:HTMLElement = <HTMLElement> terminal.getElementsByClassName("prompt")[0];
let dataIndex = 0;
let stringPosition = 0;
let printTask: number;
function writeOut() {
let currentData: Array<JSON> = data[dataIndex];
let currentText: string = currentData["strings"];
promptContainer.innerText = promptContainer.innerText + currentText.charAt(stringPosition);
stringPosition++;
if(stringPosition > currentText.length){
stringPosition = 0
dataIndex++;
historyContainer.innerHTML = historyContainer.innerHTML + "$&nbsp;" + promptContainer.innerHTML + "<br><span class=\"gray\">" + currentData["output"] + "</span><br><br>";
promptContainer.innerHTML = "";
clearInterval(printTask);
if(dataIndex < data.length){
setTimeout(startNewTask, data[dataIndex - 1].postDelay);
}
}
}
function startNewTask() {
printTask = setInterval(writeOut, intervalTime);
}
startNewTask();
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment