2005-02-03 17:42:20 +01:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
|
|
|
* eGroupWare - resources - Resource Management System *
|
|
|
|
* http://www.egroupware.org *
|
2005-03-02 09:50:39 +01:00
|
|
|
* Written by Lukas Weiss <wnz_gh05t@users.sourceforge.net> and *
|
|
|
|
* Cornelius Weiss <egw@von-und-zu-weiss.de> *
|
2005-02-03 17:42:20 +01:00
|
|
|
* ----------------------------------------------- *
|
|
|
|
* This program 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 2 of the License, or (at your *
|
|
|
|
* option) any later version. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
2005-02-16 23:49:15 +01:00
|
|
|
/* $Id$ */
|
|
|
|
|
2005-02-03 17:42:20 +01:00
|
|
|
class bo_resources
|
|
|
|
{
|
2005-02-15 17:26:21 +01:00
|
|
|
var $vfs_basedir = '/resources/';
|
|
|
|
var $pictures_dir = '/resources/pictures/';
|
|
|
|
var $thumbs_dir = '/resources/pictures/thumbs/';
|
2005-02-17 09:04:55 +01:00
|
|
|
var $resource_icons = '/resources/templates/default/images/resource_icons/';
|
2005-02-03 17:42:20 +01:00
|
|
|
|
|
|
|
function bo_resources()
|
|
|
|
{
|
2005-06-10 22:40:57 +02:00
|
|
|
$this->so =& CreateObject('resources.so_resources');
|
|
|
|
$this->acl =& CreateObject('resources.bo_acl');
|
2005-02-16 11:26:22 +01:00
|
|
|
$this->cats = $this->acl->egw_cats;
|
2005-06-10 22:40:57 +02:00
|
|
|
$this->vfs =& CreateObject('phpgwapi.vfs');
|
|
|
|
$this->link =& CreateObject('infolog.bolink');
|
|
|
|
$this->conf =& CreateObject('phpgwapi.config');
|
2005-03-01 11:58:04 +01:00
|
|
|
$this->conf->read_repository();
|
|
|
|
|
2005-02-03 17:42:20 +01:00
|
|
|
}
|
|
|
|
|
2005-06-10 22:40:57 +02:00
|
|
|
/**
|
|
|
|
* get rows for resources list
|
|
|
|
*
|
2005-06-11 16:11:57 +02:00
|
|
|
* Cornelius Weiß <egw@von-und-zu-weiss.de>
|
2005-06-10 22:40:57 +02:00
|
|
|
*/
|
2005-02-03 17:42:20 +01:00
|
|
|
function get_rows($query,&$rows,&$readonlys)
|
|
|
|
{
|
|
|
|
$query['search'] = $query['search'] ? $query['search'] : '*';
|
2005-06-11 16:11:57 +02:00
|
|
|
$criteria = array('name' => $query['search'], 'short_description' => $query['search']);
|
2005-06-11 14:59:11 +02:00
|
|
|
$read_onlys = 'id,name,short_description,quantity,useable,bookable,buyable,cat_id,location';
|
2005-02-03 17:42:20 +01:00
|
|
|
|
2005-06-11 16:11:57 +02:00
|
|
|
$accessory_of = $query['view_accs_of'] ? $query['view_accs_of'] : -1;
|
|
|
|
$filter = array('accessory_of' => $accessory_of);
|
|
|
|
$readcats = array_flip((array)$this->acl->get_cats(EGW_ACL_READ));
|
|
|
|
if($readcats) $filter = $filter + array('cat_id' => $readcats);
|
2005-06-11 18:14:11 +02:00
|
|
|
if($query['show_bookable']) $filter = $filter + array('bookable' => true);
|
2005-02-03 17:42:20 +01:00
|
|
|
$order_by = $query['order'] ? $query['order'].' '. $query['sort'] : '';
|
2005-06-11 14:59:11 +02:00
|
|
|
$start = (int)$query['start'];
|
2005-02-03 17:42:20 +01:00
|
|
|
|
2005-06-11 16:11:57 +02:00
|
|
|
$rows = $this->so->search($criteria,$read_onlys,$order_by,'','',$empty=False,$op='OR',$start,$filter,$join='',$need_full_no_count=false);
|
2005-06-11 14:59:11 +02:00
|
|
|
$nr = $this->so->total;
|
2005-02-28 16:19:31 +01:00
|
|
|
|
2005-06-11 17:19:47 +02:00
|
|
|
// We don't need the readonly checkes if we only show bookable resources
|
|
|
|
if($query['show_bookable']) return $nr;
|
|
|
|
|
2005-06-11 16:11:57 +02:00
|
|
|
foreach((array)$rows as $num => $resource)
|
2005-02-03 17:42:20 +01:00
|
|
|
{
|
2005-06-10 22:40:57 +02:00
|
|
|
if (!$this->acl->is_permitted($resource['cat_id'],EGW_ACL_EDIT))
|
2005-02-03 17:42:20 +01:00
|
|
|
{
|
|
|
|
$readonlys["edit[$resource[id]]"] = true;
|
|
|
|
}
|
2005-06-10 22:40:57 +02:00
|
|
|
if (!$this->acl->is_permitted($resource['cat_id'],EGW_ACL_DELETE))
|
2005-02-03 17:42:20 +01:00
|
|
|
{
|
|
|
|
$readonlys["delete[$resource[id]]"] = true;
|
|
|
|
}
|
2005-06-10 22:40:57 +02:00
|
|
|
if ((!$this->acl->is_permitted($resource['cat_id'],EGW_ACL_ADD)) || $accessory_of != -1)
|
2005-02-28 16:19:31 +01:00
|
|
|
{
|
|
|
|
$readonlys["new_acc[$resource[id]]"] = true;
|
|
|
|
}
|
2005-02-03 17:42:20 +01:00
|
|
|
if (!$resource['bookable'] /* && calender-acl viewable */)
|
|
|
|
{
|
|
|
|
$readonlys["bookable[$resource[id]]"] = true;
|
|
|
|
}
|
2005-02-17 15:42:34 +01:00
|
|
|
if (!$resource['buyable'])
|
|
|
|
{
|
|
|
|
$readonlys["buyable[$resource[id]]"] = true;
|
|
|
|
}
|
2005-02-25 14:18:40 +01:00
|
|
|
$readonlys["view_acc[$resource[id]]"] = true;
|
|
|
|
$links = $this->link->get_links('resources',$resource['id']);
|
|
|
|
if(count($links) != 0)
|
|
|
|
{
|
|
|
|
foreach ($links as $link_num => $link)
|
|
|
|
{
|
|
|
|
if($link['app'] == 'resources')
|
|
|
|
{
|
|
|
|
if($this->so->get_value('accessory_of',$link['id']) != -1)
|
|
|
|
{
|
|
|
|
$readonlys["view_acc[$resource[id]]"] = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-02-17 12:17:19 +01:00
|
|
|
$rows[$num]['picture_thumb'] = $this->get_picture($resource['id']);
|
2005-02-20 19:01:52 +01:00
|
|
|
$rows[$num]['admin'] = $this->acl->get_cat_admin($resource['cat_id']);
|
2005-02-03 17:42:20 +01:00
|
|
|
}
|
|
|
|
return $nr;
|
|
|
|
}
|
|
|
|
|
2005-06-10 22:40:57 +02:00
|
|
|
/**
|
|
|
|
* reads a resource exept binary datas
|
|
|
|
*
|
2005-06-11 16:11:57 +02:00
|
|
|
* Cornelius Weiß <egw@von-und-zu-weiss.de>
|
2005-06-10 22:40:57 +02:00
|
|
|
* @param int $id resource id
|
|
|
|
* @return array with key => value or false if not found or allowed
|
|
|
|
*/
|
2005-02-03 17:42:20 +01:00
|
|
|
function read($id)
|
|
|
|
{
|
2005-06-10 22:40:57 +02:00
|
|
|
if(!$this->acl->is_permitted($this->so->get_value('cat_id',$id),EGW_ACL_READ))
|
2005-02-03 17:42:20 +01:00
|
|
|
{
|
|
|
|
echo lang('You are not permitted to get information about this resource!') . '<br>';
|
|
|
|
echo lang('Notify your administrator to correct this situation') . '<br>';
|
|
|
|
return false;
|
|
|
|
}
|
2005-02-17 10:53:46 +01:00
|
|
|
return $this->so->read($id);
|
2005-02-03 17:42:20 +01:00
|
|
|
}
|
|
|
|
|
2005-06-10 22:40:57 +02:00
|
|
|
/**
|
|
|
|
* saves a resource. pictures are saved in vfs
|
|
|
|
*
|
2005-06-11 16:11:57 +02:00
|
|
|
* Cornelius Weiß <egw@von-und-zu-weiss.de>
|
2005-06-10 22:40:57 +02:00
|
|
|
* @param array $resource array with key => value of all needed datas
|
|
|
|
* @return string msg if somthing went wrong; nothing if all right
|
|
|
|
*/
|
2005-02-12 09:25:26 +01:00
|
|
|
function save($resource)
|
2005-02-03 17:42:20 +01:00
|
|
|
{
|
2005-06-10 22:40:57 +02:00
|
|
|
if(!$this->acl->is_permitted($resource['cat_id'],EGW_ACL_EDIT))
|
2005-02-12 16:49:38 +01:00
|
|
|
{
|
|
|
|
return lang('You are not permitted to edit this reource!');
|
|
|
|
}
|
|
|
|
|
2005-02-24 19:24:26 +01:00
|
|
|
// we need an id to save pictures and make links...
|
2005-02-15 17:26:21 +01:00
|
|
|
if(!$resource['id'])
|
|
|
|
{
|
|
|
|
$resource['id'] = $this->so->save($resource);
|
|
|
|
}
|
|
|
|
|
2005-02-17 10:53:46 +01:00
|
|
|
switch ($resource['picture_src'])
|
2005-02-12 09:25:26 +01:00
|
|
|
{
|
2005-02-17 10:53:46 +01:00
|
|
|
case 'own_src':
|
|
|
|
$vfs_data = array('string' => $this->pictures_dir.$resource['id'].'.jpg','relatives' => array(RELATIVE_ROOT));
|
|
|
|
if($resource['own_file']['size'] > 0)
|
|
|
|
{
|
|
|
|
$msg = $this->save_picture($resource['own_file'],$resource['id']);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
elseif($this->vfs->file_exists($vfs_data))
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$resource['picture_src'] = 'cat_src';
|
|
|
|
case 'cat_src':
|
|
|
|
break;
|
|
|
|
case 'gen_src':
|
2005-02-17 12:17:19 +01:00
|
|
|
$resource['picture_src'] = $resource['gen_src_list'];
|
2005-02-17 10:53:46 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if($resource['own_file']['size'] > 0)
|
|
|
|
{
|
|
|
|
$resource['picture_src'] = 'own_src';
|
|
|
|
$msg = $this->save_picture($resource['own_file'],$resource['id']);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$resource['picture_src'] = 'cat_src';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// somthing went wrong on saving own picture
|
|
|
|
if($msg)
|
|
|
|
{
|
|
|
|
return $msg;
|
2005-02-12 09:25:26 +01:00
|
|
|
}
|
|
|
|
|
2005-02-17 10:53:46 +01:00
|
|
|
// delete old pictures
|
|
|
|
if($resource['picture_src'] != 'own_src')
|
2005-02-12 09:25:26 +01:00
|
|
|
{
|
2005-02-17 10:53:46 +01:00
|
|
|
$this->remove_picture($resource['id']);
|
2005-02-12 09:25:26 +01:00
|
|
|
}
|
2005-02-24 19:24:26 +01:00
|
|
|
|
|
|
|
// save links
|
|
|
|
if(is_array($resource['link_to']['to_id']))
|
|
|
|
{
|
|
|
|
$this->link->link('resources',$resource['id'],$resource['link_to']['to_id']);
|
|
|
|
}
|
2005-02-28 16:19:31 +01:00
|
|
|
if($resource['accessory_of'] != -1)
|
|
|
|
{ echo $resource['id'].', '.$resource['accessory_of'];
|
|
|
|
$this->link->link('resources',$resource['id'],'resources',$resource['accessory_of']);
|
|
|
|
}
|
2005-02-12 16:49:38 +01:00
|
|
|
|
|
|
|
return $this->so->save($resource) ? false : lang('Something went wrong by saving resource');
|
2005-02-03 17:42:20 +01:00
|
|
|
}
|
|
|
|
|
2005-06-10 22:40:57 +02:00
|
|
|
/**
|
|
|
|
* deletes resource including pictures and links
|
|
|
|
*
|
|
|
|
* @author Lukas Weiss <wnz_gh05t@users.sourceforge.net>
|
|
|
|
* @param int $id id of resource
|
|
|
|
*/
|
2005-02-03 17:42:20 +01:00
|
|
|
function delete($id)
|
|
|
|
{
|
2005-02-28 16:52:35 +01:00
|
|
|
$this->remove_picture($id);
|
|
|
|
$this->link->unlink(0,'resources',$id);
|
2005-03-01 11:20:03 +01:00
|
|
|
return $this->so->delete(array('id'=>$id)) ? false : lang('Something went wrong by deleting resource');
|
2005-02-03 17:42:20 +01:00
|
|
|
}
|
2005-02-24 14:10:57 +01:00
|
|
|
|
2005-06-10 22:40:57 +02:00
|
|
|
/**
|
|
|
|
* gets list of accessories for resource
|
|
|
|
*
|
2005-06-11 16:11:57 +02:00
|
|
|
* Cornelius Weiß <egw@von-und-zu-weiss.de>
|
2005-06-10 22:40:57 +02:00
|
|
|
* @param int $id id of resource
|
|
|
|
* @return array
|
|
|
|
*/
|
2005-02-24 14:10:57 +01:00
|
|
|
function get_acc_list($id)
|
|
|
|
{
|
|
|
|
if($id < 1){return;}
|
2005-06-11 14:59:11 +02:00
|
|
|
$data = $this->so->search('','id,name','','','','','',$start,array('accessory_of' => $id),'',$need_full_no_count=true);
|
2005-02-24 14:10:57 +01:00
|
|
|
foreach($data as $num => $resource)
|
|
|
|
{
|
2005-03-01 11:20:03 +01:00
|
|
|
$acc_list[$resource['id']] = $resource['name'];
|
2005-02-24 14:10:57 +01:00
|
|
|
}
|
|
|
|
return $acc_list;
|
|
|
|
}
|
2005-06-11 14:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* returns info about resource for calender
|
2005-06-11 16:11:57 +02:00
|
|
|
* @author Cornelius Weiß <egw@von-und-zu-weiss.de>
|
2005-06-11 14:59:11 +02:00
|
|
|
* @param int/array $res_id single id or array $num => $res_id
|
|
|
|
* @return array
|
|
|
|
*/
|
2005-06-12 10:01:19 +02:00
|
|
|
function get_calendar_info($res_id)
|
2005-06-11 14:59:11 +02:00
|
|
|
{
|
2005-06-12 10:16:12 +02:00
|
|
|
//echo "<p>bo_resources::get_calendar_info(".print_r($res_id,true)."</p>\n";
|
|
|
|
return !is_array($res_id) && $res_id < 1 ? false : $this->so->search(array('id' => $res_id),'id,name,useable');
|
|
|
|
|
|
|
|
foreach($data as $num => $resource)
|
|
|
|
{
|
|
|
|
$resource['rights'] =
|
|
|
|
}
|
2005-06-11 14:59:11 +02:00
|
|
|
}
|
|
|
|
|
2005-06-10 22:40:57 +02:00
|
|
|
/**
|
2005-06-11 16:11:57 +02:00
|
|
|
* @author Cornelius Weiß <egw@von-und-zu-weiss.de>
|
2005-06-10 22:40:57 +02:00
|
|
|
* query infolog for entries matching $pattern
|
|
|
|
*
|
|
|
|
*/
|
2005-02-25 12:15:27 +01:00
|
|
|
function link_query( $pattern )
|
|
|
|
{
|
2005-06-11 14:59:11 +02:00
|
|
|
$criteria = array('name' => $pattern, 'short_description' => $pattern);
|
|
|
|
$only_keys = 'id,name,short_description';
|
|
|
|
$data = $this->so->search($criteria,$only_keys,$order_by='',$extra_cols='',$wildcard='%',$empty,$op='OR');
|
2005-02-25 12:15:27 +01:00
|
|
|
foreach($data as $num => $resource)
|
|
|
|
{
|
|
|
|
if($num != 0)
|
2005-02-25 09:55:37 +01:00
|
|
|
{
|
2005-02-25 12:15:27 +01:00
|
|
|
$list[$resource['id']] = $resource['name']. ($resource['short_description'] ? ', ['.$resource['short_description'].']':'');
|
2005-02-25 09:55:37 +01:00
|
|
|
}
|
|
|
|
}
|
2005-02-25 12:15:27 +01:00
|
|
|
return $list;
|
|
|
|
}
|
|
|
|
|
2005-06-10 22:40:57 +02:00
|
|
|
/**
|
2005-06-11 16:11:57 +02:00
|
|
|
* @author Cornelius Weiß <egw@von-und-zu-weiss.de>
|
2005-06-10 22:40:57 +02:00
|
|
|
* get title for an infolog entry identified by $id
|
|
|
|
*
|
|
|
|
*/
|
2005-02-25 12:15:27 +01:00
|
|
|
function link_title( $resource )
|
|
|
|
{
|
2005-03-01 09:51:16 +01:00
|
|
|
if (!is_array($resource) && $resource > 0)
|
2005-02-25 12:15:27 +01:00
|
|
|
{
|
|
|
|
$resource = $this->so->read($resource);
|
|
|
|
$title = $resource['name']. ($resource['short_description'] ? ', ['.$resource['short_description'].']':'');
|
|
|
|
}
|
|
|
|
return $title ? $title : false;
|
|
|
|
}
|
|
|
|
|
2005-06-10 22:40:57 +02:00
|
|
|
/**
|
|
|
|
* resizes and saves an pictures in vfs
|
|
|
|
*
|
2005-06-11 16:11:57 +02:00
|
|
|
* Cornelius Weiß <egw@von-und-zu-weiss.de>
|
2005-06-10 22:40:57 +02:00
|
|
|
* @param array $file array with key => value
|
|
|
|
* @param int $resource_id
|
|
|
|
* @return mixed string with msg if somthing went wrong; nothing if all right
|
|
|
|
* TODO make thumb an picture sizes choosable by preferences
|
|
|
|
*/
|
2005-02-16 11:26:22 +01:00
|
|
|
function save_picture($file,$resouce_id)
|
|
|
|
{
|
|
|
|
// test upload dir
|
|
|
|
$vfs_data = array('string'=>$this->vfs_basedir,'relatives'=>array(RELATIVE_ROOT));
|
|
|
|
if (!($this->vfs->file_exists($vfs_data)))
|
|
|
|
{
|
|
|
|
$this->vfs->override_acl = 1;
|
|
|
|
$this->vfs->mkdir($vfs_data);
|
|
|
|
$vfs_data['string'] = $this->pictures_dir;
|
|
|
|
$this->vfs->mkdir($vfs_data);
|
|
|
|
$vfs_data['string'] = $this->thumbs_dir;
|
|
|
|
$this->vfs->mkdir($vfs_data);
|
|
|
|
$this->vfs->override_acl = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch($file['type'])
|
|
|
|
{
|
|
|
|
case 'image/gif':
|
|
|
|
$src_img = imagecreatefromgif($file['tmp_name']);
|
|
|
|
break;
|
|
|
|
case 'image/jpeg':
|
|
|
|
case 'image/pjpeg':
|
|
|
|
$src_img = imagecreatefromjpeg($file['tmp_name']);
|
|
|
|
break;
|
|
|
|
case 'image/png':
|
|
|
|
case 'image/x-png':
|
|
|
|
$src_img = imagecreatefrompng($file['tmp_name']);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return lang('Picture type is not supported, sorry!');
|
|
|
|
}
|
|
|
|
|
2005-02-22 20:02:07 +01:00
|
|
|
$src_img_size = getimagesize($file['tmp_name']);
|
|
|
|
$dst_img_size = array( 0 => 320, 1 => 240);
|
|
|
|
$thumb_size = array( 0 => 64, 1 => 48);
|
|
|
|
|
2005-06-10 22:40:57 +02:00
|
|
|
$tmp_dir = $GLOBALS['egw_info']['server']['temp_dir'].'/';
|
2005-02-22 20:02:07 +01:00
|
|
|
if($src_img_size[0] > 64 || $src_img_size[1] > 48)
|
2005-02-16 11:26:22 +01:00
|
|
|
{
|
2005-02-22 20:02:07 +01:00
|
|
|
$f = $thumb_size[0] / $src_img_size[0];
|
|
|
|
$f = $thumb_size[1] / $src_img_size[1] < $f ? $thumb_size[1] / $src_img_size[1] : $f;
|
|
|
|
$dst_img = imagecreatetruecolor($src_img_size[0] * $f, $src_img_size[1] * $f);
|
|
|
|
imagecopyresized($dst_img,$src_img,0,0,0,0,$src_img_size[0] * $f,$src_img_size[1] * $f,$src_img_size[0],$src_img_size[1]);
|
2005-02-16 11:26:22 +01:00
|
|
|
imagejpeg($dst_img,$tmp_dir.$resouce_id.'.thumb.jpg');
|
2005-02-22 20:02:07 +01:00
|
|
|
if($src_img_size[0] > $dst_img_size[0] || $src_img_size[1] > $dst_img_size[1])
|
2005-02-16 11:26:22 +01:00
|
|
|
{
|
2005-02-22 20:02:07 +01:00
|
|
|
$f = $dst_img_size[0] / $src_img_size[0];
|
|
|
|
$f = $dst_img_size[1] / $src_img_size[1] < $f ? $dst_img_size[1] / $src_img_size[1] : $f;
|
|
|
|
$dst_img = imagecreatetruecolor($src_img_size[0] * $f, $src_img_size[1] * $f);
|
|
|
|
imagecopyresized($dst_img,$src_img,0,0,0,0,$src_img_size[0] * $f,$src_img_size[1] * $f,$src_img_size[0],$src_img_size[1]);
|
2005-02-16 11:26:22 +01:00
|
|
|
imagejpeg($dst_img,$tmp_dir.$resouce_id.'.jpg');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
imagejpeg($src_img,$tmp_dir.$resouce_id.'.jpg');
|
|
|
|
}
|
|
|
|
imagedestroy($dst_img);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
imagejpeg($src_img,$tmp_dir.$resouce_id.'.jpg');
|
|
|
|
imagejpeg($src_img,$tmp_dir.$resouce_id.'.thumb.jpg');
|
|
|
|
}
|
|
|
|
imagedestroy($src_img);
|
|
|
|
|
|
|
|
$this->vfs->override_acl = 1;
|
|
|
|
$this->vfs->mv(array(
|
|
|
|
'from' => $tmp_dir.$resouce_id.'.jpg',
|
|
|
|
'to' => $this->pictures_dir.$resouce_id.'.jpg',
|
|
|
|
'relatives' => array(RELATIVE_NONE|VFS_REAL,RELATIVE_ROOT)
|
|
|
|
));
|
|
|
|
$this->vfs->set_attributes(array(
|
|
|
|
'string' => $this->pictures_dir.$resouce_id.'.jpg',
|
|
|
|
'relatives' => array (RELATIVE_ROOT),
|
|
|
|
'attributes' => array (
|
|
|
|
'mime_type' => 'image/jpeg',
|
|
|
|
'comment' => 'picture of resource no.'.$resouce_id,
|
2005-06-10 22:40:57 +02:00
|
|
|
'app' => $GLOBALS['egw_info']['flags']['currentapp']
|
2005-02-16 11:26:22 +01:00
|
|
|
)));
|
|
|
|
$this->vfs->mv(array(
|
|
|
|
'from' => $tmp_dir.$resouce_id.'.thumb.jpg',
|
|
|
|
'to' => $this->thumbs_dir.$resouce_id.'.jpg',
|
|
|
|
'relatives' => array(RELATIVE_NONE|VFS_REAL,RELATIVE_ROOT)
|
|
|
|
));
|
|
|
|
$this->vfs->set_attributes(array(
|
|
|
|
'string' => $this->thumbs_dir.$resouce_id.'.jpg',
|
|
|
|
'relatives' => array (RELATIVE_ROOT),
|
|
|
|
'attributes' => array (
|
|
|
|
'mime_type' => 'image/jpeg',
|
|
|
|
'comment' => 'thumbnail of resource no.'.$resouce_id,
|
2005-06-10 22:40:57 +02:00
|
|
|
'app' => $GLOBALS['egw_info']['flags']['currentapp']
|
2005-02-16 11:26:22 +01:00
|
|
|
)));
|
|
|
|
$this->vfs->override_acl = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-06-10 22:40:57 +02:00
|
|
|
/**
|
|
|
|
* get resource picture either from vfs or from symlink
|
2005-06-11 16:11:57 +02:00
|
|
|
* Cornelius Weiß <egw@von-und-zu-weiss.de>
|
2005-06-10 22:40:57 +02:00
|
|
|
* @param int $id id of resource
|
|
|
|
* @param bool $size false = thumb, true = full pic
|
|
|
|
* @return string url of picture
|
|
|
|
*/
|
2005-02-28 16:19:31 +01:00
|
|
|
function get_picture($id=0,$size=false)
|
2005-02-14 13:03:06 +01:00
|
|
|
{
|
2005-02-17 12:17:19 +01:00
|
|
|
if ($id > 0)
|
|
|
|
{
|
|
|
|
$src = $this->so->get_value('picture_src',$id);
|
|
|
|
}
|
|
|
|
|
2005-02-16 15:50:17 +01:00
|
|
|
switch($src)
|
2005-02-03 17:42:20 +01:00
|
|
|
{
|
2005-02-16 15:50:17 +01:00
|
|
|
case 'own_src':
|
2005-06-10 22:40:57 +02:00
|
|
|
$picture = $this->conf->config_data['dont_use_vfs'] ? $GLOBALS['egw_info']['server']['webserver_url'] : 'vfs:';
|
2005-02-16 15:50:17 +01:00
|
|
|
$picture .= $size ? $this->pictures_dir.$id.'.jpg' : $this->thumbs_dir.$id.'.jpg';
|
|
|
|
break;
|
|
|
|
case 'cat_src':
|
2005-02-17 09:04:55 +01:00
|
|
|
list($picture) = $this->cats->return_single($this->so->get_value('cat_id',$id));
|
|
|
|
$picture = unserialize($picture['data']);
|
2005-02-17 10:53:46 +01:00
|
|
|
if($picture['icon'])
|
|
|
|
{
|
2005-06-10 22:40:57 +02:00
|
|
|
$picture = $GLOBALS['egw_info']['server']['webserver_url'].'/phpgwapi/images/'.$picture['icon'];
|
2005-02-17 10:53:46 +01:00
|
|
|
break;
|
|
|
|
}
|
2005-02-17 09:04:55 +01:00
|
|
|
case 'gen_src':
|
2005-02-16 15:50:17 +01:00
|
|
|
default :
|
2005-06-10 22:40:57 +02:00
|
|
|
$picture = $GLOBALS['egw_info']['server']['webserver_url'].$this->resource_icons;
|
2005-02-17 12:17:19 +01:00
|
|
|
$picture .= strstr($src,'.') ? $src : 'generic.png';
|
2005-02-03 17:42:20 +01:00
|
|
|
}
|
2005-02-16 15:50:17 +01:00
|
|
|
return $picture;
|
2005-02-03 17:42:20 +01:00
|
|
|
}
|
2005-02-17 10:53:46 +01:00
|
|
|
|
2005-06-10 22:40:57 +02:00
|
|
|
/**
|
|
|
|
* remove_picture
|
|
|
|
* removes picture from vfs
|
|
|
|
*
|
2005-06-11 16:11:57 +02:00
|
|
|
* Cornelius Weiß <egw@von-und-zu-weiss.de>
|
2005-06-10 22:40:57 +02:00
|
|
|
* @param int $id id of resource
|
|
|
|
* @return bool succsess or not
|
|
|
|
*/
|
2005-02-17 10:53:46 +01:00
|
|
|
function remove_picture($id)
|
|
|
|
{
|
|
|
|
$vfs_data = array('string' => $this->pictures_dir.$id.'.jpg','relatives' => array(RELATIVE_ROOT));
|
|
|
|
$this->vfs->override_acl = 1;
|
|
|
|
if($this->vfs->file_exists($vfs_data))
|
|
|
|
{
|
|
|
|
$this->vfs->rm($vfs_data);
|
|
|
|
$vfs_data['string'] = $this->thumbs_dir.$id.'.jpg';
|
|
|
|
$this->vfs->rm($vfs_data);
|
|
|
|
}
|
|
|
|
$this->vfs->override_acl = 0;
|
|
|
|
}
|
2005-02-03 17:42:20 +01:00
|
|
|
|
2005-06-10 22:40:57 +02:00
|
|
|
/**
|
|
|
|
* get_genpicturelist
|
|
|
|
* gets all pictures from 'generic picutres dir' in selectbox style for eTemplate
|
|
|
|
*
|
2005-06-11 16:11:57 +02:00
|
|
|
* Cornelius Weiß <egw@von-und-zu-weiss.de>
|
2005-06-10 22:40:57 +02:00
|
|
|
* @return array directory contens in eTemplates selectbox style
|
|
|
|
*/
|
2005-02-17 12:17:19 +01:00
|
|
|
function get_genpicturelist()
|
|
|
|
{
|
|
|
|
$icons['generic.png'] = lang('gernal resource');
|
2005-06-10 22:40:57 +02:00
|
|
|
$dir = dir(EGW_SERVER_ROOT.$this->resource_icons);
|
2005-02-17 12:17:19 +01:00
|
|
|
while($file = $dir->read())
|
|
|
|
{
|
|
|
|
if (preg_match('/\\.(png|gif|jpe?g)$/i',$file) && $file != 'generic.png')
|
|
|
|
{
|
|
|
|
$icons[$file] = substr($file,0,strpos($file,'.'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$dir->close();
|
|
|
|
return $icons;
|
|
|
|
}
|
|
|
|
}
|