|
|
|
|
error_reporting(E_ALL ^ E_NOTICE);
// ****************************** CONFIG ******************************
// ********************************************************************
// login for admin
$adminlogin="admin";
// password for admin
$adminpwd="pass";
// time in seconds until admin has to relogin
$adminexpire= 60*20;
// whether to have slideshow or not
$slideshow=true;
// time until next picture is show in slideshow
$slideshowtime=3;
// thumbnails (thereore gd lib must be installed in php!)s
$thumbnails=true;
// Original picture size (width) - if set pic gets
// resized otherwise set it to 'false'
$originalsize=400;
// thumbnails size
$thumbsize=100;
// thumbsize: width (w) or height (h)
$thumbhv="w";
// number of thumbnails cols
$thumbcols=4;
// when you include the script into a file that is
// outside the mygallery folder you have to put the
// path to the mygallery folder here (with trailing slash if set!)
$pathtoscript="";
// phpwcms alias name (only if you're using the script as module for phpwcms)
$phpwcmsalias="";
// jpg quality (0=bad, 100=good, standard is 80)
$jpgquality = 85;
// galleries per page in gallery overview mode
$gpp = 8;
// language settings
$txtadmin= htmlentities("Admin");
$txtnextslide= htmlentities("Wait $slideshowtime seconds or");
$txtclickpic= htmlentities("Clicca sopra per vedere la prossima");
$txtback= htmlentities("Torna Indice");
$txtlogin= htmlentities("Login");
$txtpass= htmlentities("Password");
$txtlogout= htmlentities("Logout");
$txtnewgal= htmlentities("Crea galleria usato");
$txtzipdesc= htmlentities("Puoi scaricare un archivio foto in formato Zip o foto singole step by step");
$txtgalname= htmlentities("Nome gallery");
$txtselzip= htmlentities("Seleziona L'archivio o la singola immagine (jpg) da caricare");
$txtbuild= htmlentities("Crea");
$txtexgals= htmlentities("Existing Galleries");
$txtedit= htmlentities("edita");
$txtdelete= htmlentities("cancella");
$txtasktodel= htmlentities("Vuoi veramente cancellare questa galleria?");
$txtnodir= htmlentities("Couldn't create a new folder (check permissions!)");
$txtnozip= htmlentities("No ZIP archive or picture selected or empty name field!");
$txtnoname= htmlentities("Empty name field!");
$txtname= htmlentities("Nome");
$txtup= htmlentities("Vai su");
$txtdown= htmlentities("Vai giù");
$txtediting= htmlentities("Edita Gallery");
$txtcaption= htmlentities("Caption");
$txtadd= htmlentities("Aggiungi");
$txtaddpicscap= htmlentities("Aggiungi Picture(s)");
$txtaddpics= htmlentities("Select a single picture or a ZIP archive that you 'd like to add to this gallery");
$txtsavechange= htmlentities("Salva cambiamenti");
$txtsavedchanges=htmlentities("Cambiamenti salvati");
$txtdescription=htmlentities("Descrizione");
$txtviewthisgal=htmlentities("View the {gallery} Gallery!");
$txtfirstpage= htmlentities("«««");
$txtprevpage= htmlentities("««");
$txtnextpage= htmlentities("»»");
$txtlastpage= htmlentities("»»»");
// style definitions
?>
// ********************************************************************
// ********************* DON'T CHANGE BELOW HERE **********************
// ********************************************************************
$serverpath=substr(__FILE__, 0, strrpos(__FILE__, "/"));
$imgdir=$serverpath."/images/";
$me=$_SERVER['PHP_SELF'];
$version="1.3.2";
$now=time();
$logfile=$serverpath."/log.dat.php";
$galfile=$serverpath."/galleries.dat";
$tplfile=$serverpath."/templates.tpl";
$showedit=false;
// ********************** CLASSES/FUNCTIONS **********************
// ***************************************************************
class mdasort {
var $data;//the array we want to sort.
var $sortkeys;//the order in which we want the array to be sorted.
function _sortcmp($a, $b, $i=0) {
$r = strnatcmp($a[$this->sortkeys[$i][0]],$b[$this->sortkeys[$i][0]]);
if ($this->sortkeys[$i][1] == "DESC") $r = $r * -1;
if($r==0) {
$i++;
if ($this->sortkeys[$i]) $r = $this->_sortcmp($a, $b, $i);
}
return $r;
}
function sort() {
if(count($this->sortkeys)) {
usort($this->data,array($this,"_sortcmp"));
}
}
}
function savegals($gal, $galfile){
$fp=fopen($galfile, "w");
ksort($gal);
foreach($gal as $g) fputs($fp, "$g[0]|$g[1]|$g[2]\n");
fclose($fp);
}
function adminloggedin($logfile) {
include($logfile);
$logged=false;
if (count($admins)>0){
foreach ($admins as $line){
if ($line['hash']==md5($_REQUEST['mghash'])) $logged=true;
}
}
return $logged;
}
function clearoldadmins($logfile, $now, $adminexpire) {
include($logfile);
if (count($admins)>0){
$i=0;
$fp=fopen($logfile, "w");
fputs($fp, "\n");
foreach ($admins as $line){
if ($now-$line['time']<$adminexpire)
fputs($fp, "\$admins[$i]['time']=".$line[time]."; \$admins[$i]['hash']='".$line['hash']."';\n");
$i++;
}
fputs($fp, "?>");
fclose($fp);
}
}
function mkthumbnail($src, $dst, $hv="w", $size=80, $quality=80){
$info=getimagesize($src);
if ($info[2]==2){ // if it's jpg
if ($hv=="w"){
$nw=$size;
$nh=round(($info[1]*$size)/$info[0], 0);
}else if ($hv=="h"){
$nh=$size;
$nw=round(($info[0]*$size)/$info[1], 0);
}
$dst_p=imagecreatetruecolor($nw, $nh);
$src_p=imagecreatefromjpeg($src);
imagecopyresampled($dst_p, $src_p, 0,0,0,0,$nw, $nh, $info[0], $info[1]);
imagejpeg($dst_p, $dst, $quality);
imagedestroy($src_p);
imagedestroy($dst_p);
return true;
}else return false;
}
function getpics($gal, $imgdir, $pathtoscript, $thumbnails){
$dir="$imgdir$gal";
$dp=opendir($dir);
$pictures= new mdasort;
$i=0;
while ($file=readdir($dp)){
if ($file!="." && $file!=".."){
if (strpos($file, "thumb")===false && $file!="captions.dat"){
$pictures->data[$i]['id']=substr($file, 0, strpos($file, "."));
$pictures->data[$i]['pic']=$pathtoscript."images/$gal/$file";
if ($thumbnails) $pictures->data[$i]['thumb']=$pathtoscript."images/$gal/thumb_$file";
$i++;
}
}
}
if ($i>0){
$pictures->sortkeys = array(array('id','ASC'));
$pictures->sort();
return $pictures->data;
}else return false;
}
function getcaps($gal, $imgdir){
$caps=false;
$cappath=$imgdir.$gal."/captions.dat";
if (file_exists($cappath)){
$stuff=file($cappath);
foreach ($stuff as $line){
$cap=explode("|", rtrim($line));
$caps[$cap[0]]=$cap[1];
}
}
return $caps;
}
function nltobr($str){
return str_replace(array("\n", "\r"), array(" ", ""), $str);
}
function brtonl($str){
return str_replace(" ", "\n", $str);
}
function isBiggerWidth($path, $size){
if ($size!==false){
$foo=getimagesize($path);
if ($foo[0]>$size) return true;
else return false;
}else return false;
}
function getTemplate($tpl, $html){
$match="/<\!\-\-$tpl\-\->(.*?)<\!\-\-$tpl\-\->/s";
preg_match($match, $html, $tmp);
return $tmp[1];
}
function paging(
$pages,
$pagevar="page",
$ppv=10,
$first ="««« ",
$firsts ="««« ",
$prev ="«« ",
$prevs ="«« ",
$num ="{page}",
$nums ="{page}",
$sep =" | ",
$more ="[...]",
$next =" »»",
$nexts =" »»",
$last =" »»»",
$lasts =" »»»"){
// get URI parameters
$getvars=$_SERVER['PHP_SELF']."?";
foreach ($_GET as $key => $val){
if ($key!=$pagevar) $getvars.="$key=$val&";
}
$page=(is_numeric($_GET[$pagevar])) ? $_GET[$pagevar] : 1;
$page=($page>$pages) ? $pages : $page;
$prevpage=($page>1) ? $page-1 : 1;
$nextpage=($page < $pages) ? $page+1 : $pages;
$paging="";
if ($pages>1){
// first
$paging.=($page>1) ? str_replace("{url}", "$getvars$pagevar=1", $first) : $firsts;
// prev
$paging.=($page>1) ? str_replace("{url}", "$getvars$pagevar=$prevpage", $prev) : $prevs;
// pages
$ppvrange=ceil($page/$ppv);
$start=($ppvrange-1)*$ppv;
$end=($ppvrange-1)*$ppv+$ppv;
$end=($end>$pages) ? $pages : $end;
$paging.=($start>1) ? str_replace("{url}", "$getvars$pagevar=".($start-1), $more).$sep : "";
for ($i=1; $i<=$pages; $i++){
if ($i>$start && $i<= $end){
$paging.=($page==$i) ? str_replace("{page}", $i, $nums).(($i<$end) ? $sep : "") : str_replace(array("{url}", "{page}"), array("$getvars$pagevar=$i", $i), $num).(($i<$end) ? $sep : "");
}
}
$paging.=($end<$pages) ? $sep.str_replace("{url}", "$getvars$pagevar=".($end+1), $more) : "" ;
// next
$paging.=($page<$pages) ? str_replace("{url}", "$getvars$pagevar=$nextpage", $next) : $nexts;
// last
$paging.=($page<$pages) ? str_replace("{url}", "$getvars$pagevar=$pages", $last) : $lasts;
}
return $paging;
}
// **************************** INIT *****************************
// ***************************************************************
if (!isset($_REQUEST['mghash']) || $_REQUEST['mghash']=="") {
srand($now);
for ($i=0; $i<16 ; $i++) $secret.=chr(rand(60, 127));
$secret=md5($secret);
$hash=md5($_SERVER['HTTP_USER_AGENT'].$now.$secret);
}else $hash= $_REQUEST['mghash'];
$getvars="?$phpwcmsalias&mghash=$hash";
clearoldadmins($logfile, $now, $adminexpire);
// **************************** ADMIN ****************************
// ***************************************************************
if ($_REQUEST['mgdo']=="admin"){
// if login
if ($_REQUEST['mgaction']=="login"){
if ($_REQUEST['mglogin']==$adminlogin && $_REQUEST['mgpwd']==$adminpwd){
include($logfile);
$fp=fopen($logfile, "w");
fputs($fp, "\n");
$i=0;
if (count($admins)>0){
foreach ($admins as $line){
fputs($fp, "\$admins[$i]['time']=".$line[time]."; \$admins[$i]['hash']='".$line['hash']."';\n");
$i++;
}
}
fputs($fp, "\$admins[$i]['time']=".$now."; \$admins[$i]['hash']='".md5($hash)."';\n?>");
fclose($fp);
}
}
if (adminloggedin($logfile)){
// get gallery list from data file
$galleries=false;
if ($gals=file($galfile)){
foreach ($gals as $gal){
$gal= explode('|', rtrim($gal));
$galleries[$gal[0]] = array($gal[0], $gal[1], $gal[2]);
}
krsort($galleries, SORT_NUMERIC);
reset($galleries);
$nextindex=key($galleries)+1;
}else $nextindex=1;
// delete a gallery
if ($_REQUEST['mgaction']=="delete" && is_numeric($_REQUEST['mgid'])){
unset($galleries[$_REQUEST['mgid']]);
savegals($galleries, $galfile);
$dir="$imgdir".$_REQUEST['mgid']."/";
$dp=opendir($dir);
while ($file=readdir($dp)){
if ($file!="." && $file!="..") unlink($dir.$file);
}
closedir($dp);
rmdir($dir);
}
// move gallery upwards or downwards
if ($_REQUEST['mgaction']=="move" && is_numeric($_REQUEST['mgid']) && isset($_REQUEST['mgcmd'])){
$id=$_REQUEST['mgid'];
$cmd=$_REQUEST['mgcmd'];
$keys=array_keys($galleries);
if ($cmd=="up") sort($keys);
else if ($cmd=="down") rsort($keys);
$oid=false;
foreach ($keys as $key){
if ($cmd=="up"){
if ($key>$id){
$oid=$key;
break;
}
}else{
if ($key<$id){
$oid=$key;
break;
}
}
}
if ($oid!==false){
// exchanging the 2 array elements
$galleries[$id][0]=$oid;
$galleries[$oid][0]=$id;
list ($galleries[$id], $galleries[$oid]) = array($galleries[$oid], $galleries[$id]);
savegals($galleries, $galfile);
$tmpdir=$imgdir.$id."_tmp";
rename($imgdir.$id, $tmpdir);
rename($imgdir.$oid, $imgdir.$id);
rename($tmpdir, $imgdir.$oid);
}
}
// save edited gallery
if ($_REQUEST['mgaction']=="savegal" && isset($_REQUEST['mggal'])){
if ($_REQUEST['mggallery']!=""){
$gal=$_REQUEST['mggal'];
$todel=$_REQUEST['mgtodel'];
$caps="";
foreach ($_REQUEST['mgcap'] as $id => $cap){
// delete pic
if (isset($todel[$id]) && $todel[$id]==1){
unlink($imgdir.$gal."/$id.jpg");
if ($thumbnails) unlink($imgdir.$gal."/thumb_$id.jpg");
}else if ($cap!=""){
$caps.="$id|".htmlentities($cap, ENT_QUOTES)."\n";
}
}
$fp=fopen($imgdir.$gal."/captions.dat", "w");
fputs($fp, $caps);
fclose($fp);
$galleries[$gal][1]=htmlentities($_REQUEST['mggallery'], ENT_QUOTES);
$galleries[$gal][2]=nltobr(htmlentities($_REQUEST['mgdescr'], ENT_QUOTES));
savegals($galleries, $galfile);
$output= $txtsavedchanges;
}else $output=$txtnoname;
$showedit=true;
}
// save new or edited gallery pictures
if ($_REQUEST['mgaction']=="upload"){
$error=false;
if (is_numeric($_REQUEST['mggal'])){
$gal=$_REQUEST['mggal'];
$showedit=true;
}else $gal=false;
if ($gal===false && $_REQUEST['mggallery']=="") $error=$txtnozip;
if ($error===false && is_uploaded_file($_FILES['mgfile']['tmp_name']) && $_FILES['mgfile']['size']>0){
// check whether new gallery or adding pics to existing one
if ($gal===false){
if (!mkdir("$imgdir$nextindex", 0777)) $error.=$txtnodir;
$galleries[$nextindex]=array($nextindex, htmlentities($_REQUEST['mggallery'], ENT_QUOTES), nltobr(htmlentities($_REQUEST['mgdescr'], ENT_QUOTES)));
krsort($galleries);
savegals($galleries, $galfile);
$i=1;
}else if (is_numeric($gal)){
if ($pictures=getpics($gal, $imgdir, $pathtoscript, $thumbnails)){
foreach ($pictures as $pic){
$ids[]=$pic['id'];
}
rsort($ids);
$i=$ids[0]+1;
}else $i=1;
$nextindex=$gal;
}
// handling single jpg upload
if ($_FILES['mgfile']['type']=="image/jpeg" || $_FILES['mgfile']['type']=="image/pjpeg"){
if (move_uploaded_file($_FILES['mgfile']['tmp_name'], "$imgdir$nextindex/$i.jpg")){
chmod("$imgdir$nextindex/$i.jpg", 0777);
if (isBiggerWidth("$imgdir$nextindex/$i.jpg", $originalsize)) mkthumbnail("$imgdir$nextindex/$i.jpg", "$imgdir$nextindex/$i.jpg", "w", $originalsize, $jpgquality);
if ($thumbnails)
mkthumbnail("$imgdir$nextindex/$i.jpg", "$imgdir$nextindex/thumb_$i.jpg", $thumbhv, $thumbsize, $jpgquality);
}
// handling zip uploads
}else{
if ($zip=zip_open($_FILES['mgfile']['tmp_name'])){
while($zipe=zip_read($zip)){
zip_entry_open($zip, $zipe);
$size=zip_entry_filesize($zipe);
$tmp=zip_entry_read($zipe, $size);
$fp=fopen($pathtoscript."images/$nextindex/$i.jpg", "w");
fputs($fp, $tmp);
fclose($fp);
chmod("$imgdir$nextindex/$i.jpg", 0777);
if (isBiggerWidth("$imgdir$nextindex/$i.jpg", $originalsize)) mkthumbnail("$imgdir$nextindex/$i.jpg", "$imgdir$nextindex/$i.jpg", "w", $originalsize, $jpgquality);
if ($thumbnails)
mkthumbnail("$imgdir$nextindex/$i.jpg", "$imgdir$nextindex/thumb_$i.jpg", $thumbhv, $thumbsize, $jpgquality);
zip_entry_close($zipe);
$i++;
}
zip_close($zip);
}
}// endif zip handling
}else $error=$txtnozip;
if ($error!==false) $output=$error;
}
// display admin cp header
echo "\n";
echo "\n";
echo "\n";
echo "| Manutenzione galleria promozioni. | \n";
echo "[$txtlogout] | \n";
echo " \n";
echo " | \n";
// if in gallery edit mode
if ($showedit || $_REQUEST['mgaction']=="edit"){
$gal=$_REQUEST['mggal'];
echo "\n";
echo "$txtediting ".$galleries[$gal][1]."
\n";
echo " \n";
$caps=getcaps($gal, $imgdir);
$i=1;
$pictures = getpics($gal, $imgdir, $pathtoscript, $thumbnails);
if ($pictures!==false){
echo "\n";
}// endif $pictures!==false
echo " | \n";
// else in not edit mode
}else{
// upload new gallery form
echo "| \n";
echo " | \n";
// show gallery list
if($galleries!==false){
echo "$txtexgals
\n";
echo "\n";
echo "\n";
echo "| # | \n";
echo "$txtname | \n";
echo " | \n";
echo " | \n";
echo " | \n";
echo " | \n";
echo " \n";
$i=1;
$bgcol[0]="";
$bgcol[1]="class='mgaltbgcol'";
krsort($galleries);
//print_r($galleries);
foreach($galleries as $gal){
echo "\n";
echo "| $i | \n";
echo "".stripslashes($gal[1])." | \n";
echo "$txtup | \n";
echo "$txtdown | \n";
echo "$txtedit | \n";
echo "$txtdelete | \n";
echo " \n";
$i++;
}
echo " \n";
echo " | \n";
}
}// endif (not edit mode)
echo " \n";
// if not logged in -> admin login form
}else{
echo "\n";
echo "\n";
}
// ***************************** MAIN *****************************
// ****************************************************************
// if not in admin mode
}else{
// get gallery list from data file
$galleries=false;
if ($gals=file($galfile)){
foreach ($gals as $gal){
$gal= explode('|', rtrim($gal));
$galleries[$gal[0]] = array($gal[0], $gal[1], $gal[2]);
}
krsort($galleries, SORT_NUMERIC);
}
// show the gallery list
if (!isset($_REQUEST['mggal'])){
if ($galleries!==false){
// reorganize $galleries array
$foo=$galleries;
$galleries=array();
foreach ($foo as $g) $galleries[]=$g;
// paging
$page=(is_numeric($_REQUEST['mgpage'])) ? $_REQUEST['mgpage'] : 1;
$start= ($page-1) * $gpp;
$numgals=count($galleries);
$pages=ceil($numgals/$gpp);
$paging=paging($pages, "mgpage");
// get template for gallleries list
$tpl=getTemplate("GALLERIES", implode("", file($tplfile)));
$tplrow=getTemplate("ROW", $tpl);
$rows="";
for ($i=$start; $i<($start+$gpp); $i++){
if (is_array($galleries[$i])){
$gal=$galleries[$i];
// get random preview thumbnail
$pictures = getpics($gal[0], $imgdir, $pathtoscript, $thumbnails);
$c=count($pictures);
$imgsrc=$pictures[rand(0, ($c-1))]['thumb'];
$match=array("{urlthumb}", "{title}", "{description}", "{urlgallery}");
$replace=array($imgsrc, stripslashes($gal[1]), $gal[2], $me.$getvars."&mggal=".$gal[0]);
$rows.=str_replace($match, $replace, $tplrow);
}
}
$match= array("/\{paging\}/", "/<\!\-\-ROW\-\->(.*?)<\!\-\-ROW\-\->/s");
$replace= array($paging, $rows);
echo preg_replace($match, $replace, $tpl);
}// endif $galleries!==false)
// show specific gallery
}else{
$gal=$_REQUEST['mggal'];
if ($pictures = getpics($gal, $imgdir, $pathtoscript, $thumbnails)){
$numpics=count($pictures);
// show thumbnails page
if (!isset($_REQUEST['mgid']) && $thumbnails){
// get template for this gallery
$tpl=getTemplate("GALLERY", implode("", file($tplfile)));
$tplpic=getTemplate("PIC", $tpl);
$pictable= "\n";
$i=0;
$caps=getcaps($gal, $imgdir);
foreach ($pictures as $pic){
$pictable.= "| ";
$match= array("{urlpicture}", "{urlthumb}", "{captionpicture}");
$replace= array("$me$getvars&mggal=$gal&mgid=$i&mgcmd=noslide", $pic['thumb'], stripslashes($caps[$pic['id']]));
$pictable.= str_replace($match, $replace, $tplpic);
$pictable.= " | \n";
if (fmod(($i+1), $thumbcols)==0) $pictable.= " \n";
$i++;
}
$pictable.= " \n";
$match=array("/\{captiongallery\}/", "/\{urlslideshow\}/", "/\{urlbacktoindex\}/", "/<\!\-\-PIC\-\->(.*?)<\!\-\-PIC\-\->/s");
$replace=array(stripslashes($galleries[$gal][1]), $me.$getvars."&mggal=$gal&mgid=0", $me.$getvars, $pictable);
echo preg_replace($match, $replace, $tpl);
// show specific pic
}else {
if (!isset($_REQUEST['mgid'])) $id=0;
else $id=$_REQUEST['mgid'];
$backurl="$me$getvars".(($thumbnails) ? "&mggal=$gal" : "");
if ($id==($numpics-1)) $nexturl=$backurl;
else $nexturl="$me$getvars&mggal=$gal&mgid=".($id+1);
// get caps
$caps=getcaps($gal, $imgdir);
// get template for this picture
$tpl=getTemplate("PICTURE", implode("", file($tplfile)));
$match= array("{captiongallery}", "{info}", "{urlpic}", "{captionpicture}", "{urlbacktoindex}", "{urlnextpicture}", "{urlnextpictureslideshow}");
$replace= array( stripslashes($galleries[$gal][1]),
(($_REQUEST['mgcmd']!="noslide" && $slideshow) ? "$txtnextslide $txtclickpic" : $txtclickpic),
$pictures[$id]['pic'],
stripslashes($caps[$pictures[$id]['id']]),
$backurl,
$nexturl."&mgcmd=noslide",
$nexturl);
echo "".str_replace($match, $replace, $tpl);
if ($_REQUEST['mgcmd']!="noslide" && $slideshow) echo "\n";
}
}else echo "$txtback";
}
}
echo "
$txtadmin ::";
?> |
|
|
|
| |
|
|
|