WarforumFix

Fix temporary unavailability of warforum.cz

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         WarforumFix
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  Fix temporary unavailability of warforum.cz
// @author       t00r
// @match        http://www.warforum.cz/*
// @require      https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js
// @require      https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.js
// @grant        GM_setValue
// @grant        GM_getValue
// @grant        GM_deleteValue
// ==/UserScript==
/* jshint -W097 */
'use strict';

$(document).ready(function() {
    var htmlString = $("html").html().toString();

    var oldNginx = htmlString.indexOf("temporarily unavailable.<br/>");
    var newNginx = htmlString.indexOf("currently unavailable.<br/>");

    if (oldNginx != -1 || newNginx != -1) {
        if (GM_getValue("reload", false)) {
            alert("Looks like site is really temporarily unavailable. Please try again later :-)");
        } else {
            $.removeCookie("warforum_t", { domain: ".www.warforum.cz", path: "/" });
            GM_setValue("reload", true);
            location.reload();
        }
    }
    
    GM_deleteValue("reload");
});