<?php namespace CodeIgniter; /** * CodeIgniter * * An open source application development framework for PHP * * This content is released under the MIT License (MIT) * * Copyright (c) 2014-2018 British Columbia Institute of Technology * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * * @package CodeIgniter * @author CodeIgniter Dev Team * @copyright 2014-2018 British Columbia Institute of Technology (https://bcit.ca/) * @license https://opensource.org/licenses/MIT MIT License * @link https://codeigniter.com * @since Version 3.0.0 * @filesource */ /** * ComposerScripts * * These scripts are used by Composer during installs and updates * to move files to locations within the system folder so that end-users * do not need to use Composer to install a package, but can simply * download * * @codeCoverageIgnore * @package CodeIgniter */ class ComposerScripts { protected static $basePath = 'ThirdParty/'; /** * After composer install/update, this is called to move * the bare-minimum required files for our dependencies * to appropriate locations. */ public static function postUpdate() { static::moveEscaper(); static::moveKint(); } //-------------------------------------------------------------------- /** * Move a file. * * @param string $source * @param string $destination * * @return boolean */ protected static function moveFile(string $source, string $destination) { $source = realpath($source); if (empty($source)) { die('Cannot move file. Source path invalid.'); } if (! is_file($source)) { return false; } return copy($source, $destination); } //-------------------------------------------------------------------- /** * Determine file path of a class. * * @param string $class * * @return string */ protected static function getClassFilePath(string $class) { $reflector = new \ReflectionClass($class); return $reflector->getFileName(); } //-------------------------------------------------------------------- /** * A recursive remove directory method. * * @param $dir */ protected static function removeDir($dir) { if (is_dir($dir)) { $objects = scandir($dir); foreach ($objects as $object) { if ($object !== '.' && $object !== '..') { if (filetype($dir . '/' . $object) === 'dir') { static::removeDir($dir . '/' . $object); } else { unlink($dir . '/' . $object); } } } reset($objects); rmdir($dir); } } /** * Moves the Zend Escaper files into our base repo so that it's * available for packaged releases where the users don't user Composer. */ public static function moveEscaper() { if (class_exists('\\Zend\\Escaper\\Escaper') && is_file(static::getClassFilePath('\\Zend\\Escaper\\Escaper'))) { $base = basename(__DIR__) . '/' . static::$basePath . 'ZendEscaper'; foreach ([$base, $base . '/Exception'] as $path) { if (! is_dir($path)) { mkdir($path, 0755); } } $files = [ static::getClassFilePath('\\Zend\\Escaper\\Exception\\ExceptionInterface') => $base . '/Exception/ExceptionInterface.php', static::getClassFilePath('\\Zend\\Escaper\\Exception\\InvalidArgumentException') => $base . '/Exception/InvalidArgumentException.php', static::getClassFilePath('\\Zend\\Escaper\\Exception\\RuntimeException') => $base . '/Exception/RuntimeException.php', static::getClassFilePath('\\Zend\\Escaper\\Escaper') => $base . '/Escaper.php', ]; foreach ($files as $source => $dest) { if (! static::moveFile($source, $dest)) { die('Error moving: ' . $source); } } } } //-------------------------------------------------------------------- /** * Moves the Kint file into our base repo so that it's * available for packaged releases where the users don't user Composer. */ public static function moveKint() { $filename = 'vendor/kint-php/kint/build/kint-aante-light.php'; if (is_file($filename)) { $base = basename(__DIR__) . '/' . static::$basePath . 'Kint'; // Remove the contents of the previous Kint folder, if any. if (is_dir($base)) { static::removeDir($base); } // Create Kint if it doesn't exist already if (! is_dir($base)) { mkdir($base, 0755); } if (! static::moveFile($filename, $base . '/kint.php')) { die('Error moving: ' . $filename); } } } }