Export.php 6.22 KB
Newer Older
Jonathan.Wage's avatar
Jonathan.Wage committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
<?php
/*
 *  $Id: Export.php 2552 2007-09-19 19:33:00Z Jonathan.Wage $
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * This software consists of voluntary contributions made by many individuals
 * and is licensed under the LGPL. For more information, see
 * <http://www.phpdoctrine.com>.
 */

/**
 * Doctrine_Data_Export
 *
 * @package     Doctrine
26
 * @subpackage  Data
Jonathan.Wage's avatar
Jonathan.Wage committed
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
 * @author      Jonathan H. Wage <jwage@mac.com>
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
 * @link        www.phpdoctrine.com
 * @since       1.0
 * @version     $Revision: 2552 $
 */
class Doctrine_Data_Export extends Doctrine_Data
{
    /**
     * constructor
     *
     * @param string $directory 
     * @return void
     */
    public function __construct($directory)
    {
        $this->setDirectory($directory);
    }
45

Jonathan.Wage's avatar
Jonathan.Wage committed
46 47 48 49 50 51 52 53 54 55 56 57 58 59
    /**
     * doExport
     *
     * @return void
     */
    public function doExport()
    {
        $models = Doctrine::getLoadedModels();
        $specifiedModels = $this->getModels();
        
        $data = array();
        
        $outputAll = true;
        
60 61
		    // for situation when the $models array is empty, but the $specifiedModels array isn't
        if (empty($models)) {
62 63 64
          $models = $specifiedModels;
        }
        
Jonathan.Wage's avatar
Jonathan.Wage committed
65 66
        foreach ($models AS $name) {
            
67
            if ( ! empty($specifiedModels) AND !in_array($name, $specifiedModels)) {
Jonathan.Wage's avatar
Jonathan.Wage committed
68 69 70 71 72 73 74
                continue;
            }
            
            $class = new $name();
            $table = $class->getTable();
            $result = $table->findAll();
            
75
            if ( ! empty($result)) {
Jonathan.Wage's avatar
Jonathan.Wage committed
76 77 78 79 80 81 82 83
                $data[$name] = $result;
            }
        }
        
        $data = $this->prepareData($data);
        
        return $this->dumpData($data);
    }
84

Jonathan.Wage's avatar
Jonathan.Wage committed
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
    /**
     * dumpData
     *
     * Dump the prepared data to the fixtures files
     *
     * @param string $array 
     * @return void
     */
    public function dumpData(array $data)
    {
        $directory = $this->getDirectory();
        $format = $this->getFormat();
        
        if ($this->exportIndividualFiles()) {
            
            if (is_array($directory)) {
                throw new Doctrine_Data_Exception('You must specify a single path to a folder in order to export individual files.');
102
            } else if ( ! is_dir($directory) && is_file($directory)) {
103
                $directory = dirname($directory);
Jonathan.Wage's avatar
Jonathan.Wage committed
104 105 106
            }
            
            foreach ($data as $className => $classData) {
107
                if ( ! empty($classData)) {
108 109
                    Doctrine_Parser::dump(array($className => $classData), $format, $directory.DIRECTORY_SEPARATOR.$className.'.'.$format);
                }
Jonathan.Wage's avatar
Jonathan.Wage committed
110 111 112
            }
        } else {
            if (is_dir($directory)) {
Jonathan.Wage's avatar
Jonathan.Wage committed
113
                $directory .= DIRECTORY_SEPARATOR . 'data.' . $format;
Jonathan.Wage's avatar
Jonathan.Wage committed
114 115
            }
            
116
            if ( ! empty($data)) {
117 118
                return Doctrine_Parser::dump($data, $format, $directory);
            }
Jonathan.Wage's avatar
Jonathan.Wage committed
119 120
        }
    }
121

Jonathan.Wage's avatar
Jonathan.Wage committed
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
    /**
     * prepareData
     *
     * Prepare the raw data to be exported with the parser
     *
     * @param string $data 
     * @return array
     */
    public function prepareData($data)
    {
        $preparedData = array();
        
        foreach ($data AS $className => $classData) {
            
            foreach ($classData as $record) {
                $className = get_class($record);
                $recordKey = $className . '_' . implode('_', $record->identifier());
                
                $recordData = $record->toArray();
                
                foreach ($recordData as $key => $value) {
143
                    if ( ! $value) {
Jonathan.Wage's avatar
Jonathan.Wage committed
144 145 146
                        continue;
                    }
                    
Jonathan.Wage's avatar
Jonathan.Wage committed
147 148 149
                    // skip single primary keys, we need to maintain composite primary keys
                    $keys = $record->getTable()->getIdentifier();
                    
150
                    if ( ! is_array($keys)) {
Jonathan.Wage's avatar
Jonathan.Wage committed
151 152 153 154 155 156 157
                      $keys = array($keys);
                    }
                    
                    if (count($keys) <= 1 && in_array($key, $keys)) {
                        continue;
                    }
                    
Jonathan.Wage's avatar
Jonathan.Wage committed
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
                    if ($relation = $this->isRelation($record, $key)) {
                        $relationAlias = $relation['alias'];
                        $relationRecord = $record->$relationAlias;
                        
                        // If collection then get first so we have an instance of the related record
                        if ($relationRecord instanceof Doctrine_Collection) {
                            $relationRecord = $relationRecord->getFirst();
                        }
                        
                        // If relation is null or does not exist then continue
                        if ($relationRecord instanceof Doctrine_Null || !$relationRecord) {
                            continue;
                        }
                        
                        // Get class name for relation
                        $relationClassName = get_class($relationRecord);
                        
                        $relationValue = $relationClassName . '_' . $value;
                        
177
                        $preparedData[$className][$recordKey][$relationAlias] = $relationValue;
Jonathan.Wage's avatar
Jonathan.Wage committed
178
                    } else {                        
Jonathan.Wage's avatar
Jonathan.Wage committed
179 180 181 182 183 184 185 186 187
                        $preparedData[$className][$recordKey][$key] = $value;
                    }
                }
            }
        }
        
        return $preparedData;
    }
}