home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 April
/
CMCD0404.ISO
/
Software
/
Freeware
/
Programare
/
groupoffice-com-2.01
/
modules
/
email
/
attach_inline.php
< prev
next >
Wrap
PHP Script
|
2004-03-08
|
3KB
|
96 lines
<?php
/*
Copyright Intermesh 2003
Author: Merijn Schering <mschering@intermesh.nl>
Version: 1.0 Release date: 08 July 2003
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.
*/
require("../../Group-Office.php");
$GO_SECURITY->authenticate();
$GO_MODULES->authenticate('filesystem');
require($GO_LANGUAGE->get_language_file('email'));
//load file management class
//load file management class
require($GO_CONFIG->class_path."filesystem.class.inc");
require($GO_CONFIG->class_path.'email.class.inc');
require($GO_CONFIG->class_path.'filetypes.class.inc');
$email = new email();
$fs = new filesystem();
$filetypes = new filetypes();
$path = stripslashes($_REQUEST['path']);
if (!$fs->has_read_permission($GO_SECURITY->user_id, $path))
{
header('Location: '.$GO_CONFIG->host.'error_docs/401.php');
exit();
}
$attachments_size = 0;
if (isset($_SESSION['attach_array']))
{
for($i=1;$i<=sizeof($_SESSION['attach_array']);$i++)
{
$attachments_size += $_SESSION['attach_array'][$i]->file_size;
}
}
$filesize = filesize($path);
$attachments_size += $filesize;
if ($attachments_size < $GO_CONFIG->max_attachment_size)
{
$GO_URL = $GO_MODULES->url.'download.php?path='.urlencode($path);
$filename = basename($path);
$content_id = md5(uniqid(time())).'@groupoffice';
$extension = get_extension($filename);
if (!$type = $filetypes->get_type($extension))
{
$type = $filetypes->add_type($extension);
}
$tmp_file = $GO_CONFIG->tmpdir.md5(uniqid(time()));
if (copy($path, $tmp_file))
{
$email->register_attachment($path, $filename, $filesize, $type['mime'], 'inline', $content_id);
$url_replacement['id'] = $content_id;
$url_replacement['url'] = $GO_URL;
$_SESSION['url_replacements'][] = $url_replacement;
}else
{
die($strDataError);
}
?>
<html>
<body>
<script type="text/javascript">
opener.editor_insertHTML('<img src="<?php echo stripslashes($GO_URL); ?>" border="0" align="absmiddle" />');
window.close();
</script>
</body>
</html>
<?php
}else
{
?>
<html>
<body>
<script type="text/javascript">
alert("<?php echo $ml_file_too_big.format_size($GO_CONFIG->max_attachment_size)." (".number_format($GO_CONFIG->max_attachment_size, 0, $_SESSION['GO_SESSION']['decimal_seperator'], $_SESSION['GO_SESSION']['thousands_seperator'])." bytes)."; ?>");
window.close();
</script>
</body>
</html>
<?php
}
?>