123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta name="apple-mobile-web-app-capable" content="yes" />
- <meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1"/>
- <meta charset="UTF-8">
- <meta name="theme-color" content="#4b75ff">
- <link rel="icon" type="image/png" href="./favicon.png" />
- <title>Control Panel | Zoraxy</title>
- <link rel="stylesheet" href="script/semantic/semantic.min.css">
- <script src="script/jquery-3.6.0.min.js"></script>
- <script src="../script/ao_module.js"></script>
- <script src="script/semantic/semantic.min.js"></script>
- <script src="script/tablesort.js"></script>
- <script src="script/countryCode.js"></script>
- <link rel="stylesheet" href="main.css">
- </head>
- <body>
- <div class="menubar">
- <div class="item">
- <img class="logo" src="img/logo.svg">
- </div>
- <div class="ui right floated buttons menutoggle" style="padding-top: 2px;">
- <button class="ui basic icon button" onclick="$('.toolbar').fadeToggle('fast');"><i class="content icon"></i></button>
- </div>
- <div class="ui right floated buttons" style="padding-top: 2px;">
- <button class="ui basic icon button" onclick="logout();"><i class="sign-out icon"></i></button>
- </div>
- </div>
- <div class="wrapper">
- <div class="toolbar">
- <div id="mainmenu" class="ui secondary vertical menu">
- <a class="item active" tag="status">
- <i class="simplistic info circle icon"></i>Status
- </a>
- <a class="item" tag="vdir">
- <i class="simplistic folder icon"></i> Virtual Directory
- </a>
- <a class="item" tag="subd">
- <i class="simplistic sitemap icon"></i> Subdomain Proxy
- </a>
- <a class="item" tag="rules">
- <i class="simplistic plus square icon"></i> Create Proxy Rules
- </a>
- <a class="item" tag="setroot">
- <i class="simplistic home icon"></i> Set Proxy Root
- </a>
- <div class="ui divider menudivider">Access & Connections</div>
- <a class="item" tag="cert">
- <i class="simplistic lock icon"></i> TLS / SSL certificate
- </a>
- <a class="item" tag="redirectset">
- <i class="simplistic level up alternate icon"></i> Redirection
- </a>
- <a class="item" tag="blacklist">
- <i class="simplistic ban icon"></i> Blacklist
- </a>
- <div class="ui divider menudivider">Bridging</div>
- <a class="item" tag="gan">
- <i class="simplistic exchange icon"></i> Global Area Network
- </a>
- <a class="item" tag="">
- <i class="simplistic remove icon"></i> HTTP over Websocket
- </a>
- <a class="item" tag="">
- <i class="simplistic remove icon"></i> TCP Proxy
- </a>
- <div class="ui divider menudivider">Others</div>
- <a class="item" tag="utm">
- <i class="simplistic time icon"></i> Uptime Monitor
- </a>
- <a class="item" tag="networktool">
- <i class="simplistic terminal icon"></i> Network Tools
- </a>
- <a class="item" tag="utils">
- <i class="simplistic paperclip icon"></i> Utilities
- </a>
- <!-- Add more components here -->
- </div>
- </div>
- <div class="contentWindow">
- <!-- Status Tab -->
- <div id="status" class="functiontab" target="status.html" style="display: block ;">
- <br><br><div class="ui active centered inline loader"></div>
- </div>
- <!-- Virtual Directory Tab -->
- <div id="vdir" class="functiontab" target="vdir.html"></div>
- <!-- Subdomain Proxy -->
- <div id="subd" class="functiontab" target="subd.html"></div>
- <!-- Create Rules -->
- <div id="rules" class="functiontab" target="rules.html"></div>
- <!-- Set proxy root -->
- <div id="setroot" class="functiontab" target="rproot.html"></div>
- <!-- Set TLS cert -->
- <div id="cert" class="functiontab" target="cert.html"></div>
- <!-- Redirections -->
- <div id="redirectset" class="functiontab" target="redirection.html"></div>
- <!-- Blacklist -->
- <div id="blacklist" class="functiontab" target="blacklist.html"></div>
- <!-- Global Area Networking -->
- <div id="gan" class="functiontab" target="gan.html"></div>
- <!-- Up Time Monitor -->
- <div id="utm" class="functiontab" target="uptime.html"></div>
- <!-- Network Tools -->
- <div id="networktool" class="functiontab" target="networktools.html"></div>
- <!-- Utilities -->
- <div id="utils" class="functiontab" target="utils.html"></div>
- </div>
- </div>
- </div>
- <br><br>
- <div class="ui divider"></div>
- <div class="ui container" style="color: grey; font-size: 90%">
- <p>CopyRight Zoraxy project and its author, 2022 - <span class="year"></span></p>
- </div>
-
- <div id="messageBox" class="ui green floating big compact message">
- <p><i class="green check circle icon"></i> There are no message</p>
- </div>
-
- <br><br>
- <script>
- $(".year").text(new Date().getFullYear());
- /*
- Loader function
- Load all the components view from the
- components/ directory into their corrisponding divs
- */
- let loadingComponents = 0;
-
- function initTabs(callback=undefined){
- $('.functiontab').each(function(){
- let loadTarget = $(this).attr("target");
- if (loadTarget != undefined){
- $(this).load("./components/" + loadTarget, function(){
- loadingComponents--;
- });
- loadingComponents++;
- }else{
- $(this).html(`<p>Unable to load components for this tab</p>`);
- }
- })
- if (callback != undefined){
- waitInit(callback);
- }
- }
- function waitInit(callback = undefined, retryCount = 0){
- if (loadingComponents > 0 && retryCount < 5){
- setTimeout(function(){
- waitInit(callback, retryCount++);
- }, 300);
- }else if (loadingComponents == 0){
- callback();
- }else{
- alert("Missing component. Please check if your installation is complete.")
- }
- }
- initTabs(function(){
- initRPStaste();
- if (window.location.hash.length > 1){
- let tabID = window.location.hash.substr(1);
- openTabById(tabID);
- }else{
- openTabById("status");
- }
- $(".ui.dropdown").dropdown();
- $(".ui.checkbox").checkbox();
- //Click on the current tab
- $("#mainmenu").find(".item").each(function(){
- $(this).on("click", function(event){
- let tabid = $(this).attr("tag");
- openTabById(tabid);
- });
- });
- //Initialize all table that is sortable
- $('table').tablesort();
- });
- function logout() {
- $.get("/api/auth/logout", function(response) {
- if (response === "OK") {
- window.location.href = "/";
- }
- });
- }
- function getTabButtonById(targetTabId){
- let targetTabBtn = undefined;
- $("#mainmenu").find(".item").each(function(){
- let tabid = $(this).attr("tag");
-
- if (tabid == targetTabId){
- targetTabBtn = $(this);
- }
- });
- return targetTabBtn;
- }
- //Select and open a tab by its tag id
- let tabSwitchEventBind = {}; //Bind event to tab switch by tabid
- function openTabById(tabID){
- let targetBtn = getTabButtonById(tabID);
- if (targetBtn == undefined){
- alert("Invalid tabid given");
- return;
- }
- if (window.innerWidth < 750){
- //RWD mode, hide toolbar
- $(".toolbar").fadeOut('fast');
- }
- $("#mainmenu").find(".item").removeClass("active");
- $(targetBtn).addClass("active");
- $(".functiontab").hide();
- $("#" + tabID).fadeIn('fast', function(){
- if (tabSwitchEventBind[tabID]){
- tabSwitchEventBind[tabID]();
- }
- });
- $('html,body').animate({scrollTop: 0}, 'fast');
- window.location.hash = tabID;
- }
- $(window).on("resize", function(){
- if (window.innerWidth >= 750 && $(".toolbar").is(":visible") == false){
- $(".toolbar").show();
- }
- });
- function msgbox(message, succ=true, delayDuration=3000){
- let icon = `<i class="ui info circle icon"></i>`;
- if (succ){
- $("#messageBox").attr("class", "ui green floating compact message")
- icon = `<i class="ui green circle check icon"></i>`;
- }else{
- $("#messageBox").attr("class", "ui red floating compact message")
- icon = `<i class="ui red circle times icon"></i>`;
- }
- $("#messageBox").html(`${icon} ${message}`);
- $("#messageBox").stop().finish().fadeIn("fast").delay(delayDuration).fadeOut("fast");
- }
- </script>
- </body>
- </html>
|