Newer
Older

Jakob Sack
committed
<?php
/**
* ownCloud
*
* @author Frank Karlitschek
* @author Jakob Sack
* @copyright 2010 Frank Karlitschek karlitschek@kde.org
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library 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 AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/

Jakob Sack
committed
/**
* Collection of useful functions

Jakob Sack
committed
*/
class OC_HELPER {
/**
* @brief Creates an url
* @param $app app
* @param $file file
* @returns the url

Jakob Sack
committed
*
* Returns a url to the given app and file.

Jakob Sack
committed
*/
public static function linkTo( $app, $file ){

Jakob Sack
committed
global $WEBROOT;
if(!empty($app)) {
$app .= '/';
}
if( file_exists( $SERVERROOT . '/apps/'. $app . $file )){
return $WEBROOT . '/apps/' . $app . $file;
return $WEBROOT . '/' . $app . $file;

Jakob Sack
committed
}
/**
* @brief Creates path to an image
* @param $app app
* @param $image image name
* @returns the url

Jakob Sack
committed
*
* Returns the path to the image.

Jakob Sack
committed
*/
public static function imagePath( $app, $image ){

Jakob Sack
committed
global $WEBROOT;
if( file_exists( "$SERVERROOT/apps/img/$app/$image" )){
return "$WEBROOT/apps/img/$app/$image";
return "$WEBROOT/$app/img/$image";

Jakob Sack
committed
}
/**
* @brief get path to icon of mime type
* @param $mimetype mimetype
* @returns the url

Jakob Sack
committed
*
* Returns the path to the image of this mime type.

Jakob Sack
committed
*/
public static function mimetypeIcon( $mimetype ){

Jakob Sack
committed
global $SERVERROOT;
global $WEBROOT;
// Replace slash with a minus
$mimetype = str_replace( "/", "-", $mimetype );
// Is it a dir?
if( $mimetype == "dir" ){
return "$WEBROOT/img/places/folder.png";
}
// Icon exists?
if( file_exists( "$SERVERROOT/img/mimetypes/$mimetype.png" )){
return "$WEBROOT/img/mimetypes/$mimetype.png";
}
else{
return "$WEBROOT/img/mimetypes/application-octet-stream.png";
}
}
* @brief Make a human file size
* @param $bytes file size in bytes
* @returns a human readable file size
* Makes 2048 to 2 kB.
*/
public static function humanFileSize( $bytes ){
if( $bytes < 1024 ){
return "$bytes B";
}
$bytes = round( $bytes / 1024, 1 );
if( $bytes < 1024 ){
return "$bytes kB";
}
$bytes = round( $bytes / 1024, 1 );
if( $bytes < 1024 ){
return "$bytes MB";
}
// Wow, heavy duty for owncloud
$bytes = round( $bytes / 1024, 1 );
return "$bytes GB";
}
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/**
* @brief Recusive editing of file permissions
* @param $path path to file or folder
* @param $filemode unix style file permissions as integer
*
* Makes 2048 to 2 kB.
*/
function chmodr($path, $filemode) {
if (!is_dir($path))
return chmod($path, $filemode);
$dh = opendir($path);
while (($file = readdir($dh)) !== false) {
if($file != '.' && $file != '..') {
$fullpath = $path.'/'.$file;
if(is_link($fullpath))
return FALSE;
elseif(!is_dir($fullpath) && !chmod($fullpath, $filemode))
return FALSE;
elseif(!chmodr($fullpath, $filemode))
return FALSE;
}
}
closedir($dh);
if(chmod($path, $filemode))
return TRUE;
else
return FALSE;
}