ldapsaisie/src/includes/class/class.LSioFormatDriver.php

174 lines
4.7 KiB
PHP
Raw Normal View History

2015-07-30 16:37:42 +02:00
<?php
/*******************************************************************************
* Copyright (C) 2007 Easter-eggs
* https://ldapsaisie.org
2015-07-30 16:37:42 +02:00
*
* Author: See AUTHORS file in top-level directory.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* 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.
******************************************************************************/
LSsession :: loadLSclass('LSlog_staticLoggerClass');
2015-07-30 16:37:42 +02:00
/**
* Driver to manage ioFormat file of LSldapObject import/export
*
* @author Benjamin Renard <brenard@easter-eggs.com>
*/
class LSioFormatDriver extends LSlog_staticLoggerClass {
2015-07-30 16:37:42 +02:00
protected $options=array();
/**
* Constructor
*
* @param[in] array $options Driver's options
*
* @retval void
**/
public function __construct($options) {
2015-07-30 16:37:42 +02:00
$this -> options = $options;
}
/**
* Load file
*
* @param[in] string $file The file path to load
*
* @retval boolean True if file is loaded, false otherwise
**/
public function loadFile($path) {
2015-07-30 16:37:42 +02:00
return False;
}
/**
* Check if loaded file data are valid
*
* @retval boolean True if loaded file data are valid, false otherwise
**/
public function isValid() {
2015-07-30 16:37:42 +02:00
return False;
}
/**
2021-08-25 18:02:37 +02:00
* Retrieve all object data contained by the loaded file
2015-07-30 16:37:42 +02:00
*
* The objects are returned in array :
*
* array (
* array ( // Object 1
* '[field1]' => '[value1]',
* '[field2]' => '[value2]',
* [...]
* ),
* array ( // Object 2
* '[field1]' => '[value1]',
* '[field2]' => '[value2]',
* [...]
* ),
* )
*
* @retval array The objects contained by the loaded file
**/
public function getAll() {
2015-07-30 16:37:42 +02:00
return array();
}
/**
2021-08-25 18:02:37 +02:00
* Retrieve fields names of the loaded file
2015-07-30 16:37:42 +02:00
*
* The fields names are returned in array :
*
* array (
* '[field1]',
* '[field2]',
* [...]
* )
*
* @retval array The fields names of the loaded file
**/
public function getFieldNames() {
2015-07-30 16:37:42 +02:00
return array();
}
/**
2021-08-25 18:02:37 +02:00
* Retrieve all objects data of the loaded file formated
2015-07-30 16:37:42 +02:00
*
* This method format objects data using ioFormat configuration
* given as parameters.
*
* @param[in] $fields Array of file's fields name mapping with object attribute
* @param[in] $generated_fields Array of object attribute to generate using other object data
*
* @retval array All objects data of the loaded file formated
**/
2020-11-30 19:44:14 +01:00
public function getAllFormated($fields, $generated_fields) {
2015-07-30 16:37:42 +02:00
if (!is_array($fields)) return False;
if (!is_array($generated_fields)) $generated_fields=array();
2020-11-30 19:44:14 +01:00
$all = $this -> getAll();
2015-07-30 16:37:42 +02:00
if (!is_array($all)) return False;
2020-11-30 19:44:14 +01:00
$retall = array();
2015-07-30 16:37:42 +02:00
foreach($all as $one) {
2020-11-30 19:44:14 +01:00
$retone = array();
2015-07-30 16:37:42 +02:00
foreach($fields as $key => $attr) {
if (!isset($one[$key])) continue;
2020-11-30 19:44:14 +01:00
if (!isset($retone[$attr])) $retone[$attr] = array();
$retone[$attr][] = $one[$key];
2015-07-30 16:37:42 +02:00
}
foreach ($generated_fields as $attr => $formats) {
$retone[$attr] = array();
foreach (ensureIsArray($formats) as $format) {
$value = getFData($format, $retone);
if (!is_empty($value)) {
$retone[$attr][] = $value;
}
2015-07-30 16:37:42 +02:00
}
if (empty($retone[$attr]))
unset($retone[$attr]);
2015-07-30 16:37:42 +02:00
}
2020-11-30 19:44:14 +01:00
$retall[] = $retone;
2015-07-30 16:37:42 +02:00
}
return $retall;
}
/**
* Export objects data
*
* @param[in] $objects_data Array of objects data to export
2021-02-05 18:12:44 +01:00
* @param[in] $stream resource|null The output stream (optional, default: STDOUT)
*
2021-08-25 18:02:37 +02:00
* @return boolean True on success, False otherwise
*/
2021-02-05 18:12:44 +01:00
public function exportObjectsData($objects_data, $stream=null) {
// Must be implement in real drivers
return False;
}
/**
* Return a option parameter (or default value)
*
2021-06-10 18:45:00 +02:00
* @param[] $param The configuration parameter
* @param[] $default The default value (default : null)
* @param[] $cast Cast resulting value in specific type (default : disabled)
*
* @retval mixed The option parameter value or default value if not set
**/
public function getOption($param, $default=null, $cast=null) {
return LSconfig :: get($param, $default, $cast, $this -> options);
}
2015-07-30 16:37:42 +02:00
}