name : bfRestore.php
<?php
/*
 * @package   bfNetwork
 * @copyright Copyright (C) 2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022 Blue Flame Digital Solutions Ltd. All rights reserved.
 * @license   GNU General Public License version 3 or later
 *
 * @see       https://mySites.guru/
 * @see       https://www.phil-taylor.com/
 *
 * @author    Phil Taylor / Blue Flame Digital Solutions Limited.
 *
 * bfNetwork 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 3 of the License, or
 * (at your option) any later version.
 *
 * bfNetwork 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 package.  If not, see http://www.gnu.org/licenses/
 *
 * If you have any questions regarding this code, please contact [email protected]
 */

/*
 * Akeeba Restore
 * A JSON-powered JPA, JPS and ZIP archive extraction library.
 *
 * @copyright   2010-2014 Nicholas K. Dionysopoulos / Akeeba Ltd.
 * @license     GNU GPL v2 or - at your option - any later version
 */
define('_AKEEBA_RESTORATION', 1);
defined('DS') or define('DS', DIRECTORY_SEPARATOR);

// Unarchiver run states
define('AK_STATE_NOFILE', 0); // File header not read yet
define('AK_STATE_HEADER', 1); // File header read; ready to process data
define('AK_STATE_DATA', 2); // Processing file data
define('AK_STATE_DATAREAD', 3); // Finished processing file data; ready to post-process
define('AK_STATE_POSTPROC', 4); // Post-processing
define('AK_STATE_DONE', 5); // Done with post-processing

/* Windows system detection */
if (! defined('_AKEEBA_IS_WINDOWS')) {
    if (function_exists('php_uname')) {
        define('_AKEEBA_IS_WINDOWS', stristr(php_uname(), 'windows'));
    } else {
        define('_AKEEBA_IS_WINDOWS', DIRECTORY_SEPARATOR == '\\');
    }
}

// Get the file's root
if (! defined('KSROOTDIR')) {
    define('KSROOTDIR', dirname(__FILE__));
}
if (! defined('KSLANGDIR')) {
    define('KSLANGDIR', KSROOTDIR);
}

// Make sure the locale is correct for basename() to work
if (function_exists('setlocale')) {
    @setlocale(LC_ALL, 'en_US.UTF8');
}

// fnmatch not available on non-POSIX systems
// Thanks to [email protected] for this usefull alternative function [http://gr2.php.net/fnmatch]
if (! function_exists('fnmatch')) {
    function fnmatch($pattern, $string)
    {
        return @preg_match('/^' . strtr(addcslashes($pattern, '/\\.+^$(){}=!<>|'), array(
            '*' => '.*',
            '?' => '.?',
        )) . '$/i', $string);
    }
}

// Unicode-safe binary data length function
if (! function_exists('akstringlen')) {
    if (function_exists('mb_strlen')) {
        function akstringlen($string)
        {
            return mb_strlen($string, '8bit');
        }
    } else {
        function akstringlen($string)
        {
            return strlen($string);
        }
    }
}

/**
 * Gets a query parameter from GET or POST data.
 */
function getQueryParam($key, $default = null)
{
    $value = $default;

    if (array_key_exists($key, $_REQUEST)) {
        $value = $_REQUEST[$key];
    }

    if (function_exists('get_magic_quotes_gpc')) {
        if (get_magic_quotes_gpc() && ! is_null($value)) {
            $value = stripslashes($value);
        }
    }

    return $value;
}

// Debugging function
function debugMsg($msg)
{
    if (! defined('KSDEBUG')) {
        return;
    }

    $fp = fopen('debug.txt', 'at');

    fwrite($fp, $msg . "\n");
    fclose($fp);
}

/*
 * Akeeba Restore
 * A JSON-powered JPA, JPS and ZIP archive extraction library
 *
 * @copyright   2010-2014 Nicholas K. Dionysopoulos / Akeeba Ltd.
 * @license     GNU GPL v2 or - at your option - any later version
 * @package     akeebabackup
 * @subpackage  kickstart
 */

/*
 * Akeeba Backup's JSON compatibility layer
 *
 * On systems where json_encode and json_decode are not available, Akeeba
 * Backup will attempt to use PEAR's Services_JSON library to emulate them.
 * A copy of this library is included in this file and will be used if and
 * only if it isn't already loaded, e.g. due to PEAR's auto-loading, or a
 * 3PD extension loading it for its own purposes.
 */

/*
 * Converts to and from JSON format.
 *
 * JSON (JavaScript Object Notation) is a lightweight data-interchange
 * format. It is easy for humans to read and write. It is easy for machines
 * to parse and generate. It is based on a subset of the JavaScript
 * Programming Language, Standard ECMA-262 3rd Edition - December 1999.
 * This feature can also be found in  Python. JSON is a text format that is
 * completely language independent but uses conventions that are familiar
 * to programmers of the C-family of languages, including C, C++, C#, Java,
 * JavaScript, Perl, TCL, and many others. These properties make JSON an
 * ideal data-interchange language.
 *
 * This package provides a simple encoder and decoder for JSON notation. It
 * is intended for use with client-side Javascript applications that make
 * use of HTTPRequest to perform server communication functions - data can
 * be encoded into JSON notation for use in a client-side javascript, or
 * decoded from incoming Javascript requests. JSON format is native to
 * Javascript, and can be directly eval()'ed with no further parsing
 * overhead
 *
 * All strings should be in ASCII or UTF-8 format!
 *
 * LICENSE: Redistribution and use in source and binary forms, with or
 * without modification, are permitted provided that the following
 * conditions are met: Redistributions of source code must retain the
 * above copyright notice, this list of conditions and the following
 * disclaimer. Redistributions in binary form must reproduce the above
 * copyright notice, this list of conditions and the following disclaimer
 * in the documentation and/or other materials provided with the
 * distribution.
 *
 * THIS SOFTWARE IS PROVIDED ``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 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.
 *
 * @category
 * @package     Services_JSON
 * @author      Michal Migurski <[email protected]>
 * @author      Matt Knapp <mdknapp[at]gmail[dot]com>
 * @author      Brett Stimmerman <brettstimmerman[at]gmail[dot]com>
 * @copyright   2005 Michal Migurski
 * @version     CVS: $Id: restore.php 612 2011-05-19 08:26:26Z nikosdion $
 * @license     http://www.opensource.org/licenses/bsd-license.php
 * @link        http://pear.php.net/pepr/pepr-proposal-show.php?id=198
 */

if (! defined('JSON_FORCE_OBJECT')) {
    define('JSON_FORCE_OBJECT', 1);
}

if (! defined('SERVICES_JSON_SLICE')) {
    /*
     * Marker constant for Services_JSON::decode(), used to flag stack state
     */
    define('SERVICES_JSON_SLICE', 1);

    /*
     * Marker constant for Services_JSON::decode(), used to flag stack state
     */
    define('SERVICES_JSON_IN_STR', 2);

    /*
     * Marker constant for Services_JSON::decode(), used to flag stack state
     */
    define('SERVICES_JSON_IN_ARR', 3);

    /*
     * Marker constant for Services_JSON::decode(), used to flag stack state
     */
    define('SERVICES_JSON_IN_OBJ', 4);

    /*
     * Marker constant for Services_JSON::decode(), used to flag stack state
     */
    define('SERVICES_JSON_IN_CMT', 5);

    /*
     * Behavior switch for Services_JSON::decode()
     */
    define('SERVICES_JSON_LOOSE_TYPE', 16);

    /*
     * Behavior switch for Services_JSON::decode()
     */
    define('SERVICES_JSON_SUPPRESS_ERRORS', 32);
}

/*
 * Converts to and from JSON format.
 *
 * Brief example of use:
 *
 * <code>
 * // create a new instance of Services_JSON
 * $json = new Services_JSON();
 *
 * // convert a complexe value to JSON notation, and send it to the browser
 * $value = array('foo', 'bar', array(1, 2, 'baz'), array(3, array(4)));
 * $output = $json->encode($value);
 *
 * print($output);
 * // prints: ["foo","bar",[1,2,"baz"],[3,[4]]]
 *
 * // accept incoming POST data, assumed to be in JSON notation
 * $input = file_get_contents('php://input', 1000000);
 * $value = $json->decode($input);
 * </code>
 */
if (! class_exists('Akeeba_Services_JSON')) {
    class Akeeba_Services_JSON
    {
        /**
         * constructs a new JSON instance.
         *
         * @param int $use object behavior flags; combine with boolean-OR
         *
         * possible values:
         * - SERVICES_JSON_LOOSE_TYPE:  loose typing.
         * "{...}" syntax creates associative arrays
         * instead of objects in decode().
         * - SERVICES_JSON_SUPPRESS_ERRORS:  error suppression.
         * Values which can't be encoded (e.g. resources)
         * appear as NULL instead of throwing errors.
         * By default, a deeply-nested resource will
         * bubble up with an error, so all return values
         * from encode() should be checked with isError()
         */
        public function __construct($use = 0)
        {
            $this->use = $use;
        }

        /**
         * convert a string from one UTF-16 char to one UTF-8 char.
         *
         * Normally should be handled by mb_convert_encoding, but provides a slower PHP-only method for installations
         * that lack the multibye string extension.
         *
         * @param string $utf16 UTF-16 character
         *
         * @return string UTF-8 character
         */
        public function utf162utf8($utf16)
        {
            // oh please oh please oh please oh please oh please
            if (function_exists('mb_convert_encoding')) {
                return mb_convert_encoding($utf16, 'UTF-8', 'UTF-16');
            }

            $bytes = (ord($utf16[0]) << 8) | ord($utf16[1]);

            switch (true) {
                case (0x7F & $bytes) == $bytes:
                    // this case should never be reached, because we are in ASCII range
                    // see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
                    return chr(0x7F & $bytes);

                case (0x07FF & $bytes) == $bytes:
                    // return a 2-byte UTF-8 character
                    // see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
                    return chr(0xC0 | (($bytes >> 6) & 0x1F))
                    . chr(0x80 | ($bytes & 0x3F));

                case (0xFFFF & $bytes) == $bytes:
                    // return a 3-byte UTF-8 character
                    // see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
                    return chr(0xE0 | (($bytes >> 12) & 0x0F))
                    . chr(0x80 | (($bytes >> 6) & 0x3F))
                    . chr(0x80 | ($bytes & 0x3F));
            }

            // ignoring UTF-32 for now, sorry
            return '';
        }

        /**
         * convert a string from one UTF-8 char to one UTF-16 char.
         *
         * Normally should be handled by mb_convert_encoding, but provides a slower PHP-only method for installations
         * that lack the multibye string extension.
         *
         * @param string $utf8 UTF-8 character
         *
         * @return string UTF-16 character
         */
        public function utf82utf16($utf8)
        {
            // oh please oh please oh please oh please oh please
            if (function_exists('mb_convert_encoding')) {
                return mb_convert_encoding($utf8, 'UTF-16', 'UTF-8');
            }

            switch (strlen($utf8)) {
                case 1:
                    // this case should never be reached, because we are in ASCII range
                    // see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
                    return $utf8;

                case 2:
                    // return a UTF-16 character from a 2-byte UTF-8 char
                    // see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
                    return chr(0x07 & (ord($utf8[0]) >> 2))
                    . chr((0xC0 & (ord($utf8[0]) << 6)) | (0x3F & ord($utf8[1])));

                case 3:
                    // return a UTF-16 character from a 3-byte UTF-8 char
                    // see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
                    return chr((0xF0 & (ord($utf8[0]) << 4)) | (0x0F & (ord($utf8[1]) >> 2)))
                    . chr((0xC0 & (ord($utf8[1]) << 6)) | (0x7F & ord($utf8[2])));
            }

            // ignoring UTF-32 for now, sorry
            return '';
        }

        /**
         * encodes an arbitrary variable into JSON format.
         *
         * @param mixed $var any number, boolean, string, array, or object to be encoded.
         * see argument 1 to Services_JSON() above for array-parsing behavior.
         * if var is a strng, note that encode() always expects it
         * to be in ASCII or UTF-8 format!
         *
         * @return mixed JSON string representation of input var or an error if a problem occurs
         */
        public function encode($var)
        {
            switch (gettype($var)) {
                case 'boolean':
                    return $var ? 'true' : 'false';

                case 'NULL':
                    return 'null';

                case 'integer':
                    return (int) $var;

                case 'double':
                case 'float':
                    return (float) $var;

                case 'string':
                    // STRINGS ARE EXPECTED TO BE IN ASCII OR UTF-8 FORMAT
                    $ascii      = '';
                    $strlen_var = strlen($var);

                    /*
                    * Iterate over every character in the string,
                    * escaping with a slash or encoding to UTF-8 where necessary
                    */
                    for ($c = 0; $c < $strlen_var; ++$c) {
                        $ord_var_c = ord($var[$c]);

                        switch (true) {
                            case 0x08 == $ord_var_c:
                                $ascii .= '\b';
                                break;
                            case 0x09 == $ord_var_c:
                                $ascii .= '\t';
                                break;
                            case 0x0A == $ord_var_c:
                                $ascii .= '\n';
                                break;
                            case 0x0C == $ord_var_c:
                                $ascii .= '\f';
                                break;
                            case 0x0D == $ord_var_c:
                                $ascii .= '\r';
                                break;

                            case 0x22 == $ord_var_c:
                            case 0x2F == $ord_var_c:
                            case 0x5C == $ord_var_c:
                                // double quote, slash, slosh
                                $ascii .= '\\' . $var[$c];
                                break;

                            case ($ord_var_c >= 0x20) && ($ord_var_c <= 0x7F):
                                // characters U-00000000 - U-0000007F (same as ASCII)
                                $ascii .= $var[$c];
                                break;

                            case 0xC0 == ($ord_var_c & 0xE0):
                                // characters U-00000080 - U-000007FF, mask 110XXXXX
                                // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
                                $char = pack('C*', $ord_var_c, ord($var[$c + 1]));
                                ++$c;
                                $utf16 = $this->utf82utf16($char);
                                $ascii .= sprintf('\u%04s', bin2hex($utf16));
                                break;

                            case 0xE0 == ($ord_var_c & 0xF0):
                                // characters U-00000800 - U-0000FFFF, mask 1110XXXX
                                // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
                                $char = pack('C*', $ord_var_c, ord($var[$c + 1]), ord($var[$c + 2]));
                                $c += 2;
                                $utf16 = $this->utf82utf16($char);
                                $ascii .= sprintf('\u%04s', bin2hex($utf16));
                                break;

                            case 0xF0 == ($ord_var_c & 0xF8):
                                // characters U-00010000 - U-001FFFFF, mask 11110XXX
                                // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
                                $char = pack('C*', $ord_var_c, ord($var[$c + 1]), ord($var[$c + 2]), ord($var[$c + 3]));
                                $c += 3;
                                $utf16 = $this->utf82utf16($char);
                                $ascii .= sprintf('\u%04s', bin2hex($utf16));
                                break;

                            case 0xF8 == ($ord_var_c & 0xFC):
                                // characters U-00200000 - U-03FFFFFF, mask 111110XX
                                // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
                                $char = pack(
                                    'C*',
                                    $ord_var_c,
                                    ord($var[$c + 1]),
                                    ord($var[$c + 2]),
                                    ord($var[$c + 3]),
                                    ord($var[$c + 4])
                                );
                                $c += 4;
                                $utf16 = $this->utf82utf16($char);
                                $ascii .= sprintf('\u%04s', bin2hex($utf16));
                                break;

                            case 0xFC == ($ord_var_c & 0xFE):
                                // characters U-04000000 - U-7FFFFFFF, mask 1111110X
                                // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
                                $char = pack(
                                    'C*',
                                    $ord_var_c,
                                    ord($var[$c + 1]),
                                    ord($var[$c + 2]),
                                    ord($var[$c + 3]),
                                    ord($var[$c + 4]),
                                    ord($var[$c + 5])
                                );
                                $c += 5;
                                $utf16 = $this->utf82utf16($char);
                                $ascii .= sprintf('\u%04s', bin2hex($utf16));
                                break;
                        }
                    }

                    return '"' . $ascii . '"';

                case 'array':
                    /*
                    * As per JSON spec if any array key is not an integer
                    * we must treat the the whole array as an object. We
                    * also try to catch a sparsely populated associative
                    * array with numeric keys here because some JS engines
                    * will create an array with empty indexes up to
                    * max_index which can cause memory issues and because
                    * the keys, which may be relevant, will be remapped
                    * otherwise.
                    *
                    * As per the ECMA and JSON specification an object may
                    * have any string as a property. Unfortunately due to
                    * a hole in the ECMA specification if the key is a
                    * ECMA reserved word or starts with a digit the
                    * parameter is only accessible using ECMAScript's
                    * bracket notation.
                    */

                    // treat as a JSON object
                    if (is_array($var) && count($var) && (array_keys($var) !== range(0, sizeof($var) - 1))) {
                        $properties = array_map(array($this, 'name_value'), array_keys($var), array_values($var));

                        foreach ($properties as $property) {
                            if (Akeeba_Services_JSON::isError($property)) {
                                return $property;
                            }
                        }

                        return '{' . join(',', $properties) . '}';
                    }

                    // treat it like a regular array
                    $elements = array_map(array($this, 'encode'), $var);

                    foreach ($elements as $element) {
                        if (Akeeba_Services_JSON::isError($element)) {
                            return $element;
                        }
                    }

                    return '[' . join(',', $elements) . ']';

                case 'object':
                    $vars = get_object_vars($var);

                    $properties = array_map(array($this, 'name_value'), array_keys($vars), array_values($vars));

                    foreach ($properties as $property) {
                        if (Akeeba_Services_JSON::isError($property)) {
                            return $property;
                        }
                    }

                    return '{' . join(',', $properties) . '}';

                default:
                    return ($this->use & SERVICES_JSON_SUPPRESS_ERRORS)
                        ? 'null'
                        : new Akeeba_Services_JSON_Error(gettype($var) . ' can not be encoded as JSON string');
            }
        }

        /**
         * array-walking function for use in generating JSON-formatted name-value pairs.
         *
         * @param string $name  name of key to use
         * @param mixed  $value reference to an array element to be encoded
         *
         * @return string JSON-formatted name-value pair, like '"name":value'
         */
        public function name_value($name, $value)
        {
            $encoded_value = $this->encode($value);

            if (Akeeba_Services_JSON::isError($encoded_value)) {
                return $encoded_value;
            }

            return $this->encode(strval($name)) . ':' . $encoded_value;
        }

        /**
         * reduce a string by removing leading and trailing comments and whitespace.
         *
         * @param string $str      string value to strip of comments and whitespace
         *
         * @return string string value stripped of comments and whitespace
         */
        public function reduce_string($str)
        {
            $str = preg_replace(array(
                // eliminate single line comments in '// ...' form
                '#^\s*//(.+)$#m',
                // eliminate multi-line comments in '/* ... */' form, at start of string
                '#^\s*/\*(.+)\*/#Us',
                // eliminate multi-line comments in '/* ... */' form, at end of string
                '#/\*(.+)\*/\s*$#Us',
            ), '', $str);

            // eliminate extraneous space
            return trim($str);
        }

        /**
         * decodes a JSON string into appropriate variable.
         *
         * @param string $str JSON-formatted string
         *
         * @return mixed number, boolean, string, array, or object
         * corresponding to given JSON input string.
         * See argument 1 to Akeeba_Services_JSON() above for object-output behavior.
         * Note that decode() always returns strings
         * in ASCII or UTF-8 format!
         */
        public function decode($str)
        {
            $str = $this->reduce_string($str);

            switch (strtolower($str)) {
                case 'true':
                    return true;

                case 'false':
                    return false;

                case 'null':
                    return;

                default:
                    $m = array();

                    if (is_numeric($str)) {
                        // Lookie-loo, it's a number

                        // This would work on its own, but I'm trying to be
                        // good about returning integers where appropriate:
                        // return (float)$str;

                        // Return float or int, as appropriate
                        return ((float) $str == (int) $str)
                            ? (int) $str
                            : (float) $str;
                    }
                    if (preg_match('/^("|\').*(\1)$/s', $str, $m) && $m[1] == $m[2]) {
                        // STRINGS RETURNED IN UTF-8 FORMAT
                        $delim       = substr($str, 0, 1);
                        $chrs        = substr($str, 1, -1);
                        $utf8        = '';
                        $strlen_chrs = strlen($chrs);

                        for ($c = 0; $c < $strlen_chrs; ++$c) {
                            $substr_chrs_c_2 = substr($chrs, $c, 2);
                            $ord_chrs_c      = ord($chrs[$c]);

                            switch (true) {
                                case '\b' == $substr_chrs_c_2:
                                    $utf8 .= chr(0x08);
                                    ++$c;
                                    break;
                                case '\t' == $substr_chrs_c_2:
                                    $utf8 .= chr(0x09);
                                    ++$c;
                                    break;
                                case '\n' == $substr_chrs_c_2:
                                    $utf8 .= chr(0x0A);
                                    ++$c;
                                    break;
                                case '\f' == $substr_chrs_c_2:
                                    $utf8 .= chr(0x0C);
                                    ++$c;
                                    break;
                                case '\r' == $substr_chrs_c_2:
                                    $utf8 .= chr(0x0D);
                                    ++$c;
                                    break;

                                case '\\"'  == $substr_chrs_c_2:
                                case '\\\'' == $substr_chrs_c_2:
                                case '\\\\' == $substr_chrs_c_2:
                                case '\\/'  == $substr_chrs_c_2:
                                    if (('"' == $delim && '\\\'' != $substr_chrs_c_2) ||
                                        ("'" == $delim && '\\"' != $substr_chrs_c_2)
                                    ) {
                                        $utf8 .= $chrs[++$c];
                                    }
                                    break;

                                case preg_match('/\\\u[0-9A-F]{4}/i', substr($chrs, $c, 6)):
                                    // single, escaped unicode character
                                    $utf16 = chr(hexdec(substr($chrs, ($c + 2), 2)))
                                        . chr(hexdec(substr($chrs, ($c + 4), 2)));
                                    $utf8 .= $this->utf162utf8($utf16);
                                    $c += 5;
                                    break;

                                case ($ord_chrs_c >= 0x20) && ($ord_chrs_c <= 0x7F):
                                    $utf8 .= $chrs[$c];
                                    break;

                                case 0xC0 == ($ord_chrs_c & 0xE0):
                                    // characters U-00000080 - U-000007FF, mask 110XXXXX
                                    //see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
                                    $utf8 .= substr($chrs, $c, 2);
                                    ++$c;
                                    break;

                                case 0xE0 == ($ord_chrs_c & 0xF0):
                                    // characters U-00000800 - U-0000FFFF, mask 1110XXXX
                                    // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
                                    $utf8 .= substr($chrs, $c, 3);
                                    $c += 2;
                                    break;

                                case 0xF0 == ($ord_chrs_c & 0xF8):
                                    // characters U-00010000 - U-001FFFFF, mask 11110XXX
                                    // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
                                    $utf8 .= substr($chrs, $c, 4);
                                    $c += 3;
                                    break;

                                case 0xF8 == ($ord_chrs_c & 0xFC):
                                    // characters U-00200000 - U-03FFFFFF, mask 111110XX
                                    // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
                                    $utf8 .= substr($chrs, $c, 5);
                                    $c += 4;
                                    break;

                                case 0xFC == ($ord_chrs_c & 0xFE):
                                    // characters U-04000000 - U-7FFFFFFF, mask 1111110X
                                    // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
                                    $utf8 .= substr($chrs, $c, 6);
                                    $c += 5;
                                    break;
                            }
                        }

                        return $utf8;
                    }
                    if (preg_match('/^\[.*\]$/s', $str) || preg_match('/^\{.*\}$/s', $str)) {
                        // array, or object notation

                        if ('[' == $str[0]) {
                            $stk = array(SERVICES_JSON_IN_ARR);
                            $arr = array();
                        } else {
                            if ($this->use & SERVICES_JSON_LOOSE_TYPE) {
                                $stk = array(SERVICES_JSON_IN_OBJ);
                                $obj = array();
                            } else {
                                $stk = array(SERVICES_JSON_IN_OBJ);
                                $obj = new stdClass();
                            }
                        }

                        array_push($stk, array(
                            'what'                    => SERVICES_JSON_SLICE,
                            'where'                   => 0,
                            'delim'                   => false,
                        ));

                        $chrs = substr($str, 1, -1);
                        $chrs = $this->reduce_string($chrs);

                        if ('' == $chrs) {
                            if (SERVICES_JSON_IN_ARR == reset($stk)) {
                                return $arr;
                            } else {
                                return $obj;
                            }
                        }

                        //print("\nparsing {$chrs}\n");

                        $strlen_chrs = strlen($chrs);

                        for ($c = 0; $c <= $strlen_chrs; ++$c) {
                            $top             = end($stk);
                            $substr_chrs_c_2 = substr($chrs, $c, 2);

                            if (($c == $strlen_chrs) || ((',' == $chrs[$c]) && (SERVICES_JSON_SLICE == $top['what']))) {
                                // found a comma that is not inside a string, array, etc.,
                                // OR we've reached the end of the character list
                                $slice = substr($chrs, $top['where'], ($c - $top['where']));
                                array_push($stk, array(
                                    'what'                    => SERVICES_JSON_SLICE,
                                    'where'                   => ($c + 1),
                                    'delim'                   => false,
                                ));
                                //print("Found split at {$c}: ".substr($chrs, $top['where'], (1 + $c - $top['where']))."\n");

                                if (SERVICES_JSON_IN_ARR == reset($stk)) {
                                    // we are in an array, so just push an element onto the stack
                                    array_push($arr, $this->decode($slice));
                                } elseif (SERVICES_JSON_IN_OBJ == reset($stk)) {
                                    // we are in an object, so figure
                                    // out the property name and set an
                                    // element in an associative array,
                                    // for now
                                    $parts = array();

                                    if (preg_match('/^\s*(["\'].*[^\\\]["\'])\s*:\s*(\S.*),?$/Uis', $slice, $parts)) {
                                        // "name":value pair
                                        $key = $this->decode($parts[1]);
                                        $val = $this->decode($parts[2]);

                                        if ($this->use & SERVICES_JSON_LOOSE_TYPE) {
                                            $obj[$key] = $val;
                                        } else {
                                            $obj->$key = $val;
                                        }
                                    } elseif (preg_match('/^\s*(\w+)\s*:\s*(\S.*),?$/Uis', $slice, $parts)) {
                                        // name:value pair, where name is unquoted
                                        $key = $parts[1];
                                        $val = $this->decode($parts[2]);

                                        if ($this->use & SERVICES_JSON_LOOSE_TYPE) {
                                            $obj[$key] = $val;
                                        } else {
                                            $obj->$key = $val;
                                        }
                                    }
                                }
                            } elseif ((('"' == $chrs[$c]) || ("'" == $chrs[$c])) && (SERVICES_JSON_IN_STR != $top['what'])) {
                                // found a quote, and we are not inside a string
                                array_push($stk, array(
                                    'what'                    => SERVICES_JSON_IN_STR,
                                    'where'                   => $c,
                                    'delim'                   => $chrs[$c],
                                ));
                            //print("Found start of string at {$c}\n");
                            } elseif (($chrs[$c] == $top['delim'])     &&
                                (SERVICES_JSON_IN_STR == $top['what']) &&
                                (1 != (strlen(substr($chrs, 0, $c)) - strlen(rtrim(substr($chrs, 0, $c), '\\'))) % 2)
                            ) {
                                // found a quote, we're in a string, and it's not escaped
                                // we know that it's not escaped becase there is _not_ an
                                // odd number of backslashes at the end of the string so far
                                array_pop($stk);
                            //print("Found end of string at {$c}: ".substr($chrs, $top['where'], (1 + 1 + $c - $top['where']))."\n");
                            } elseif (('[' == $chrs[$c]) &&
                                in_array($top['what'], array(SERVICES_JSON_SLICE, SERVICES_JSON_IN_ARR, SERVICES_JSON_IN_OBJ))
                            ) {
                                // found a left-bracket, and we are in an array, object, or slice
                                array_push($stk, array(
                                    'what'                    => SERVICES_JSON_IN_ARR,
                                    'where'                   => $c,
                                    'delim'                   => false,
                                ));
                            //print("Found start of array at {$c}\n");
                            } elseif ((']' == $chrs[$c]) && (SERVICES_JSON_IN_ARR == $top['what'])) {
                                // found a right-bracket, and we're in an array
                                array_pop($stk);
                            //print("Found end of array at {$c}: ".substr($chrs, $top['where'], (1 + $c - $top['where']))."\n");
                            } elseif (('{' == $chrs[$c]) &&
                                in_array($top['what'], array(SERVICES_JSON_SLICE, SERVICES_JSON_IN_ARR, SERVICES_JSON_IN_OBJ))
                            ) {
                                // found a left-brace, and we are in an array, object, or slice
                                array_push($stk, array(
                                    'what'                    => SERVICES_JSON_IN_OBJ,
                                    'where'                   => $c,
                                    'delim'                   => false,
                                ));
                            //print("Found start of object at {$c}\n");
                            } elseif (('}' == $chrs[$c]) && (SERVICES_JSON_IN_OBJ == $top['what'])) {
                                // found a right-brace, and we're in an object
                                array_pop($stk);
                            //print("Found end of object at {$c}: ".substr($chrs, $top['where'], (1 + $c - $top['where']))."\n");
                            } elseif (('/*' == $substr_chrs_c_2) &&
                                in_array($top['what'], array(SERVICES_JSON_SLICE, SERVICES_JSON_IN_ARR, SERVICES_JSON_IN_OBJ))
                            ) {
                                // found a comment start, and we are in an array, object, or slice
                                array_push($stk, array(
                                    'what'                    => SERVICES_JSON_IN_CMT,
                                    'where'                   => $c,
                                    'delim'                   => false,
                                ));
                                ++$c;
                            //print("Found start of comment at {$c}\n");
                            } elseif (('*/' == $substr_chrs_c_2) && (SERVICES_JSON_IN_CMT == $top['what'])) {
                                // found a comment end, and we're in one now
                                array_pop($stk);
                                ++$c;

                                for ($i = $top['where']; $i <= $c; ++$i) {
                                    $chrs = substr_replace($chrs, ' ', $i, 1);
                                }

                                //print("Found end of comment at {$c}: ".substr($chrs, $top['where'], (1 + $c - $top['where']))."\n");
                            }
                        }

                        if (SERVICES_JSON_IN_ARR == reset($stk)) {
                            return $arr;
                        }
                        if (SERVICES_JSON_IN_OBJ == reset($stk)) {
                            return $obj;
                        }
                    }
            }
        }

        public function isError($data, $code = null)
        {
            if (class_exists('pear')) {
                return PEAR::isError($data, $code);
            }
            if (is_object($data) && ('services_json_error' == get_class($data) ||
                    is_subclass_of($data, 'services_json_error'))
            ) {
                return true;
            }

            return false;
        }
    }

    class Akeeba_Services_JSON_Error
    {
        public function Akeeba_Services_JSON_Error(
            $message = 'unknown error',
            $code = null,
            $mode = null,
            $options = null,
            $userinfo = null
        ) {
        }
    }
}

if (! function_exists('json_encode')) {
    function json_encode($value, $options = 0)
    {
        $flags = SERVICES_JSON_LOOSE_TYPE;
        if ($options & JSON_FORCE_OBJECT) {
            $flags = 0;
        }
        $encoder = new Akeeba_Services_JSON($flags);

        return $encoder->encode($value);
    }
}

if (! function_exists('json_decode')) {
    function json_decode($value, $assoc = false)
    {
        $flags = 0;
        if ($assoc) {
            $flags = SERVICES_JSON_LOOSE_TYPE;
        }
        $decoder = new Akeeba_Services_JSON($flags);

        return $decoder->decode($value);
    }
}

/**
 * Akeeba Restore A JSON-powered JPA, JPS and ZIP archive extraction library.
 *
 * @copyright   2010-2014 Nicholas K. Dionysopoulos / Akeeba Ltd.
 * @license     GNU GPL v2 or - at your option - any later version
 */

/**
 * The base class of Akeeba Engine objects. Allows for error and warnings logging and propagation. Largely based on the
 * Joomla! 1.5 JObject class.
 */
abstract class AKAbstractObject
{
    /**
     * @var array The queue size of the array. Set to 0 for infinite size.
     */
    protected $_errors_queue_size = 0;

    /**
     * @var array The queue size of the array. Set to 0 for infinite size.
     */
    protected $_warnings_queue_size = 0;

    /**
     * @var array An array of errors
     */
    private $_errors = array();

    /**
     * @var array An array of warnings
     */
    private $_warnings = array();

    /**
     * Public constructor, makes sure we are instanciated only by the factory class.
     */
    public function __construct()
    {
    }

    /**
     * Get the most recent error message.
     *
     * @param int $i Optional error index
     *
     * @return string Error message
     */
    public function getError($i = null)
    {
        return $this->getItemFromArray($this->_errors, $i);
    }

    /**
     * Returns the last item of a LIFO string message queue, or a specific item if so specified.
     *
     * @param array $array An array of strings, holding messages
     * @param int   $i     Optional message index
     *
     * @return mixed The message string, or false if the key doesn't exist
     */
    private function getItemFromArray($array, $i = null)
    {
        // Find the item
        if (null === $i) {
            // Default, return the last item
            $item = end($array);
        } elseif (! array_key_exists($i, $array)) {
            // If $i has been specified but does not exist, return false
            return false;
        } else {
            $item = $array[$i];
        }

        return $item;
    }

    /**
     * Return all errors, if any.
     *
     * @return array Array of error messages
     */
    public function getErrors()
    {
        return $this->_errors;
    }

    /**
     * Resets all error messages.
     */
    public function resetErrors()
    {
        $this->_errors = array();
    }

    /**
     * Get the most recent warning message.
     *
     * @param int $i Optional warning index
     *
     * @return string Error message
     */
    public function getWarning($i = null)
    {
        return $this->getItemFromArray($this->_warnings, $i);
    }

    /**
     * Return all warnings, if any.
     *
     * @return array Array of error messages
     */
    public function getWarnings()
    {
        return $this->_warnings;
    }

    /**
     * Resets all warning messages.
     */
    public function resetWarnings()
    {
        $this->_warnings = array();
    }

    /**
     * Propagates errors and warnings to a foreign object. The foreign object SHOULD implement the setError() and/or
     * setWarning() methods but DOESN'T HAVE TO be of AKAbstractObject type. For example, this can even be used to
     * propagate to a JObject instance in Joomla!. Propagated items will be removed from ourself.
     *
     * @param object $object the object to propagate errors and warnings to
     */
    public function propagateToObject(&$object)
    {
        // Skip non-objects
        if (! is_object($object)) {
            return;
        }

        if (method_exists($object, 'setError')) {
            if (! empty($this->_errors)) {
                foreach ($this->_errors as $error) {
                    $object->setError($error);
                }
                $this->_errors = array();
            }
        }

        if (method_exists($object, 'setWarning')) {
            if (! empty($this->_warnings)) {
                foreach ($this->_warnings as $warning) {
                    $object->setWarning($warning);
                }
                $this->_warnings = array();
            }
        }
    }

    /**
     * Propagates errors and warnings from a foreign object. Each propagated list is then cleared on the foreign object,
     * as long as it implements resetErrors() and/or resetWarnings() methods.
     *
     * @param object $object The object to propagate errors and warnings from
     */
    public function propagateFromObject(&$object)
    {
        if (method_exists($object, 'getErrors')) {
            $errors = $object->getErrors();
            if (! empty($errors)) {
                foreach ($errors as $error) {
                    $this->setError($error);
                }
            }
            if (method_exists($object, 'resetErrors')) {
                $object->resetErrors();
            }
        }

        if (method_exists($object, 'getWarnings')) {
            $warnings = $object->getWarnings();
            if (! empty($warnings)) {
                foreach ($warnings as $warning) {
                    $this->setWarning($warning);
                }
            }
            if (method_exists($object, 'resetWarnings')) {
                $object->resetWarnings();
            }
        }
    }

    /**
     * Add an error message.
     *
     * @param string $error Error message
     */
    public function setError($error)
    {
        if ($this->_errors_queue_size > 0) {
            if (count($this->_errors) >= $this->_errors_queue_size) {
                array_shift($this->_errors);
            }
        }
        array_push($this->_errors, $error);
    }

    /**
     * Add an error message.
     */
    public function setWarning($warning)
    {
        if ($this->_warnings_queue_size > 0) {
            if (count($this->_warnings) >= $this->_warnings_queue_size) {
                array_shift($this->_warnings);
            }
        }

        array_push($this->_warnings, $warning);
    }

    /**
     * Sets the size of the error queue (acts like a LIFO buffer).
     *
     * @param int $newSize The new queue size. Set to 0 for infinite length.
     */
    protected function setErrorsQueueSize($newSize = 0)
    {
        $this->_errors_queue_size = (int) $newSize;
    }

    /**
     * Sets the size of the warnings queue (acts like a LIFO buffer).
     *
     * @param int $newSize The new queue size. Set to 0 for infinite length.
     */
    protected function setWarningsQueueSize($newSize = 0)
    {
        $this->_warnings_queue_size = (int) $newSize;
    }
}

/**
 * Akeeba Restore A JSON-powered JPA, JPS and ZIP archive extraction library.
 *
 * @copyright   2010-2014 Nicholas K. Dionysopoulos / Akeeba Ltd.
 * @license     GNU GPL v2 or - at your option - any later version
 */

/**
 * The superclass of all Akeeba Kickstart parts. The "parts" are intelligent stateful classes which perform a single
 * procedure and have preparation, running and finalization phases. The transition between phases is handled
 * automatically by this superclass' tick() final public method, which should be the ONLY public API exposed to the rest
 * of the Akeeba Engine.
 */
abstract class AKAbstractPart extends AKAbstractObject
{
    /**
     * Indicates whether this part has finished its initialisation cycle.
     *
     * @var bool
     */
    protected $isPrepared = false;

    /**
     * Indicates whether this part has more work to do (it's in running state).
     *
     * @var bool
     */
    protected $isRunning = false;

    /**
     * Indicates whether this part has finished its finalization cycle.
     *
     * @var bool
     */
    protected $isFinished = false;

    /**
     * Indicates whether this part has finished its run cycle.
     *
     * @var bool
     */
    protected $hasRan = false;

    /**
     * The name of the engine part (a.k.a. Domain), used in return table generation.
     *
     * @var string
     */
    protected $active_domain = '';

    /**
     * The step this engine part is in. Used verbatim in return table and should be set by the code in the _run()
     * method.
     *
     * @var string
     */
    protected $active_step = '';

    /**
     * A more detailed description of the step this engine part is in. Used verbatim in return table and should be set
     * by the code in the _run() method.
     *
     * @var string
     */
    protected $active_substep = '';

    /**
     * Any configuration variables, in the form of an array.
     *
     * @var array
     */
    protected $_parametersArray = array();

    /**
     * @var string The database root key
     */
    protected $databaseRoot = array();

    /**
     * @var array An array of observers
     */
    protected $observers = array();

    /**
     * @var int Last reported warnings's position in array
     */
    private $warnings_pointer = -1;

    /**
     * The public interface to an engine part. This method takes care for calling the correct method in order to perform
     * the initialisation - run - finalisation cycle of operation and return a proper reponse array.
     *
     * @return array A Reponse Array
     */
    final public function tick()
    {
        // Call the right action method, depending on engine part state
        switch ($this->getState()) {
            case 'init':
                $this->_prepare();
                break;
            case 'prepared':
                $this->_run();
                break;
            case 'running':
                $this->_run();
                break;
            case 'postrun':
                $this->_finalize();
                break;
        }

        // Send a Return Table back to the caller
        $out = $this->_makeReturnTable();

        return $out;
    }

    /**
     * Returns the state of this engine part.
     *
     * @return string The state of this engine part. It can be one of
     * error, init, prepared, running, postrun, finished.
     */
    final public function getState()
    {
        if ($this->getError()) {
            return 'error';
        }

        if (! ($this->isPrepared)) {
            return 'init';
        }

        if (! ($this->isFinished) && ! ($this->isRunning) && ! ($this->hasRun) && ($this->isPrepared)) {
            return 'prepared';
        }

        if (! ($this->isFinished) && $this->isRunning && ! ($this->hasRun)) {
            return 'running';
        }

        if (! ($this->isFinished) && ! ($this->isRunning) && $this->hasRun) {
            return 'postrun';
        }

        if ($this->isFinished) {
            return 'finished';
        }
    }

    /**
     * Runs the preparation for this part. Should set _isPrepared to true.
     */
    abstract protected function _prepare();

    /**
     * Runs the main functionality loop for this part. Upon calling, should set the _isRunning to true. When it
     * finished, should set the _hasRan to true. If an error is encountered, setError should be used.
     */
    abstract protected function _run();

    /**
     * Runs the finalisation process for this part. Should set _isFinished to true.
     */
    abstract protected function _finalize();

    /**
     * Constructs a Response Array based on the engine part's state.
     *
     * @return array The Response Array for the current state
     */
    final protected function _makeReturnTable()
    {
        // Get a list of warnings
        $warnings = $this->getWarnings();
        // Report only new warnings if there is no warnings queue size
        if (0 == $this->_warnings_queue_size) {
            if (($this->warnings_pointer > 0) && ($this->warnings_pointer < (count($warnings)))) {
                $warnings = array_slice($warnings, $this->warnings_pointer + 1);
                $this->warnings_pointer += count($warnings);
            } else {
                $this->warnings_pointer = count($warnings);
            }
        }

        $out = array(
            'HasRun'   => (! ($this->isFinished)),
            'Domain'   => $this->active_domain,
            'Step'     => $this->active_step,
            'Substep'  => $this->active_substep,
            'Error'    => $this->getError(),
            'Warnings' => $warnings,
        );

        return $out;
    }

    /**
     * Returns a copy of the class's status array.
     *
     * @return array
     */
    public function getStatusArray()
    {
        return $this->_makeReturnTable();
    }

    /**
     * Sends any kind of setup information to the engine part. Using this, we avoid passing parameters to the
     * constructor of the class. These parameters should be passed as an indexed array and should be taken into account
     * during the preparation process only. This function will set the error flag if it's called after the engine part
     * is prepared.
     *
     * @param array $parametersArray the parameters to be passed to the
     * engine part
     */
    final public function setup($parametersArray)
    {
        if ($this->isPrepared) {
            $this->setState('error', "Can't modify configuration after the preparation of " . $this->active_domain);
        } else {
            $this->_parametersArray = $parametersArray;
            if (array_key_exists('root', $parametersArray)) {
                $this->databaseRoot = $parametersArray['root'];
            }
        }
    }

    /**
     * Sets the engine part's internal state, in an easy to use manner.
     *
     * @param string $state        One of init, prepared, running, postrun, finished, error
     * @param string $errorMessage The reported error message, should the state be set to error
     */
    protected function setState($state = 'init', $errorMessage = 'Invalid setState argument')
    {
        switch ($state) {
            case 'init':
                $this->isPrepared = false;
                $this->isRunning  = false;
                $this->isFinished = false;
                $this->hasRun     = false;
                break;

            case 'prepared':
                $this->isPrepared = true;
                $this->isRunning  = false;
                $this->isFinished = false;
                $this->hasRun     = false;
                break;

            case 'running':
                $this->isPrepared = true;
                $this->isRunning  = true;
                $this->isFinished = false;
                $this->hasRun     = false;
                break;

            case 'postrun':
                $this->isPrepared = true;
                $this->isRunning  = false;
                $this->isFinished = false;
                $this->hasRun     = true;
                break;

            case 'finished':
                $this->isPrepared = true;
                $this->isRunning  = false;
                $this->isFinished = true;
                $this->hasRun     = false;
                break;

            case 'error':
            default:
                $this->setError($errorMessage);
                break;
        }
    }

    final public function getDomain()
    {
        return $this->active_domain;
    }

    final public function getStep()
    {
        return $this->active_step;
    }

    final public function getSubstep()
    {
        return $this->active_substep;
    }

    /**
     * Attaches an observer object.
     *
     * @param AKAbstractPartObserver $obs
     */
    public function attach($obs)
    {
        $this->observers["$obs"] = $obs;
    }

    /**
     * Dettaches an observer object.
     *
     * @param AKAbstractPartObserver $obs
     */
    public function detach($obs)
    {
        delete($this->observers["$obs"]);
    }

    /**
     * Sets the BREAKFLAG, which instructs this engine part that the current step must break immediately, in fear of
     * timing out.
     */
    protected function setBreakFlag()
    {
        AKFactory::set('volatile.breakflag', true);
    }

    final protected function setDomain($new_domain)
    {
        $this->active_domain = $new_domain;
    }

    final protected function setStep($new_step)
    {
        $this->active_step = $new_step;
    }

    final protected function setSubstep($new_substep)
    {
        $this->active_substep = $new_substep;
    }

    /**
     * Notifies observers each time something interesting happened to the part.
     *
     * @param mixed $message The event object
     */
    protected function notify($message)
    {
        foreach ($this->observers as $obs) {
            $obs->update($this, $message);
        }
    }
}

/**
 * Akeeba Restore A JSON-powered JPA, JPS and ZIP archive extraction library.
 *
 * @copyright   2010-2014 Nicholas K. Dionysopoulos / Akeeba Ltd.
 * @license     GNU GPL v2 or - at your option - any later version
 */

/**
 * The base class of unarchiver classes.
 */
abstract class AKAbstractUnarchiver extends AKAbstractPart
{
    /**
     * @var array List of the names of all archive parts
     */
    public $archiveList = array();

    /**
     * @var int The total size of all archive parts
     */
    public $totalSize = array();

    /**
     * @var array Which files to rename
     */
    public $renameFiles = array();

    /**
     * @var array Which directories to rename
     */
    public $renameDirs = array();

    /**
     * @var array Which files to skip
     */
    public $skipFiles = array();

    /**
     * @var string Archive filename
     */
    protected $filename = null;

    /**
     * @var int Current archive part number
     */
    protected $currentPartNumber = -1;

    /**
     * @var int The offset inside the current part
     */
    protected $currentPartOffset = 0;

    /**
     * @var bool Should I restore permissions?
     */
    protected $flagRestorePermissions = false;

    /**
     * @var AKAbstractPostproc Post processing class
     */
    protected $postProcEngine = null;

    /**
     * @var string Absolute path to prepend to extracted files
     */
    protected $addPath = '';

    /**
     * @var int Chunk size for processing
     */
    protected $chunkSize = 524288;

    /**
     * @var resource File pointer to the current archive part file
     */
    protected $fp = null;

    /**
     * @var int Run state when processing the current archive file
     */
    protected $runState = null;

    /**
     * @var stdClass File header data, as read by the readFileHeader() method
     */
    protected $fileHeader = null;

    /**
     * @var int How much of the uncompressed data we've read so far
     */
    protected $dataReadLength = 0;

    /**
     * @var array Unwriteable files in these directories are always ignored and do not cause errors when not extracted
     */
    protected $ignoreDirectories = array();

    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Wakeup function, called whenever the class is unserialized.
     */
    public function __wakeup()
    {
        if ($this->currentPartNumber >= 0 && ! empty($this->archiveList[$this->currentPartNumber])) {
            $this->fp = @fopen($this->archiveList[$this->currentPartNumber], 'rb');
            if ((is_resource($this->fp)) && ($this->currentPartOffset > 0)) {
                @fseek($this->fp, $this->currentPartOffset);
            }
        }
    }

    /**
     * Sleep function, called whenever the class is serialized.
     */
    public function shutdown()
    {
        if (is_resource($this->fp)) {
            $this->currentPartOffset = @ftell($this->fp);
            @fclose($this->fp);
        }
    }

    /**
     * Is this file or directory contained in a directory we've decided to ignore write errors for? This is useful to
     * let the extraction work despite write errors in the log, logs and tmp directories which MIGHT be used by the
     * system on some low quality hosts and Plesk-powered hosts.
     *
     * @param string $shortFilename The relative path of the file/directory in the package
     *
     * @return bool True if it belongs in an ignored directory
     */
    public function isIgnoredDirectory($shortFilename)
    {
        return false;
        if ('/' == substr($shortFilename, -1)) {
            $check = substr($shortFilename, 0, -1);
        } else {
            $check = dirname($shortFilename);
        }

        return in_array($check, $this->ignoreDirectories);
    }

    /**
     * Implements the abstract _prepare() method.
     */
    final protected function _prepare()
    {
        parent::__construct();

        if (count($this->_parametersArray) > 0) {
            foreach ($this->_parametersArray as $key => $value) {
                switch ($key) {
                    // Archive's absolute filename
                    case 'filename':
                        $this->filename = $value;

                        // Sanity check
                        if (! empty($value)) {
                            $value = strtolower($value);

                            if (strlen($value) > 6) {
                                if (
                                    ('http://' == substr($value, 0, 7))
                                    || ('https://' == substr($value, 0, 8))
                                    || ('ftp://' == substr($value, 0, 6))
                                    || ('ssh2://' == substr($value, 0, 7))
                                    || ('ssl://' == substr($value, 0, 6))
                                ) {
                                    $this->setState('error', 'Invalid archive location');
                                }
                            }
                        }

                        break;

                        // Should I restore permissions?
                    case 'restore_permissions':
                        $this->flagRestorePermissions = $value;
                        break;

                        // Should I use FTP?
                    case 'post_proc':
                        $this->postProcEngine = AKFactory::getpostProc($value);
                        break;

                        // Path to add in the beginning
                    case 'add_path':
                        $this->addPath = $value;
                        $this->addPath = str_replace('\\', '/', $this->addPath);
                        $this->addPath = rtrim($this->addPath, '/');
                        if (! empty($this->addPath)) {
                            $this->addPath .= '/';
                        }
                        break;

                        // Which files to rename (hash array)
                    case 'rename_files':
                        $this->renameFiles = $value;
                        break;

                        // Which files to rename (hash array)
                    case 'rename_dirs':
                        $this->renameDirs = $value;
                        break;

                        // Which files to skip (indexed array)
                    case 'skip_files':
                        $this->skipFiles = $value;
                        break;

                        // Which directories to ignore when we can't write files in them (indexed array)
                    case 'ignoredirectories':
                        $this->ignoreDirectories = $value;
                        break;
                }
            }
        }

        $this->scanArchives();

        $this->readArchiveHeader();
        $errMessage = $this->getError();
        if (! empty($errMessage)) {
            $this->setState('error', $errMessage);
        } else {
            $this->runState = AK_STATE_NOFILE;
            $this->setState('prepared');
        }
    }

    /**
     * Scans for archive parts.
     */
    private function scanArchives()
    {
        if (defined('KSDEBUG')) {
            @unlink('debug.txt');
        }
        debugMsg('Preparing to scan archives');

        $privateArchiveList = array();

        // Get the components of the archive filename
        $dirname         = dirname($this->filename);
        $base_extension  = $this->getBaseExtension();
        $basename        = basename($this->filename, $base_extension);
        $this->totalSize = 0;

        // Scan for multiple parts until we don't find any more of them
        $count             = 0;
        $found             = true;
        $this->archiveList = array();
        while ($found) {
            ++$count;
            $extension = substr($base_extension, 0, 2) . sprintf('%02d', $count);
            $filename  = $dirname . DIRECTORY_SEPARATOR . $basename . $extension;
            $found     = file_exists($filename);
            if ($found) {
                debugMsg('- Found archive ' . $filename);
                // Add yet another part, with a numeric-appended filename
                $this->archiveList[] = $filename;

                $filesize = @filesize($filename);
                $this->totalSize += $filesize;

                $privateArchiveList[] = array($filename, $filesize);
            } else {
                debugMsg('- Found archive ' . $this->filename);
                // Add the last part, with the regular extension
                $this->archiveList[] = $this->filename;

                $filename = $this->filename;
                $filesize = @filesize($filename);
                $this->totalSize += $filesize;

                $privateArchiveList[] = array($filename, $filesize);
            }
        }
        debugMsg('Total archive parts: ' . $count);

        $this->currentPartNumber = -1;
        $this->currentPartOffset = 0;
        $this->runState          = AK_STATE_NOFILE;

        // Send start of file notification
        $message                     = new stdClass();
        $message->type               = 'totalsize';
        $message->content            = new stdClass();
        $message->content->totalsize = $this->totalSize;
        $message->content->filelist  = $privateArchiveList;
        $this->notify($message);
    }

    /**
     * Returns the base extension of the file, e.g. '.jpa'.
     *
     * @return string
     */
    private function getBaseExtension()
    {
        static $baseextension;

        if (empty($baseextension)) {
            $basename      = basename($this->filename);
            $lastdot       = strrpos($basename, '.');
            $baseextension = substr($basename, $lastdot);
        }

        return $baseextension;
    }

    /**
     * Concrete classes are supposed to use this method in order to read the archive's header and prepare themselves to
     * the point of being ready to extract the first file.
     */
    abstract protected function readArchiveHeader();

    protected function _run()
    {
        if ('postrun' == $this->getState()) {
            return;
        }

        $this->setState('running');

        $timer = AKFactory::getTimer();

        $status = true;
        while ($status && ($timer->getTimeLeft() > 0)) {
            switch ($this->runState) {
                case AK_STATE_NOFILE:
                    debugMsg(__CLASS__ . '::_run() - Reading file header');
                    $status = $this->readFileHeader();
                    if ($status) {
                        debugMsg(__CLASS__ . '::_run() - Preparing to extract ' . $this->fileHeader->realFile);
                        // Send start of file notification
                        $message          = new stdClass();
                        $message->type    = 'startfile';
                        $message->content = new stdClass();
                        if (array_key_exists('realfile', get_object_vars($this->fileHeader))) {
                            $message->content->realfile = $this->fileHeader->realFile;
                        } else {
                            $message->content->realfile = $this->fileHeader->file;
                        }
                        $message->content->file = $this->fileHeader->file;
                        if (array_key_exists('compressed', get_object_vars($this->fileHeader))) {
                            $message->content->compressed = $this->fileHeader->compressed;
                        } else {
                            $message->content->compressed = 0;
                        }
                        $message->content->uncompressed = $this->fileHeader->uncompressed;
                        $this->notify($message);
                    } else {
                        debugMsg(__CLASS__ . '::_run() - Could not read file header');
                    }
                    break;

                case AK_STATE_HEADER:
                case AK_STATE_DATA:
                    debugMsg(__CLASS__ . '::_run() - Processing file data');
                    $status = $this->processFileData();
                    break;

                case AK_STATE_DATAREAD:
                case AK_STATE_POSTPROC:
                    debugMsg(__CLASS__ . '::_run() - Calling post-processing class');
                    $this->postProcEngine->timestamp = $this->fileHeader->timestamp;
                    $status                          = $this->postProcEngine->process();
                    $this->propagateFromObject($this->postProcEngine);
                    $this->runState = AK_STATE_DONE;
                    break;

                case AK_STATE_DONE:
                default:
                    if ($status) {
                        debugMsg(__CLASS__ . '::_run() - Finished extracting file');
                        // Send end of file notification
                        $message          = new stdClass();
                        $message->type    = 'endfile';
                        $message->content = new stdClass();
                        if (array_key_exists('realfile', get_object_vars($this->fileHeader))) {
                            $message->content->realfile = $this->fileHeader->realFile;
                        } else {
                            $message->content->realfile = $this->fileHeader->file;
                        }
                        $message->content->file = $this->fileHeader->file;
                        if (array_key_exists('compressed', get_object_vars($this->fileHeader))) {
                            $message->content->compressed = $this->fileHeader->compressed;
                        } else {
                            $message->content->compressed = 0;
                        }
                        $message->content->uncompressed = $this->fileHeader->uncompressed;
                        $this->notify($message);
                    }
                    $this->runState = AK_STATE_NOFILE;
                    break;
            }
        }

        $error = $this->getError();
        if (! $status && (AK_STATE_NOFILE == $this->runState) && empty($error)) {
            debugMsg(__CLASS__ . '::_run() - Just finished');
            // We just finished
            $this->setState('postrun');
        } elseif (! empty($error)) {
            debugMsg(__CLASS__ . '::_run() - Halted with an error:');
            debugMsg($error);
            $this->setState('error', $error);
        }
    }

    /**
     * Concrete classes must use this method to read the file header.
     *
     * @return bool True if reading the file was successful, false if an error occured or we reached end of archive
     */
    abstract protected function readFileHeader();

    /**
     * Concrete classes must use this method to process file data. It must set $runState to AK_STATE_DATAREAD when it's
     * finished processing the file data.
     *
     * @return bool True if processing the file data was successful, false if an error occured
     */
    abstract protected function processFileData();

    protected function _finalize()
    {
        // Nothing to do
        $this->setState('finished');
    }

    /**
     * Opens the next part file for reading.
     */
    protected function nextFile()
    {
        debugMsg('Current part is ' . $this->currentPartNumber . '; opening the next part');
        ++$this->currentPartNumber;

        if ($this->currentPartNumber > (count($this->archiveList) - 1)) {
            $this->setState('postrun');

            return false;
        } else {
            if (is_resource($this->fp)) {
                @fclose($this->fp);
            }
            debugMsg('Opening file ' . $this->archiveList[$this->currentPartNumber]);
            $this->fp = @fopen($this->archiveList[$this->currentPartNumber], 'rb');
            if (false === $this->fp) {
                debugMsg('Could not open file - crash imminent');
            }
            fseek($this->fp, 0);
            $this->currentPartOffset = 0;

            return true;
        }
    }

    /**
     * Returns true if we have reached the end of file.
     *
     * @param bool $local True to return EOF of the local file, false (default) to return if we have reached the end of the archive set
     *
     * @return bool True if we have reached End Of File
     */
    protected function isEOF($local = false)
    {
        $eof = @feof($this->fp);

        if (! $eof) {
            // Border case: right at the part's end (eeeek!!!). For the life of me, I don't understand why
            // feof() doesn't report true. It expects the fp to be positioned *beyond* the EOF to report
            // true. Incredible! :(
            $position = @ftell($this->fp);
            $filesize = @filesize($this->archiveList[$this->currentPartNumber]);
            if ($filesize <= 0) {
                // 2Gb or more files on a 32 bit version of PHP tend to get screwed up. Meh.
                $eof = false;
            } elseif ($position >= $filesize) {
                $eof = true;
            }
        }

        if ($local) {
            return $eof;
        } else {
            return $eof && ($this->currentPartNumber >= (count($this->archiveList) - 1));
        }
    }

    /**
     * Tries to make a directory user-writable so that we can write a file to it.
     *
     * @param string $path A path to a file
     */
    protected function setCorrectPermissions($path)
    {
        static $rootDir = null;

        if (is_null($rootDir)) {
            $rootDir = rtrim(AKFactory::get('kickstart.setup.destdir', ''), '/\\');
        }

        $directory = rtrim(dirname($path), '/\\');
        if ($directory != $rootDir) {
            // Is this an unwritable directory?
            if (! is_writeable($directory)) {
                $this->postProcEngine->chmod($directory, 0755);
            }
        }
        $this->postProcEngine->chmod($path, 0644);
    }

    /**
     * Reads data from the archive and notifies the observer with the 'reading' message.
     */
    protected function fread($fp, $length = null)
    {
        if (is_numeric($length)) {
            if ($length > 0) {
                $data = fread($fp, $length);
            } else {
                $data = fread($fp, PHP_INT_MAX);
            }
        } else {
            $data = fread($fp, PHP_INT_MAX);
        }
        if (false === $data) {
            $data = '';
        }

        // Send start of file notification
        $message                  = new stdClass();
        $message->type            = 'reading';
        $message->content         = new stdClass();
        $message->content->length = strlen($data);
        $this->notify($message);

        return $data;
    }
}

/**
 * Akeeba Restore A JSON-powered JPA, JPS and ZIP archive extraction library.
 *
 * @copyright   2010-2014 Nicholas K. Dionysopoulos / Akeeba Ltd.
 * @license     GNU GPL v2 or - at your option - any later version
 */

/**
 * File post processor engines base class.
 */
abstract class AKAbstractPostproc extends AKAbstractObject
{
    /**
     * @var int The UNIX timestamp of the file's desired modification date
     */
    public $timestamp = 0;

    /**
     * @var string The current (real) file path we'll have to process
     */
    protected $filename = null;

    /**
     * @var int The requested permissions
     */
    protected $perms = 0755;

    /**
     * @var string The temporary file path we gave to the unarchiver engine
     */
    protected $tempFilename = null;

    /**
     * Processes the current file, e.g. moves it from temp to final location by FTP.
     */
    abstract public function process();

    /**
     * The unarchiver tells us the path to the filename it wants to extract and we give it a different path instead.
     *
     * @param string $filename The path to the real file
     * @param int    $perms    The permissions we need the file to have
     *
     * @return string The path to the temporary file
     */
    abstract public function processFilename($filename, $perms = 0755);

    /**
     * Recursively creates a directory if it doesn't exist.
     *
     * @param string $dirName The directory to create
     * @param int    $perms   The permissions to give to that directory
     */
    abstract public function createDirRecursive($dirName, $perms);

    abstract public function chmod($file, $perms);

    abstract public function unlink($file);

    abstract public function rmdir($directory);

    abstract public function rename($from, $to);
}

/**
 * Akeeba Restore A JSON-powered JPA, JPS and ZIP archive extraction library.
 *
 * @copyright   2010-2014 Nicholas K. Dionysopoulos / Akeeba Ltd.
 * @license     GNU GPL v2 or - at your option - any later version
 */

/**
 * Descendants of this class can be used in the unarchiver's observer methods (attach, detach and notify).
 *
 * @author Nicholas
 */
abstract class AKAbstractPartObserver
{
    abstract public function update($object, $message);
}

/**
 * Akeeba Restore A JSON-powered JPA, JPS and ZIP archive extraction library.
 *
 * @copyright   2010-2014 Nicholas K. Dionysopoulos / Akeeba Ltd.
 * @license     GNU GPL v2 or - at your option - any later version
 */

/**
 * Direct file writer.
 */
class AKPostprocDirect extends AKAbstractPostproc
{
    public function process()
    {
        $restorePerms = AKFactory::get('kickstart.setup.restoreperms', false);
        if ($restorePerms) {
            @chmod($this->filename, $this->perms);
        } else {
            if (@is_file($this->filename)) {
                @chmod($this->filename, 0644);
            } else {
                @chmod($this->filename, 0755);
            }
        }
        if ($this->timestamp > 0) {
            @touch($this->filename, $this->timestamp);
        }

        return true;
    }

    public function processFilename($filename, $perms = 0755)
    {
        $this->perms    = $perms;
        $this->filename = $filename;

        return $filename;
    }

    public function createDirRecursive($dirName, $perms)
    {
        if (AKFactory::get('kickstart.setup.dryrun', '0')) {
            return true;
        }
        if (@mkdir($dirName, 0755, true)) {
            @chmod($dirName, 0755);

            return true;
        }

        $root = AKFactory::get('kickstart.setup.destdir');
        $root = rtrim(str_replace('\\', '/', $root), '/');
        $dir  = rtrim(str_replace('\\', '/', $dirName), '/');
        if (0 === strpos($dir, $root)) {
            $dir = ltrim(substr($dir, strlen($root)), '/');
            $root .= '/';
        } else {
            $root = '';
        }

        if (empty($dir)) {
            return true;
        }

        $dirArray = explode('/', $dir);
        $path     = '';
        foreach ($dirArray as $dir) {
            $path .= $dir . '/';
            $ret = is_dir($root . $path) ? true : @mkdir($root . $path);
            if (! $ret) {
                // Is this a file instead of a directory?
                if (is_file($root . $path)) {
                    @unlink($root . $path);
                    $ret = @mkdir($root . $path);
                }
                if (! $ret) {
                    $this->setError(AKText::sprintf('COULDNT_CREATE_DIR', $path));

                    return false;
                }
            }
            // Try to set new directory permissions to 0755
            @chmod($root . $path, $perms);
        }

        return true;
    }

    public function chmod($file, $perms)
    {
        if (AKFactory::get('kickstart.setup.dryrun', '0')) {
            return true;
        }

        return @chmod($file, $perms);
    }

    public function unlink($file)
    {
        return @unlink($file);
    }

    public function rmdir($directory)
    {
        return @rmdir($directory);
    }

    public function rename($from, $to)
    {
        return @rename($from, $to);
    }
}

/**
 * Akeeba Restore A JSON-powered JPA, JPS and ZIP archive extraction library.
 *
 * @copyright   2010-2014 Nicholas K. Dionysopoulos / Akeeba Ltd.
 * @license     GNU GPL v2 or - at your option - any later version
 */

/**
 * FTP file writer.
 */
class AKPostprocFTP extends AKAbstractPostproc
{
    /**
     * @var bool Should I use FTP over implicit SSL?
     */
    public $useSSL = false;

    /**
     * @var bool use Passive mode?
     */
    public $passive = true;

    /**
     * @var string FTP host name
     */
    public $host = '';

    /**
     * @var int FTP port
     */
    public $port = 21;

    /**
     * @var string FTP user name
     */
    public $user = '';

    /**
     * @var string FTP password
     */
    public $pass = '';

    /**
     * @var string FTP initial directory
     */
    public $dir = '';

    /**
     * @var resource The FTP handle
     */
    private $handle = null;

    /**
     * @var string The temporary directory where the data will be stored
     */
    private $tempDir = '';

    public function __construct()
    {
        parent::__construct();

        $this->useSSL  = AKFactory::get('kickstart.ftp.ssl', false);
        $this->passive = AKFactory::get('kickstart.ftp.passive', true);
        $this->host    = AKFactory::get('kickstart.ftp.host', '');
        $this->port    = AKFactory::get('kickstart.ftp.port', 21);
        if ('' == trim($this->port)) {
            $this->port = 21;
        }
        $this->user    = AKFactory::get('kickstart.ftp.user', '');
        $this->pass    = AKFactory::get('kickstart.ftp.pass', '');
        $this->dir     = AKFactory::get('kickstart.ftp.dir', '');
        $this->tempDir = AKFactory::get('kickstart.ftp.tempdir', '');

        $connected = $this->connect();

        if ($connected) {
            if (! empty($this->tempDir)) {
                $tempDir  = rtrim($this->tempDir, '/\\') . '/';
                $writable = $this->isDirWritable($tempDir);
            } else {
                $tempDir  = '';
                $writable = false;
            }

            if (! $writable) {
                // Default temporary directory is the current root
                $tempDir = KSROOTDIR;
                if (empty($tempDir)) {
                    // Oh, we have no directory reported!
                    $tempDir = '.';
                }
                $absoluteDirToHere = $tempDir;
                $tempDir           = rtrim(str_replace('\\', '/', $tempDir), '/');
                if (! empty($tempDir)) {
                    $tempDir .= '/';
                }
                $this->tempDir = $tempDir;
                // Is this directory writable?
                $writable = $this->isDirWritable($tempDir);
            }

            if (! $writable) {
                // Nope. Let's try creating a temporary directory in the site's root.
                $tempDir = $absoluteDirToHere . '/kicktemp';
                $this->createDirRecursive($tempDir, 0777);
                // Try making it writable...
                $this->fixPermissions($tempDir);
                $writable = $this->isDirWritable($tempDir);
            }

            // Was the new directory writable?
            if (! $writable) {
                // Let's see if the user has specified one
                $userdir = AKFactory::get('kickstart.ftp.tempdir', '');
                if (! empty($userdir)) {
                    // Is it an absolute or a relative directory?
                    $absolute = false;
                    $absolute = $absolute || ('/' == substr($userdir, 0, 1));
                    $absolute = $absolute || (':' == substr($userdir, 1, 1));
                    $absolute = $absolute || (':' == substr($userdir, 2, 1));
                    if (! $absolute) {
                        // Make absolute
                        $tempDir = $absoluteDirToHere . $userdir;
                    } else {
                        // it's already absolute
                        $tempDir = $userdir;
                    }
                    // Does the directory exist?
                    if (is_dir($tempDir)) {
                        // Yeah. Is it writable?
                        $writable = $this->isDirWritable($tempDir);
                    }
                }
            }
            $this->tempDir = $tempDir;

            if (! $writable) {
                // No writable directory found!!!
                $this->setError(AKText::_('FTP_TEMPDIR_NOT_WRITABLE'));
            } else {
                AKFactory::set('kickstart.ftp.tempdir', $tempDir);
                $this->tempDir = $tempDir;
            }
        }
    }

    public function connect()
    {
        // Connect to server, using SSL if so required
        if ($this->useSSL) {
            $this->handle = @ftp_ssl_connect($this->host, $this->port);
        } else {
            $this->handle = @ftp_connect($this->host, $this->port);
        }
        if (false === $this->handle) {
            $this->setError(AKText::_('WRONG_FTP_HOST'));

            return false;
        }

        // Login
        if (! @ftp_login($this->handle, $this->user, $this->pass)) {
            $this->setError(AKText::_('WRONG_FTP_USER'));
            @ftp_close($this->handle);

            return false;
        }

        // Change to initial directory
        if (! @ftp_chdir($this->handle, $this->dir)) {
            $this->setError(AKText::_('WRONG_FTP_PATH1'));
            @ftp_close($this->handle);

            return false;
        }

        // Enable passive mode if the user requested it
        if ($this->passive) {
            @ftp_pasv($this->handle, true);
        } else {
            @ftp_pasv($this->handle, false);
        }

        // Try to download ourselves
        $testFilename = defined('KSSELFNAME') ? KSSELFNAME : basename(__FILE__);
        $tempHandle   = fopen('php://temp', 'r+');
        if (false === @ftp_fget($this->handle, $tempHandle, $testFilename, FTP_ASCII, 0)) {
            $this->setError(AKText::_('WRONG_FTP_PATH2'));
            @ftp_close($this->handle);
            fclose($tempHandle);

            return false;
        }
        fclose($tempHandle);

        return true;
    }

    private function isDirWritable($dir)
    {
        $fp = @fopen($dir . '/kickstart.dat', 'wb');
        if (false === $fp) {
            return false;
        } else {
            @fclose($fp);
            unlink($dir . '/kickstart.dat');

            return true;
        }
    }

    public function createDirRecursive($dirName, $perms)
    {
        // Strip absolute filesystem path to website's root
        $removePath = AKFactory::get('kickstart.setup.destdir', '');
        if (! empty($removePath)) {
            // UNIXize the paths
            $removePath = str_replace('\\', '/', $removePath);
            $dirName    = str_replace('\\', '/', $dirName);
            // Make sure they both end in a slash
            $removePath = rtrim($removePath, '/\\') . '/';
            $dirName    = rtrim($dirName, '/\\') . '/';
            // Process the path removal
            $left = substr($dirName, 0, strlen($removePath));
            if ($left == $removePath) {
                $dirName = substr($dirName, strlen($removePath));
            }
        }
        if (empty($dirName)) {
            $dirName = '';
        } // 'cause the substr() above may return FALSE.

        $check = '/' . trim($this->dir, '/') . '/' . trim($dirName, '/');
        if ($this->is_dir($check)) {
            return true;
        }

        $alldirs     = explode('/', $dirName);
        $previousDir = '/' . trim($this->dir);
        foreach ($alldirs as $curdir) {
            $check = $previousDir . '/' . $curdir;
            if (! $this->is_dir($check)) {
                // Proactively try to delete a file by the same name
                @ftp_delete($this->handle, $check);

                if (false === @ftp_mkdir($this->handle, $check)) {
                    // If we couldn't create the directory, attempt to fix the permissions in the PHP level and retry!
                    $this->fixPermissions($removePath . $check);
                    if (false === @ftp_mkdir($this->handle, $check)) {
                        // Can we fall back to pure PHP mode, sire?
                        if (! @mkdir($check)) {
                            $this->setError(AKText::sprintf('FTP_CANT_CREATE_DIR', $check));

                            return false;
                        } else {
                            // Since the directory was built by PHP, change its permissions
                            @chmod($check, '0777');

                            return true;
                        }
                    }
                }
                @ftp_chmod($this->handle, $perms, $check);
            }
            $previousDir = $check;
        }

        return true;
    }

    private function is_dir($dir)
    {
        return @ftp_chdir($this->handle, $dir);
    }

    private function fixPermissions($path)
    {
        // Turn off error reporting
        if (! defined('KSDEBUG')) {
            $oldErrorReporting = @error_reporting(E_NONE);
        }

        // Get UNIX style paths
        $relPath  = str_replace('\\', '/', $path);
        $basePath = rtrim(str_replace('\\', '/', KSROOTDIR), '/');
        $basePath = rtrim($basePath, '/');
        if (! empty($basePath)) {
            $basePath .= '/';
        }
        // Remove the leading relative root
        if (substr($relPath, 0, strlen($basePath)) == $basePath) {
            $relPath = substr($relPath, strlen($basePath));
        }
        $dirArray  = explode('/', $relPath);
        $pathBuilt = rtrim($basePath, '/');
        foreach ($dirArray as $dir) {
            if (empty($dir)) {
                continue;
            }
            $oldPath = $pathBuilt;
            $pathBuilt .= '/' . $dir;
            if (is_dir($oldPath . $dir)) {
                @chmod($oldPath . $dir, 0777);
            } else {
                if (false === @chmod($oldPath . $dir, 0777)) {
                    @unlink($oldPath . $dir);
                }
            }
        }

        // Restore error reporting
        if (! defined('KSDEBUG')) {
            @error_reporting($oldErrorReporting);
        }
    }

    public function __wakeup()
    {
        $this->connect();
    }

    public function process()
    {
        if (is_null($this->tempFilename)) {
            // If an empty filename is passed, it means that we shouldn't do any post processing, i.e.
            // the entity was a directory or symlink
            return true;
        }

        $remotePath = dirname($this->filename);
        $removePath = AKFactory::get('kickstart.setup.destdir', '');
        if (! empty($removePath)) {
            $removePath = ltrim($removePath, '/');
            $remotePath = ltrim($remotePath, '/');
            $left       = substr($remotePath, 0, strlen($removePath));
            if ($left == $removePath) {
                $remotePath = substr($remotePath, strlen($removePath));
            }
        }

        $absoluteFSPath  = dirname($this->filename);
        $relativeFTPPath = trim($remotePath, '/');
        $absoluteFTPPath = '/' . trim($this->dir, '/') . '/' . trim($remotePath, '/');
        $onlyFilename    = basename($this->filename);

        $remoteName = $absoluteFTPPath . '/' . $onlyFilename;

        $ret = @ftp_chdir($this->handle, $absoluteFTPPath);
        if (false === $ret) {
            $ret = $this->createDirRecursive($absoluteFSPath, 0755);
            if (false === $ret) {
                $this->setError(AKText::sprintf('FTP_COULDNT_UPLOAD', $this->filename));

                return false;
            }
            $ret = @ftp_chdir($this->handle, $absoluteFTPPath);
            if (false === $ret) {
                $this->setError(AKText::sprintf('FTP_COULDNT_UPLOAD', $this->filename));

                return false;
            }
        }

        $ret = @ftp_put($this->handle, $remoteName, $this->tempFilename, FTP_BINARY);
        if (false === $ret) {
            // If we couldn't create the file, attempt to fix the permissions in the PHP level and retry!
            $this->fixPermissions($this->filename);
            $this->unlink($this->filename);

            $fp = @fopen($this->tempFilename, 'rb');
            if (false !== $fp) {
                $ret = @ftp_fput($this->handle, $remoteName, $fp, FTP_BINARY);
                @fclose($fp);
            } else {
                $ret = false;
            }
        }
        @unlink($this->tempFilename);

        if (false === $ret) {
            $this->setError(AKText::sprintf('FTP_COULDNT_UPLOAD', $this->filename));

            return false;
        }
        $restorePerms = AKFactory::get('kickstart.setup.restoreperms', false);
        if ($restorePerms) {
            @ftp_chmod($this->_handle, $this->perms, $remoteName);
        } else {
            @ftp_chmod($this->_handle, 0644, $remoteName);
        }

        return true;
    }

    /*
     * Tries to fix directory/file permissions in the PHP level, so that
     * the FTP operation doesn't fail.
     * @param string $file The full path to a directory or file
     */

    public function unlink($file)
    {
        $removePath = AKFactory::get('kickstart.setup.destdir', '');
        if (! empty($removePath)) {
            $left = substr($file, 0, strlen($removePath));
            if ($left == $removePath) {
                $file = substr($file, strlen($removePath));
            }
        }

        $check = '/' . trim($this->dir, '/') . '/' . trim($file, '/');

        return @ftp_delete($this->handle, $check);
    }

    public function processFilename($filename, $perms = 0755)
    {
        // Catch some error conditions...
        if ($this->getError()) {
            return false;
        }

        // If a null filename is passed, it means that we shouldn't do any post processing, i.e.
        // the entity was a directory or symlink
        if (is_null($filename)) {
            $this->filename     = null;
            $this->tempFilename = null;

            return;
        }

        // Strip absolute filesystem path to website's root
        $removePath = AKFactory::get('kickstart.setup.destdir', '');
        if (! empty($removePath)) {
            $left = substr($filename, 0, strlen($removePath));
            if ($left == $removePath) {
                $filename = substr($filename, strlen($removePath));
            }
        }

        // Trim slash on the left
        $filename = ltrim($filename, '/');

        $this->filename     = $filename;
        $this->tempFilename = tempnam($this->tempDir, 'kickstart-');
        $this->perms        = $perms;

        if (empty($this->tempFilename)) {
            // Oops! Let's try something different
            $this->tempFilename = $this->tempDir . '/kickstart-' . time() . '.dat';
        }

        return $this->tempFilename;
    }

    public function close()
    {
        @ftp_close($this->handle);
    }

    public function chmod($file, $perms)
    {
        return @ftp_chmod($this->handle, $perms, $file);
    }

    public function rmdir($directory)
    {
        $removePath = AKFactory::get('kickstart.setup.destdir', '');
        if (! empty($removePath)) {
            $left = substr($directory, 0, strlen($removePath));
            if ($left == $removePath) {
                $directory = substr($directory, strlen($removePath));
            }
        }

        $check = '/' . trim($this->dir, '/') . '/' . trim($directory, '/');

        return @ftp_rmdir($this->handle, $check);
    }

    public function rename($from, $to)
    {
        $originalFrom = $from;
        $originalTo   = $to;

        $removePath = AKFactory::get('kickstart.setup.destdir', '');
        if (! empty($removePath)) {
            $left = substr($from, 0, strlen($removePath));
            if ($left == $removePath) {
                $from = substr($from, strlen($removePath));
            }
        }
        $from = '/' . trim($this->dir, '/') . '/' . trim($from, '/');

        if (! empty($removePath)) {
            $left = substr($to, 0, strlen($removePath));
            if ($left == $removePath) {
                $to = substr($to, strlen($removePath));
            }
        }
        $to = '/' . trim($this->dir, '/') . '/' . trim($to, '/');

        $result = @ftp_rename($this->handle, $from, $to);
        if (true !== $result) {
            return @rename($from, $to);
        } else {
            return true;
        }
    }
}

/**
 * Akeeba Restore A JSON-powered JPA, JPS and ZIP archive extraction library.
 *
 * @copyright   2010-2014 Nicholas K. Dionysopoulos / Akeeba Ltd.
 * @license     GNU GPL v2 or - at your option - any later version
 */

/**
 * FTP file writer.
 */
class AKPostprocSFTP extends AKAbstractPostproc
{
    /**
     * @var bool Should I use FTP over implicit SSL?
     */
    public $useSSL = false;

    /**
     * @var bool use Passive mode?
     */
    public $passive = true;

    /**
     * @var string FTP host name
     */
    public $host = '';

    /**
     * @var int FTP port
     */
    public $port = 21;

    /**
     * @var string FTP user name
     */
    public $user = '';

    /**
     * @var string FTP password
     */
    public $pass = '';

    /**
     * @var string FTP initial directory
     */
    public $dir = '';

    /**
     * @var resource SFTP resource handle
     */
    private $handle = null;

    /**
     * @var resource SSH2 connection resource handle
     */
    private $_connection = null;

    /**
     * @var string Current remote directory, including the remote directory string
     */
    private $_currentdir;

    /**
     * @var string The temporary directory where the data will be stored
     */
    private $tempDir = '';

    public function __construct()
    {
        parent::__construct();

        $this->host = AKFactory::get('kickstart.ftp.host', '');
        $this->port = AKFactory::get('kickstart.ftp.port', 22);

        if ('' == trim($this->port)) {
            $this->port = 22;
        }

        $this->user    = AKFactory::get('kickstart.ftp.user', '');
        $this->pass    = AKFactory::get('kickstart.ftp.pass', '');
        $this->dir     = AKFactory::get('kickstart.ftp.dir', '');
        $this->tempDir = AKFactory::get('kickstart.ftp.tempdir', '');

        $connected = $this->connect();

        if ($connected) {
            if (! empty($this->tempDir)) {
                $tempDir  = rtrim($this->tempDir, '/\\') . '/';
                $writable = $this->isDirWritable($tempDir);
            } else {
                $tempDir  = '';
                $writable = false;
            }

            if (! $writable) {
                // Default temporary directory is the current root
                $tempDir = KSROOTDIR;
                if (empty($tempDir)) {
                    // Oh, we have no directory reported!
                    $tempDir = '.';
                }
                $absoluteDirToHere = $tempDir;
                $tempDir           = rtrim(str_replace('\\', '/', $tempDir), '/');
                if (! empty($tempDir)) {
                    $tempDir .= '/';
                }
                $this->tempDir = $tempDir;
                // Is this directory writable?
                $writable = $this->isDirWritable($tempDir);
            }

            if (! $writable) {
                // Nope. Let's try creating a temporary directory in the site's root.
                $tempDir = $absoluteDirToHere . '/kicktemp';
                $this->createDirRecursive($tempDir, 0777);
                // Try making it writable...
                $this->fixPermissions($tempDir);
                $writable = $this->isDirWritable($tempDir);
            }

            // Was the new directory writable?
            if (! $writable) {
                // Let's see if the user has specified one
                $userdir = AKFactory::get('kickstart.ftp.tempdir', '');
                if (! empty($userdir)) {
                    // Is it an absolute or a relative directory?
                    $absolute = false;
                    $absolute = $absolute || ('/' == substr($userdir, 0, 1));
                    $absolute = $absolute || (':' == substr($userdir, 1, 1));
                    $absolute = $absolute || (':' == substr($userdir, 2, 1));
                    if (! $absolute) {
                        // Make absolute
                        $tempDir = $absoluteDirToHere . $userdir;
                    } else {
                        // it's already absolute
                        $tempDir = $userdir;
                    }
                    // Does the directory exist?
                    if (is_dir($tempDir)) {
                        // Yeah. Is it writable?
                        $writable = $this->isDirWritable($tempDir);
                    }
                }
            }
            $this->tempDir = $tempDir;

            if (! $writable) {
                // No writable directory found!!!
                $this->setError(AKText::_('SFTP_TEMPDIR_NOT_WRITABLE'));
            } else {
                AKFactory::set('kickstart.ftp.tempdir', $tempDir);
                $this->tempDir = $tempDir;
            }
        }
    }

    public function connect()
    {
        $this->_connection = false;

        if (! function_exists('ssh2_connect')) {
            $this->setError(AKText::_('SFTP_NO_SSH2'));

            return false;
        }

        $this->_connection = @ssh2_connect($this->host, $this->port);

        if (! @ssh2_auth_password($this->_connection, $this->user, $this->pass)) {
            $this->setError(AKText::_('SFTP_WRONG_USER'));

            $this->_connection = false;

            return false;
        }

        $this->handle = @ssh2_sftp($this->_connection);

        // I must have an absolute directory
        if (! $this->dir) {
            $this->setError(AKText::_('SFTP_WRONG_STARTING_DIR'));

            return false;
        }

        // Change to initial directory
        if (! $this->sftp_chdir('/')) {
            $this->setError(AKText::_('SFTP_WRONG_STARTING_DIR'));

            unset($this->_connection);
            unset($this->handle);

            return false;
        }

        // Try to download ourselves
        $testFilename = defined('KSSELFNAME') ? KSSELFNAME : basename(__FILE__);
        $basePath     = '/' . trim($this->dir, '/');

        if (false === @fopen("ssh2.sftp://{$this->handle}$basePath/$testFilename", 'r+')) {
            $this->setError(AKText::_('SFTP_WRONG_STARTING_DIR'));

            unset($this->_connection);
            unset($this->handle);

            return false;
        }

        return true;
    }

    /**
     * Changes to the requested directory in the remote server. You give only the path relative to the initial directory
     * and it does all the rest by itself, including doing nothing if the remote directory is the one we want.
     *
     * @param string $dir The (realtive) remote directory
     *
     * @return bool true if successful, false otherwise
     */
    private function sftp_chdir($dir)
    {
        // Strip absolute filesystem path to website's root
        $removePath = AKFactory::get('kickstart.setup.destdir', '');
        if (! empty($removePath)) {
            // UNIXize the paths
            $removePath = str_replace('\\', '/', $removePath);
            $dir        = str_replace('\\', '/', $dir);

            // Make sure they both end in a slash
            $removePath = rtrim($removePath, '/\\') . '/';
            $dir        = rtrim($dir, '/\\') . '/';

            // Process the path removal
            $left = substr($dir, 0, strlen($removePath));

            if ($left == $removePath) {
                $dir = substr($dir, strlen($removePath));
            }
        }

        if (empty($dir)) {
            // Because the substr() above may return FALSE.
            $dir = '';
        }

        // Calculate "real" (absolute) SFTP path
        $realdir = '/' == substr($this->dir, -1) ? substr($this->dir, 0, strlen($this->dir) - 1) : $this->dir;
        $realdir .= '/' . $dir;
        $realdir = '/' == substr($realdir, 0, 1) ? $realdir : '/' . $realdir;

        if ($this->_currentdir == $realdir) {
            // Already there, do nothing
            return true;
        }

        $result = @ssh2_sftp_stat($this->handle, $realdir);

        if (false === $result) {
            return false;
        } else {
            // Update the private "current remote directory" variable
            $this->_currentdir = $realdir;

            return true;
        }
    }

    private function isDirWritable($dir)
    {
        if (false === @fopen("ssh2.sftp://{$this->handle}$dir/kickstart.dat", 'wb')) {
            return false;
        } else {
            @ssh2_sftp_unlink($this->handle, $dir . '/kickstart.dat');

            return true;
        }
    }

    public function createDirRecursive($dirName, $perms)
    {
        // Strip absolute filesystem path to website's root
        $removePath = AKFactory::get('kickstart.setup.destdir', '');
        if (! empty($removePath)) {
            // UNIXize the paths
            $removePath = str_replace('\\', '/', $removePath);
            $dirName    = str_replace('\\', '/', $dirName);
            // Make sure they both end in a slash
            $removePath = rtrim($removePath, '/\\') . '/';
            $dirName    = rtrim($dirName, '/\\') . '/';
            // Process the path removal
            $left = substr($dirName, 0, strlen($removePath));
            if ($left == $removePath) {
                $dirName = substr($dirName, strlen($removePath));
            }
        }
        if (empty($dirName)) {
            $dirName = '';
        } // 'cause the substr() above may return FALSE.

        $check = '/' . trim($this->dir, '/ ') . '/' . trim($dirName, '/');

        if ($this->is_dir($check)) {
            return true;
        }

        $alldirs     = explode('/', $dirName);
        $previousDir = '/' . trim($this->dir, '/ ');

        foreach ($alldirs as $curdir) {
            if (! $curdir) {
                continue;
            }

            $check = $previousDir . '/' . $curdir;

            if (! $this->is_dir($check)) {
                // Proactively try to delete a file by the same name
                @ssh2_sftp_unlink($this->handle, $check);

                if (false === @ssh2_sftp_mkdir($this->handle, $check)) {
                    // If we couldn't create the directory, attempt to fix the permissions in the PHP level and retry!
                    $this->fixPermissions($check);

                    if (false === @ssh2_sftp_mkdir($this->handle, $check)) {
                        // Can we fall back to pure PHP mode, sire?
                        if (! @mkdir($check)) {
                            $this->setError(AKText::sprintf('FTP_CANT_CREATE_DIR', $check));

                            return false;
                        } else {
                            // Since the directory was built by PHP, change its permissions
                            @chmod($check, '0777');

                            return true;
                        }
                    }
                }

                @ssh2_sftp_chmod($this->handle, $check, $perms);
            }

            $previousDir = $check;
        }

        return true;
    }

    private function is_dir($dir)
    {
        return $this->sftp_chdir($dir);
    }

    private function fixPermissions($path)
    {
        // Turn off error reporting
        if (! defined('KSDEBUG')) {
            $oldErrorReporting = @error_reporting(E_NONE);
        }

        // Get UNIX style paths
        $relPath  = str_replace('\\', '/', $path);
        $basePath = rtrim(str_replace('\\', '/', KSROOTDIR), '/');
        $basePath = rtrim($basePath, '/');

        if (! empty($basePath)) {
            $basePath .= '/';
        }

        // Remove the leading relative root
        if (substr($relPath, 0, strlen($basePath)) == $basePath) {
            $relPath = substr($relPath, strlen($basePath));
        }

        $dirArray  = explode('/', $relPath);
        $pathBuilt = rtrim($basePath, '/');

        foreach ($dirArray as $dir) {
            if (empty($dir)) {
                continue;
            }

            $oldPath = $pathBuilt;
            $pathBuilt .= '/' . $dir;

            if (is_dir($oldPath . '/' . $dir)) {
                @chmod($oldPath . '/' . $dir, 0777);
            } else {
                if (false === @chmod($oldPath . '/' . $dir, 0777)) {
                    @unlink($oldPath . $dir);
                }
            }
        }

        // Restore error reporting
        if (! defined('KSDEBUG')) {
            @error_reporting($oldErrorReporting);
        }
    }

    public function __wakeup()
    {
        $this->connect();
    }

    /*
     * Tries to fix directory/file permissions in the PHP level, so that
     * the FTP operation doesn't fail.
     * @param string $path The full path to a directory or file
     */

    public function process()
    {
        if (is_null($this->tempFilename)) {
            // If an empty filename is passed, it means that we shouldn't do any post processing, i.e.
            // the entity was a directory or symlink
            return true;
        }

        $remotePath      = dirname($this->filename);
        $absoluteFSPath  = dirname($this->filename);
        $absoluteFTPPath = '/' . trim($this->dir, '/') . '/' . trim($remotePath, '/');
        $onlyFilename    = basename($this->filename);

        $remoteName = $absoluteFTPPath . '/' . $onlyFilename;

        $ret = $this->sftp_chdir($absoluteFTPPath);

        if (false === $ret) {
            $ret = $this->createDirRecursive($absoluteFSPath, 0755);

            if (false === $ret) {
                $this->setError(AKText::sprintf('SFTP_COULDNT_UPLOAD', $this->filename));

                return false;
            }

            $ret = $this->sftp_chdir($absoluteFTPPath);

            if (false === $ret) {
                $this->setError(AKText::sprintf('SFTP_COULDNT_UPLOAD', $this->filename));

                return false;
            }
        }

        // Create the file
        $ret = $this->write($this->tempFilename, $remoteName);

        // If I got a -1 it means that I wasn't able to open the file, so I have to stop here
        if (-1 === $ret) {
            $this->setError(AKText::sprintf('SFTP_COULDNT_UPLOAD', $this->filename));

            return false;
        }

        if (false === $ret) {
            // If we couldn't create the file, attempt to fix the permissions in the PHP level and retry!
            $this->fixPermissions($this->filename);
            $this->unlink($this->filename);

            $ret = $this->write($this->tempFilename, $remoteName);
        }

        @unlink($this->tempFilename);

        if (false === $ret) {
            $this->setError(AKText::sprintf('SFTP_COULDNT_UPLOAD', $this->filename));

            return false;
        }
        $restorePerms = AKFactory::get('kickstart.setup.restoreperms', false);

        if ($restorePerms) {
            $this->chmod($remoteName, $this->perms);
        } else {
            $this->chmod($remoteName, 0644);
        }

        return true;
    }

    private function write($local, $remote)
    {
        $fp      = @fopen("ssh2.sftp://{$this->handle}$remote", 'w');
        $localfp = @fopen($local, 'rb');

        if (false === $fp) {
            return -1;
        }

        if (false === $localfp) {
            @fclose($fp);

            return -1;
        }

        $res = true;

        while (! feof($localfp) && (false !== $res)) {
            $buffer = @fread($localfp, 65567);
            $res    = @fwrite($fp, $buffer);
        }

        @fclose($fp);
        @fclose($localfp);

        return $res;
    }

    public function unlink($file)
    {
        $check = '/' . trim($this->dir, '/') . '/' . trim($file, '/');

        return @ssh2_sftp_unlink($this->handle, $check);
    }

    public function chmod($file, $perms)
    {
        return @ssh2_sftp_chmod($this->handle, $file, $perms);
    }

    public function processFilename($filename, $perms = 0755)
    {
        // Catch some error conditions...
        if ($this->getError()) {
            return false;
        }

        // If a null filename is passed, it means that we shouldn't do any post processing, i.e.
        // the entity was a directory or symlink
        if (is_null($filename)) {
            $this->filename     = null;
            $this->tempFilename = null;

            return;
        }

        // Strip absolute filesystem path to website's root
        $removePath = AKFactory::get('kickstart.setup.destdir', '');
        if (! empty($removePath)) {
            $left = substr($filename, 0, strlen($removePath));
            if ($left == $removePath) {
                $filename = substr($filename, strlen($removePath));
            }
        }

        // Trim slash on the left
        $filename = ltrim($filename, '/');

        $this->filename     = $filename;
        $this->tempFilename = tempnam($this->tempDir, 'kickstart-');
        $this->perms        = $perms;

        if (empty($this->tempFilename)) {
            // Oops! Let's try something different
            $this->tempFilename = $this->tempDir . '/kickstart-' . time() . '.dat';
        }

        return $this->tempFilename;
    }

    public function close()
    {
        unset($this->_connection);
        unset($this->handle);
    }

    public function rmdir($directory)
    {
        $check = '/' . trim($this->dir, '/') . '/' . trim($directory, '/');

        return @ssh2_sftp_rmdir($this->handle, $check);
    }

    public function rename($from, $to)
    {
        $from = '/' . trim($this->dir, '/') . '/' . trim($from, '/');
        $to   = '/' . trim($this->dir, '/') . '/' . trim($to, '/');

        $result = @ssh2_sftp_rename($this->handle, $from, $to);

        if (true !== $result) {
            return @rename($from, $to);
        } else {
            return true;
        }
    }
}

/**
 * Akeeba Restore A JSON-powered JPA, JPS and ZIP archive extraction library.
 *
 * @copyright   2010-2014 Nicholas K. Dionysopoulos / Akeeba Ltd.
 * @license     GNU GPL v2 or - at your option - any later version
 */

/**
 * Hybrid direct / FTP mode file writer.
 */
class AKPostprocHybrid extends AKAbstractPostproc
{
    /**
     * @var bool Should I use the FTP layer?
     */
    public $useFTP = false;

    /**
     * @var bool Should I use FTP over implicit SSL?
     */
    public $useSSL = false;

    /**
     * @var bool use Passive mode?
     */
    public $passive = true;

    /**
     * @var string FTP host name
     */
    public $host = '';

    /**
     * @var int FTP port
     */
    public $port = 21;

    /**
     * @var string FTP user name
     */
    public $user = '';

    /**
     * @var string FTP password
     */
    public $pass = '';

    /**
     * @var string FTP initial directory
     */
    public $dir = '';

    /**
     * @var resource The FTP handle
     */
    private $handle = null;

    /**
     * @var string The temporary directory where the data will be stored
     */
    private $tempDir = '';

    /**
     * @var null The FTP connection handle
     */
    private $_handle = null;

    /**
     * Public constructor. Tries to connect to the FTP server.
     */
    public function __construct()
    {
        parent::__construct();

        $this->useFTP  = true;
        $this->useSSL  = AKFactory::get('kickstart.ftp.ssl', false);
        $this->passive = AKFactory::get('kickstart.ftp.passive', true);
        $this->host    = AKFactory::get('kickstart.ftp.host', '');
        $this->port    = AKFactory::get('kickstart.ftp.port', 21);
        $this->user    = AKFactory::get('kickstart.ftp.user', '');
        $this->pass    = AKFactory::get('kickstart.ftp.pass', '');
        $this->dir     = AKFactory::get('kickstart.ftp.dir', '');
        $this->tempDir = AKFactory::get('kickstart.ftp.tempdir', '');

        if ('' == trim($this->port)) {
            $this->port = 21;
        }

        // If FTP is not configured, skip it altogether
        if (empty($this->host) || empty($this->user) || empty($this->pass)) {
            $this->useFTP = false;
        }

        // Try to connect to the FTP server
        $connected = $this->connect();

        // If the connection fails, skip FTP altogether
        if (! $connected) {
            $this->useFTP = false;
        }

        if ($connected) {
            if (! empty($this->tempDir)) {
                $tempDir  = rtrim($this->tempDir, '/\\') . '/';
                $writable = $this->isDirWritable($tempDir);
            } else {
                $tempDir  = '';
                $writable = false;
            }

            if (! $writable) {
                // Default temporary directory is the current root
                $tempDir = KSROOTDIR;
                if (empty($tempDir)) {
                    // Oh, we have no directory reported!
                    $tempDir = '.';
                }
                $absoluteDirToHere = $tempDir;
                $tempDir           = rtrim(str_replace('\\', '/', $tempDir), '/');
                if (! empty($tempDir)) {
                    $tempDir .= '/';
                }
                $this->tempDir = $tempDir;
                // Is this directory writable?
                $writable = $this->isDirWritable($tempDir);
            }

            if (! $writable) {
                // Nope. Let's try creating a temporary directory in the site's root.
                $tempDir = $absoluteDirToHere . '/kicktemp';
                $this->createDirRecursive($tempDir, 0777);
                // Try making it writable...
                $this->fixPermissions($tempDir);
                $writable = $this->isDirWritable($tempDir);
            }

            // Was the new directory writable?
            if (! $writable) {
                // Let's see if the user has specified one
                $userdir = AKFactory::get('kickstart.ftp.tempdir', '');
                if (! empty($userdir)) {
                    // Is it an absolute or a relative directory?
                    $absolute = false;
                    $absolute = $absolute || ('/' == substr($userdir, 0, 1));
                    $absolute = $absolute || (':' == substr($userdir, 1, 1));
                    $absolute = $absolute || (':' == substr($userdir, 2, 1));
                    if (! $absolute) {
                        // Make absolute
                        $tempDir = $absoluteDirToHere . $userdir;
                    } else {
                        // it's already absolute
                        $tempDir = $userdir;
                    }
                    // Does the directory exist?
                    if (is_dir($tempDir)) {
                        // Yeah. Is it writable?
                        $writable = $this->isDirWritable($tempDir);
                    }
                }
            }
            $this->tempDir = $tempDir;

            if (! $writable) {
                // No writable directory found!!!
                $this->setError(AKText::_('FTP_TEMPDIR_NOT_WRITABLE'));
            } else {
                AKFactory::set('kickstart.ftp.tempdir', $tempDir);
                $this->tempDir = $tempDir;
            }
        }
    }

    /**
     * Tries to connect to the FTP server.
     *
     * @return bool
     */
    public function connect()
    {
        if (! $this->useFTP) {
            return false;
        }

        // Connect to server, using SSL if so required
        if ($this->useSSL) {
            $this->handle = @ftp_ssl_connect($this->host, $this->port);
        } else {
            $this->handle = @ftp_connect($this->host, $this->port);
        }
        if (false === $this->handle) {
            $this->setError(AKText::_('WRONG_FTP_HOST'));

            return false;
        }

        // Login
        if (! @ftp_login($this->handle, $this->user, $this->pass)) {
            $this->setError(AKText::_('WRONG_FTP_USER'));
            @ftp_close($this->handle);

            return false;
        }

        // Change to initial directory
        if (! @ftp_chdir($this->handle, $this->dir)) {
            $this->setError(AKText::_('WRONG_FTP_PATH1'));
            @ftp_close($this->handle);

            return false;
        }

        // Enable passive mode if the user requested it
        if ($this->passive) {
            @ftp_pasv($this->handle, true);
        } else {
            @ftp_pasv($this->handle, false);
        }

        // Try to download ourselves
        $testFilename = defined('KSSELFNAME') ? KSSELFNAME : basename(__FILE__);
        $tempHandle   = fopen('php://temp', 'r+');

        if (false === @ftp_fget($this->handle, $tempHandle, $testFilename, FTP_ASCII, 0)) {
            $this->setError(AKText::_('WRONG_FTP_PATH2'));
            @ftp_close($this->handle);
            fclose($tempHandle);

            return false;
        }

        fclose($tempHandle);

        return true;
    }

    /**
     * Is the directory writeable?
     *
     * @param string $dir The directory ti check
     *
     * @return bool
     */
    private function isDirWritable($dir)
    {
        $fp = @fopen($dir . '/kickstart.dat', 'wb');

        if (false === $fp) {
            return false;
        }

        @fclose($fp);
        unlink($dir . '/kickstart.dat');

        return true;
    }

    /**
     * Create a directory, recursively.
     *
     * @param string $dirName The directory to create
     * @param int    $perms   The permissions to give to the directory
     *
     * @return bool
     */
    public function createDirRecursive($dirName, $perms)
    {
        // Strip absolute filesystem path to website's root
        $removePath = AKFactory::get('kickstart.setup.destdir', '');

        if (! empty($removePath)) {
            // UNIXize the paths
            $removePath = str_replace('\\', '/', $removePath);
            $dirName    = str_replace('\\', '/', $dirName);
            // Make sure they both end in a slash
            $removePath = rtrim($removePath, '/\\') . '/';
            $dirName    = rtrim($dirName, '/\\') . '/';
            // Process the path removal
            $left = substr($dirName, 0, strlen($removePath));

            if ($left == $removePath) {
                $dirName = substr($dirName, strlen($removePath));
            }
        }

        // 'cause the substr() above may return FALSE.
        if (empty($dirName)) {
            $dirName = '';
        }

        $check   = '/' . trim($this->dir, '/') . '/' . trim($dirName, '/');
        $checkFS = $removePath . trim($dirName, '/');

        if ($this->is_dir($check)) {
            return true;
        }

        $alldirs       = explode('/', $dirName);
        $previousDir   = '/' . trim($this->dir);
        $previousDirFS = rtrim($removePath, '/\\');

        foreach ($alldirs as $curdir) {
            $check   = $previousDir . '/' . $curdir;
            $checkFS = $previousDirFS . '/' . $curdir;

            if (! is_dir($checkFS) && ! $this->is_dir($check)) {
                // Proactively try to delete a file by the same name
                if (! @unlink($checkFS) && $this->useFTP) {
                    @ftp_delete($this->handle, $check);
                }

                $createdDir = @mkdir($checkFS, 0755);

                if (! $createdDir && $this->useFTP) {
                    $createdDir = @ftp_mkdir($this->handle, $check);
                }

                if (false === $createdDir) {
                    // If we couldn't create the directory, attempt to fix the permissions in the PHP level and retry!
                    $this->fixPermissions($checkFS);

                    $createdDir = @mkdir($checkFS, 0755);
                    if (! $createdDir && $this->useFTP) {
                        $createdDir = @ftp_mkdir($this->handle, $check);
                    }

                    if (false === $createdDir) {
                        $this->setError(AKText::sprintf('FTP_CANT_CREATE_DIR', $check));

                        return false;
                    }
                }

                if (! @chmod($checkFS, $perms) && $this->useFTP) {
                    @ftp_chmod($this->handle, $perms, $check);
                }
            }

            $previousDir   = $check;
            $previousDirFS = $checkFS;
        }

        return true;
    }

    private function is_dir($dir)
    {
        if ($this->useFTP) {
            return @ftp_chdir($this->handle, $dir);
        }

        return false;
    }

    /**
     * Tries to fix directory/file permissions in the PHP level, so that the FTP operation doesn't fail.
     *
     * @param string $path The full path to a directory or file
     */
    private function fixPermissions($path)
    {
        // Turn off error reporting
        if (! defined('KSDEBUG')) {
            $oldErrorReporting = @error_reporting(E_NONE);
        }

        // Get UNIX style paths
        $relPath  = str_replace('\\', '/', $path);
        $basePath = rtrim(str_replace('\\', '/', KSROOTDIR), '/');
        $basePath = rtrim($basePath, '/');

        if (! empty($basePath)) {
            $basePath .= '/';
        }

        // Remove the leading relative root
        if (substr($relPath, 0, strlen($basePath)) == $basePath) {
            $relPath = substr($relPath, strlen($basePath));
        }

        $dirArray  = explode('/', $relPath);
        $pathBuilt = rtrim($basePath, '/');

        foreach ($dirArray as $dir) {
            if (empty($dir)) {
                continue;
            }

            $oldPath = $pathBuilt;
            $pathBuilt .= '/' . $dir;

            if (is_dir($oldPath . $dir)) {
                @chmod($oldPath . $dir, 0777);
            } else {
                if (false === @chmod($oldPath . $dir, 0777)) {
                    @unlink($oldPath . $dir);
                }
            }
        }

        // Restore error reporting
        if (! defined('KSDEBUG')) {
            @error_reporting($oldErrorReporting);
        }
    }

    /**
     * Called after unserialisation, tries to reconnect to FTP.
     */
    public function __wakeup()
    {
        if ($this->useFTP) {
            $this->connect();
        }
    }

    public function __destruct()
    {
        if (! $this->useFTP) {
            @ftp_close($this->handle);
        }
    }

    /**
     * Post-process an extracted file, using FTP or direct file writes to move it.
     *
     * @return bool
     */
    public function process()
    {
        if (is_null($this->tempFilename)) {
            // If an empty filename is passed, it means that we shouldn't do any post processing, i.e.
            // the entity was a directory or symlink
            return true;
        }

        $remotePath = dirname($this->filename);
        $removePath = AKFactory::get('kickstart.setup.destdir', '');
        $root       = rtrim($removePath, '/\\');

        if (! empty($removePath)) {
            $removePath = ltrim($removePath, '/');
            $remotePath = ltrim($remotePath, '/');
            $left       = substr($remotePath, 0, strlen($removePath));

            if ($left == $removePath) {
                $remotePath = substr($remotePath, strlen($removePath));
            }
        }

        $absoluteFSPath  = dirname($this->filename);
        $relativeFTPPath = trim($remotePath, '/');
        $absoluteFTPPath = '/' . trim($this->dir, '/') . '/' . trim($remotePath, '/');
        $onlyFilename    = basename($this->filename);

        $remoteName = $absoluteFTPPath . '/' . $onlyFilename;

        // Does the directory exist?
        if (! is_dir($root . '/' . $absoluteFSPath)) {
            $ret = $this->createDirRecursive($absoluteFSPath, 0755);

            if ((false === $ret) && ($this->useFTP)) {
                $ret = @ftp_chdir($this->handle, $absoluteFTPPath);
            }

            if (false === $ret) {
                $this->setError(AKText::sprintf('FTP_COULDNT_UPLOAD', $this->filename));

                return false;
            }
        }

        if ($this->useFTP) {
            $ret = @ftp_chdir($this->handle, $absoluteFTPPath);
        }

        // Try copying directly
        $ret = @copy($this->tempFilename, $root . '/' . $this->filename);

        if (false === $ret) {
            $this->fixPermissions($this->filename);
            $this->unlink($this->filename);

            $ret = @copy($this->tempFilename, $root . '/' . $this->filename);
        }

        if ($this->useFTP && (false === $ret)) {
            $ret = @ftp_put($this->handle, $remoteName, $this->tempFilename, FTP_BINARY);

            if (false === $ret) {
                // If we couldn't create the file, attempt to fix the permissions in the PHP level and retry!
                $this->fixPermissions($this->filename);
                $this->unlink($this->filename);

                $fp = @fopen($this->tempFilename, 'rb');
                if (false !== $fp) {
                    $ret = @ftp_fput($this->handle, $remoteName, $fp, FTP_BINARY);
                    @fclose($fp);
                } else {
                    $ret = false;
                }
            }
        }

        @unlink($this->tempFilename);

        if (false === $ret) {
            $this->setError(AKText::sprintf('FTP_COULDNT_UPLOAD', $this->filename));

            return false;
        }

        $restorePerms = AKFactory::get('kickstart.setup.restoreperms', false);
        $perms        = $restorePerms ? $this->perms : 0644;

        $ret = @chmod($root . '/' . $this->filename, $perms);

        if ($this->useFTP && (false === $ret)) {
            @ftp_chmod($this->_handle, $perms, $remoteName);
        }

        return true;
    }

    public function unlink($file)
    {
        $ret = @unlink($file);

        if (! $ret && $this->useFTP) {
            $removePath = AKFactory::get('kickstart.setup.destdir', '');
            if (! empty($removePath)) {
                $left = substr($file, 0, strlen($removePath));
                if ($left == $removePath) {
                    $file = substr($file, strlen($removePath));
                }
            }

            $check = '/' . trim($this->dir, '/') . '/' . trim($file, '/');

            $ret = @ftp_delete($this->handle, $check);
        }

        return $ret;
    }

    /**
     * Create a temporary filename.
     *
     * @param string $filename The original filename
     * @param int    $perms    The file permissions
     *
     * @return string
     */
    public function processFilename($filename, $perms = 0755)
    {
        // Catch some error conditions...
        if ($this->getError()) {
            return false;
        }

        // If a null filename is passed, it means that we shouldn't do any post processing, i.e.
        // the entity was a directory or symlink
        if (is_null($filename)) {
            $this->filename     = null;
            $this->tempFilename = null;

            return;
        }

        // Strip absolute filesystem path to website's root
        $removePath = AKFactory::get('kickstart.setup.destdir', '');

        if (! empty($removePath)) {
            $left = substr($filename, 0, strlen($removePath));

            if ($left == $removePath) {
                $filename = substr($filename, strlen($removePath));
            }
        }

        // Trim slash on the left
        $filename = ltrim($filename, '/');

        $this->filename     = $filename;
        $this->tempFilename = tempnam($this->tempDir, 'kickstart-');
        $this->perms        = $perms;

        if (empty($this->tempFilename)) {
            // Oops! Let's try something different
            $this->tempFilename = $this->tempDir . '/kickstart-' . time() . '.dat';
        }

        return $this->tempFilename;
    }

    /**
     * Closes the FTP connection.
     */
    public function close()
    {
        if (! $this->useFTP) {
            @ftp_close($this->handle);
        }
    }

    public function chmod($file, $perms)
    {
        if (AKFactory::get('kickstart.setup.dryrun', '0')) {
            return true;
        }

        $ret = @chmod($file, $perms);

        if (! $ret && $this->useFTP) {
            // Strip absolute filesystem path to website's root
            $removePath = AKFactory::get('kickstart.setup.destdir', '');

            if (! empty($removePath)) {
                $left = substr($file, 0, strlen($removePath));

                if ($left == $removePath) {
                    $file = substr($file, strlen($removePath));
                }
            }

            // Trim slash on the left
            $file = ltrim($file, '/');

            $ret = @ftp_chmod($this->handle, $perms, $file);
        }

        return $ret;
    }

    public function rmdir($directory)
    {
        $ret = @rmdir($directory);

        if (! $ret && $this->useFTP) {
            $removePath = AKFactory::get('kickstart.setup.destdir', '');
            if (! empty($removePath)) {
                $left = substr($directory, 0, strlen($removePath));
                if ($left == $removePath) {
                    $directory = substr($directory, strlen($removePath));
                }
            }

            $check = '/' . trim($this->dir, '/') . '/' . trim($directory, '/');

            $ret = @ftp_rmdir($this->handle, $check);
        }

        return $ret;
    }

    public function rename($from, $to)
    {
        $ret = @rename($from, $to);

        if (! $ret && $this->useFTP) {
            $originalFrom = $from;
            $originalTo   = $to;

            $removePath = AKFactory::get('kickstart.setup.destdir', '');
            if (! empty($removePath)) {
                $left = substr($from, 0, strlen($removePath));
                if ($left == $removePath) {
                    $from = substr($from, strlen($removePath));
                }
            }
            $from = '/' . trim($this->dir, '/') . '/' . trim($from, '/');

            if (! empty($removePath)) {
                $left = substr($to, 0, strlen($removePath));
                if ($left == $removePath) {
                    $to = substr($to, strlen($removePath));
                }
            }
            $to = '/' . trim($this->dir, '/') . '/' . trim($to, '/');

            $ret = @ftp_rename($this->handle, $from, $to);
        }

        return $ret;
    }
}

/**
 * Akeeba Restore A JSON-powered JPA, JPS and ZIP archive extraction library.
 *
 * @copyright   2010-2014 Nicholas K. Dionysopoulos / Akeeba Ltd.
 * @license     GNU GPL v2 or - at your option - any later version
 */

/**
 * JPA archive extraction class.
 */
class AKUnarchiverJPA extends AKAbstractUnarchiver
{
    protected $archiveHeaderData = array();

    protected function readArchiveHeader()
    {
        debugMsg('Preparing to read archive header');
        // Initialize header data array
        $this->archiveHeaderData = new stdClass();

        // Open the first part
        debugMsg('Opening the first part');
        $this->nextFile();

        // Fail for unreadable files
        if (false === $this->fp) {
            debugMsg('Could not open the first part');

            return false;
        }

        // Read the signature
        $sig = fread($this->fp, 3);

        if ('JPA' != $sig) {
            // Not a JPA file
            debugMsg('Invalid archive signature');
            $this->setError(AKText::_('ERR_NOT_A_JPA_FILE'));

            return false;
        }

        // Read and parse header length
        $header_length_array = unpack('v', fread($this->fp, 2));
        $header_length       = $header_length_array[1];

        // Read and parse the known portion of header data (14 bytes)
        $bin_data    = fread($this->fp, 14);
        $header_data = unpack('Cmajor/Cminor/Vcount/Vuncsize/Vcsize', $bin_data);

        // Load any remaining header data (forward compatibility)
        $rest_length = $header_length - 19;
        if ($rest_length > 0) {
            $junk = fread($this->fp, $rest_length);
        } else {
            $junk = '';
        }

        // Temporary array with all the data we read
        $temp = array(
            'signature'        => $sig,
            'length'           => $header_length,
            'major'            => $header_data['major'],
            'minor'            => $header_data['minor'],
            'filecount'        => $header_data['count'],
            'uncompressedsize' => $header_data['uncsize'],
            'compressedsize'   => $header_data['csize'],
            'unknowndata'      => $junk,
        );
        // Array-to-object conversion
        foreach ($temp as $key => $value) {
            $this->archiveHeaderData->{$key} = $value;
        }

        debugMsg('Header data:');
        debugMsg('Length              : ' . $header_length);
        debugMsg('Major               : ' . $header_data['major']);
        debugMsg('Minor               : ' . $header_data['minor']);
        debugMsg('File count          : ' . $header_data['count']);
        debugMsg('Uncompressed size   : ' . $header_data['uncsize']);
        debugMsg('Compressed size	  : ' . $header_data['csize']);

        $this->currentPartOffset = @ftell($this->fp);

        $this->dataReadLength = 0;

        return true;
    }

    /**
     * Concrete classes must use this method to read the file header.
     *
     * @return bool True if reading the file was successful, false if an error occured or we reached end of archive
     */
    protected function readFileHeader()
    {
        // If the current part is over, proceed to the next part please
        if ($this->isEOF(true)) {
            debugMsg('Archive part EOF; moving to next file');
            $this->nextFile();
        }

        debugMsg('Reading file signature');
        // Get and decode Entity Description Block
        $signature = fread($this->fp, 3);

        $this->fileHeader            = new stdClass();
        $this->fileHeader->timestamp = 0;

        // Check signature
        if ('JPF' != $signature) {
            if ($this->isEOF(true)) {
                // This file is finished; make sure it's the last one
                $this->nextFile();
                if (! $this->isEOF(false)) {
                    debugMsg('Invalid file signature before end of archive encountered');
                    $this->setError(AKText::sprintf('INVALID_FILE_HEADER', $this->currentPartNumber, $this->currentPartOffset));

                    return false;
                }

                // We're just finished
                return false;
            } else {
                $screwed = true;
                if (AKFactory::get('kickstart.setup.ignoreerrors', false)) {
                    debugMsg('Invalid file block signature; launching heuristic file block signature scanner');
                    $screwed = ! $this->heuristicFileHeaderLocator();
                    if (! $screwed) {
                        $signature = 'JPF';
                    } else {
                        debugMsg('Heuristics failed. Brace yourself for the imminent crash.');
                    }
                }
                if ($screwed) {
                    debugMsg('Invalid file block signature');
                    // This is not a file block! The archive is corrupt.
                    $this->setError(AKText::sprintf('INVALID_FILE_HEADER', $this->currentPartNumber, $this->currentPartOffset));

                    return false;
                }
            }
        }
        // This a JPA Entity Block. Process the header.

        $isBannedFile = false;

        // Read length of EDB and of the Entity Path Data
        $length_array = unpack('vblocksize/vpathsize', fread($this->fp, 4));
        // Read the path data
        if ($length_array['pathsize'] > 0) {
            $file = fread($this->fp, $length_array['pathsize']);
        } else {
            $file = '';
        }

        // Handle file renaming
        $isRenamed = false;
        if (is_array($this->renameFiles) && (count($this->renameFiles) > 0)) {
            if (array_key_exists($file, $this->renameFiles)) {
                $file      = $this->renameFiles[$file];
                $isRenamed = true;
            }
        }

        // Handle directory renaming
        $isDirRenamed = false;
        if (is_array($this->renameDirs) && (count($this->renameDirs) > 0)) {
            if (array_key_exists(dirname($file), $this->renameDirs)) {
                $file         = rtrim($this->renameDirs[dirname($file)], '/') . '/' . basename($file);
                $isRenamed    = true;
                $isDirRenamed = true;
            }
        }

        // Read and parse the known data portion
        $bin_data    = fread($this->fp, 14);
        $header_data = unpack('Ctype/Ccompression/Vcompsize/Vuncompsize/Vperms', $bin_data);
        // Read any unknown data
        $restBytes = $length_array['blocksize'] - (21 + $length_array['pathsize']);
        if ($restBytes > 0) {
            // Start reading the extra fields
            while ($restBytes >= 4) {
                $extra_header_data = fread($this->fp, 4);
                $extra_header      = unpack('vsignature/vlength', $extra_header_data);
                $restBytes              -= 4;
                $extra_header['length'] -= 4;
                switch ($extra_header['signature']) {
                    case 256:
                        // File modified timestamp
                        if ($extra_header['length'] > 0) {
                            $bindata = fread($this->fp, $extra_header['length']);
                            $restBytes -= $extra_header['length'];
                            $timestamps                  = unpack('Vmodified', substr($bindata, 0, 4));
                            $filectime                   = $timestamps['modified'];
                            $this->fileHeader->timestamp = $filectime;
                        }
                        break;

                    default:
                        // Unknown field
                        if ($extra_header['length'] > 0) {
                            $junk = fread($this->fp, $extra_header['length']);
                            $restBytes -= $extra_header['length'];
                        }
                        break;
                }
            }
            if ($restBytes > 0) {
                $junk = fread($this->fp, $restBytes);
            }
        }

        $compressionType = $header_data['compression'];

        // Populate the return array
        $this->fileHeader->file         = $file;
        $this->fileHeader->compressed   = $header_data['compsize'];
        $this->fileHeader->uncompressed = $header_data['uncompsize'];
        switch ($header_data['type']) {
            case 0:
                $this->fileHeader->type = 'dir';
                break;

            case 1:
                $this->fileHeader->type = 'file';
                break;

            case 2:
                $this->fileHeader->type = 'link';
                break;
        }
        switch ($compressionType) {
            case 0:
                $this->fileHeader->compression = 'none';
                break;
            case 1:
                $this->fileHeader->compression = 'gzip';
                break;
            case 2:
                $this->fileHeader->compression = 'bzip2';
                break;
        }
        $this->fileHeader->permissions = $header_data['perms'];

        // Find hard-coded banned files
        if (('.' == basename($this->fileHeader->file)) || ('..' == basename($this->fileHeader->file))) {
            $isBannedFile = true;
        }

        // Also try to find banned files passed in class configuration
        if ((count($this->skipFiles) > 0) && (! $isRenamed)) {
            if (in_array($this->fileHeader->file, $this->skipFiles)) {
                $isBannedFile = true;
            }
        }

        // If we have a banned file, let's skip it
        if ($isBannedFile) {
            debugMsg('Skipping file ' . $this->fileHeader->file);
            // Advance the file pointer, skipping exactly the size of the compressed data
            $seekleft = $this->fileHeader->compressed;
            while ($seekleft > 0) {
                // Ensure that we can seek past archive part boundaries
                $curSize = @filesize($this->archiveList[$this->currentPartNumber]);
                $curPos  = @ftell($this->fp);
                $canSeek = $curSize - $curPos;
                if ($canSeek > $seekleft) {
                    $canSeek = $seekleft;
                }
                @fseek($this->fp, $canSeek, SEEK_CUR);
                $seekleft -= $canSeek;
                if ($seekleft) {
                    $this->nextFile();
                }
            }

            $this->currentPartOffset = @ftell($this->fp);
            $this->runState          = AK_STATE_DONE;

            return true;
        }

        // Last chance to prepend a path to the filename
        if (! empty($this->addPath) && ! $isDirRenamed) {
            $this->fileHeader->file = $this->addPath . $this->fileHeader->file;
        }

        // Get the translated path name
        $restorePerms = AKFactory::get('kickstart.setup.restoreperms', false);
        if ('file' == $this->fileHeader->type) {
            // Regular file; ask the postproc engine to process its filename
            if ($restorePerms) {
                $this->fileHeader->realFile = $this->postProcEngine->processFilename(
                    $this->fileHeader->file,
                    $this->fileHeader->permissions
                );
            } else {
                $this->fileHeader->realFile = $this->postProcEngine->processFilename($this->fileHeader->file);
            }
        } elseif ('dir' == $this->fileHeader->type) {
            $dir = $this->fileHeader->file;

            // Directory; just create it
            if ($restorePerms) {
                $this->postProcEngine->createDirRecursive($this->fileHeader->file, $this->fileHeader->permissions);
            } else {
                $this->postProcEngine->createDirRecursive($this->fileHeader->file, 0755);
            }
            $this->postProcEngine->processFilename(null);
        } else {
            // Symlink; do not post-process
            $this->postProcEngine->processFilename(null);
        }

        $this->createDirectory();

        // Header is read
        $this->runState = AK_STATE_HEADER;

        $this->dataReadLength = 0;

        return true;
    }

    protected function heuristicFileHeaderLocator()
    {
        $ret     = false;
        $fullEOF = false;

        while (! $ret && ! $fullEOF) {
            $this->currentPartOffset = @ftell($this->fp);
            if ($this->isEOF(true)) {
                $this->nextFile();
            }

            if ($this->isEOF(false)) {
                $fullEOF = true;
                continue;
            }

            // Read 512Kb
            $chunk     = fread($this->fp, 524288);
            $size_read = mb_strlen($chunk, '8bit');
            //$pos = strpos($chunk, 'JPF');
            $pos = mb_strpos($chunk, 'JPF', 0, '8bit');
            if (false !== $pos) {
                // We found it!
                $this->currentPartOffset += $pos + 3;
                @fseek($this->fp, $this->currentPartOffset, SEEK_SET);
                $ret = true;
            } else {
                // Not yet found :(
                $this->currentPartOffset = @ftell($this->fp);
            }
        }

        return $ret;
    }

    /**
     * Creates the directory this file points to.
     */
    protected function createDirectory()
    {
        if (AKFactory::get('kickstart.setup.dryrun', '0')) {
            return true;
        }

        // Do we need to create a directory?
        if (empty($this->fileHeader->realFile)) {
            $this->fileHeader->realFile = $this->fileHeader->file;
        }
        $lastSlash = strrpos($this->fileHeader->realFile, '/');
        $dirName   = substr($this->fileHeader->realFile, 0, $lastSlash);
        $perms     = $this->flagRestorePermissions ? $this->fileHeader->permissions : 0755;
        $ignore    = AKFactory::get('kickstart.setup.ignoreerrors', false) || $this->isIgnoredDirectory($dirName);
        if ((false == $this->postProcEngine->createDirRecursive($dirName, $perms)) && (! $ignore)) {
            $this->setError(AKText::sprintf('COULDNT_CREATE_DIR', $dirName));

            return false;
        } else {
            return true;
        }
    }

    /**
     * Concrete classes must use this method to process file data. It must set $runState to AK_STATE_DATAREAD when it's
     * finished processing the file data.
     *
     * @return bool True if processing the file data was successful, false if an error occured
     */
    protected function processFileData()
    {
        switch ($this->fileHeader->type) {
            case 'dir':
                return $this->processTypeDir();
                break;

            case 'link':
                return $this->processTypeLink();
                break;

            case 'file':
                switch ($this->fileHeader->compression) {
                    case 'none':
                        return $this->processTypeFileUncompressed();
                        break;

                    case 'gzip':
                    case 'bzip2':
                        return $this->processTypeFileCompressedSimple();
                        break;
                }
                break;

            default:
                debugMsg('Unknown file type ' . $this->fileHeader->type);
                break;
        }
    }

    /**
     * Process the file data of a directory entry.
     *
     * @return bool
     */
    private function processTypeDir()
    {
        // Directory entries in the JPA do not have file data, therefore we're done processing the entry
        $this->runState = AK_STATE_DATAREAD;

        return true;
    }

    /**
     * Process the file data of a link entry.
     *
     * @return bool
     */
    private function processTypeLink()
    {
        $readBytes   = 0;
        $toReadBytes = 0;
        $leftBytes   = $this->fileHeader->compressed;
        $data        = '';

        while ($leftBytes > 0) {
            $toReadBytes     = ($leftBytes > $this->chunkSize) ? $this->chunkSize : $leftBytes;
            $mydata          = $this->fread($this->fp, $toReadBytes);
            $reallyReadBytes = akstringlen($mydata);
            $data .= $mydata;
            $leftBytes -= $reallyReadBytes;
            if ($reallyReadBytes < $toReadBytes) {
                // We read less than requested! Why? Did we hit local EOF?
                if ($this->isEOF(true) && ! $this->isEOF(false)) {
                    // Yeap. Let's go to the next file
                    $this->nextFile();
                } else {
                    debugMsg('End of local file before reading all data with no more parts left. The archive is corrupt or truncated.');
                    // Nope. The archive is corrupt
                    $this->setError(AKText::_('ERR_CORRUPT_ARCHIVE'));

                    return false;
                }
            }
        }

        // Try to remove an existing file or directory by the same name
        if (file_exists($this->fileHeader->realFile)) {
            @unlink($this->fileHeader->realFile);
            @rmdir($this->fileHeader->realFile);
        }
        // Remove any trailing slash
        if ('/' == substr($this->fileHeader->realFile, -1)) {
            $this->fileHeader->realFile = substr($this->fileHeader->realFile, 0, -1);
        }
        // Create the symlink - only possible within PHP context. There's no support built in the FTP protocol, so no postproc use is possible here :(
        if (! AKFactory::get('kickstart.setup.dryrun', '0')) {
            @symlink($data, $this->fileHeader->realFile);
        }

        $this->runState = AK_STATE_DATAREAD;

        return true; // No matter if the link was created!
    }

    private function processTypeFileUncompressed()
    {
        // Uncompressed files are being processed in small chunks, to avoid timeouts
        if ((0 == $this->dataReadLength) && ! AKFactory::get('kickstart.setup.dryrun', '0')) {
            // Before processing file data, ensure permissions are adequate
            $this->setCorrectPermissions($this->fileHeader->file);
        }

        // Open the output file
        if (! AKFactory::get('kickstart.setup.dryrun', '0')) {
            $ignore = AKFactory::get('kickstart.setup.ignoreerrors', false) || $this->isIgnoredDirectory($this->fileHeader->file);
            if (0 == $this->dataReadLength) {
                $outfp = @fopen($this->fileHeader->realFile, 'wb');
            } else {
                $outfp = @fopen($this->fileHeader->realFile, 'ab');
            }

            // Can we write to the file?
            if ((false === $outfp) && (! $ignore)) {
                // An error occured
                debugMsg('Could not write to output file');
                $this->setError(AKText::sprintf('COULDNT_WRITE_FILE', $this->fileHeader->realFile));

                return false;
            }
        }

        // Does the file have any data, at all?
        if (0 == $this->fileHeader->compressed) {
            // No file data!
            if (! AKFactory::get('kickstart.setup.dryrun', '0') && is_resource($outfp)) {
                @fclose($outfp);
            }
            $this->runState = AK_STATE_DATAREAD;

            return true;
        }

        // Reference to the global timer
        $timer = AKFactory::getTimer();

        $toReadBytes = 0;
        $leftBytes   = $this->fileHeader->compressed - $this->dataReadLength;

        // Loop while there's data to read and enough time to do it
        while (($leftBytes > 0) && ($timer->getTimeLeft() > 0)) {
            $toReadBytes     = ($leftBytes > $this->chunkSize) ? $this->chunkSize : $leftBytes;
            $data            = $this->fread($this->fp, $toReadBytes);
            $reallyReadBytes = akstringlen($data);
            $leftBytes -= $reallyReadBytes;
            $this->dataReadLength += $reallyReadBytes;
            if ($reallyReadBytes < $toReadBytes) {
                // We read less than requested! Why? Did we hit local EOF?
                if ($this->isEOF(true) && ! $this->isEOF(false)) {
                    // Yeap. Let's go to the next file
                    $this->nextFile();
                } else {
                    // Nope. The archive is corrupt
                    debugMsg('Not enough data in file. The archive is truncated or corrupt.');
                    $this->setError(AKText::_('ERR_CORRUPT_ARCHIVE'));

                    return false;
                }
            }
            if (! AKFactory::get('kickstart.setup.dryrun', '0')) {
                if (is_resource($outfp)) {
                    @fwrite($outfp, $data);
                }
            }
        }

        // Close the file pointer
        if (! AKFactory::get('kickstart.setup.dryrun', '0')) {
            if (is_resource($outfp)) {
                @fclose($outfp);
            }
        }

        // Was this a pre-timeout bail out?
        if ($leftBytes > 0) {
            $this->runState = AK_STATE_DATA;
        } else {
            // Oh! We just finished!
            $this->runState       = AK_STATE_DATAREAD;
            $this->dataReadLength = 0;
        }

        return true;
    }

    private function processTypeFileCompressedSimple()
    {
        if (! AKFactory::get('kickstart.setup.dryrun', '0')) {
            // Before processing file data, ensure permissions are adequate
            $this->setCorrectPermissions($this->fileHeader->file);

            // Open the output file
            $outfp = @fopen($this->fileHeader->realFile, 'wb');

            // Can we write to the file?
            $ignore = AKFactory::get('kickstart.setup.ignoreerrors', false) || $this->isIgnoredDirectory($this->fileHeader->file);
            if ((false === $outfp) && (! $ignore)) {
                // An error occured
                debugMsg('Could not write to output file');
                $this->setError(AKText::sprintf('COULDNT_WRITE_FILE', $this->fileHeader->realFile));

                return false;
            }
        }

        // Does the file have any data, at all?
        if (0 == $this->fileHeader->compressed) {
            // No file data!
            if (! AKFactory::get('kickstart.setup.dryrun', '0')) {
                if (is_resource($outfp)) {
                    @fclose($outfp);
                }
            }
            $this->runState = AK_STATE_DATAREAD;

            return true;
        }

        // Simple compressed files are processed as a whole; we can't do chunk processing
        $zipData = $this->fread($this->fp, $this->fileHeader->compressed);
        while (akstringlen($zipData) < $this->fileHeader->compressed) {
            // End of local file before reading all data, but have more archive parts?
            if ($this->isEOF(true) && ! $this->isEOF(false)) {
                // Yeap. Read from the next file
                $this->nextFile();
                $bytes_left = $this->fileHeader->compressed - akstringlen($zipData);
                $zipData .= $this->fread($this->fp, $bytes_left);
            } else {
                debugMsg('End of local file before reading all data with no more parts left. The archive is corrupt or truncated.');
                $this->setError(AKText::_('ERR_CORRUPT_ARCHIVE'));

                return false;
            }
        }

        if ('gzip' == $this->fileHeader->compression) {
            $unzipData = gzinflate($zipData);
        } elseif ('bzip2' == $this->fileHeader->compression) {
            $unzipData = bzdecompress($zipData);
        }
        unset($zipData);

        // Write to the file.
        if (! AKFactory::get('kickstart.setup.dryrun', '0') && is_resource($outfp)) {
            @fwrite($outfp, $unzipData, $this->fileHeader->uncompressed);
            @fclose($outfp);
        }
        unset($unzipData);

        $this->runState = AK_STATE_DATAREAD;

        return true;
    }
}

/**
 * Akeeba Restore A JSON-powered JPA, JPS and ZIP archive extraction library.
 *
 * @copyright   2010-2014 Nicholas K. Dionysopoulos / Akeeba Ltd.
 * @license     GNU GPL v2 or - at your option - any later version
 */

/**
 * ZIP archive extraction class.
 *
 * Since the file data portion of ZIP and JPA are similarly structured (it's empty for dirs, linked node name for
 * symlinks, dumped binary data for no compressions and dumped gzipped binary data for gzip compression) we just have to
 * subclass AKUnarchiverJPA and change the header reading bits. Reusable code ;)
 */
class AKUnarchiverZIP extends AKUnarchiverJPA
{
    public $expectDataDescriptor = false;

    protected function readArchiveHeader()
    {
        debugMsg('Preparing to read archive header');
        // Initialize header data array
        $this->archiveHeaderData = new stdClass();

        // Open the first part
        debugMsg('Opening the first part');
        $this->nextFile();

        // Fail for unreadable files
        if (false === $this->fp) {
            debugMsg('The first part is not readable');

            return false;
        }

        // Read a possible multipart signature
        $sigBinary  = fread($this->fp, 4);
        $headerData = unpack('Vsig', $sigBinary);

        // Roll back if it's not a multipart archive
        if (0x04034b50 == $headerData['sig']) {
            debugMsg('The archive is not multipart');
            fseek($this->fp, -4, SEEK_CUR);
        } else {
            debugMsg('The archive is multipart');
        }

        $multiPartSigs = array(
            0x08074b50,        // Multi-part ZIP
            0x30304b50,        // Multi-part ZIP (alternate)
            0x04034b50,        // Single file
        );
        if (! in_array($headerData['sig'], $multiPartSigs)) {
            debugMsg('Invalid header signature ' . dechex($headerData['sig']));
            $this->setError(AKText::_('ERR_CORRUPT_ARCHIVE'));

            return false;
        }

        $this->currentPartOffset = @ftell($this->fp);
        debugMsg('Current part offset after reading header: ' . $this->currentPartOffset);

        $this->dataReadLength = 0;

        return true;
    }

    /**
     * Concrete classes must use this method to read the file header.
     *
     * @return bool True if reading the file was successful, false if an error occured or we reached end of archive
     */
    protected function readFileHeader()
    {
        // If the current part is over, proceed to the next part please
        if ($this->isEOF(true)) {
            debugMsg('Opening next archive part');
            $this->nextFile();
        }

        if ($this->expectDataDescriptor) {
            // The last file had bit 3 of the general purpose bit flag set. This means that we have a
            // 12 byte data descriptor we need to skip. To make things worse, there might also be a 4
            // byte optional data descriptor header (0x08074b50).
            $junk = @fread($this->fp, 4);
            $junk = unpack('Vsig', $junk);
            if (0x08074b50 == $junk['sig']) {
                // Yes, there was a signature
                $junk = @fread($this->fp, 12);
                debugMsg('Data descriptor (w/ header) skipped at ' . (ftell($this->fp) - 12));
            } else {
                // No, there was no signature, just read another 8 bytes
                $junk = @fread($this->fp, 8);
                debugMsg('Data descriptor (w/out header) skipped at ' . (ftell($this->fp) - 8));
            }

            // And check for EOF, too
            if ($this->isEOF(true)) {
                debugMsg('EOF before reading header');

                $this->nextFile();
            }
        }

        // Get and decode Local File Header
        $headerBinary = fread($this->fp, 30);
        $headerData   = unpack(
            'Vsig/C2ver/vbitflag/vcompmethod/vlastmodtime/vlastmoddate/Vcrc/Vcompsize/Vuncomp/vfnamelen/veflen',
            $headerBinary
        );

        // Check signature
        if (! (0x04034b50 == $headerData['sig'])) {
            debugMsg('Not a file signature at ' . (ftell($this->fp) - 4));

            // The signature is not the one used for files. Is this a central directory record (i.e. we're done)?
            if (0x02014b50 == $headerData['sig']) {
                debugMsg('EOCD signature at ' . (ftell($this->fp) - 4));
                // End of ZIP file detected. We'll just skip to the end of file...
                while ($this->nextFile()) {
                }
                @fseek($this->fp, 0, SEEK_END); // Go to EOF

                return false;
            } else {
                debugMsg('Invalid signature ' . dechex($headerData['sig']) . ' at ' . ftell($this->fp));
                $this->setError(AKText::_('ERR_CORRUPT_ARCHIVE'));

                return false;
            }
        }

        // If bit 3 of the bitflag is set, expectDataDescriptor is true
        $this->expectDataDescriptor = ($headerData['bitflag'] & 4) == 4;

        $this->fileHeader            = new stdClass();
        $this->fileHeader->timestamp = 0;

        // Read the last modified data and time
        $lastmodtime = $headerData['lastmodtime'];
        $lastmoddate = $headerData['lastmoddate'];

        if ($lastmoddate && $lastmodtime) {
            // ----- Extract time
            $v_hour    = ($lastmodtime & 0xF800) >> 11;
            $v_minute  = ($lastmodtime & 0x07E0) >> 5;
            $v_seconde = ($lastmodtime & 0x001F) * 2;

            // ----- Extract date
            $v_year  = (($lastmoddate & 0xFE00)  >> 9) + 1980;
            $v_month = ($lastmoddate  & 0x01E0)  >> 5;
            $v_day   = $lastmoddate   & 0x001F;

            // ----- Get UNIX date format
            $this->fileHeader->timestamp = @mktime($v_hour, $v_minute, $v_seconde, $v_month, $v_day, $v_year);
        }

        $isBannedFile = false;

        $this->fileHeader->compressed   = $headerData['compsize'];
        $this->fileHeader->uncompressed = $headerData['uncomp'];
        $nameFieldLength                = $headerData['fnamelen'];
        $extraFieldLength               = $headerData['eflen'];

        // Read filename field
        $this->fileHeader->file = fread($this->fp, $nameFieldLength);

        // Handle file renaming
        $isRenamed = false;
        if (is_array($this->renameFiles) && (count($this->renameFiles) > 0)) {
            if (array_key_exists($this->fileHeader->file, $this->renameFiles)) {
                $this->fileHeader->file = $this->renameFiles[$this->fileHeader->file];
                $isRenamed              = true;
            }
        }

        // Handle directory renaming
        $isDirRenamed = false;
        if (is_array($this->renameDirs) && (count($this->renameDirs) > 0)) {
            if (array_key_exists(dirname($this->fileHeader->file), $this->renameDirs)) {
                $file         = rtrim($this->renameDirs[dirname($this->fileHeader->file)], '/') . '/' . basename($this->fileHeader->file);
                $isRenamed    = true;
                $isDirRenamed = true;
            }
        }

        // Read extra field if present
        if ($extraFieldLength > 0) {
            $extrafield = fread($this->fp, $extraFieldLength);
        }

        debugMsg('*' . ftell($this->fp) . ' IS START OF ' . $this->fileHeader->file . ' (' . $this->fileHeader->compressed . ' bytes)');

        // Decide filetype -- Check for directories
        $this->fileHeader->type = 'file';
        if (strrpos($this->fileHeader->file, '/') == strlen($this->fileHeader->file) - 1) {
            $this->fileHeader->type = 'dir';
        }
        // Decide filetype -- Check for symbolic links
        if ((10 == $headerData['ver1']) && (3 == $headerData['ver2'])) {
            $this->fileHeader->type = 'link';
        }

        switch ($headerData['compmethod']) {
            case 0:
                $this->fileHeader->compression = 'none';
                break;
            case 8:
                $this->fileHeader->compression = 'gzip';
                break;
        }

        // Find hard-coded banned files
        if (('.' == basename($this->fileHeader->file)) || ('..' == basename($this->fileHeader->file))) {
            $isBannedFile = true;
        }

        // Also try to find banned files passed in class configuration
        if ((count($this->skipFiles) > 0) && (! $isRenamed)) {
            if (in_array($this->fileHeader->file, $this->skipFiles)) {
                $isBannedFile = true;
            }
        }

        // If we have a banned file, let's skip it
        if ($isBannedFile) {
            // Advance the file pointer, skipping exactly the size of the compressed data
            $seekleft = $this->fileHeader->compressed;
            while ($seekleft > 0) {
                // Ensure that we can seek past archive part boundaries
                $curSize = @filesize($this->archiveList[$this->currentPartNumber]);
                $curPos  = @ftell($this->fp);
                $canSeek = $curSize - $curPos;
                if ($canSeek > $seekleft) {
                    $canSeek = $seekleft;
                }
                @fseek($this->fp, $canSeek, SEEK_CUR);
                $seekleft -= $canSeek;
                if ($seekleft) {
                    $this->nextFile();
                }
            }

            $this->currentPartOffset = @ftell($this->fp);
            $this->runState          = AK_STATE_DONE;

            return true;
        }

        // Last chance to prepend a path to the filename
        if (! empty($this->addPath) && ! $isDirRenamed) {
            $this->fileHeader->file = $this->addPath . $this->fileHeader->file;
        }

        // Get the translated path name
        if ('file' == $this->fileHeader->type) {
            $this->fileHeader->realFile = $this->postProcEngine->processFilename($this->fileHeader->file);
        } elseif ('dir' == $this->fileHeader->type) {
            $this->fileHeader->timestamp = 0;

            $dir = $this->fileHeader->file;

            $this->postProcEngine->createDirRecursive($this->fileHeader->file, 0755);
            $this->postProcEngine->processFilename(null);
        } else {
            // Symlink; do not post-process
            $this->fileHeader->timestamp = 0;
            $this->postProcEngine->processFilename(null);
        }

        $this->createDirectory();

        // Header is read
        $this->runState = AK_STATE_HEADER;

        return true;
    }
}

/**
 * Akeeba Restore A JSON-powered JPA, JPS and ZIP archive extraction library.
 *
 * @copyright   2010-2014 Nicholas K. Dionysopoulos / Akeeba Ltd.
 * @license     GNU GPL v2 or - at your option - any later version
 */

/**
 * JPS archive extraction class.
 */
class AKUnarchiverJPS extends AKUnarchiverJPA
{
    protected $archiveHeaderData = array();

    protected $password = '';

    public function __construct()
    {
        parent::__construct();

        $this->password = AKFactory::get('kickstart.jps.password', '');
    }

    protected function readArchiveHeader()
    {
        // Initialize header data array
        $this->archiveHeaderData = new stdClass();

        // Open the first part
        $this->nextFile();

        // Fail for unreadable files
        if (false === $this->fp) {
            return false;
        }

        // Read the signature
        $sig = fread($this->fp, 3);

        if ('JPS' != $sig) {
            // Not a JPA file
            $this->setError(AKText::_('ERR_NOT_A_JPS_FILE'));

            return false;
        }

        // Read and parse the known portion of header data (5 bytes)
        $bin_data    = fread($this->fp, 5);
        $header_data = unpack('Cmajor/Cminor/cspanned/vextra', $bin_data);

        // Load any remaining header data (forward compatibility)
        $rest_length = $header_data['extra'];
        if ($rest_length > 0) {
            $junk = fread($this->fp, $rest_length);
        } else {
            $junk = '';
        }

        // Temporary array with all the data we read
        $temp = array(
            'signature' => $sig,
            'major'     => $header_data['major'],
            'minor'     => $header_data['minor'],
            'spanned'   => $header_data['spanned'],
        );
        // Array-to-object conversion
        foreach ($temp as $key => $value) {
            $this->archiveHeaderData->{$key} = $value;
        }

        $this->currentPartOffset = @ftell($this->fp);

        $this->dataReadLength = 0;

        return true;
    }

    /**
     * Concrete classes must use this method to read the file header.
     *
     * @return bool True if reading the file was successful, false if an error occured or we reached end of archive
     */
    protected function readFileHeader()
    {
        // If the current part is over, proceed to the next part please
        if ($this->isEOF(true)) {
            $this->nextFile();
        }

        // Get and decode Entity Description Block
        $signature = fread($this->fp, 3);

        // Check for end-of-archive siganture
        if ('JPE' == $signature) {
            $this->setState('postrun');

            return true;
        }

        $this->fileHeader            = new stdClass();
        $this->fileHeader->timestamp = 0;

        // Check signature
        if ('JPF' != $signature) {
            if ($this->isEOF(true)) {
                // This file is finished; make sure it's the last one
                $this->nextFile();
                if (! $this->isEOF(false)) {
                    $this->setError(AKText::sprintf('INVALID_FILE_HEADER', $this->currentPartNumber, $this->currentPartOffset));

                    return false;
                }

                // We're just finished
                return false;
            } else {
                fseek($this->fp, -6, SEEK_CUR);
                $signature = fread($this->fp, 3);
                if ('JPE' == $signature) {
                    return false;
                }

                $this->setError(AKText::sprintf('INVALID_FILE_HEADER', $this->currentPartNumber, $this->currentPartOffset));

                return false;
            }
        }
        // This a JPA Entity Block. Process the header.

        $isBannedFile = false;

        // Read and decrypt the header
        $edbhData = fread($this->fp, 4);
        $edbh     = unpack('vencsize/vdecsize', $edbhData);
        $bin_data = fread($this->fp, $edbh['encsize']);

        // Decrypt and truncate
        $bin_data = AKEncryptionAES::AESDecryptCBC($bin_data, $this->password, 128);
        $bin_data = substr($bin_data, 0, $edbh['decsize']);

        // Read length of EDB and of the Entity Path Data
        $length_array = unpack('vpathsize', substr($bin_data, 0, 2));
        // Read the path data
        $file = substr($bin_data, 2, $length_array['pathsize']);

        // Handle file renaming
        $isRenamed = false;
        if (is_array($this->renameFiles) && (count($this->renameFiles) > 0)) {
            if (array_key_exists($file, $this->renameFiles)) {
                $file      = $this->renameFiles[$file];
                $isRenamed = true;
            }
        }

        // Handle directory renaming
        $isDirRenamed = false;
        if (is_array($this->renameDirs) && (count($this->renameDirs) > 0)) {
            if (array_key_exists(dirname($file), $this->renameDirs)) {
                $file         = rtrim($this->renameDirs[dirname($file)], '/') . '/' . basename($file);
                $isRenamed    = true;
                $isDirRenamed = true;
            }
        }

        // Read and parse the known data portion
        $bin_data    = substr($bin_data, 2 + $length_array['pathsize']);
        $header_data = unpack('Ctype/Ccompression/Vuncompsize/Vperms/Vfilectime', $bin_data);

        $this->fileHeader->timestamp = $header_data['filectime'];
        $compressionType             = $header_data['compression'];

        // Populate the return array
        $this->fileHeader->file         = $file;
        $this->fileHeader->uncompressed = $header_data['uncompsize'];
        switch ($header_data['type']) {
            case 0:
                $this->fileHeader->type = 'dir';
                break;

            case 1:
                $this->fileHeader->type = 'file';
                break;

            case 2:
                $this->fileHeader->type = 'link';
                break;
        }
        switch ($compressionType) {
            case 0:
                $this->fileHeader->compression = 'none';
                break;
            case 1:
                $this->fileHeader->compression = 'gzip';
                break;
            case 2:
                $this->fileHeader->compression = 'bzip2';
                break;
        }
        $this->fileHeader->permissions = $header_data['perms'];

        // Find hard-coded banned files
        if (('.' == basename($this->fileHeader->file)) || ('..' == basename($this->fileHeader->file))) {
            $isBannedFile = true;
        }

        // Also try to find banned files passed in class configuration
        if ((count($this->skipFiles) > 0) && (! $isRenamed)) {
            if (in_array($this->fileHeader->file, $this->skipFiles)) {
                $isBannedFile = true;
            }
        }

        // If we have a banned file, let's skip it
        if ($isBannedFile) {
            $done = false;
            while (! $done) {
                // Read the Data Chunk Block header
                $binMiniHead = fread($this->fp, 8);
                if (in_array(substr($binMiniHead, 0, 3), array('JPF', 'JPE'))) {
                    // Not a Data Chunk Block header, I am done skipping the file
                    @fseek($this->fp, -8, SEEK_CUR); // Roll back the file pointer
                    $done = true; // Mark as done
                    continue; // Exit loop
                } else {
                    // Skip forward by the amount of compressed data
                    $miniHead = unpack('Vencsize/Vdecsize', $binMiniHead);
                    @fseek($this->fp, $miniHead['encsize'], SEEK_CUR);
                }
            }

            $this->currentPartOffset = @ftell($this->fp);
            $this->runState          = AK_STATE_DONE;

            return true;
        }

        // Last chance to prepend a path to the filename
        if (! empty($this->addPath) && ! $isDirRenamed) {
            $this->fileHeader->file = $this->addPath . $this->fileHeader->file;
        }

        // Get the translated path name
        $restorePerms = AKFactory::get('kickstart.setup.restoreperms', false);
        if ('file' == $this->fileHeader->type) {
            // Regular file; ask the postproc engine to process its filename
            if ($restorePerms) {
                $this->fileHeader->realFile = $this->postProcEngine->processFilename(
                    $this->fileHeader->file,
                    $this->fileHeader->permissions
                );
            } else {
                $this->fileHeader->realFile = $this->postProcEngine->processFilename($this->fileHeader->file);
            }
        } elseif ('dir' == $this->fileHeader->type) {
            $dir                        = $this->fileHeader->file;
            $this->fileHeader->realFile = $dir;

            // Directory; just create it
            if ($restorePerms) {
                $this->postProcEngine->createDirRecursive($this->fileHeader->file, $this->fileHeader->permissions);
            } else {
                $this->postProcEngine->createDirRecursive($this->fileHeader->file, 0755);
            }
            $this->postProcEngine->processFilename(null);
        } else {
            // Symlink; do not post-process
            $this->postProcEngine->processFilename(null);
        }

        $this->createDirectory();

        // Header is read
        $this->runState = AK_STATE_HEADER;

        $this->dataReadLength = 0;

        return true;
    }

    /**
     * Creates the directory this file points to.
     */
    protected function createDirectory()
    {
        if (AKFactory::get('kickstart.setup.dryrun', '0')) {
            return true;
        }

        // Do we need to create a directory?
        $lastSlash = strrpos($this->fileHeader->realFile, '/');
        $dirName   = substr($this->fileHeader->realFile, 0, $lastSlash);
        $perms     = $this->flagRestorePermissions ? $retArray['permissions'] : 0755;
        $ignore    = AKFactory::get('kickstart.setup.ignoreerrors', false) || $this->isIgnoredDirectory($dirName);
        if ((false == $this->postProcEngine->createDirRecursive($dirName, $perms)) && (! $ignore)) {
            $this->setError(AKText::sprintf('COULDNT_CREATE_DIR', $dirName));

            return false;
        } else {
            return true;
        }
    }

    /**
     * Concrete classes must use this method to process file data. It must set $runState to AK_STATE_DATAREAD when it's
     * finished processing the file data.
     *
     * @return bool True if processing the file data was successful, false if an error occured
     */
    protected function processFileData()
    {
        switch ($this->fileHeader->type) {
            case 'dir':
                return $this->processTypeDir();
                break;

            case 'link':
                return $this->processTypeLink();
                break;

            case 'file':
                switch ($this->fileHeader->compression) {
                    case 'none':
                        return $this->processTypeFileUncompressed();
                        break;

                    case 'gzip':
                    case 'bzip2':
                        return $this->processTypeFileCompressedSimple();
                        break;
                }
                break;
        }
    }

    /**
     * Process the file data of a directory entry.
     *
     * @return bool
     */
    private function processTypeDir()
    {
        // Directory entries in the JPA do not have file data, therefore we're done processing the entry
        $this->runState = AK_STATE_DATAREAD;

        return true;
    }

    /**
     * Process the file data of a link entry.
     *
     * @return bool
     */
    private function processTypeLink()
    {
        // Does the file have any data, at all?
        if (0 == $this->fileHeader->uncompressed) {
            // No file data!
            $this->runState = AK_STATE_DATAREAD;

            return true;
        }

        // Read the mini header
        $binMiniHeader   = fread($this->fp, 8);
        $reallyReadBytes = akstringlen($binMiniHeader);
        if ($reallyReadBytes < 8) {
            // We read less than requested! Why? Did we hit local EOF?
            if ($this->isEOF(true) && ! $this->isEOF(false)) {
                // Yeap. Let's go to the next file
                $this->nextFile();
                // Retry reading the header
                $binMiniHeader   = fread($this->fp, 8);
                $reallyReadBytes = akstringlen($binMiniHeader);
                // Still not enough data? If so, the archive is corrupt or missing parts.
                if ($reallyReadBytes < 8) {
                    $this->setError(AKText::_('ERR_CORRUPT_ARCHIVE'));

                    return false;
                }
            } else {
                // Nope. The archive is corrupt
                $this->setError(AKText::_('ERR_CORRUPT_ARCHIVE'));

                return false;
            }
        }

        // Read the encrypted data
        $miniHeader      = unpack('Vencsize/Vdecsize', $binMiniHeader);
        $toReadBytes     = $miniHeader['encsize'];
        $data            = $this->fread($this->fp, $toReadBytes);
        $reallyReadBytes = akstringlen($data);
        if ($reallyReadBytes < $toReadBytes) {
            // We read less than requested! Why? Did we hit local EOF?
            if ($this->isEOF(true) && ! $this->isEOF(false)) {
                // Yeap. Let's go to the next file
                $this->nextFile();
                // Read the rest of the data
                $toReadBytes -= $reallyReadBytes;
                $restData        = $this->fread($this->fp, $toReadBytes);
                $reallyReadBytes = akstringlen($data);
                if ($reallyReadBytes < $toReadBytes) {
                    $this->setError(AKText::_('ERR_CORRUPT_ARCHIVE'));

                    return false;
                }
                $data .= $restData;
            } else {
                // Nope. The archive is corrupt
                $this->setError(AKText::_('ERR_CORRUPT_ARCHIVE'));

                return false;
            }
        }

        // Decrypt the data
        $data = AKEncryptionAES::AESDecryptCBC($data, $this->password, 128);

        // Is the length of the decrypted data less than expected?
        $data_length = akstringlen($data);
        if ($data_length < $miniHeader['decsize']) {
            $this->setError(AKText::_('ERR_INVALID_JPS_PASSWORD'));

            return false;
        }

        // Trim the data
        $data = substr($data, 0, $miniHeader['decsize']);

        // Try to remove an existing file or directory by the same name
        if (file_exists($this->fileHeader->file)) {
            @unlink($this->fileHeader->file);
            @rmdir($this->fileHeader->file);
        }
        // Remove any trailing slash
        if ('/' == substr($this->fileHeader->file, -1)) {
            $this->fileHeader->file = substr($this->fileHeader->file, 0, -1);
        }
        // Create the symlink - only possible within PHP context. There's no support built in the FTP protocol, so no postproc use is possible here :(

        if (! AKFactory::get('kickstart.setup.dryrun', '0')) {
            @symlink($data, $this->fileHeader->file);
        }

        $this->runState = AK_STATE_DATAREAD;

        return true; // No matter if the link was created!
    }

    private function processTypeFileUncompressed()
    {
        // Uncompressed files are being processed in small chunks, to avoid timeouts
        if ((0 == $this->dataReadLength) && ! AKFactory::get('kickstart.setup.dryrun', '0')) {
            // Before processing file data, ensure permissions are adequate
            $this->setCorrectPermissions($this->fileHeader->file);
        }

        // Open the output file
        if (! AKFactory::get('kickstart.setup.dryrun', '0')) {
            $ignore = AKFactory::get('kickstart.setup.ignoreerrors', false) || $this->isIgnoredDirectory($this->fileHeader->file);
            if (0 == $this->dataReadLength) {
                $outfp = @fopen($this->fileHeader->realFile, 'wb');
            } else {
                $outfp = @fopen($this->fileHeader->realFile, 'ab');
            }

            // Can we write to the file?
            if ((false === $outfp) && (! $ignore)) {
                // An error occured
                $this->setError(AKText::sprintf('COULDNT_WRITE_FILE', $this->fileHeader->realFile));

                return false;
            }
        }

        // Does the file have any data, at all?
        if (0 == $this->fileHeader->uncompressed) {
            // No file data!
            if (! AKFactory::get('kickstart.setup.dryrun', '0') && is_resource($outfp)) {
                @fclose($outfp);
            }
            $this->runState = AK_STATE_DATAREAD;

            return true;
        } else {
            $this->setError('An uncompressed file was detected; this is not supported by this archive extraction utility');

            return false;
        }

        return true;
    }

    private function processTypeFileCompressedSimple()
    {
        $timer = AKFactory::getTimer();

        // Files are being processed in small chunks, to avoid timeouts
        if ((0 == $this->dataReadLength) && ! AKFactory::get('kickstart.setup.dryrun', '0')) {
            // Before processing file data, ensure permissions are adequate
            $this->setCorrectPermissions($this->fileHeader->file);
        }

        // Open the output file
        if (! AKFactory::get('kickstart.setup.dryrun', '0')) {
            // Open the output file
            $outfp = @fopen($this->fileHeader->realFile, 'wb');

            // Can we write to the file?
            $ignore = AKFactory::get('kickstart.setup.ignoreerrors', false) || $this->isIgnoredDirectory($this->fileHeader->file);
            if ((false === $outfp) && (! $ignore)) {
                // An error occured
                $this->setError(AKText::sprintf('COULDNT_WRITE_FILE', $this->fileHeader->realFile));

                return false;
            }
        }

        // Does the file have any data, at all?
        if (0 == $this->fileHeader->uncompressed) {
            // No file data!
            if (! AKFactory::get('kickstart.setup.dryrun', '0')) {
                if (is_resource($outfp)) {
                    @fclose($outfp);
                }
            }
            $this->runState = AK_STATE_DATAREAD;

            return true;
        }

        $leftBytes = $this->fileHeader->uncompressed - $this->dataReadLength;

        // Loop while there's data to write and enough time to do it
        while (($leftBytes > 0) && ($timer->getTimeLeft() > 0)) {
            // Read the mini header
            $binMiniHeader   = fread($this->fp, 8);
            $reallyReadBytes = akstringlen($binMiniHeader);
            if ($reallyReadBytes < 8) {
                // We read less than requested! Why? Did we hit local EOF?
                if ($this->isEOF(true) && ! $this->isEOF(false)) {
                    // Yeap. Let's go to the next file
                    $this->nextFile();
                    // Retry reading the header
                    $binMiniHeader   = fread($this->fp, 8);
                    $reallyReadBytes = akstringlen($binMiniHeader);
                    // Still not enough data? If so, the archive is corrupt or missing parts.
                    if ($reallyReadBytes < 8) {
                        $this->setError(AKText::_('ERR_CORRUPT_ARCHIVE'));

                        return false;
                    }
                } else {
                    // Nope. The archive is corrupt
                    $this->setError(AKText::_('ERR_CORRUPT_ARCHIVE'));

                    return false;
                }
            }

            // Read the encrypted data
            $miniHeader      = unpack('Vencsize/Vdecsize', $binMiniHeader);
            $toReadBytes     = $miniHeader['encsize'];
            $data            = $this->fread($this->fp, $toReadBytes);
            $reallyReadBytes = akstringlen($data);
            if ($reallyReadBytes < $toReadBytes) {
                // We read less than requested! Why? Did we hit local EOF?
                if ($this->isEOF(true) && ! $this->isEOF(false)) {
                    // Yeap. Let's go to the next file
                    $this->nextFile();
                    // Read the rest of the data
                    $toReadBytes -= $reallyReadBytes;
                    $restData        = $this->fread($this->fp, $toReadBytes);
                    $reallyReadBytes = akstringlen($restData);
                    if ($reallyReadBytes < $toReadBytes) {
                        $this->setError(AKText::_('ERR_CORRUPT_ARCHIVE'));

                        return false;
                    }
                    if (0 == akstringlen($data)) {
                        $data = $restData;
                    } else {
                        $data .= $restData;
                    }
                } else {
                    // Nope. The archive is corrupt
                    $this->setError(AKText::_('ERR_CORRUPT_ARCHIVE'));

                    return false;
                }
            }

            // Decrypt the data
            $data = AKEncryptionAES::AESDecryptCBC($data, $this->password, 128);

            // Is the length of the decrypted data less than expected?
            $data_length = akstringlen($data);
            if ($data_length < $miniHeader['decsize']) {
                $this->setError(AKText::_('ERR_INVALID_JPS_PASSWORD'));

                return false;
            }

            // Trim the data
            $data = substr($data, 0, $miniHeader['decsize']);

            // Decompress
            $data    = gzinflate($data);
            $unc_len = akstringlen($data);

            // Write the decrypted data
            if (! AKFactory::get('kickstart.setup.dryrun', '0')) {
                if (is_resource($outfp)) {
                    @fwrite($outfp, $data, akstringlen($data));
                }
            }

            // Update the read length
            $this->dataReadLength += $unc_len;
            $leftBytes = $this->fileHeader->uncompressed - $this->dataReadLength;
        }

        // Close the file pointer
        if (! AKFactory::get('kickstart.setup.dryrun', '0')) {
            if (is_resource($outfp)) {
                @fclose($outfp);
            }
        }

        // Was this a pre-timeout bail out?
        if ($leftBytes > 0) {
            $this->runState = AK_STATE_DATA;
        } else {
            // Oh! We just finished!
            $this->runState       = AK_STATE_DATAREAD;
            $this->dataReadLength = 0;
        }

        return true;
    }
}

/**
 * Akeeba Restore A JSON-powered JPA, JPS and ZIP archive extraction library.
 *
 * @copyright   2010-2014 Nicholas K. Dionysopoulos / Akeeba Ltd.
 * @license     GNU GPL v2 or - at your option - any later version
 */

/**
 * Timer class.
 */
class AKCoreTimer extends AKAbstractObject
{
    /**
     * @var int Maximum execution time allowance per step
     */
    private $max_exec_time = null;

    /**
     * @var int Timestamp of execution start
     */
    private $start_time = null;

    /**
     * Public constructor, creates the timer object and calculates the execution time limits.
     *
     * @return AECoreTimer
     */
    public function __construct()
    {
        parent::__construct();

        // Initialize start time
        $this->start_time = $this->microtime_float();

        // Get configured max time per step and bias
        $config_max_exec_time = AKFactory::get('kickstart.tuning.max_exec_time', 14);
        $bias                 = AKFactory::get('kickstart.tuning.run_time_bias', 75) / 100;

        // Get PHP's maximum execution time (our upper limit)
        if (@function_exists('ini_get')) {
            $php_max_exec_time = @ini_get('maximum_execution_time');
            if ((! is_numeric($php_max_exec_time)) || (0 == $php_max_exec_time)) {
                // If we have no time limit, set a hard limit of about 10 seconds
                // (safe for Apache and IIS timeouts, verbose enough for users)
                $php_max_exec_time = 14;
            }
        } else {
            // If ini_get is not available, use a rough default
            $php_max_exec_time = 14;
        }

        // Apply an arbitrary correction to counter CMS load time
        --$php_max_exec_time;

        // Apply bias
        $php_max_exec_time    = $php_max_exec_time    * $bias;
        $config_max_exec_time = $config_max_exec_time * $bias;

        // Use the most appropriate time limit value
        if ($config_max_exec_time > $php_max_exec_time) {
            $this->max_exec_time = $php_max_exec_time;
        } else {
            $this->max_exec_time = $config_max_exec_time;
        }
    }

    /**
     * Returns the current timestampt in decimal seconds.
     */
    private function microtime_float()
    {
        list($usec, $sec) = explode(' ', microtime());

        return (float) $usec + (float) $sec;
    }

    /**
     * Wake-up function to reset internal timer when we get unserialized.
     */
    public function __wakeup()
    {
        // Re-initialize start time on wake-up
        $this->start_time = $this->microtime_float();
    }

    /**
     * Gets the number of seconds left, before we hit the "must break" threshold.
     *
     * @return float
     */
    public function getTimeLeft()
    {
        return $this->max_exec_time - $this->getRunningTime();
    }

    /**
     * Gets the time elapsed since object creation/unserialization, effectively how long Akeeba Engine has been
     * processing data.
     *
     * @return float
     */
    public function getRunningTime()
    {
        return $this->microtime_float() - $this->start_time;
    }

    /**
     * Enforce the minimum execution time.
     */
    public function enforce_min_exec_time()
    {
        // Try to get a sane value for PHP's maximum_execution_time INI parameter
        if (@function_exists('ini_get')) {
            $php_max_exec = @ini_get('maximum_execution_time');
        } else {
            $php_max_exec = 10;
        }
        if (('' == $php_max_exec) || (0 == $php_max_exec)) {
            $php_max_exec = 10;
        }
        // Decrease $php_max_exec time by 500 msec we need (approx.) to tear down
        // the application, as well as another 500msec added for rounding
        // error purposes. Also make sure this is never gonna be less than 0.
        $php_max_exec = max($php_max_exec * 1000 - 1000, 0);

        // Get the "minimum execution time per step" Akeeba Backup configuration variable
        $minexectime = AKFactory::get('kickstart.tuning.min_exec_time', 0);
        if (! is_numeric($minexectime)) {
            $minexectime = 0;
        }

        // Make sure we are not over PHP's time limit!
        if ($minexectime > $php_max_exec) {
            $minexectime = $php_max_exec;
        }

        // Get current running time
        $elapsed_time = $this->getRunningTime() * 1000;

        // Only run a sleep delay if we haven't reached the minexectime execution time
        if (($minexectime > $elapsed_time) && ($elapsed_time > 0)) {
            $sleep_msec = $minexectime - $elapsed_time;
            if (function_exists('usleep')) {
                usleep(1000 * $sleep_msec);
            } elseif (function_exists('time_nanosleep')) {
                $sleep_sec  = floor($sleep_msec / 1000);
                $sleep_nsec = 1000000 * ($sleep_msec - ($sleep_sec * 1000));
                time_nanosleep($sleep_sec, $sleep_nsec);
            } elseif (function_exists('time_sleep_until')) {
                $until_timestamp = time() + $sleep_msec / 1000;
                time_sleep_until($until_timestamp);
            } elseif (function_exists('sleep')) {
                $sleep_sec = ceil($sleep_msec / 1000);
                sleep($sleep_sec);
            }
        } elseif ($elapsed_time > 0) {
            // No sleep required, even if user configured us to be able to do so.
        }
    }

    /**
     * Reset the timer. It should only be used in CLI mode!
     */
    public function resetTime()
    {
        $this->start_time = $this->microtime_float();
    }
}

/**
 * Akeeba Restore A JSON-powered JPA, JPS and ZIP archive extraction library.
 *
 * @copyright   2010-2014 Nicholas K. Dionysopoulos / Akeeba Ltd.
 * @license     GNU GPL v2 or - at your option - any later version
 */

/**
 * A filesystem scanner which uses opendir().
 */
class AKUtilsLister extends AKAbstractObject
{
    public function &getFiles($folder, $pattern = '*')
    {
        // Initialize variables
        $arr   = array();
        $false = false;

        if (! is_dir($folder)) {
            return $false;
        }

        $handle = @opendir($folder);
        // If directory is not accessible, just return FALSE
        if (false === $handle) {
            $this->setWarning('Unreadable directory ' . $folder);

            return $false;
        }

        while (false !== ($file = @readdir($handle))) {
            if (! fnmatch($pattern, $file)) {
                continue;
            }

            if (('.' != $file) && ('..' != $file)) {
                $ds    = ('' == $folder) || ('/' == $folder) || ('/' == @substr($folder, -1)) || (DIRECTORY_SEPARATOR == @substr(
                    $folder,
                    -1
                )) ? '' : DIRECTORY_SEPARATOR;
                $dir   = $folder . $ds . $file;
                $isDir = is_dir($dir);
                if (! $isDir) {
                    $arr[] = $dir;
                }
            }
        }
        @closedir($handle);

        return $arr;
    }

    public function &getFolders($folder, $pattern = '*')
    {
        // Initialize variables
        $arr   = array();
        $false = false;

        if (! is_dir($folder)) {
            return $false;
        }

        $handle = @opendir($folder);
        // If directory is not accessible, just return FALSE
        if (false === $handle) {
            $this->setWarning('Unreadable directory ' . $folder);

            return $false;
        }

        while (false !== ($file = @readdir($handle))) {
            if (! fnmatch($pattern, $file)) {
                continue;
            }

            if (('.' != $file) && ('..' != $file)) {
                $ds    = ('' == $folder) || ('/' == $folder) || ('/' == @substr($folder, -1)) || (DIRECTORY_SEPARATOR == @substr(
                    $folder,
                    -1
                )) ? '' : DIRECTORY_SEPARATOR;
                $dir   = $folder . $ds . $file;
                $isDir = is_dir($dir);
                if ($isDir) {
                    $arr[] = $dir;
                }
            }
        }
        @closedir($handle);

        return $arr;
    }
}

/**
 * Akeeba Restore A JSON-powered JPA, JPS and ZIP archive extraction library.
 *
 * @copyright   2010-2014 Nicholas K. Dionysopoulos / Akeeba Ltd.
 * @license     GNU GPL v2 or - at your option - any later version
 */

/**
 * A simple INI-based i18n engine.
 */
class AKText extends AKAbstractObject
{
    /**
     * The default (en_GB) translation used when no other translation is available.
     *
     * @var array
     */
    private $default_translation = array(
        'AUTOMODEON'                     => 'Auto-mode enabled',
        'ERR_NOT_A_JPA_FILE'             => 'The file is not a JPA archive',
        'ERR_CORRUPT_ARCHIVE'            => 'The archive file is corrupt, truncated or archive parts are missing',
        'ERR_INVALID_LOGIN'              => 'Invalid login',
        'COULDNT_CREATE_DIR'             => 'Could not create %s folder',
        'COULDNT_WRITE_FILE'             => 'Could not open %s for writing.',
        'WRONG_FTP_HOST'                 => 'Wrong FTP host or port',
        'WRONG_FTP_USER'                 => 'Wrong FTP username or password',
        'WRONG_FTP_PATH1'                => 'Wrong FTP initial directory - the directory doesn\'t exist',
        'FTP_CANT_CREATE_DIR'            => 'Could not create directory %s',
        'FTP_TEMPDIR_NOT_WRITABLE'       => 'Could not find or create a writable temporary directory',
        'SFTP_TEMPDIR_NOT_WRITABLE'      => 'Could not find or create a writable temporary directory',
        'FTP_COULDNT_UPLOAD'             => 'Could not upload %s',
        'THINGS_HEADER'                  => 'Things you should know about Akeeba Kickstart',
        'THINGS_01'                      => 'Kickstart is not an installer. It is an archive extraction tool. The actual installer was put inside the archive file at backup time.',
        'THINGS_02'                      => 'Kickstart is not the only way to extract the backup archive. You can use Akeeba eXtract Wizard and upload the extracted files using FTP instead.',
        'THINGS_03'                      => 'Kickstart is bound by your server\'s configuration. As such, it may not work at all.',
        'THINGS_04'                      => 'You should download and upload your archive files using FTP in Binary transfer mode. Any other method could lead to a corrupt backup archive and restoration failure.',
        'THINGS_05'                      => 'Post-restoration site load errors are usually caused by .htaccess or php.ini directives. You should understand that blank pages, 404 and 500 errors can usually be worked around by editing the aforementioned files. It is not our job to mess with your configuration files, because this could be dangerous for your site.',
        'THINGS_06'                      => 'Kickstart overwrites files without a warning. If you are not sure that you are OK with that do not continue.',
        'THINGS_07'                      => 'Trying to restore to the temporary URL of a cPanel host (e.g. http://1.2.3.4/~username) will lead to restoration failure and your site will appear to be not working. This is normal and it\'s just how your server and CMS software work.',
        'THINGS_08'                      => 'You are supposed to read the documentation before using this software. Most issues can be avoided, or easily worked around, by understanding how this software works.',
        'THINGS_09'                      => 'This text does not imply that there is a problem detected. It is standard text displayed every time you launch Kickstart.',
        'CLOSE_LIGHTBOX'                 => 'Click here or press ESC to close this message',
        'SELECT_ARCHIVE'                 => 'Select a backup archive',
        'ARCHIVE_FILE'                   => 'Archive file:',
        'SELECT_EXTRACTION'              => 'Select an extraction method',
        'WRITE_TO_FILES'                 => 'Write to files:',
        'WRITE_HYBRID'                   => 'Hybrid (use FTP only if needed)',
        'WRITE_DIRECTLY'                 => 'Directly',
        'WRITE_FTP'                      => 'Use FTP for all files',
        'WRITE_SFTP'                     => 'Use SFTP for all files',
        'FTP_HOST'                       => '(S)FTP host name:',
        'FTP_PORT'                       => '(S)FTP port:',
        'FTP_FTPS'                       => 'Use FTP over SSL (FTPS)',
        'FTP_PASSIVE'                    => 'Use FTP Passive Mode',
        'FTP_USER'                       => '(S)FTP user name:',
        'FTP_PASS'                       => '(S)FTP password:',
        'FTP_DIR'                        => '(S)FTP directory:',
        'FTP_TEMPDIR'                    => 'Temporary directory:',
        'FTP_CONNECTION_OK'              => 'FTP Connection Established',
        'SFTP_CONNECTION_OK'             => 'SFTP Connection Established',
        'FTP_CONNECTION_FAILURE'         => 'The FTP Connection Failed',
        'SFTP_CONNECTION_FAILURE'        => 'The SFTP Connection Failed',
        'FTP_TEMPDIR_WRITABLE'           => 'The temporary directory is writable.',
        'FTP_TEMPDIR_UNWRITABLE'         => 'The temporary directory is not writable. Please check the permissions.',
        'FTPBROWSER_ERROR_HOSTNAME'      => 'Invalid FTP host or port',
        'FTPBROWSER_ERROR_USERPASS'      => 'Invalid FTP username or password',
        'FTPBROWSER_ERROR_NOACCESS'      => "Directory doesn't exist or you don't have enough permissions to access it",
        'FTPBROWSER_ERROR_UNSUPPORTED'   => "Sorry, your FTP server doesn't support our FTP directory browser.",
        'FTPBROWSER_LBL_GOPARENT'        => '&lt;up one level&gt;',
        'FTPBROWSER_LBL_INSTRUCTIONS'    => 'Click on a directory to navigate into it. Click on OK to select that directory, Cancel to abort the procedure.',
        'FTPBROWSER_LBL_ERROR'           => 'An error occurred',
        'SFTP_NO_SSH2'                   => 'Your web server does not have the SSH2 PHP module, therefore can not connect to SFTP servers.',
        'SFTP_NO_FTP_SUPPORT'            => 'Your SSH server does not allow SFTP connections',
        'SFTP_WRONG_USER'                => 'Wrong SFTP username or password',
        'SFTP_WRONG_STARTING_DIR'        => 'You must supply a valid absolute path',
        'SFTPBROWSER_ERROR_NOACCESS'     => "Directory doesn't exist or you don't have enough permissions to access it",
        'SFTP_COULDNT_UPLOAD'            => 'Could not upload %s',
        'SFTP_CANT_CREATE_DIR'           => 'Could not create directory %s',
        'UI-ROOT'                        => '&lt;root&gt;',
        'CONFIG_UI_FTPBROWSER_TITLE'     => 'FTP Directory Browser',
        'FTP_BROWSE'                     => 'Browse',
        'BTN_CHECK'                      => 'Check',
        'BTN_RESET'                      => 'Reset',
        'BTN_TESTFTPCON'                 => 'Test FTP connection',
        'BTN_TESTSFTPCON'                => 'Test SFTP connection',
        'BTN_GOTOSTART'                  => 'Start over',
        'FINE_TUNE'                      => 'Fine tune',
        'MIN_EXEC_TIME'                  => 'Minimum execution time:',
        'MAX_EXEC_TIME'                  => 'Maximum execution time:',
        'SECONDS_PER_STEP'               => 'seconds per step',
        'EXTRACT_FILES'                  => 'Extract files',
        'BTN_START'                      => 'Start',
        'EXTRACTING'                     => 'Extracting',
        'DO_NOT_CLOSE_EXTRACT'           => 'Do not close this window while the extraction is in progress',
        'RESTACLEANUP'                   => 'Restoration and Clean Up',
        'BTN_RUNINSTALLER'               => 'Run the Installer',
        'BTN_CLEANUP'                    => 'Clean Up',
        'BTN_SITEFE'                     => 'Visit your site\'s front-end',
        'BTN_SITEBE'                     => 'Visit your site\'s back-end',
        'WARNINGS'                       => 'Extraction Warnings',
        'ERROR_OCCURED'                  => 'An error occurred',
        'STEALTH_MODE'                   => 'Stealth mode',
        'STEALTH_URL'                    => 'HTML file to show to web visitors',
        'ERR_NOT_A_JPS_FILE'             => 'The file is not a JPA archive',
        'ERR_INVALID_JPS_PASSWORD'       => 'The password you gave is wrong or the archive is corrupt',
        'JPS_PASSWORD'                   => 'Archive Password (for JPS files)',
        'INVALID_FILE_HEADER'            => 'Invalid header in archive file, part %s, offset %s',
        'NEEDSOMEHELPKS'                 => 'Want some help to use this tool? Read this first:',
        'QUICKSTART'                     => 'Quick Start Guide',
        'CANTGETITTOWORK'                => 'Can\'t get it to work? Click me!',
        'NOARCHIVESCLICKHERE'            => 'No archives detected. Click here for troubleshooting instructions.',
        'POSTRESTORATIONTROUBLESHOOTING' => 'Something not working after the restoration? Click here for troubleshooting instructions.',
        'UPDATE_HEADER'                  => 'An updated version of Akeeba Kickstart (<span id="update-version">unknown</span>) is available!',
        'UPDATE_NOTICE'                  => 'You are advised to always use the latest version of Akeeba Kickstart available. Older versions may be subject to bugs and will not be supported.',
        'UPDATE_DLNOW'                   => 'Download now',
        'UPDATE_MOREINFO'                => 'More information',
        'IGNORE_MOST_ERRORS'             => 'Ignore most errors',
        'WRONG_FTP_PATH2'                => 'Wrong FTP initial directory - the directory doesn\'t correspond to your site\'s web root',
        'ARCHIVE_DIRECTORY'              => 'Archive directory:',
        'RELOAD_ARCHIVES'                => 'Reload',
        'CONFIG_UI_SFTPBROWSER_TITLE'    => 'SFTP Directory Browser',
    );

    /**
     * The array holding the translation keys.
     *
     * @var array
     */
    private $strings;

    /**
     * The currently detected language (ISO code).
     *
     * @var string
     */
    private $language;

    /*
     * Initializes the translation engine
     * @return AKText
     */
    public function __construct()
    {
        // Start with the default translation
        $this->strings = $this->default_translation;
        // Try loading the translation file in English, if it exists
        $this->loadTranslation('en-GB');
        // Try loading the translation file in the browser's preferred language, if it exists
        $this->getBrowserLanguage();
        if (! is_null($this->language)) {
            $this->loadTranslation();
        }
    }

    private function loadTranslation($lang = null)
    {
        if (defined('KSLANGDIR')) {
            $dirname = KSLANGDIR;
        } else {
            $dirname = KSROOTDIR;
        }
        $basename = basename(__FILE__, '.php') . '.ini';
        if (empty($lang)) {
            $lang = $this->language;
        }

        $translationFilename = $dirname . DIRECTORY_SEPARATOR . $lang . '.' . $basename;
        if (! @file_exists($translationFilename) && ('kickstart.ini' != $basename)) {
            $basename            = 'kickstart.ini';
            $translationFilename = $dirname . DIRECTORY_SEPARATOR . $lang . '.' . $basename;
        }
        if (! @file_exists($translationFilename)) {
            return;
        }
        $temp = self::parse_ini_file($translationFilename, false);

        if (! is_array($this->strings)) {
            $this->strings = array();
        }
        if (empty($temp)) {
            $this->strings = array_merge($this->default_translation, $this->strings);
        } else {
            $this->strings = array_merge($this->strings, $temp);
        }
    }

    /**
     * A PHP based INI file parser.
     *
     * Thanks to asohn ~at~ aircanopy ~dot~ net for posting this handy function on the parse_ini_file page on
     * http://gr.php.net/parse_ini_file
     *
     * @param string $file             Filename to process
     * @param bool   $process_sections True to also process INI sections
     *
     * @return array An associative array of sections, keys and values
     */
    public static function parse_ini_file($file, $process_sections = false, $raw_data = false)
    {
        $process_sections = (true !== $process_sections) ? false : true;

        if (! $raw_data) {
            $ini = @file($file);
        } else {
            $ini = $file;
        }
        if (0 == count($ini)) {
            return array();
        }

        $sections = array();
        $values   = array();
        $result   = array();
        $globals  = array();
        $i        = 0;
        if (! empty($ini)) {
            foreach ($ini as $line) {
                $line = trim($line);
                $line = str_replace("\t", ' ', $line);

                // Comments
                if (! preg_match('/^[a-zA-Z0-9[]/', $line)) {
                    continue;
                }

                // Sections
                if ('[' == $line[0]) {
                    $tmp        = explode(']', $line);
                    $sections[] = trim(substr($tmp[0], 1));
                    ++$i;
                    continue;
                }

                // Key-value pair
                list($key, $value) = explode('=', $line, 2);
                $key               = trim($key);
                $value             = trim($value);
                if (strstr($value, ';')) {
                    $tmp = explode(';', $value);
                    if (2 == count($tmp)) {
                        if ((('"' != $value[0]) && ("'" != $value[0])) ||
                        preg_match('/^".*"\s*;/', $value)              || preg_match('/^".*;[^"]*$/', $value) ||
                        preg_match("/^'.*'\s*;/", $value)              || preg_match("/^'.*;[^']*$/", $value)
                        ) {
                            $value = $tmp[0];
                        }
                    } else {
                        if ('"' == $value[0]) {
                            $value = preg_replace('/^"(.*)".*/', '$1', $value);
                        } elseif ("'" == $value[0]) {
                            $value = preg_replace("/^'(.*)'.*/", '$1', $value);
                        } else {
                            $value = $tmp[0];
                        }
                    }
                }
                $value = trim($value);
                $value = trim($value, "'\"");

                if (0 == $i) {
                    if ('[]' == substr($line, -1, 2)) {
                        $globals[$key][] = $value;
                    } else {
                        $globals[$key] = $value;
                    }
                } else {
                    if ('[]' == substr($line, -1, 2)) {
                        $values[$i - 1][$key][] = $value;
                    } else {
                        $values[$i - 1][$key] = $value;
                    }
                }
            }
        }

        for ($j = 0; $j < $i; ++$j) {
            if (true === $process_sections) {
                $result[$sections[$j]] = $values[$j];
            } else {
                $result[] = $values[$j];
            }
        }

        return $result + $globals;
    }

    public function getBrowserLanguage()
    {
        // Detection code from Full Operating system language detection, by Harald Hope
        // Retrieved from http://techpatterns.com/downloads/php_language_detection.php
        $user_languages = array();
        //check to see if language is set
        if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
            $languages = strtolower($_SERVER['HTTP_ACCEPT_LANGUAGE']);
            // $languages = ' fr-ch;q=0.3, da, en-us;q=0.8, en;q=0.5, fr;q=0.3';
            // need to remove spaces from strings to avoid error
            $languages = str_replace(' ', '', $languages);
            $languages = explode(',', $languages);

            foreach ($languages as $language_list) {
                // pull out the language, place languages into array of full and primary
                // string structure:
                $temp_array = array();
                // slice out the part before ; on first step, the part before - on second, place into array
                $temp_array[0] = substr($language_list, 0, strcspn($language_list, ';')); //full language
                $temp_array[1] = substr($language_list, 0, 2); // cut out primary language
                if ((5 == strlen($temp_array[0])) && (('-' == substr($temp_array[0], 2, 1)) || ('_' == substr($temp_array[0], 2, 1)))) {
                    $langLocation  = strtoupper(substr($temp_array[0], 3, 2));
                    $temp_array[0] = $temp_array[1] . '-' . $langLocation;
                }
                //place this array into main $user_languages language array
                $user_languages[] = $temp_array;
            }
        } else {// if no languages found
            $user_languages[0] = array('', ''); //return blank array.
        }

        $this->language = null;
        $basename       = basename(__FILE__, '.php') . '.ini';

        // Try to match main language part of the filename, irrespective of the location, e.g. de_DE will do if de_CH doesn't exist.
        if (class_exists('AKUtilsLister')) {
            $fs       = new AKUtilsLister();
            $iniFiles = $fs->getFiles(KSROOTDIR, '*.' . $basename);
            if (empty($iniFiles) && ('kickstart.ini' != $basename)) {
                $basename = 'kickstart.ini';
                $iniFiles = $fs->getFiles(KSROOTDIR, '*.' . $basename);
            }
        } else {
            $iniFiles = null;
        }

        if (is_array($iniFiles)) {
            foreach ($user_languages as $languageStruct) {
                if (is_null($this->language)) {
                    // Get files matching the main lang part
                    $iniFiles = $fs->getFiles(KSROOTDIR, $languageStruct[1] . '-??.' . $basename);
                    if (count($iniFiles) > 0) {
                        $filename       = $iniFiles[0];
                        $filename       = substr($filename, strlen(KSROOTDIR) + 1);
                        $this->language = substr($filename, 0, 5);
                    } else {
                        $this->language = null;
                    }
                }
            }
        }

        if (is_null($this->language)) {
            // Try to find a full language match
            foreach ($user_languages as $languageStruct) {
                if (@file_exists($languageStruct[0] . '.' . $basename) && is_null($this->language)) {
                    $this->language = $languageStruct[0];
                } else {
                }
            }
        } else {
            // Do we have an exact match?
            foreach ($user_languages as $languageStruct) {
                if (substr($this->language, 0, strlen($languageStruct[1])) == $languageStruct[1]) {
                    if (file_exists($languageStruct[0] . '.' . $basename)) {
                        $this->language = $languageStruct[0];
                    }
                }
            }
        }

        // Now, scan for full language based on the partial match
    }

    public static function sprintf($key)
    {
        $text = self::getInstance();
        $args = func_get_args();
        if (count($args) > 0) {
            $args[0] = $text->_($args[0]);

            return @call_user_func_array('sprintf', $args);
        }

        return '';
    }

    /**
     * Singleton pattern for Language.
     *
     * @return AKText The global AKText instance
     */
    public static function &getInstance()
    {
        static $instance;

        if (! is_object($instance)) {
            $instance = new AKText();
        }

        return $instance;
    }

    public static function _($string)
    {
        $text = self::getInstance();

        $key = strtoupper($string);
        $key = '_' == substr($key, 0, 1) ? substr($key, 1) : $key;

        if (isset($text->strings[$key])) {
            $string = $text->strings[$key];
        } else {
            if (defined($string)) {
                $string = constant($string);
            }
        }

        return $string;
    }

    public function dumpLanguage()
    {
        $out = '';
        foreach ($this->strings as $key => $value) {
            $out .= "$key=$value\n";
        }

        return $out;
    }

    public function asJavascript()
    {
        $out = '';
        foreach ($this->strings as $key => $value) {
            $key   = addcslashes($key, '\\\'"');
            $value = addcslashes($value, '\\\'"');
            if (! empty($out)) {
                $out .= ",\n";
            }
            $out .= "'$key':\t'$value'";
        }

        return $out;
    }

    public function resetTranslation()
    {
        $this->strings = $this->default_translation;
    }

    public function addDefaultLanguageStrings($stringList = array())
    {
        if (! is_array($stringList)) {
            return;
        }
        if (empty($stringList)) {
            return;
        }

        $this->strings = array_merge($stringList, $this->strings);
    }
}

/**
 * Akeeba Restore A JSON-powered JPA, JPS and ZIP archive extraction library.
 *
 * @copyright   2010-2014 Nicholas K. Dionysopoulos / Akeeba Ltd.
 * @license     GNU GPL v2 or - at your option - any later version
 */

/**
 * The Akeeba Kickstart Factory class This class is reponssible for instanciating all Akeeba Kicsktart classes.
 */
class AKFactory
{
    /**
     * @var array A list of instanciated objects
     */
    private $objectlist = array();

    /**
     * @var array Simple hash data storage
     */
    private $varlist = array();

    /**
     * Private constructor makes sure we can't directly instanciate the class
     */
    private function __construct()
    {
    }

    /**
     * Gets a serialized snapshot of the Factory for safekeeping (hibernate).
     *
     * @return string The serialized snapshot of the Factory
     */
    public static function serialize()
    {
        $engine = self::getUnarchiver();
        $engine->shutdown();
        $serialized = serialize(self::getInstance());

        if (function_exists('base64_encode') && function_exists('base64_decode')) {
            $serialized = base64_encode($serialized);
        }

        return $serialized;
    }

    /**
     * Gets the unarchiver engine.
     */
    public static function &getUnarchiver($configOverride = null)
    {
        static $class_name;

        if (! empty($configOverride)) {
            if ($configOverride['reset']) {
                $class_name = null;
            }
        }

        if (empty($class_name)) {
            $filetype = self::get('kickstart.setup.filetype', null);

            if (empty($filetype)) {
                $filename      = self::get('kickstart.setup.sourcefile', null);
                $basename      = basename($filename);
                $baseextension = strtoupper(substr($basename, -3));
                switch ($baseextension) {
                    case 'JPA':
                        $filetype = 'JPA';
                        break;

                    case 'JPS':
                        $filetype = 'JPS';
                        break;

                    case 'ZIP':
                        $filetype = 'ZIP';
                        break;

                    default:
                        exit('Invalid archive type or extension in file ' . $filename);
                        break;
                }
            }

            $class_name = 'AKUnarchiver' . ucfirst($filetype);
        }

        $destdir = self::get('kickstart.setup.destdir', null);
        if (empty($destdir)) {
            $destdir = KSROOTDIR;
        }

        $object = self::getClassInstance($class_name);
        if ('init' == $object->getState()) {
            $sourcePath = self::get('kickstart.setup.sourcepath', '');
            $sourceFile = self::get('kickstart.setup.sourcefile', '');

            if (! empty($sourcePath)) {
                $sourceFile = rtrim($sourcePath, '/\\') . '/' . $sourceFile;
            }

            // Initialize the object
            $config = array(
                'filename'            => $sourceFile,
                'restore_permissions' => self::get('kickstart.setup.restoreperms', 0),
                'post_proc'           => self::get('kickstart.procengine', 'direct'),
                'add_path'            => self::get('kickstart.setup.targetpath', $destdir),
                'rename_files'        => array(
                    '.htaccess'                            => 'htaccess.bak',
                    'php.ini'                              => 'php.ini.bak',
                    'web.config'                           => 'web.config.bak',
                ),
                'skip_files'        => array(
                    basename(__FILE__),
                    'kickstart.php',
                    'abiautomation.ini',
                    'htaccess.bak',
                    'php.ini.bak',
                    'cacert.pem',
                ),
                'ignoredirectories' => array('tmp', 'log', 'logs'),

            );

            if (! defined('KICKSTART')) {
                // In restore.php mode we have to exclude some more files
                $config['skip_files'][] = 'administrator/components/com_akeeba/restore.php';
                $config['skip_files'][] = 'administrator/components/com_akeeba/restoration.php';
            }

            if (! empty($configOverride)) {
                foreach ($configOverride as $key => $value) {
                    $config[$key] = $value;
                }
            }

            $object->setup($config);
        }

        return $object;
    }

    // ========================================================================
    // Public factory interface
    // ========================================================================

    public static function get($key, $default = null)
    {
        $self = self::getInstance();
        if (array_key_exists($key, $self->varlist)) {
            return $self->varlist[$key];
        } else {
            return $default;
        }
    }

    /**
     * Gets a single, internally used instance of the Factory.
     *
     * @param string $serialized_data [optional] Serialized data to spawn the instance from
     *
     * @return AKFactory A reference to the unique Factory object instance
     */
    protected static function &getInstance($serialized_data = null)
    {
        static $myInstance;
        if (! is_object($myInstance) || ! is_null($serialized_data)) {
            if (! is_null($serialized_data)) {
                $myInstance = unserialize($serialized_data);
            } else {
                $myInstance = new self();
            }
        }

        return $myInstance;
    }

    /**
     * Internal function which instanciates a class named $class_name. The autoloader.
     *
     * @param object $class_name
     */
    protected static function &getClassInstance($class_name)
    {
        $self = self::getInstance();
        if (! isset($self->objectlist[$class_name])) {
            $self->objectlist[$class_name] = new $class_name();
        }

        return $self->objectlist[$class_name];
    }

    // ========================================================================
    // Public hash data storage interface
    // ========================================================================

    /**
     * Regenerates the full Factory state from a serialized snapshot (resume).
     *
     * @param string $serialized_data The serialized snapshot to resume from
     */
    public static function unserialize($serialized_data)
    {
        if (function_exists('base64_encode') && function_exists('base64_decode')) {
            $serialized_data = base64_decode($serialized_data);
        }
        self::getInstance($serialized_data);
    }

    /**
     * Reset the internal factory state, freeing all previously created objects.
     */
    public static function nuke()
    {
        $self = self::getInstance();
        foreach ($self->objectlist as $key => $object) {
            $self->objectlist[$key] = null;
        }
        $self->objectlist = array();
    }

    // ========================================================================
    // Akeeba Kickstart classes
    // ========================================================================

    public static function set($key, $value)
    {
        $self                = self::getInstance();
        $self->varlist[$key] = $value;
    }

    /**
     * Gets the post processing engine.
     *
     * @param string $proc_engine
     */
    public static function &getPostProc($proc_engine = null)
    {
        static $class_name;
        if (empty($class_name)) {
            if (empty($proc_engine)) {
                $proc_engine = self::get('kickstart.procengine', 'direct');
            }
            $class_name = 'AKPostproc' . ucfirst($proc_engine);
        }

        return self::getClassInstance($class_name);
    }

    /**
     * Get the a reference to the Akeeba Engine's timer.
     *
     * @return AKCoreTimer
     */
    public static function &getTimer()
    {
        return self::getClassInstance('AKCoreTimer');
    }
}

/**
 * Akeeba Restore A JSON-powered JPA, JPS and ZIP archive extraction library.
 *
 * @copyright   2010-2014 Nicholas K. Dionysopoulos / Akeeba Ltd.
 * @license     GNU GPL v2 or - at your option - any later version
 */

/**
 * AES implementation in PHP (c) Chris Veness 2005-2013. Right to use and adapt is granted for under a simple creative
 * commons attribution licence. No warranty of any form is offered.
 *
 * Modified for Akeeba Backup by Nicholas K. Dionysopoulos
 */
class AKEncryptionAES
{
    // Sbox is pre-computed multiplicative inverse in GF(2^8) used in SubBytes and KeyExpansion [�5.1.1]
    protected static $Sbox =
        array(0x63,
            0x7c,
            0x77,
            0x7b,
            0xf2,
            0x6b,
            0x6f,
            0xc5,
            0x30,
            0x01,
            0x67,
            0x2b,
            0xfe,
            0xd7,
            0xab,
            0x76,
            0xca,
            0x82,
            0xc9,
            0x7d,
            0xfa,
            0x59,
            0x47,
            0xf0,
            0xad,
            0xd4,
            0xa2,
            0xaf,
            0x9c,
            0xa4,
            0x72,
            0xc0,
            0xb7,
            0xfd,
            0x93,
            0x26,
            0x36,
            0x3f,
            0xf7,
            0xcc,
            0x34,
            0xa5,
            0xe5,
            0xf1,
            0x71,
            0xd8,
            0x31,
            0x15,
            0x04,
            0xc7,
            0x23,
            0xc3,
            0x18,
            0x96,
            0x05,
            0x9a,
            0x07,
            0x12,
            0x80,
            0xe2,
            0xeb,
            0x27,
            0xb2,
            0x75,
            0x09,
            0x83,
            0x2c,
            0x1a,
            0x1b,
            0x6e,
            0x5a,
            0xa0,
            0x52,
            0x3b,
            0xd6,
            0xb3,
            0x29,
            0xe3,
            0x2f,
            0x84,
            0x53,
            0xd1,
            0x00,
            0xed,
            0x20,
            0xfc,
            0xb1,
            0x5b,
            0x6a,
            0xcb,
            0xbe,
            0x39,
            0x4a,
            0x4c,
            0x58,
            0xcf,
            0xd0,
            0xef,
            0xaa,
            0xfb,
            0x43,
            0x4d,
            0x33,
            0x85,
            0x45,
            0xf9,
            0x02,
            0x7f,
            0x50,
            0x3c,
            0x9f,
            0xa8,
            0x51,
            0xa3,
            0x40,
            0x8f,
            0x92,
            0x9d,
            0x38,
            0xf5,
            0xbc,
            0xb6,
            0xda,
            0x21,
            0x10,
            0xff,
            0xf3,
            0xd2,
            0xcd,
            0x0c,
            0x13,
            0xec,
            0x5f,
            0x97,
            0x44,
            0x17,
            0xc4,
            0xa7,
            0x7e,
            0x3d,
            0x64,
            0x5d,
            0x19,
            0x73,
            0x60,
            0x81,
            0x4f,
            0xdc,
            0x22,
            0x2a,
            0x90,
            0x88,
            0x46,
            0xee,
            0xb8,
            0x14,
            0xde,
            0x5e,
            0x0b,
            0xdb,
            0xe0,
            0x32,
            0x3a,
            0x0a,
            0x49,
            0x06,
            0x24,
            0x5c,
            0xc2,
            0xd3,
            0xac,
            0x62,
            0x91,
            0x95,
            0xe4,
            0x79,
            0xe7,
            0xc8,
            0x37,
            0x6d,
            0x8d,
            0xd5,
            0x4e,
            0xa9,
            0x6c,
            0x56,
            0xf4,
            0xea,
            0x65,
            0x7a,
            0xae,
            0x08,
            0xba,
            0x78,
            0x25,
            0x2e,
            0x1c,
            0xa6,
            0xb4,
            0xc6,
            0xe8,
            0xdd,
            0x74,
            0x1f,
            0x4b,
            0xbd,
            0x8b,
            0x8a,
            0x70,
            0x3e,
            0xb5,
            0x66,
            0x48,
            0x03,
            0xf6,
            0x0e,
            0x61,
            0x35,
            0x57,
            0xb9,
            0x86,
            0xc1,
            0x1d,
            0x9e,
            0xe1,
            0xf8,
            0x98,
            0x11,
            0x69,
            0xd9,
            0x8e,
            0x94,
            0x9b,
            0x1e,
            0x87,
            0xe9,
            0xce,
            0x55,
            0x28,
            0xdf,
            0x8c,
            0xa1,
            0x89,
            0x0d,
            0xbf,
            0xe6,
            0x42,
            0x68,
            0x41,
            0x99,
            0x2d,
            0x0f,
            0xb0,
            0x54,
            0xbb,
            0x16, );

    // Rcon is Round Constant used for the Key Expansion [1st col is 2^(r-1) in GF(2^8)] [�5.2]
    protected static $Rcon = array(
        array(0x00, 0x00, 0x00, 0x00),
        array(0x01, 0x00, 0x00, 0x00),
        array(0x02, 0x00, 0x00, 0x00),
        array(0x04, 0x00, 0x00, 0x00),
        array(0x08, 0x00, 0x00, 0x00),
        array(0x10, 0x00, 0x00, 0x00),
        array(0x20, 0x00, 0x00, 0x00),
        array(0x40, 0x00, 0x00, 0x00),
        array(0x80, 0x00, 0x00, 0x00),
        array(0x1b, 0x00, 0x00, 0x00),
        array(0x36, 0x00, 0x00, 0x00), );

    protected static $passwords = array();

    /**
     * Encrypt a text using AES encryption in Counter mode of operation
     *  - see http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf.
     *
     * Unicode multi-byte character safe
     *
     * @param source $plaintext text to be encrypted
     * @param the  $password password to use to generate a key
     * @param number     $nBits of bits to be used in the key (128, 192, or 256)
     *
     * @return encrypted text
     */
    public static function AESEncryptCtr($plaintext, $password, $nBits)
    {
        $blockSize = 16;  // block size fixed at 16 bytes / 128 bits (Nb=4) for AES
        if (! (128 == $nBits || 192 == $nBits || 256 == $nBits)) {
            return '';
        }  // standard allows 128/192/256 bit keys
        // note PHP (5) gives us plaintext and password in UTF8 encoding!

        // use AES itself to encrypt password to get cipher key (using plain password as source for
        // key expansion) - gives us well encrypted key
        $nBytes  = $nBits / 8;  // no bytes in key
        $pwBytes = array();
        for ($i = 0; $i < $nBytes; ++$i) {
            $pwBytes[$i] = ord(substr($password, $i, 1)) & 0xff;
        }
        $key = self::Cipher($pwBytes, self::KeyExpansion($pwBytes));
        $key = array_merge($key, array_slice($key, 0, $nBytes - 16));  // expand key to 16/24/32 bytes long

        // initialise counter block (NIST SP800-38A �B.2): millisecond time-stamp for nonce in
        // 1st 8 bytes, block counter in 2nd 8 bytes
        $counterBlock = array();
        $nonce        = floor(microtime(true) * 1000);   // timestamp: milliseconds since 1-Jan-1970
        $nonceSec     = floor($nonce / 1000);
        $nonceMs      = $nonce % 1000;
        // encode nonce with seconds in 1st 4 bytes, and (repeated) ms part filling 2nd 4 bytes
        for ($i = 0; $i < 4; ++$i) {
            $counterBlock[$i] = self::urs($nonceSec, $i * 8) & 0xff;
        }
        for ($i = 0; $i < 4; ++$i) {
            $counterBlock[$i + 4] = $nonceMs & 0xff;
        }
        // and convert it to a string to go on the front of the ciphertext
        $ctrTxt = '';
        for ($i = 0; $i < 8; ++$i) {
            $ctrTxt .= chr($counterBlock[$i]);
        }

        // generate key schedule - an expansion of the key into distinct Key Rounds for each round
        $keySchedule = self::KeyExpansion($key);

        $blockCount = ceil(strlen($plaintext) / $blockSize);
        $ciphertxt  = array();  // ciphertext as array of strings

        for ($b = 0; $b < $blockCount; ++$b) {
            // set counter (block #) in last 8 bytes of counter block (leaving nonce in 1st 8 bytes)
            // done in two stages for 32-bit ops: using two words allows us to go past 2^32 blocks (68GB)
            for ($c = 0; $c < 4; ++$c) {
                $counterBlock[15 - $c] = self::urs($b, $c * 8) & 0xff;
            }
            for ($c = 0; $c < 4; ++$c) {
                $counterBlock[15 - $c - 4] = self::urs($b / 0x100000000, $c * 8);
            }

            $cipherCntr = self::Cipher($counterBlock, $keySchedule);  // -- encrypt counter block --

            // block size is reduced on final block
            $blockLength = $b < $blockCount - 1 ? $blockSize : (strlen($plaintext) - 1) % $blockSize + 1;
            $cipherByte  = array();

            for ($i = 0; $i < $blockLength; ++$i) {  // -- xor plaintext with ciphered counter byte-by-byte --
                $cipherByte[$i] = $cipherCntr[$i] ^ ord(substr($plaintext, $b * $blockSize + $i, 1));
                $cipherByte[$i] = chr($cipherByte[$i]);
            }
            $ciphertxt[$b] = implode('', $cipherByte);  // escape troublesome characters in ciphertext
        }

        // implode is more efficient than repeated string concatenation
        $ciphertext = $ctrTxt . implode('', $ciphertxt);
        $ciphertext = base64_encode($ciphertext);

        return $ciphertext;
    }

    /**
     * AES Cipher function: encrypt 'input' with Rijndael algorithm.
     *
     * @param message $input as byte-array (16 bytes)
     * @param key     $w schedule as 2D byte-array (Nr+1 x Nb bytes) -
     * generated from the cipher key by KeyExpansion()
     *
     * @return ciphertext as byte-array (16 bytes)
     */
    protected static function Cipher($input, $w)
    {    // main Cipher function [�5.1]
        $Nb = 4;                 // block size (in words): no of columns in state (fixed at 4 for AES)
        $Nr = count($w) / $Nb - 1; // no of rounds: 10/12/14 for 128/192/256-bit keys

        $state = array();  // initialise 4xNb byte-array 'state' with input [�3.4]
        for ($i = 0; $i < 4 * $Nb; ++$i) {
            $state[$i % 4][floor($i / 4)] = $input[$i];
        }

        $state = self::AddRoundKey($state, $w, 0, $Nb);

        for ($round = 1; $round < $Nr; ++$round) {  // apply Nr rounds
            $state = self::SubBytes($state, $Nb);
            $state = self::ShiftRows($state, $Nb);
            $state = self::MixColumns($state, $Nb);
            $state = self::AddRoundKey($state, $w, $round, $Nb);
        }

        $state = self::SubBytes($state, $Nb);
        $state = self::ShiftRows($state, $Nb);
        $state = self::AddRoundKey($state, $w, $Nr, $Nb);

        $output = array(4 * $Nb);  // convert state to 1-d array before returning [�3.4]
        for ($i = 0; $i < 4 * $Nb; ++$i) {
            $output[$i] = $state[$i % 4][floor($i / 4)];
        }

        return $output;
    }

    protected static function AddRoundKey($state, $w, $rnd, $Nb)
    {  // xor Round Key into state S [�5.1.4]
        for ($r = 0; $r < 4; ++$r) {
            for ($c = 0; $c < $Nb; ++$c) {
                $state[$r][$c] ^= $w[$rnd * 4 + $c][$r];
            }
        }

        return $state;
    }

    protected static function SubBytes($s, $Nb)
    {    // apply SBox to state S [�5.1.1]
        for ($r = 0; $r < 4; ++$r) {
            for ($c = 0; $c < $Nb; ++$c) {
                $s[$r][$c] = self::$Sbox[$s[$r][$c]];
            }
        }

        return $s;
    }

    protected static function ShiftRows($s, $Nb)
    {    // shift row r of state S left by r bytes [�5.1.2]
        $t = array(4);
        for ($r = 1; $r < 4; ++$r) {
            for ($c = 0; $c < 4; ++$c) {
                $t[$c] = $s[$r][($c + $r) % $Nb];
            }  // shift into temp copy
            for ($c = 0; $c < 4; ++$c) {
                $s[$r][$c] = $t[$c];
            }         // and copy back
        }          // note that this will work for Nb=4,5,6, but not 7,8 (always 4 for AES):

        return $s;  // see fp.gladman.plus.com/cryptography_technology/rijndael/aes.spec.311.pdf
    }

    protected static function MixColumns($s, $Nb)
    {   // combine bytes of each col of state S [�5.1.3]
        for ($c = 0; $c < 4; ++$c) {
            $a = array(4);  // 'a' is a copy of the current column from 's'
            $b = array(4);  // 'b' is a�{02} in GF(2^8)
            for ($i = 0; $i < 4; ++$i) {
                $a[$i] = $s[$i][$c];
                $b[$i] = $s[$i][$c] & 0x80 ? $s[$i][$c] << 1 ^ 0x011b : $s[$i][$c] << 1;
            }
            // a[n] ^ b[n] is a�{03} in GF(2^8)
            $s[0][$c] = $b[0] ^ $a[1] ^ $b[1] ^ $a[2] ^ $a[3]; // 2*a0 + 3*a1 + a2 + a3
            $s[1][$c] = $a[0] ^ $b[1] ^ $a[2] ^ $b[2] ^ $a[3]; // a0 * 2*a1 + 3*a2 + a3
            $s[2][$c] = $a[0] ^ $a[1] ^ $b[2] ^ $a[3] ^ $b[3]; // a0 + a1 + 2*a2 + 3*a3
            $s[3][$c] = $a[0] ^ $b[0] ^ $a[1] ^ $a[2] ^ $b[3]; // 3*a0 + a1 + a2 + 2*a3
        }

        return $s;
    }

    /**
     * Key expansion for Rijndael Cipher(): performs key expansion on cipher key to generate a key schedule.
     *
     * @param cipher $key key byte-array (16 bytes)
     *
     * @return key schedule as 2D byte-array (Nr+1 x Nb bytes)
     */
    protected static function KeyExpansion($key)
    {  // generate Key Schedule from Cipher Key [�5.2]
        $Nb = 4;              // block size (in words): no of columns in state (fixed at 4 for AES)
        $Nk = count($key) / 4;  // key length (in words): 4/6/8 for 128/192/256-bit keys
        $Nr = $Nk + 6;        // no of rounds: 10/12/14 for 128/192/256-bit keys

        $w    = array();
        $temp = array();

        for ($i = 0; $i < $Nk; ++$i) {
            $r     = array($key[4 * $i], $key[4 * $i + 1], $key[4 * $i + 2], $key[4 * $i + 3]);
            $w[$i] = $r;
        }

        for ($i = $Nk; $i < ($Nb * ($Nr + 1)); ++$i) {
            $w[$i] = array();
            for ($t = 0; $t < 4; ++$t) {
                $temp[$t] = $w[$i - 1][$t];
            }
            if (0 == $i % $Nk) {
                $temp = self::SubWord(self::RotWord($temp));
                for ($t = 0; $t < 4; ++$t) {
                    $temp[$t] ^= self::$Rcon[$i / $Nk][$t];
                }
            } elseif ($Nk > 6 && 4 == $i % $Nk) {
                $temp = self::SubWord($temp);
            }
            for ($t = 0; $t < 4; ++$t) {
                $w[$i][$t] = $w[$i - $Nk][$t] ^ $temp[$t];
            }
        }

        return $w;
    }

    protected static function SubWord($w)
    {    // apply SBox to 4-byte word w
        for ($i = 0; $i < 4; ++$i) {
            $w[$i] = self::$Sbox[$w[$i]];
        }

        return $w;
    }

    /*
     * Unsigned right shift function, since PHP has neither >>> operator nor unsigned ints
     *
     * @param a $w  number to be shifted (32-bit integer)
     * @param b  number of bits to shift a to the right (0..31)
     * @return   a right-shifted and zero-filled by b bits
     */

    protected static function RotWord($w)
    {    // rotate 4-byte word w left by one byte
        $tmp = $w[0];
        for ($i = 0; $i < 3; ++$i) {
            $w[$i] = $w[$i + 1];
        }
        $w[3] = $tmp;

        return $w;
    }

    protected static function urs($a, $b)
    {
        $a &= 0xffffffff;
        $b &= 0x1f;  // (bounds check)
        if ($a & 0x80000000 && $b > 0) {   // if left-most bit set
            $a = ($a >> 1) & 0x7fffffff;   //   right-shift one bit & clear left-most bit
            $a = $a  >> ($b - 1);           //   remaining right-shifts
        } else {                       // otherwise
            $a = ($a >> $b);               //   use normal right-shift
        }

        return $a;
    }

    /**
     * Decrypt a text encrypted by AES in counter mode of operation.
     *
     * @param source $ciphertext text to be decrypted
     * @param the   $password password to use to generate a key
     * @param number      $nBits of bits to be used in the key (128, 192, or 256)
     *
     * @return decrypted text
     */
    public static function AESDecryptCtr($ciphertext, $password, $nBits)
    {
        $blockSize = 16;  // block size fixed at 16 bytes / 128 bits (Nb=4) for AES
        if (! (128 == $nBits || 192 == $nBits || 256 == $nBits)) {
            return '';
        }  // standard allows 128/192/256 bit keys
        $ciphertext = base64_decode($ciphertext);

        // use AES to encrypt password (mirroring encrypt routine)
        $nBytes  = $nBits / 8;  // no bytes in key
        $pwBytes = array();
        for ($i = 0; $i < $nBytes; ++$i) {
            $pwBytes[$i] = ord(substr($password, $i, 1)) & 0xff;
        }
        $key = self::Cipher($pwBytes, self::KeyExpansion($pwBytes));
        $key = array_merge($key, array_slice($key, 0, $nBytes - 16));  // expand key to 16/24/32 bytes long

        // recover nonce from 1st element of ciphertext
        $counterBlock = array();
        $ctrTxt       = substr($ciphertext, 0, 8);
        for ($i = 0; $i < 8; ++$i) {
            $counterBlock[$i] = ord(substr($ctrTxt, $i, 1));
        }

        // generate key schedule
        $keySchedule = self::KeyExpansion($key);

        // separate ciphertext into blocks (skipping past initial 8 bytes)
        $nBlocks = ceil((strlen($ciphertext) - 8) / $blockSize);
        $ct      = array();
        for ($b = 0; $b < $nBlocks; ++$b) {
            $ct[$b] = substr($ciphertext, 8 + $b * $blockSize, 16);
        }
        $ciphertext = $ct;  // ciphertext is now array of block-length strings

        // plaintext will get generated block-by-block into array of block-length strings
        $plaintxt = array();

        for ($b = 0; $b < $nBlocks; ++$b) {
            // set counter (block #) in last 8 bytes of counter block (leaving nonce in 1st 8 bytes)
            for ($c = 0; $c < 4; ++$c) {
                $counterBlock[15 - $c] = self::urs($b, $c * 8) & 0xff;
            }
            for ($c = 0; $c < 4; ++$c) {
                $counterBlock[15 - $c - 4] = self::urs(($b + 1) / 0x100000000 - 1, $c * 8) & 0xff;
            }

            $cipherCntr = self::Cipher($counterBlock, $keySchedule);  // encrypt counter block

            $plaintxtByte = array();
            for ($i = 0; $i < strlen($ciphertext[$b]); ++$i) {
                // -- xor plaintext with ciphered counter byte-by-byte --
                $plaintxtByte[$i] = $cipherCntr[$i] ^ ord(substr($ciphertext[$b], $i, 1));
                $plaintxtByte[$i] = chr($plaintxtByte[$i]);
            }
            $plaintxt[$b] = implode('', $plaintxtByte);
        }

        // join array of blocks into single plaintext string
        $plaintext = implode('', $plaintxt);

        return $plaintext;
    }

    /**
     * AES decryption in CBC mode. This is the standard mode (the CTR methods actually use Rijndael-128 in CTR mode,
     * which - technically - isn't AES).
     *
     * Supports AES-128, AES-192 and AES-256. It supposes that the last 4 bytes contained a little-endian unsigned long
     * integer representing the unpadded data length.
     *
     * @since  3.0.1
     *
     * @author Nicholas K. Dionysopoulos
     *
     * @param string $ciphertext The data to encrypt
     * @param string $password   Encryption password
     * @param int    $nBits      Encryption key size. Can be 128, 192 or 256
     *
     * @return string The plaintext
     */
    public static function AESDecryptCBC($ciphertext, $password, $nBits = 128)
    {
        if (! (128 == $nBits || 192 == $nBits || 256 == $nBits)) {
            return false;
        }  // standard allows 128/192/256 bit keys
        if (! function_exists('mcrypt_module_open')) {
            return false;
        }

        // Try to fetch cached key/iv or create them if they do not exist
        $lookupKey = $password . '-' . $nBits;
        if (array_key_exists($lookupKey, self::$passwords)) {
            $key = self::$passwords[$lookupKey]['key'];
            $iv  = self::$passwords[$lookupKey]['iv'];
        } else {
            // use AES itself to encrypt password to get cipher key (using plain password as source for
            // key expansion) - gives us well encrypted key
            $nBytes  = $nBits / 8;  // no bytes in key
            $pwBytes = array();
            for ($i = 0; $i < $nBytes; ++$i) {
                $pwBytes[$i] = ord(substr($password, $i, 1)) & 0xff;
            }
            $key    = self::Cipher($pwBytes, self::KeyExpansion($pwBytes));
            $key    = array_merge($key, array_slice($key, 0, $nBytes - 16));  // expand key to 16/24/32 bytes long
            $newKey = '';
            foreach ($key as $int) {
                $newKey .= chr($int);
            }
            $key = $newKey;

            // Create an Initialization Vector (IV) based on the password, using the same technique as for the key
            $nBytes  = 16;  // AES uses a 128 -bit (16 byte) block size, hence the IV size is always 16 bytes
            $pwBytes = array();
            for ($i = 0; $i < $nBytes; ++$i) {
                $pwBytes[$i] = ord(substr($password, $i, 1)) & 0xff;
            }
            $iv    = self::Cipher($pwBytes, self::KeyExpansion($pwBytes));
            $newIV = '';
            foreach ($iv as $int) {
                $newIV .= chr($int);
            }
            $iv = $newIV;

            self::$passwords[$lookupKey]['key'] = $key;
            self::$passwords[$lookupKey]['iv']  = $iv;
        }

        // Read the data size
        $data_size = unpack('V', substr($ciphertext, -4));

        // Decrypt
        $td = mcrypt_module_open(MCRYPT_RIJNDAEL_128, '', MCRYPT_MODE_CBC, '');
        mcrypt_generic_init($td, $key, $iv);
        $plaintext = mdecrypt_generic($td, substr($ciphertext, 0, -4));
        mcrypt_generic_deinit($td);

        // Trim padding, if necessary
        if (strlen($plaintext) > $data_size) {
            $plaintext = substr($plaintext, 0, $data_size);
        }

        return $plaintext;
    }
}

/**
 * Akeeba Restore A JSON-powered JPA, JPS and ZIP archive extraction library.
 *
 * @copyright   2010-2014 Nicholas K. Dionysopoulos / Akeeba Ltd.
 * @license     GNU GPL v2 or - at your option - any later version
 */

/**
 * The Master Setup will read the configuration parameters from restoration.php or the JSON-encoded "configuration"
 * input variable and return the status.
 *
 * @return bool True if the master configuration was applied to the Factory object
 */
function masterSetup()
{
    // ------------------------------------------------------------
    // 1. Import basic setup parameters
    // ------------------------------------------------------------

    $ini_data = null;

    // In restore.php mode, require restoration.php or fail
    if (! defined('KICKSTART')) {
        // This is the standalone mode, used by Akeeba Backup Professional. It looks for a restoration.php
        // file to perform its magic. If the file is not there, we will abort.
        $setupFile = 'tmp/restoration.php';

        if (! file_exists($setupFile)) {
            AKFactory::set('kickstart.enabled', false);

            return false;
        }

        // Load restoration.php. It creates a global variable named $restoration_setup
        require_once $setupFile;

        $ini_data = $restoration_setup;

        if (empty($ini_data)) {
            // No parameters fetched. Darn, how am I supposed to work like that?!
            AKFactory::set('kickstart.enabled', false);

            return false;
        }

        AKFactory::set('kickstart.enabled', true);
    } else {
        // Maybe we have $restoration_setup defined in the head of kickstart.php
        global $restoration_setup;

        if (! empty($restoration_setup) && ! is_array($restoration_setup)) {
            $ini_data = AKText::parse_ini_file($restoration_setup, false, true);
        } elseif (is_array($restoration_setup)) {
            $ini_data = $restoration_setup;
        }
    }

    // Import any data from $restoration_setup
    if (! empty($ini_data)) {
        foreach ($ini_data as $key => $value) {
            AKFactory::set($key, $value);
        }
        AKFactory::set('kickstart.enabled', true);
    }

    // Reinitialize $ini_data
    $ini_data = null;

    // ------------------------------------------------------------
    // 2. Explode JSON parameters into $_REQUEST scope
    // ------------------------------------------------------------

    // Detect a JSON string in the request variable and store it.
    $json = getQueryParam('json', null);

    // Remove everything from the request, post and get arrays
    if (! empty($_REQUEST)) {
        foreach ($_REQUEST as $key => $value) {
            unset($_REQUEST[$key]);
        }
    }

    if (! empty($_POST)) {
        foreach ($_POST as $key => $value) {
            unset($_POST[$key]);
        }
    }

    if (! empty($_GET)) {
        foreach ($_GET as $key => $value) {
            unset($_GET[$key]);
        }
    }

    // Decrypt a possibly encrypted JSON string
    $password = AKFactory::get('kickstart.security.password', null);

    if (! empty($json)) {
        if (! empty($password)) {
            $json = AKEncryptionAES::AESDecryptCtr($json, $password, 128);

            if (empty($json)) {
                exit('###{"status":false,"message":"Invalid login"}###');
            }
        }

        // Get the raw data
        $raw = json_decode($json, true);

        if (! empty($password) && (empty($raw))) {
            exit('###{"status":false,"message":"Invalid login"}###');
        }

        // Pass all JSON data to the request array
        if (! empty($raw)) {
            foreach ($raw as $key => $value) {
                $_REQUEST[$key] = $value;
            }
        }
    } elseif (! empty($password)) {
        exit('###{"status":false,"message":"Invalid login"}###');
    }

    // ------------------------------------------------------------
    // 3. Try the "factory" variable
    // ------------------------------------------------------------
    // A "factory" variable will override all other settings.
    $serialized = getQueryParam('factory', null);

    if (! is_null($serialized)) {
        // Get the serialized factory
        AKFactory::unserialize($serialized);
        AKFactory::set('kickstart.enabled', true);

        return true;
    }

    // ------------------------------------------------------------
    // 4. Try the configuration variable for Kickstart
    // ------------------------------------------------------------
    if (defined('KICKSTART')) {
        $configuration = getQueryParam('configuration');

        if (! is_null($configuration)) {
            // Let's decode the configuration from JSON to array
            $ini_data = json_decode($configuration, true);
        } else {
            // Neither exists. Enable Kickstart's interface anyway.
            $ini_data = array(
                'kickstart.enabled' => true,
            );
        }

        // Import any INI data we might have from other sources
        if (! empty($ini_data)) {
            foreach ($ini_data as $key => $value) {
                AKFactory::set($key, $value);
            }

            AKFactory::set('kickstart.enabled', true);

            return true;
        }
    }
}

/*
 * Akeeba Restore
 * A JSON-powered JPA, JPS and ZIP archive extraction library
 *
 * @copyright   2010-2014 Nicholas K. Dionysopoulos / Akeeba Ltd.
 * @license     GNU GPL v2 or - at your option - any later version
 * @package     akeebabackup
 * @subpackage  kickstart
 */

// Mini-controller for restore.php
if (! defined('KICKSTART')) {
    // The observer class, used to report number of files and bytes processed
    class RestorationObserver extends AKAbstractPartObserver
    {
        public $compressedTotal   = 0;

        public $uncompressedTotal = 0;

        public $filesProcessed    = 0;

        public function update($object, $message)
        {
            if (! is_object($message)) {
                return;
            }

            if (! array_key_exists('type', get_object_vars($message))) {
                return;
            }

            if ('startfile' == $message->type) {
                ++$this->filesProcessed;
                $this->compressedTotal   += $message->content->compressed;
                $this->uncompressedTotal += $message->content->uncompressed;
            }
        }

        public function __toString()
        {
            return __CLASS__;
        }
    }

    // Import configuration
    masterSetup();

    $retArray = array(
        'status'  => true,
        'message' => null,
    );

    $enabled = AKFactory::get('kickstart.enabled', false);

    if ($enabled) {
        $task = getQueryParam('task');

        switch ($task) {
            case 'ping':
                // ping task - realy does nothing!
                $timer = AKFactory::getTimer();
                $timer->enforce_min_exec_time();
                break;

            case 'startRestore':
                AKFactory::nuke(); // Reset the factory

                // Let the control flow to the next step (the rest of the code is common!!)

                // no break
            case 'stepRestore':
                $engine   = AKFactory::getUnarchiver(); // Get the engine
                $observer = new RestorationObserver(); // Create a new observer
                $engine->attach($observer); // Attach the observer
                $engine->tick();
                $ret = $engine->getStatusArray();

                if ('' != $ret['Error']) {
                    $retArray['status']  = false;
                    $retArray['done']    = true;
                    $retArray['message'] = $ret['Error'];
                } elseif (! $ret['HasRun']) {
                    $retArray['files']    = $observer->filesProcessed;
                    $retArray['bytesIn']  = $observer->compressedTotal;
                    $retArray['bytesOut'] = $observer->uncompressedTotal;
                    $retArray['status']   = true;
                    $retArray['done']     = true;
                } else {
                    $retArray['files']    = $observer->filesProcessed;
                    $retArray['bytesIn']  = $observer->compressedTotal;
                    $retArray['bytesOut'] = $observer->uncompressedTotal;
                    $retArray['status']   = true;
                    $retArray['done']     = false;
                    $retArray['factory']  = AKFactory::serialize();
                }
                break;

            case 'finalizeRestore':
                $root = AKFactory::get('kickstart.setup.destdir');
                // Remove the installation directory
                recursive_remove_directory($root . '/installation');

                $postproc = AKFactory::getPostProc();

                // Rename htaccess.bak to .htaccess
                if (file_exists($root . '/htaccess.bak')) {
                    if (file_exists($root . '/.htaccess')) {
                        $postproc->unlink($root . '/.htaccess');
                    }
                    $postproc->rename($root . '/htaccess.bak', $root . '/.htaccess');
                }

                // Rename htaccess.bak to .htaccess
                if (file_exists($root . '/web.config.bak')) {
                    if (file_exists($root . '/web.config')) {
                        $postproc->unlink($root . '/web.config');
                    }
                    $postproc->rename($root . '/web.config.bak', $root . '/web.config');
                }

                // Remove restoration.php
                $basepath = KSROOTDIR;
                $basepath = rtrim(str_replace('\\', '/', $basepath), '/');
                if (! empty($basepath)) {
                    $basepath .= '/';
                }
                $postproc->unlink($basepath . 'restoration.php');

                // Import a custom finalisation file
                if (file_exists(dirname(__FILE__) . '/restore_finalisation.php')) {
                    include_once dirname(__FILE__) . '/restore_finalisation.php';
                }

                // Run a custom finalisation script
                if (function_exists('finalizeRestore')) {
                    finalizeRestore($root, $basepath);
                }
                break;

            default:
                // Invalid task!
                $enabled = false;
                break;
        }
    }

    // Maybe we weren't authorized or the task was invalid?
    if (! $enabled) {
        // Maybe the user failed to enter any information
        $retArray['status']  = false;
        $retArray['message'] = AKText::_('ERR_INVALID_LOGIN');
    }

    // JSON encode the message
    $json = json_encode($retArray);
    // Do I have to encrypt?
    $password = AKFactory::get('kickstart.security.password', null);
    if (! empty($password)) {
        $json = AKEncryptionAES::AESEncryptCtr($json, $password, 128);
    }

    // Return the message
    echo "###$json###";
}

// ------------ lixlpixel recursive PHP functions -------------
// recursive_remove_directory( directory to delete, empty )
// expects path to directory and optional TRUE / FALSE to empty
// of course PHP has to have the rights to delete the directory
// you specify and all files and folders inside the directory
// ------------------------------------------------------------
function recursive_remove_directory($directory)
{
    // if the path has a slash at the end we remove it here
    if ('/' == substr($directory, -1)) {
        $directory = substr($directory, 0, -1);
    }
    // if the path is not valid or is not a directory ...
    if (! file_exists($directory) || ! is_dir($directory)) {
        // ... we return false and exit the function
        return false;
        // ... if the path is not readable
    }
    if (! is_readable($directory)) {
        // ... we return false and exit the function
        return false;
    // ... else if the path is readable
    } else {
        // we open the directory
        $handle   = opendir($directory);
        $postproc = AKFactory::getPostProc();
        // and scan through the items inside
        while (false !== ($item = readdir($handle))) {
            // if the filepointer is not the current directory
            // or the parent directory
            if ('.' != $item && '..' != $item) {
                // we build the new path to delete
                $path = $directory . '/' . $item;
                // if the new path is a directory
                if (is_dir($path)) {
                    // we call this function with the new path
                    recursive_remove_directory($path);
                // if the new path is a file
                } else {
                    // we remove the file
                    $postproc->unlink($path);
                }
            }
        }
        // close the directory
        closedir($handle);
        // try to delete the now empty directory
        if (! $postproc->rmdir($directory)) {
            // return false if not possible
            return false;
        }

        // return success
        return true;
    }
}

© 2025 Cubjrnet7