view contrib/web/php-admin/htdocs/save.php @ 762:dbb144f085a5

Fix php-admin to work when topdir contains a symlink (e.g. on Mac)
author Ben Schmidt
date Mon, 18 Oct 2010 09:59:24 +1100
parents 73c8715367fb
children 75fb7729c6e8
line wrap: on
line source

<?php

/* mlmmj/php-admin:
 * Copyright (C) 2004 Christoph Thiel <ct at kki dot org>
 *
 * mlmmj/php-perl:
 * Copyright (C) 2004 Morten K. Poulsen <morten at afdelingp.dk>
 * Copyright (C) 2004 Christian Laursen <christian@pil.dk>
 *
 * 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.
 */

require(dirname(dirname(__FILE__))."/conf/config.php");
require(dirname(__FILE__)."/class.rFastTemplate.php");

function mlmmj_boolean($name, $nicename, $text)
{
    global $tpl, $topdir, $list, $HTTP_POST_VARS;
    
    $file = $topdir."/".$list."/control/".$name;
    
    if (isset($HTTP_POST_VARS[$name])) 
    {
	if(!touch($file))
	    die("Couldn't open ".$file." for writing");
	if (!chmod($file, 0644))
	    die("Couldn't chmod ".$file);
    }
    else
	@unlink($file);
}

function mlmmj_string ($name, $nicename, $text) 
{
    mlmmj_list($name, $nicename, $text);
}   

function mlmmj_list($name, $nicename, $text) 
{
    global $tpl, $topdir, $list,$HTTP_POST_VARS;

    $file = $topdir."/".$list."/control/".$name;
    
    if(!empty($HTTP_POST_VARS[$name]))
    {
	if (!$fp = fopen($file, "w"))
	    die("Couldn't open ".$file." for writing");

	fwrite($fp, preg_replace('/\\r\\n/',"\n",$HTTP_POST_VARS[$name]));
	fclose($fp);

	if (!chmod($file, 0644))
	    die("Couldn't chmod ".$file);
    }
    else
	@unlink($file);
    
}

// Perl's encode_entities (to be able to use tunables.pl)
function encode_entities($str) { return htmlentities($str); }


$tpl = new rFastTemplate($templatedir);

$list = $HTTP_POST_VARS["list"];

if(!isset($list))
die("no list specified");

if (dirname(realpath($topdir."/".$list)) != realpath($topdir))
die("list outside topdir");

if(!is_dir($topdir."/".$list))
die("non-existent list");

$tpl->define(array("main" => "save.html"));
$tpl->assign(array("LIST" => htmlentities($list)));

$tunables = file_get_contents($confdir.'/tunables.pl');
eval($tunables);

$tpl->parse("MAIN","main");
$tpl->FastPrint("MAIN");

?>