110 lines
2.8 KiB
PHP
110 lines
2.8 KiB
PHP
<?php
|
|
|
|
/**
|
|
* This file is part of the Froxlor project.
|
|
* Copyright (c) 2003-2009 the SysCP Team (see authors).
|
|
* Copyright (c) 2010 the Froxlor Team (see authors).
|
|
*
|
|
* For the full copyright and license information, please view the COPYING
|
|
* file that was distributed with this source code. You can also view the
|
|
* COPYING file online at http://files.froxlor.org/misc/COPYING.txt
|
|
*
|
|
* @copyright (c) the authors
|
|
* @author Florian Lippert <flo@syscp.org> (2003-2009)
|
|
* @author Froxlor team <team@froxlor.org> (2010-)
|
|
* @license GPLv2 http://files.froxlor.org/misc/COPYING.txt
|
|
* @package Functions
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* Creates a directory below a users homedir and sets all directories,
|
|
* which had to be created below with correct Owner/Group
|
|
* (Copied from cron_tasks.php:rev1189 as we'll need this more often in future)
|
|
*
|
|
* @param string The homedir of the user
|
|
* @param string The dir which should be created
|
|
* @param int The uid of the user
|
|
* @param int The gid of the user
|
|
* @param bool Place standard-index.html into the new folder
|
|
* @param bool Allow creating a directory out of the customers docroot
|
|
*
|
|
* @return bool true if everything went okay, false if something went wrong
|
|
*
|
|
* @author Florian Lippert <flo@syscp.org>
|
|
* @author Martin Burchert <martin.burchert@syscp.org>
|
|
*/
|
|
|
|
function mkDirWithCorrectOwnership($homeDir, $dirToCreate, $uid, $gid, $placeindex = false, $allow_notwithinhomedir = false)
|
|
{
|
|
$returncode = true;
|
|
|
|
if($homeDir != ''
|
|
&& $dirToCreate != '')
|
|
{
|
|
$homeDir = makeCorrectDir($homeDir);
|
|
$dirToCreate = makeCorrectDir($dirToCreate);
|
|
|
|
if(substr($dirToCreate, 0, strlen($homeDir)) == $homeDir)
|
|
{
|
|
$subdir = substr($dirToCreate, strlen($homeDir) - 1);
|
|
$within_homedir = true;
|
|
}
|
|
else
|
|
{
|
|
$subdir = $dirToCreate;
|
|
$within_homedir = false;
|
|
}
|
|
|
|
$subdir = makeCorrectDir($subdir);
|
|
$subdirs = array();
|
|
|
|
if($within_homedir || !$allow_notwithinhomedir)
|
|
{
|
|
$subdirlen = strlen($subdir);
|
|
$offset = 0;
|
|
|
|
while($offset < $subdirlen)
|
|
{
|
|
$offset = strpos($subdir, '/', $offset);
|
|
$subdirelem = substr($subdir, 0, $offset);
|
|
$offset++;
|
|
array_push($subdirs, makeCorrectDir($homeDir . $subdirelem));
|
|
}
|
|
}
|
|
else
|
|
{
|
|
array_push($subdirs, $dirToCreate);
|
|
}
|
|
|
|
$subdirs = array_unique($subdirs);
|
|
sort($subdirs);
|
|
foreach($subdirs as $sdir)
|
|
{
|
|
if(!is_dir($sdir))
|
|
{
|
|
$sdir = makeCorrectDir($sdir);
|
|
safe_exec('mkdir -p ' . escapeshellarg($sdir));
|
|
|
|
/**
|
|
* #68
|
|
*/
|
|
if ($placeindex) {
|
|
$loginname = getLoginNameByUid($uid);
|
|
if ($loginname !== false) {
|
|
storeDefaultIndex($loginname, $sdir, null);
|
|
}
|
|
}
|
|
|
|
safe_exec('chown -R ' . (int)$uid . ':' . (int)$gid . ' ' . escapeshellarg($sdir));
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$returncode = false;
|
|
}
|
|
|
|
return $returncode;
|
|
}
|