123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776 |
- <?php
- /**
- * Copyright 2021, 2024 5 Mode
- *
- * This file is part of Avatar Free.
- *
- * Avatar Free is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Avatar Free is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Avatar Free. If not, see <https://www.gnu.org/licenses/>.
- *
- * home.php
- *
- * Home of Avatar Free.
- *
- * @author Daniele Bonini <my25mb@aol.com>
- * @copyrights (c) 2016, 2024, 5 Mode
- */
- // CONSTANTS AND VARIABLE DECLARATION
- $CURRENT_VIEW = PUBLIC_VIEW;
-
- $CUDOZ = 1;
-
- $AVATAR_PATH = APP_DATA_PATH . DIRECTORY_SEPARATOR . AVATAR_NAME;
- $CV_PATH = $AVATAR_PATH . DIRECTORY_SEPARATOR . "cv";
- $FRIENDS_PATH = $AVATAR_PATH . DIRECTORY_SEPARATOR . "friends";
- $BLOG_PATH = $AVATAR_PATH . DIRECTORY_SEPARATOR . "blog";
- $GALLERY_PATH = $AVATAR_PATH . DIRECTORY_SEPARATOR . "gallery";
- $MAGICJAR1_PATH = $AVATAR_PATH . DIRECTORY_SEPARATOR . "magicjar1";
- $MAGICJAR2_PATH = $AVATAR_PATH . DIRECTORY_SEPARATOR . "magicjar2";
- $MAGICJAR3_PATH = $AVATAR_PATH . DIRECTORY_SEPARATOR . "magicjar3";
-
- $profilePic = APP_DEF_PROFILE_PIC;
-
-
- // PAGE PARAMETERS
- $lang = APP_DEF_LANG;
- $lang1 = substr(filter_input(INPUT_GET, "hl", FILTER_SANITIZE_STRING), 0, 5);
- if ($lang1 !== PHP_STR) {
- $lang = $lang1;
- }
- $shortLang = getShortLang($lang);
-
- $password = filter_input(INPUT_POST, "Password");
- if ($password !== PHP_STR) {
- $hash = hash("sha256", $password . APP_SALT, false);
- if ($hash !== APP_HASH) {
- $password=PHP_STR;
- }
- }
- if ($password !== PHP_STR) {
- $CURRENT_VIEW = ADMIN_VIEW;
- } else {
- $CURRENT_VIEW = PUBLIC_VIEW;
- }
- $magicJar1 = (int)substr(filter_input(INPUT_POST, "txtMagicJar1"), 0, 1);
- $magicJar2 = (int)substr(filter_input(INPUT_POST, "txtMagicJar2"), 0, 1);
- $magicJar3 = (int)substr(filter_input(INPUT_POST, "txtMagicJar3"), 0, 1);
-
- function uploadNewRes() {
- global $AVATAR_PATH;
- global $CV_PATH;
- global $FRIENDS_PATH;
- global $BLOG_PATH;
- global $GALLERY_PATH;
- global $MAGICJAR1_PATH;
- global $MAGICJAR2_PATH;
- global $MAGICJAR3_PATH;
- global $magicJar1;
- global $magicJar2;
- global $magicJar3;
- //echo_ifdebug(true, "AVATAR_PATH#1=");
- //echo_ifdebug(true, $AVATAR_PATH);
-
- //if (!empty($_FILES['files'])) {
- if (!empty($_FILES['filesdd']['tmp_name'][0])) {
-
- //no file uploaded
- //$uploads = (array)fixMultipleFileUpload($_FILES['files']);
- //if ($uploads[0]['error'] === UPLOAD_ERR_NO_FILE) {
- $uploads = (array)fixMultipleFileUpload($_FILES['filesdd']);
- //}
- //if ($uploads[0]['error'] === PHP_UPLOAD_ERR_NO_FILE) {
- // echo("WARNING: No file uploaded.");
- // return;
- //}
- $google = "abcdefghijklmnopqrstuvwxyz";
- if (count($uploads)>strlen($google)) {
- echo("WARNING: Too many uploaded files.");
- return;
- }
- $i=1;
- foreach($uploads as &$upload) {
-
- switch ($upload['error']) {
- case PHP_UPLOAD_ERR_OK:
- break;
- case PHP_UPLOAD_ERR_NO_FILE:
- echo("WARNING: One or more uploaded files are missing.");
- return;
- case PHP_UPLOAD_ERR_INI_SIZE:
- echo("WARNING: File exceeded INI size limit.");
- return;
- case PHP_UPLOAD_ERR_FORM_SIZE:
- echo("WARNING: File exceeded form size limit.");
- return;
- case PHP_UPLOAD_ERR_PARTIAL:
- echo("WARNING: File only partially uploaded.");
- return;
- case PHP_UPLOAD_ERR_NO_TMP_DIR:
- echo("WARNING: TMP dir doesn't exist.");
- return;
- case PHP_UPLOAD_ERR_CANT_WRITE:
- echo("WARNING: Failed to write to the disk.");
- return;
- case PHP_UPLOAD_ERR_EXTENSION:
- echo("WARNING: A PHP extension stopped the file upload.");
- return;
- default:
- echo("WARNING: Unexpected error happened.");
- return;
- }
-
- if (!is_uploaded_file($upload['tmp_name'])) {
- echo("WARNING: One or more file have not been uploaded.");
- return;
- }
-
- // name
- $name = (string)substr((string)filter_var($upload['name']), 0, 255);
- if ($name == PHP_STR) {
- echo("WARNING: Invalid file name: " . $name);
- return;
- }
- $upload['name'] = $name;
-
- // fileType
- $fileType = substr((string)filter_var($upload['type']), 0, 30);
- $upload['type'] = $fileType;
-
- // tmp_name
- $tmp_name = substr((string)filter_var($upload['tmp_name']), 0, 300);
- if ($tmp_name == PHP_STR || !file_exists($tmp_name)) {
- echo("WARNING: Invalid file temp path: " . $tmp_name);
- return;
- }
- $upload['tmp_name'] = $tmp_name;
-
- //size
- $size = substr((string)filter_var($upload['size'], FILTER_SANITIZE_NUMBER_INT), 0, 12);
- if ($size == "") {
- echo("WARNING: Invalid file size.");
- return;
- }
- $upload["size"] = $size;
- $tmpFullPath = $upload["tmp_name"];
-
- $originalFilename = pathinfo($name, PATHINFO_FILENAME);
- $originalFileExt = pathinfo($name, PATHINFO_EXTENSION);
- $fileExt = strtolower(pathinfo($name, PATHINFO_EXTENSION));
- $date = date("Ymd-His");
- $rnd = mt_rand(1000000000, 9999999999);
-
- if ($originalFileExt!==PHP_STR) {
- $destFileName = $date . "-" . $rnd . substr($google, $i-1, 1) . "|" . str_replace(" ", "_", $originalFilename) . ".$fileExt";
- } else {
- return;
- }
- //$CV_PATH = APP_DATA_PATH . DIRECTORY_SEPARATOR . "cv";
- //$FRIENDS_PATH = APP_DATA_PATH . DIRECTORY_SEPARATOR . "friends";
- //$BLOG_PATH = APP_DATA_PATH . DIRECTORY_SEPARATOR . "blog";
- //$GALLERY_PATH = APP_DATA_PATH . DIRECTORY_SEPARATOR . "gallery";
-
- $destPaths = [];
- $destFullPaths = [];
-
- if ($magicJar1 != 0) {
- $destPaths[] = $MAGICJAR1_PATH;
- $destFullPaths[] = $destPaths[count($destPaths)-1] . DIRECTORY_SEPARATOR . $destFileName;
- }
- if ($magicJar2 != 0) {
- $destPaths[] = $MAGICJAR2_PATH;
- $destFullPaths[] = $destPaths[count($destPaths)-1] . DIRECTORY_SEPARATOR . $destFileName;
- }
- if ($magicJar3 != 0) {
- $destPaths[] = $MAGICJAR3_PATH;
- $destFullPaths[] = $destPaths[count($destPaths)-1] . DIRECTORY_SEPARATOR . $destFileName;
- }
-
- if (empty($destPaths)) {
-
- switch ($fileExt) {
- case "doc":
- case "docx":
- case "pdf":
- $destPaths[] = $CV_PATH;
- break;
- case "txt":
- $destPaths[] = $BLOG_PATH;
- break;
- case "png":
- case "jpg":
- case "jpeg":
- case "gif":
- case "webp":
- $destPaths[] = $GALLERY_PATH;
- break;
- default:
- $destPaths[] = $MAGICJAR1_PATH;
- break;
- }
- $destFullPaths[] = $destPaths[0] . DIRECTORY_SEPARATOR . $destFileName;
- }
-
- $iPath = 0;
- foreach($destFullPaths as $destFullPath) {
-
- if (file_exists($destFullPath)) {
- echo("WARNING: destination already exists");
- exit(1);
- }
- if (filesize($tmpFullPath) > APP_FILE_MAX_SIZE) {
- echo("ERROR: file size(" . filesize($tmpFullPath) . ") exceeds app limit:" . APP_FILE_MAX_SIZE);
- exit(1);
- }
-
- if (!is_readable($AVATAR_PATH)) {
- mkdir($AVATAR_PATH, 0777);
- }
- if (!is_readable($destPaths[$iPath])) {
- mkdir($destPaths[$iPath], 0777);
- }
- $pattern = $destPaths[$iPath] . DIRECTORY_SEPARATOR . "*" . "|" . str_replace(" ", "_", $originalFilename) . ".$fileExt";
- $aExistingPaths = glob($pattern);
- if (!empty($aExistingPaths)) {
- continue;
- }
- copy($tmpFullPath, $destFullPath);
- $iPath++;
- }
-
- // Cleaning up..
-
- // Delete the tmp file..
- unlink($tmpFullPath);
-
- $i++;
-
- }
- }
- }
- function writeFriends() {
-
- global $FRIENDS_PATH;
-
- $destPath = $FRIENDS_PATH;
-
- $s = filter_input(INPUT_POST, "f", FILTER_SANITIZE_STRING);
- if ($s != PHP_STR) {
- //echo($s);
- //exit(0);
- $friends=explode("|", $s);
-
- if (!is_readable($destPath)) {
- mkdir($destPath, 0777);
- }
-
- foreach($friends as $friend) {
- $a = explode("://",$friend);
- $s = $a[1];
- $a = explode("/", $s);
- $friendName = $a[0] . ".txt";
-
- file_put_contents($destPath . DIRECTORY_SEPARATOR . $friendName, $friend);
- }
-
- }
- }
-
- function grabProfileImage() {
-
- global $GALLERY_PATH;
-
- $pattern = $GALLERY_PATH . DIRECTORY_SEPARATOR . "*";
- $aImagePaths = glob($pattern);
- if (isset($aImagePaths[0])) {
- $retval = basename($aImagePaths[0]);
- } else {
- $retval = null;
- }
- return $retval;
-
- }
-
- function startApp() {
- global $CURRENT_VIEW;
- global $profilePic;
-
- if ($CURRENT_VIEW == ADMIN_VIEW) {
-
- uploadNewRes();
-
- writeFriends();
-
- }
-
- $profilePic = grabProfileImage() ?? APP_DEF_PROFILE_PIC;
- //echo("profile pic=" . $profilePic);
-
- }
- startApp();
-
- ?>
- <!DOCTYPE html>
- <html lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta name="viewport" content="width=device-width, initial-scale=1"/>
-
- <!--<?PHP echo(APP_LICENSE);?>-->
-
- <title><?PHP echo(APP_TITLE);?></title>
- <link rel="shortcut icon" href="/favicon.ico" />
- <meta name="description" content="Welcome to Avatar Free! Let everyone have its social presence."/>
- <meta name="keywords" content="Avatar Free,social,presence,avatarfree.org,on,premise,solution"/>
- <meta name="robots" content="index,follow"/>
- <meta name="author" content="5 Mode"/>
-
- <script src="/js/jquery-3.6.0.min.js" type="text/javascript"></script>
- <script src="/js/sha.js" type="text/javascript"></script>
- <script src="/js/common.js" type="text/javascript"></script>
-
- <link href="/css/style.css?r=<?PHP echo(time());?>" type="text/css" rel="stylesheet">
-
- <link href="/css/bootstrap.min.css" type="text/css" rel="stylesheet">
-
- </head>
-
- <?PHP if ($CURRENT_VIEW == ADMIN_VIEW): ?>
-
- <body style="background:url('/res/bg1.jpg') no-repeat; background-size: cover; background-attachment: fixed; background-position: center;">
- <div id="AFHint" style="z-index:0;">
- <button type="button" class="close" aria-label="Close" onclick="closeMe(this);" style="position:relative; top:5px; left:-7px;">
- <span aria-hidden="true" style="color:black; font-weight:900;">×</span>
- </button>
- <br>
- <span onclick="showHowTo();"><?PHP echo(getResource0("How-to: Manage your avatars in Avatar Free", $lang));?></span>
- <br><br>
- </div>
- <form id="frmUpload" role="form" method="post" action="/<?PHP echo(AVATAR_NAME);?>?hl=<?PHP echo($lang);?>" target="_self" enctype="multipart/form-data">
-
- <div class="dragover" dropzone="copy">
-
- <img id="picavatar" src="/img?av=<?PHP echo(AVATAR_NAME);?>&pic=<?PHP echo($profilePic);?>" align="middle">
-
- <input type="hidden" id="a" name="a">
- <input type="hidden" id="f" name="f">
-
- </div>
- <div class="tools">
- <div class="settingson" onclick="settingsOn();"></div>
- <?PHP if ($magicJar1 == 0): ?>
- <div class="magicjar1" style="background:url(/res/magicjar1dis.png);" onclick="setJar1On()"></div>
- <?PHP else: ?>
- <div class="magicjar1" style="background:url(/res/magicjar1.png);" onclick="setJar1Off()"></div>
- <?PHP endif; ?>
- <?PHP if ($magicJar2 == 0): ?>
- <div class="magicjar2" style="background:url(/res/magicjar2dis.png);" onclick="setJar2On()"></div>
- <?PHP else: ?>
- <div class="magicjar2" style="background:url(/res/magicjar2.png);" onclick="setJar2Off()"></div>
- <?PHP endif; ?>
- <?PHP if ($magicJar3 == 0): ?>
- <div class="magicjar3" style="background:url(/res/magicjar3dis.png);" onclick="setJar3On()"></div>
- <?PHP else: ?>
- <div class="magicjar3" style="background:url(/res/magicjar3.png);" onclick="setJar3Off()"></div>
- <?PHP endif; ?>
- <div class="settingsoff" onclick="settingsOff();"></div>
- </div>
- <input type="hidden" id="txtMagicJar1" name="txtMagicJar1" value="<?PHP echo($magicJar1);?>">
- <input type="hidden" id="txtMagicJar2" name="txtMagicJar2" value="<?PHP echo($magicJar2);?>">
- <input type="hidden" id="txtMagicJar3" name="txtMagicJar3" value="<?PHP echo($magicJar3);?>">
-
- <input type="hidden" id="Password" name="Password" value="<?PHP echo($password);?>">
-
- </form>
-
- <div id="footerCont"> </div>
- <div id="footer"><span style="background:#FFFFFF; opacity:0.7;"> <a class="aaa" href="dd.html">Disclaimer</a>. A <a href="http://5mode.com" class="aaa">5 Mode</a> project and <a href="http://demo.5mode.com" class="aaa">WYSIWYG</a> system. <?PHP echo(getResource0("Some rights reserved", $lang));?></span></div>
-
- <?PHP else: ?>
- <body style="background:#dadada no-repeat; background-size: cover; background-attachment: fixed; background-position: center;">
- <div id="AFHint">
- <button type="button" class="close" aria-label="Close" onclick="closeMe(this);" style="position:relative; top:5px; left:-7px;">
- <span aria-hidden="true" style="color:black; font-weight:900;">×</span>
- </button>
- <br>
- <span onclick="showHowTo();"><?PHP echo(getResource0("How-to: Manage your avatars in Avatar Free", $lang));?></span>
- <br><br>
- </div>
- <div class="header" style="margin-top:18px;margin-bottom:18px;">
- <a href="http://avatarfree.org" target="_self" style="color:#000000; text-decoration: none;"> <img src="Public/res/AFlogo.png" align="middle" style="position:relative;top:-5px;width:22px;"> Avatar Free</a> <a href="https://github.com/par7133/AvatarFree" style="color:#000000;"><span style="color:#119fe2">on</span> github</a> <a href="mailto:info@avatarfree.org" style="color:#000000;"><span style="color:#119fe2">for</span> feedback</a> <a href="tel:+39-331-4029415" style="font-size:13px;background-color:#15c60b;border:2px solid #15c60b;color:#000000;height:27px;text-decoration:none;"> get support </a>
- </div>
-
- <form id="frmUpload" role="form" method="post" action="/<?PHP echo(AVATAR_NAME);?>?hl=<?PHP echo($lang);?>" target="_self" enctype="multipart/form-data">
-
- <div id="title">
- <div id="avatarLogo">
- <img id="picavatar" src="/img?av=<?PHP echo(AVATAR_NAME);?>&pic=<?PHP echo($profilePic);?>" align="middle" style="position:relative;display:inline;">
- </div>
- <div id="avatarName">
- <?PHP echo(strtoupper(AVATAR_NAME));?>
- </div>
- <div id="cudoz">
- <?PHP for ($i=1;$i<=$CUDOZ;$i++): ?>
- <img id="cudozentry<?PHP echo($i);?>" class="cudoz-entry" src="/res/chicca_<?PHP echo($shortLang);?>.png">
- <?PHP endfor; ?>
- <?PHP for ($i=$CUDOZ+1;$i<=5;$i++): ?>
- <img id="cudozentry<?PHP echo($i);?>" class="cudoz-entry" src="/res/chiccadis.png">
- <?PHP endfor; ?>
- </div>
- <div id="cvs">
-
- <div style="float:left;width:47px;margin-top:20px;margin-left:7px;"><?PHP echo(getResource0("CV", $lang));?></div>
-
- <?PHP
- $pattern = $CV_PATH . DIRECTORY_SEPARATOR . "*";
- $aFilePaths = glob($pattern);
- if (empty($aFilePaths)): ?>
- <img class="cv-entry" src="/res/wordicondis.png"> <img class="cv-entry" src="/res/pdficondis.png">
- <?PHP else: ?>
- <?PHP
- $CUDOZ++;
- $pattern = $CV_PATH . DIRECTORY_SEPARATOR . "*.doc";
- $aFilePaths = glob($pattern);
- if (empty($aFilePaths)): ?>
- <img class="cv-entry" src="/res/wordicondis.png">
- <?PHP else: ?>
- <a href="/doc?av=<?PHP echo(AVATAR_NAME);?>&re=cv&doc=<?PHP echo(basename($aFilePaths[0]));?>"><img class="cv-entry" src="/res/wordicon.png"></a>
- <?PHP endif; ?>
- <?PHP
- $pattern = $CV_PATH . DIRECTORY_SEPARATOR . "*.pdf";
- $aFilePaths = glob($pattern);
- if (empty($aFilePaths)): ?>
- <img class="cv-entry" src="/res/pdficondis.png">
- <?PHP else: ?>
- <a href="/doc?av=<?PHP echo(AVATAR_NAME);?>&re=cv&doc=<?PHP echo(basename($aFilePaths[0]));?>"><img class="cv-entry" src="/res/pdficon.png"></a>
- <?PHP endif; ?>
- <?PHP endif; ?>
- </div>
- </div>
-
- <br>
-
-
- <div id="blog">
- <?PHP
- $pattern = $BLOG_PATH . DIRECTORY_SEPARATOR . "*.txt";
- $aFilePaths = glob($pattern);
- if (empty($aFilePaths)): ?>
- <div class="blog-content">
- <div class="blog-entry">
- <?PHP echo(getResource0("Hello from 5 Mode", $lang));?>,<br>
- <?PHP echo(getResource0("This is just an example of blog entry", $lang));?>.
- </div>
- </div>
- <?PHP else: ?>
- <?PHP
- $CUDOZ++;
- $iEntry = 1;
- arsort($aFilePaths, SORT_STRING);
- foreach ($aFilePaths as $filePath) {
- if ($iEntry>APP_BLOG_MAX_POSTS) {
- break;
- }
- $s=file_get_contents($filePath);
- if ($iEntry === count($aFilePaths) || $iEntry==APP_BLOG_MAX_POSTS) {
- $marginbottom = "0px";
- } else {
- $marginbottom = "5px";
- }
- ?>
- <div class="blog-content" style="margin-bottom:<?PHP echo($marginbottom);?>;">
- <div class="blog-entry" style="width:100%;margin-bottom:0px;">
- <?PHP echo(enableEmoticons(HTMLencode($s, true)));?>
- </div>
- </div>
- <?PHP
- $iEntry++;
- }?>
- <?PHP endif; ?>
- </div>
- <div id="gallery">
- <div class="gallery-content">
-
- <?PHP
- $pattern = $GALLERY_PATH . DIRECTORY_SEPARATOR . "*";
- $aFilePaths = glob($pattern);
- if (empty($aFilePaths)): ?>
-
- <div class="image-entry">
- <div style="width:100%;border:0px solid black;"><img class="image-ico" src="/res/imgicon.png" align="center"></div>
- <div style="margin-top:10px;"><?PHP echo(getResource0("Sample", $lang));?></div>
- </div>
-
- <?PHP else: ?>
- <?PHP
- $CUDOZ++;
- $iEntry = 1;
- foreach ($aFilePaths as $filePath) {
- $orifilename = basename($filePath);
- $filename = explode("|",basename($filePath))[1];
- if ($iEntry === count($aFilePaths)) {
- $marginbottom = "0px";
- } else {
- $marginbottom = "5px";
- }
- ?>
- <div class="image-entry">
- <a href="/img?av=<?PHP echo(AVATAR_NAME);?>&pic=<?PHP echo($orifilename);?>">
- <div style="width:100%;border:0px solid black;"><img class="image-ico" src="/res/imgicon.png" align="center"></div>
- <div style="margin-top:10px;"><?PHP echo($filename);?> </div>
- </a>
- </div>
- <?PHP
- $iEntry++;
- }?>
- <?PHP endif; ?>
-
- </div>
- </div>
- <?PHP
- $pattern = $MAGICJAR1_PATH . DIRECTORY_SEPARATOR . "*";
- $aFilePaths = glob($pattern);
-
- if (!empty($aFilePaths)): ?>
-
- <div id="magicjar1">
- <div class="magicjar1-content">
-
- <div class="magicjar-num"> 1 </div>
-
- <?PHP
- $iEntry = 1;
- foreach ($aFilePaths as $filePath) {
- $orifilename = basename($filePath);
- $orifileExt = strtolower(pathinfo($orifilename, PATHINFO_EXTENSION));
- $filename = explode("|",basename($filePath))[1];
- if ($iEntry === count($aFilePaths)) {
- $marginbottom = "0px";
- } else {
- $marginbottom = "5px";
- }
- ?>
- <div class="file-entry">
- <?PHP if (in_array($orifileExt, ["png", "jpg", "jpeg", "gif", "webp"])):?>
- <a href="/imgj?av=<?PHP echo(AVATAR_NAME);?>&jar=1&fn=<?PHP echo($orifilename);?>">
- <?PHP else: ?>
- <a href="/file?av=<?PHP echo(AVATAR_NAME);?>&jar=1&fn=<?PHP echo($orifilename);?>">
- <?PHP endif; ?>
- <div style="width:100%;border:0px solid black;"><img class="file-ico" src="/res/fileicon.png" align="center"></div>
- <div style="margin-top:10px;"><?PHP echo($filename);?> </div>
- </a>
- </div>
- <?PHP
- $iEntry++;
- }?>
- </div>
- </div>
-
- <?PHP endif; ?>
- <?PHP
- $pattern = $MAGICJAR2_PATH . DIRECTORY_SEPARATOR . "*";
- $aFilePaths = glob($pattern);
-
- if (!empty($aFilePaths)): ?>
-
- <div id="magicjar2">
- <div class="magicjar2-content">
-
- <div class="magicjar-num"> 2 </div>
-
- <?PHP
- $iEntry = 1;
- foreach ($aFilePaths as $filePath) {
- $orifilename = basename($filePath);
- $orifileExt = strtolower(pathinfo($orifilename, PATHINFO_EXTENSION));
- $filename = explode("|",basename($filePath))[1];
- if ($iEntry === count($aFilePaths)) {
- $marginbottom = "0px";
- } else {
- $marginbottom = "5px";
- }
- ?>
- <div class="file-entry">
- <?PHP if (in_array($orifileExt, ["png", "jpg", "jpeg", "gif", "webp"])):?>
- <a href="/imgj?av=<?PHP echo(AVATAR_NAME);?>&jar=2&fn=<?PHP echo($orifilename);?>">
- <?PHP else: ?>
- <a href="/file?av=<?PHP echo(AVATAR_NAME);?>&jar=2&fn=<?PHP echo($orifilename);?>">
- <?PHP endif; ?>
- <div style="width:100%;border:0px solid black;"><img class="file-ico" src="/res/fileicon.png" align="center"></div>
- <div style="margin-top:10px;"><?PHP echo($filename);?> </div>
- </a>
- </div>
- <?PHP
- $iEntry++;
- }?>
- </div>
- </div>
-
- <?PHP endif; ?>
- <?PHP
- $pattern = $MAGICJAR3_PATH . DIRECTORY_SEPARATOR . "*";
- $aFilePaths = glob($pattern);
-
- if (!empty($aFilePaths)): ?>
-
- <div id="magicjar3">
- <div class="magicjar3-content">
-
- <div class="magicjar-num"> 3 </div>
-
- <?PHP
- $iEntry = 1;
- foreach ($aFilePaths as $filePath) {
- $orifilename = basename($filePath);
- $orifileExt = strtolower(pathinfo($orifilename, PATHINFO_EXTENSION));
- $filename = explode("|",basename($filePath))[1];
- if ($iEntry === count($aFilePaths)) {
- $marginbottom = "0px";
- } else {
- $marginbottom = "5px";
- }
- ?>
- <div class="file-entry">
- <?PHP if (in_array($orifileExt, ["png", "jpg", "jpeg", "gif", "webp"])):?>
- <a href="/imgj?av=<?PHP echo(AVATAR_NAME);?>&jar=3&fn=<?PHP echo($orifilename);?>">
- <?PHP else: ?>
- <a href="/file?av=<?PHP echo(AVATAR_NAME);?>&jar=3&fn=<?PHP echo($orifilename);?>">
- <?PHP endif; ?>
- <div style="width:100%;border:0px solid black;"><img class="file-ico" src="/res/fileicon.png" align="center"></div>
- <div style="margin-top:10px;"><?PHP echo($filename);?> </div>
- </a>
- </div>
- <?PHP
- $iEntry++;
- }?>
- </div>
- </div>
-
- <?PHP endif; ?>
-
- <div id="friends">
- <div class="friends-content">
-
- <div id="mynetworkTitle"><?PHP echo(getResource0("My Network", $lang));?>:<br><br>
-
- <?PHP
- $pattern = $FRIENDS_PATH . DIRECTORY_SEPARATOR . "*.txt";
- $aFilePaths = glob($pattern);
- if (empty($aFilePaths)): ?>
-
- <div class="friend-entry">
- <a href="http://5mode.com">
- <div style="width:100%;border:0px solid black;"><img class="friend-ico" src="/res/pic1.png" align="center"></div>
- <div style="margin-top:10px;"><?PHP echo(getResource0("Sample", $lang));?></div>
- </a>
- </div>
-
- <?PHP else: ?>
- <?PHP
- $CUDOZ++;
- $iEntry = 1;
- foreach ($aFilePaths as $filePath) {
- $orifilename = basename($filePath);
- $link=file_get_contents($filePath);
- $filename = pathinfo($filePath, PATHINFO_FILENAME);
- if ($iEntry === count($aFilePaths)) {
- $marginbottom = "0px";
- } else {
- $marginbottom = "5px";
- }
- ?>
- <div class="friend-entry">
- <a href="<?PHP echo($link);?>">
- <div style="width:100%;border:0px solid black;"><img class="friend-ico" src="/res/pic1.png" align="center"></div>
- <div style="margin-top:10px;"><?PHP echo($filename);?> </div>
- </a>
- </div>
- <?PHP
- $iEntry++;
- }?>
- <?PHP endif; ?>
-
- </div>
-
- </div>
- </div>
-
-
- <div id="passworddisplay">
- <br>
- <input type="password" id="Password" name="Password" placeholder="password" value="<?php echo($password);?>" autocomplete="off"> <input type="submit" value="<?PHP echo(getResource0("Go", $lang));?>" style="text-align:left;width:25%;color:#000000;"><br>
- <input type="text" id="Salt" placeholder="salt" autocomplete="off"><br>
- <div style="text-align:center;">
- <a id="hashMe" href="#" onclick="showEncodedPassword();"><?PHP echo(getResource0("Hash Me", $lang));?>!</a>
- </div>
- </div>
- </form>
-
- <div id="footerCont"> </div>
- <div id="footer">
- <div style="float:left">
- <select id="cbLang" onchange="changeLang(this);">
- <option value="en-US" <?PHP echo($lang==PHP_EN?"selected":"");?>>en</option>
- <option value="it-IT" <?PHP echo($lang==PHP_IT?"selected":"");?>>it</option>
- <option value="zh-CN" <?PHP echo($lang==PHP_CN?"selected":"");?>>cn</option>
- </select>
- </div>
- <span style="background:#FFFFFF; opacity:0.7;"> A <a href="http://5mode.com" class="aaa">5 Mode</a> project and <a href="http://demo.5mode.com" class="aaa">WYSIWYG</a> system. <?PHP echo(getResource0("Some rights reserved", $lang));?>.</span></div>
-
- <?PHP endif; ?>
-
- <script src="static/js/home-js.php?hl=<?PHP echo($lang);?>&av=<?PHP echo(AVATAR_NAME);?>&cv=<?PHP echo($CURRENT_VIEW);?>&cu=<?PHP echo($CUDOZ);?>" type="text/javascript"></script>
- <?PHP if ($CURRENT_VIEW == PUBLIC_VIEW): ?>
- <?php if (file_exists(APP_PATH . DIRECTORY_SEPARATOR . "metrics.html")): ?>
- <?php include(APP_PATH . DIRECTORY_SEPARATOR . "metrics.html"); ?>
- <?php endif; ?>
- <?php endif; ?>
- </body>
- </html>
|