308 lines
10 KiB
PHP
308 lines
10 KiB
PHP
|
<?php
|
||
|
/*
|
||
|
$Id$
|
||
|
|
||
|
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
||
|
Copyright (C) 2003 - 2006 Michael Duergner
|
||
|
2011 - 2013 Roland Gruber
|
||
|
|
||
|
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.
|
||
|
|
||
|
This program 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 General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with this program; if not, write to the Free Software
|
||
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Functions to manage the PDF structures.
|
||
|
*
|
||
|
* @author Michael Duergner
|
||
|
* @package PDF
|
||
|
*/
|
||
|
|
||
|
/** LAM configuration */
|
||
|
include_once("config.inc");
|
||
|
|
||
|
/** LDAP object */
|
||
|
include_once("ldap.inc");
|
||
|
|
||
|
/**
|
||
|
* This function will return all available PDF structure definitions for the submitted
|
||
|
* account scope.
|
||
|
*
|
||
|
* @param string $scope The account scope the PDF structure definitions should be
|
||
|
* returned.
|
||
|
* @param string $profile server profile name
|
||
|
*
|
||
|
* @return array $scope All available PDF structure definitions for the submitted account
|
||
|
* scope. Each entry is a string being the filename that may be passed to the
|
||
|
* createModulePDF() function as second argument.
|
||
|
*/
|
||
|
function getPDFStructureDefinitions($scope = "user", $profile = null) {
|
||
|
$return = array();
|
||
|
|
||
|
if (!isset($profile)) {
|
||
|
$profile = $_SESSION['config']->getName();
|
||
|
}
|
||
|
$path = dirname(__FILE__) . '/../config/pdf/' . $profile;
|
||
|
if(is_dir($path)) {
|
||
|
$dirHandle = opendir($path);
|
||
|
while($file = readdir($dirHandle)) {
|
||
|
$struct_file = explode('.',$file);
|
||
|
if(!is_dir($path.$file) && ($file != '.') && ($file != '..') && (sizeof($struct_file) == 3) && ($struct_file[1] == $scope) && ($struct_file[2] == 'xml')) {
|
||
|
array_push($return, $struct_file[0]);
|
||
|
}
|
||
|
}
|
||
|
sort($return);
|
||
|
}
|
||
|
return $return;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* This function is used to get pdf structure from xml file.
|
||
|
* Used in createModulePDF.
|
||
|
*
|
||
|
* @param string $scope The account scope for wich the PDF structure should be returned.
|
||
|
* @param string $pdf_structure Structure name of selected scope wich should be returned.
|
||
|
*
|
||
|
* @return array PDF structure
|
||
|
*/
|
||
|
function loadPDFStructureDefinitions($scope='user',$pdf_structure='default') {
|
||
|
$parser = new xmlParser();
|
||
|
$file = dirname(__FILE__) . '/../config/pdf/' . $_SESSION['config']->getName() . '/' . $pdf_structure . '.' . $scope . '.xml';
|
||
|
$xml = $parser->parse($file);
|
||
|
$border = array();
|
||
|
$structure = array();
|
||
|
$complete_page_definitions = array('filename' => 'printLogo.jpg', 'headline' => 'LDAP Account Manager');
|
||
|
if($xml[0][$xml[1]['PDF'][0]]['attributes']['TYPE'] == $scope) {
|
||
|
$border['start'] = $xml[1]['PDF'][0];
|
||
|
$page_definitions = $xml[0][$xml[1]['PDF'][0]]['attributes'];
|
||
|
foreach($page_definitions as $key => $value) {
|
||
|
$complete_page_definitions[strtolower($key)] = $value;
|
||
|
unset($page_definitions[$key]);
|
||
|
}
|
||
|
$border['end'] = $xml[1]['PDF'][1];
|
||
|
}
|
||
|
$structure = array_slice($xml[0],$border['start'] + 1,$border['end'] - ($border['start'] + 1));
|
||
|
return array('structure' => $structure, 'page_definitions' => $complete_page_definitions);
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Saves PDF structure definitions to XML file in format: <name>.<scope>.xml
|
||
|
*
|
||
|
* @param string $scope account type
|
||
|
* @param string $definition Name of definition
|
||
|
* @return string "no perms" if access denied or "ok".
|
||
|
*/
|
||
|
function savePDFStructureDefinitions($scope,$definition) {
|
||
|
if (!preg_match('/[a-zA-Z0-9\-\_]+/',$definition)) return 'no perms';
|
||
|
if (!preg_match('/[a-zA-Z]+/',$scope)) return 'no perms';
|
||
|
$struct_file = dirname(__FILE__) . '/../config/pdf/' . $_SESSION['config']->getName() . '/' . $definition . '.' . $scope . '.xml';
|
||
|
if(!is_writable(dirname(__FILE__) . '/../config/pdf/' . $_SESSION['config']->getName())) {
|
||
|
return 'no perms';
|
||
|
}
|
||
|
else {
|
||
|
$handle = @fopen($struct_file,'w');
|
||
|
if (!$handle) return 'no perms';
|
||
|
$pdf_attributes = '';
|
||
|
foreach($_SESSION['currentPageDefinitions'] as $key => $value) {
|
||
|
if($key != 'type') {
|
||
|
$pdf_attributes .= ' ' . $key . '="' . $value . '"';
|
||
|
}
|
||
|
}
|
||
|
$file = '<pdf type="' . $scope . "\"" . $pdf_attributes . ">\n";
|
||
|
foreach($_SESSION['currentPDFStructure'] as $entry) {
|
||
|
$ident = '';
|
||
|
for($i=0;$i<$entry['level'] -1;$i++) {
|
||
|
$ident .= "\t";
|
||
|
}
|
||
|
$attributes = '';
|
||
|
if(isset($entry['attributes']) && is_array($entry['attributes'])) {
|
||
|
foreach($entry['attributes'] as $key => $value) {
|
||
|
$attributes .= ' ' . strtolower($key) . '="' . $value . '"';
|
||
|
}
|
||
|
}
|
||
|
if($entry['type'] == 'open') {
|
||
|
$file .= $ident . '<' . strtolower($entry['tag']) . $attributes . ">\n";
|
||
|
}
|
||
|
elseif($entry['type'] == 'close') {
|
||
|
$file .= $ident . '</' . strtolower($entry['tag']) . ">\n";
|
||
|
}
|
||
|
elseif($entry['type'] == 'complete') {
|
||
|
if(isset($entry['value'])) {
|
||
|
$file .= $ident . '<' . strtolower($entry['tag']) . $attributes . '>' . $entry['value'] . '</' . strtolower($entry['tag']) . ">\n";
|
||
|
}
|
||
|
else {
|
||
|
$file .= $ident . '<' . strtolower($entry['tag']) . $attributes . " />\n";
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
$file .= "</pdf>";
|
||
|
fwrite($handle,$file);
|
||
|
fclose($handle);
|
||
|
return 'ok';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Deletes XML file with PDF structure definitions.
|
||
|
*
|
||
|
* @param string $scope account type
|
||
|
* @param string $definition Name of definition to delete
|
||
|
*
|
||
|
* @return boolean True if file was deleted or false if a problem occured.
|
||
|
*/
|
||
|
function deletePDFStructureDefinition($scope, $definition) {
|
||
|
if (!preg_match('/[a-zA-Z0-9\-\_]+/',$definition)) return false;
|
||
|
if (!preg_match('/[a-zA-Z]+/',$scope)) return false;
|
||
|
$file = dirname(__FILE__) . '/../config/pdf/' . $_SESSION['config']->getName() . '/' . $definition . '.' . $scope . '.xml';
|
||
|
if(is_file($file) && is_writable($file)) {
|
||
|
return unlink($file);
|
||
|
}
|
||
|
else {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* This function returns an array with all aviliable logo images.
|
||
|
*
|
||
|
* @return array list of logo files
|
||
|
*/
|
||
|
function getAvailableLogos() {
|
||
|
$return = array();
|
||
|
$dirPath = dirname(__FILE__) . '/../config/pdf/' . $_SESSION['config']->getName() . '/logos/';
|
||
|
$dirHandle = opendir($dirPath);
|
||
|
while($file = readdir($dirHandle)) {
|
||
|
if(!is_dir($file) && $file != '.' && $file != '..' && preg_match('/\\.(jpg|png)$/',$file)) {
|
||
|
$infos = getimagesize($dirPath . $file);
|
||
|
if($infos[0] <= 2000 && $infos[1] <= 300) {
|
||
|
array_push($return, array('filename' => $file, 'infos' => $infos));
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
sort($return);
|
||
|
return $return;
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Copies PDF profiles to other server profiles.
|
||
|
*
|
||
|
* @param array $pdfProfiles PDF profile names
|
||
|
* @param String $scope account scope
|
||
|
* @param array $dests destinations
|
||
|
*
|
||
|
* @return boolean operation succeeded
|
||
|
*/
|
||
|
function copyPdfProfiles($pdfProfiles, $scope, $dests = array()) {
|
||
|
$state = true;
|
||
|
$profilePath = substr(__FILE__, 0, strlen(__FILE__) - 17) . 'config/pdf/';
|
||
|
foreach ($pdfProfiles as $profile) {
|
||
|
//part 1: server profile
|
||
|
//part 2: account profile
|
||
|
$tmpArr = explode('##', $profile);
|
||
|
$src = $profilePath . $tmpArr[0] . '/' . $tmpArr[1] . '.' . $scope . '.xml';
|
||
|
if (!empty($dests)) {
|
||
|
foreach ($dests as $dest) {
|
||
|
if ($dest == 'templates*') {
|
||
|
$dst = substr(__FILE__, 0, strlen(__FILE__) - 17) . 'config/templates/pdf/' . $tmpArr[1] . '.' . $scope . '.xml';
|
||
|
} else {
|
||
|
$dst = $profilePath . $dest . '/' . $tmpArr[1] . '.' . $scope . '.xml';
|
||
|
}
|
||
|
if (!@copy($src, $dst)) {
|
||
|
StatusMessage('ERROR', _('Failed to export!'), $tmpArr[1] . '.' . $scope . '.xml');
|
||
|
$state = false;
|
||
|
}
|
||
|
}
|
||
|
} else {
|
||
|
$dst = $profilePath . $_SESSION['config']->getName() . '/' . $tmpArr[1] . '.' . $scope . '.xml';
|
||
|
if (!@copy($src, $dst)) {
|
||
|
StatusMessage('ERROR', _('Failed to import!'), $tmpArr[1] . '.' . $scope . '.xml');
|
||
|
$state = false;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return $state;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Uploads a PDF logo file for the current server profile.
|
||
|
*
|
||
|
* @param String $file full path of temporary file
|
||
|
* @param String $name file name
|
||
|
* @return StatusMessage status message to display
|
||
|
*/
|
||
|
function uploadPDFLogo($file, $name) {
|
||
|
if (!preg_match('/[a-zA-Z0-9_-]+\\.(png)|(jpg)/', $name)) {
|
||
|
return new htmlStatusMessage('ERROR', _('Unable to upload logo file.'), _('The file name must end with ".png" or ".jpg".'));
|
||
|
}
|
||
|
$infos = getimagesize($file);
|
||
|
if ($infos[0] <= 2000 && $infos[1] <= 300) {
|
||
|
$dirPath = dirname(__FILE__) . '/../config/pdf/' . $_SESSION['config']->getName() . '/logos/';
|
||
|
$success = copy($file, $dirPath . '/' . $name);
|
||
|
if ($success) {
|
||
|
return new htmlStatusMessage('INFO', _('Uploaded logo file.'), $name);
|
||
|
}
|
||
|
else {
|
||
|
return new htmlStatusMessage('ERROR', _('Unable to upload logo file.'), $name);
|
||
|
}
|
||
|
}
|
||
|
return new htmlStatusMessage('ERROR', _('Unable to upload logo file.'), _('The file must not exeed 2000x300px.'));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Deletes a PDF logo file.
|
||
|
*
|
||
|
* @param String $name file name
|
||
|
* @return StatusMessage status message to display
|
||
|
*/
|
||
|
function deletePDFLogo($name) {
|
||
|
// check if valid file
|
||
|
$found = false;
|
||
|
$logos = getAvailableLogos();
|
||
|
foreach ($logos as $logo) {
|
||
|
if ($logo['filename'] === $name) {
|
||
|
$found = true;
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
if (!$found) {
|
||
|
return new htmlStatusMessage('ERROR', _('File does not exist.'), htmlspecialchars($name));
|
||
|
}
|
||
|
// check if still in use
|
||
|
$activeTypes = $_SESSION['config']->get_ActiveTypes();
|
||
|
foreach ($activeTypes as $type) {
|
||
|
$structures = getPDFStructureDefinitions($type);
|
||
|
foreach ($structures as $structure) {
|
||
|
$data = loadPDFStructureDefinitions($type, $structure);
|
||
|
if ($data['page_definitions']['filename'] == $name) {
|
||
|
return new htmlStatusMessage('ERROR', _('Unable to delete logo file.'),
|
||
|
sprintf(_('Logo is still in use by PDF structure "%s" in account type "%s".'), $structure, getTypeAlias($type)));
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
// delete file
|
||
|
$dirPath = dirname(__FILE__) . '/../config/pdf/' . $_SESSION['config']->getName() . '/logos/';
|
||
|
$success = @unlink($dirPath . '/' . $name);
|
||
|
if ($success) {
|
||
|
return new htmlStatusMessage('INFO', _('Logo file deleted.'), $name);
|
||
|
}
|
||
|
else {
|
||
|
return new htmlStatusMessage('ERROR', _('Unable to delete logo file.'), $name);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|