# user-access-manager/2.0.13/src/UserAccessManager/SetupHandler/SetupHandler.php

User Access Manager, version 2.0.13. 569 lines.

- Page: https://pluginprobe.com/plugins/user-access-manager/2.0.13/code/src/UserAccessManager/SetupHandler/SetupHandler.php
- Raw: https://pluginprobe.com/plugins/user-access-manager/2.0.13/raw/src/UserAccessManager/SetupHandler/SetupHandler.php
- Modified: 2017-07-26T14:42:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/user-access-manager/2.0.13/code/src/UserAccessManager/SetupHandler/SetupHandler.php#L10-L20`.

```php
<?php
/**
 * SetupHandler.php
 *
 * The SetupHandler class file.
 *
 * PHP versions 5
 *
 * @author    Alexander Schneider <alexanderschneider85@gmail.com>
 * @copyright 2008-2017 Alexander Schneider
 * @license   http://www.gnu.org/licenses/gpl-2.0.html  GNU General Public License, version 2
 * @version   SVN: $id$
 * @link      http://wordpress.org/extend/plugins/user-access-manager/
 */
namespace UserAccessManager\SetupHandler;

use UserAccessManager\Config\Config;
use UserAccessManager\Database\Database;
use UserAccessManager\FileHandler\FileHandler;
use UserAccessManager\ObjectHandler\ObjectHandler;
use UserAccessManager\UserAccessManager;
use UserAccessManager\Wrapper\Wordpress;

/**
 * Class SetupHandler
 *
 * @package UserAccessManager\SetupHandler
 */
class SetupHandler
{
    /**
     * @var Wordpress
     */
    private $wordpress;

    /**
     * @var Database
     */
    private $database;

    /**
     * @var ObjectHandler
     */
    private $objectHandler;

    /**
     * @var FileHandler
     */
    private $fileHandler;

    /**
     * SetupHandler constructor.
     *
     * @param Wordpress     $wordpress
     * @param Database      $database
     * @param ObjectHandler $objectHandler
     * @param FileHandler   $fileHandler
     */
    public function __construct(
        Wordpress $wordpress,
        Database $database,
        ObjectHandler $objectHandler,
        FileHandler $fileHandler
    ) {
        $this->wordpress = $wordpress;
        $this->database = $database;
        $this->objectHandler = $objectHandler;
        $this->fileHandler = $fileHandler;
    }

    /**
     * Returns all blog of the network.
     *
     * @return array
     */
    public function getBlogIds()
    {
        $currentBlogId = $this->database->getCurrentBlogId();
        $blogIds = [$currentBlogId => $currentBlogId];
        $sites = $this->wordpress->getSites();

        foreach ($sites as $site) {
            $blogIds[$site->blog_id] = $site->blog_id;
        }

        return $blogIds;
    }

    /**
     * Installs the user access manager.
     *
     * @param bool $networkWide
     */
    public function install($networkWide = false)
    {
        if ($networkWide === true) {
            $blogIds = $this->getBlogIds();
            $currentBlogId = $this->database->getCurrentBlogId();

            foreach ($blogIds as $blogId) {
                $this->wordpress->switchToBlog($blogId);
                $this->runInstall();
            }

            $this->wordpress->switchToBlog($currentBlogId);
        } else {
            $this->runInstall();
        }
    }

    /**
     * Creates the needed tables at the database and adds the options
     */
    private function runInstall()
    {
        $charsetCollate = $this->database->getCharset();
        $dbAccessGroupTable = $this->database->getUserGroupTable();

        $dbUserGroup = $this->database->getVariable(
            "SHOW TABLES 
            LIKE '{$dbAccessGroupTable}'"
        );

        if ($dbUserGroup !== $dbAccessGroupTable) {
            $this->database->dbDelta(
                "CREATE TABLE {$dbAccessGroupTable} (
                    ID INT(11) NOT NULL AUTO_INCREMENT,
                    groupname TINYTEXT NOT NULL,
                    groupdesc TEXT NOT NULL,
                    read_access TINYTEXT NOT NULL,
                    write_access TINYTEXT NOT NULL,
                    ip_range MEDIUMTEXT NULL,
                    PRIMARY KEY (ID)
                ) {$charsetCollate};"
            );
        }

        $dbAccessGroupToObjectTable = $this->database->getUserGroupToObjectTable();

        $dbAccessGroupToObject = (string)$this->database->getVariable(
            "SHOW TABLES 
            LIKE '".$dbAccessGroupToObjectTable."'"
        );

        if ($dbAccessGroupToObject !== $dbAccessGroupToObjectTable) {
            $this->database->dbDelta(
                "CREATE TABLE {$dbAccessGroupToObjectTable} (
                    object_id VARCHAR(64) NOT NULL,
                    general_object_type VARCHAR(64) NOT NULL,
                    object_type VARCHAR(64) NOT NULL,
                    group_id INT(11) NOT NULL,
                    PRIMARY KEY (object_id,object_type,group_id)
                ) {$charsetCollate};"
            );
        }

        $this->wordpress->addOption('uam_db_version', UserAccessManager::DB_VERSION);
    }

    /**
     * Checks if a database update is necessary.
     *
     * @return bool
     */
    public function isDatabaseUpdateNecessary()
    {
        $blogIds = $this->getBlogIds();

        if ($this->wordpress->isSuperAdmin() === true) {
            foreach ($blogIds as $blogId) {
                $table = $this->database->getBlogPrefix($blogId).'options';
                $select = "SELECT option_value FROM {$table} WHERE option_name = '%s' LIMIT 1";
                $select = $this->database->prepare($select, 'uam_db_version');
                $currentDbVersion = $this->database->getVariable($select);

                if ($currentDbVersion !== null
                    && version_compare($currentDbVersion, UserAccessManager::DB_VERSION, '<') === true
                ) {
                    return true;
                }
            }
        }

        $currentDbVersion = $this->wordpress->getOption('uam_db_version');
        return version_compare($currentDbVersion, UserAccessManager::DB_VERSION, '<');
    }

    /**
     * Creates a database backup.
     *
     * @return bool
     */
    public function backupDatabase()
    {
        $currentDbVersion = $this->wordpress->getOption('uam_db_version');

        if (empty($currentDbVersion) === true
            || version_compare($currentDbVersion, '1.2', '<') === true
        ) {
            return false;
        }

        $tables = [
            $this->database->getUserGroupTable(),
            $this->database->getUserGroupToObjectTable()
        ];

        $currentDbVersion = str_replace('.', '-', $currentDbVersion);
        $success = true;

        foreach ($tables as $table) {
            $createQuery = "CREATE TABLE `{$table}_{$currentDbVersion}` LIKE `{$table}`";
            $success = $success && ($this->database->query($createQuery) !== false);
            $insertQuery = "INSERT `{$table}_{$currentDbVersion}` SELECT * FROM `{$table}`";
            $success = $success && ($this->database->query($insertQuery) !== false);
        }

        return $success;
    }

    /**
     * Returns the version for which a backup was created.
     *
     * @return array
     */
    public function getBackups()
    {
        $versions = [];
        $tables = (array)$this->database->getColumn(
            "SHOW TABLES LIKE '{$this->database->getPrefix()}uam_%'"
        );

        foreach ($tables as $table) {
            if (preg_match('/.*\_([0-9\-]+)/i', $table, $matches) === 1) {
                $version = str_replace('-', '.', $matches[1]);
                $versions[$version] = $version;
            }
        }

        return $versions;
    }

    /**
     * Returns the backup tables for the given version.
     *
     * @param string $version
     *
     * @return array
     */
    private function getBackupTables($version)
    {
        $backupTables = [];
        $tables = [
            $this->database->getUserGroupTable(),
            $this->database->getUserGroupToObjectTable()
        ];

        $versionForDb = str_replace('.', '-', $version);

        foreach ($tables as $table) {
            $backupTable = (string)$this->database->getVariable(
                "SHOW TABLES LIKE '{$table}_{$versionForDb}'"
            );

            if ($backupTable !== '') {
                $backupTables[$table] = $backupTable;
            }
        }

        return $backupTables;
    }

    /**
     * Reverts the database to the given version.
     *
     * @param string $version
     *
     * @return bool
     */
    public function revertDatabase($version)
    {
        $success = true;
        $tables = $this->getBackupTables($version);

        foreach ($tables as $table => $backupTable) {
            $dropQuery = "DROP TABLE IF EXISTS `{$table}`";
            $success = $success && ($this->database->query($dropQuery) !== false);
            $renameQuery = "RENAME TABLE `{$backupTable}` TO `{$table}`";
            $success = $success && ($this->database->query($renameQuery) !== false);
        }

        if ($success === true) {
            $this->wordpress->updateOption('uam_db_version', $version);
        }

        return $success;
    }

    /**
     * Deletes the given database backup.
     *
     * @param string $version
     *
     * @return bool
     */
    public function deleteBackup($version)
    {
        $success = true;
        $tables = $this->getBackupTables($version);

        foreach ($tables as $table => $backupTable) {
            $dropQuery = "DROP TABLE IF EXISTS `{$backupTable}`";
            $success = $success && ($this->database->query($dropQuery) !== false);
        }

        return $success;
    }

    /**
     * Updates the user access manager if an old version was installed.
     *
     * @return true
     */
    public function update()
    {
        $currentDbVersion = $this->wordpress->getOption('uam_db_version');

        if (empty($currentDbVersion) === true) {
            return false;
        }

        $uamVersion = $this->wordpress->getOption('uam_version', '0');

        if (version_compare($uamVersion, '1.0', '<') === true) {
            $this->wordpress->deleteOption('allow_comments_locked');
        }

        $dbAccessGroup = $this->database->getUserGroupTable();

        $dbUserGroup = $this->database->getVariable(
            "SHOW TABLES LIKE '{$dbAccessGroup}'"
        );

        if (version_compare($currentDbVersion, UserAccessManager::DB_VERSION, '<') === true) {
            $prefix = $this->database->getPrefix();
            $charsetCollate = $this->database->getCharset();

            if (version_compare($currentDbVersion, '1.0', '<=') === true) {
                if ($dbUserGroup === $dbAccessGroup) {
                    $alterQuery = "ALTER TABLE {$dbAccessGroup}
                        ADD read_access TINYTEXT NOT NULL DEFAULT '', 
                        ADD write_access TINYTEXT NOT NULL DEFAULT '', 
                        ADD ip_range MEDIUMTEXT NULL DEFAULT ''";
                    $this->database->query($alterQuery);

                    $updateQuery = "UPDATE {$dbAccessGroup}
                        SET read_access = 'group', write_access = 'group'";
                    $this->database->query($updateQuery);

                    $selectQuery = "SHOW columns FROM {$dbAccessGroup} LIKE 'ip_range'";
                    $dbIpRange = $this->database->getVariable($selectQuery);

                    if ($dbIpRange != 'ip_range') {
                        $alterQuery = "ALTER TABLE {$dbAccessGroup}
                            ADD ip_range MEDIUMTEXT NULL DEFAULT ''";

                        $this->database->query($alterQuery);
                    }
                }

                $dbAccessGroupToObject = $prefix.'uam_accessgroup_to_object';
                $dbAccessGroupToPost = $prefix.'uam_accessgroup_to_post';
                $dbAccessGroupToUser = $prefix.'uam_accessgroup_to_user';
                $dbAccessGroupToCategory = $prefix.'uam_accessgroup_to_category';
                $dbAccessGroupToRole = $prefix.'uam_accessgroup_to_role';

                $alterQuery = "ALTER TABLE '{$dbAccessGroupToObject}'
                    CHANGE 'object_id' 'object_id' VARCHAR(64) {$charsetCollate}";
                $this->database->query($alterQuery);

                $objectTypes = $this->objectHandler->getObjectTypes();
                $postTable = $this->database->getPostsTable();

                foreach ($objectTypes as $objectType) {
                    $addition = '';

                    if ($this->objectHandler->isPostType($objectType) === true) {
                        $dbIdName = 'post_id';
                        $database = $dbAccessGroupToPost.', '.$postTable;
                        $addition = " WHERE post_id = ID
                            AND post_type = '".$objectType."'";
                    } elseif ($objectType === 'category') {
                        $dbIdName = 'category_id';
                        $database = $dbAccessGroupToCategory;
                    } elseif ($objectType === 'user') {
                        $dbIdName = 'user_id';
                        $database = $dbAccessGroupToUser;
                    } elseif ($objectType === 'role') {
                        $dbIdName = 'role_name';
                        $database = $dbAccessGroupToRole;
                    } else {
                        continue;
                    }

                    $fullDatabase = $database.$addition;

                    $query = "SELECT {$dbIdName} AS id, group_id AS groupId
                        FROM {$fullDatabase}";

                    $dbObjects = (array)$this->database->getResults($query);

                    foreach ($dbObjects as $dbObject) {
                        $this->database->insert(
                            $dbAccessGroupToObject,
                            [
                                'group_id' => $dbObject->groupId,
                                'object_id' => $dbObject->id,
                                'object_type' => $objectType,
                            ],
                            [
                                '%d',
                                '%d',
                                '%s',
                            ]
                        );
                    }
                }

                $dropQuery = "DROP TABLE {$dbAccessGroupToPost},
                    {$dbAccessGroupToUser},
                    {$dbAccessGroupToCategory},
                    {$dbAccessGroupToRole}";

                $this->database->query($dropQuery);
            }

            $dbAccessGroupToObject = $this->database->getUserGroupToObjectTable();

            if (version_compare($currentDbVersion, '1.2', '<=') === true) {
                $query = "
                    ALTER TABLE `{$dbAccessGroupToObject}`
                    CHANGE `object_id` `object_id` VARCHAR(64) NOT NULL,
                    CHANGE `object_type` `object_type` VARCHAR(64) NOT NULL";

                $this->database->query($query);
            }

            if (version_compare($currentDbVersion, '1.3', '<=') === true) {
                $generalTermType = ObjectHandler::GENERAL_TERM_OBJECT_TYPE;
                $this->database->update(
                    $dbAccessGroupToObject,
                    ['object_type' => $generalTermType],
                    ['object_type' => 'category']
                );
            }

            if (version_compare($currentDbVersion, '1.4', '<=') === true) {
                $alterQuery = "ALTER TABLE {$dbAccessGroupToObject}
                    ADD general_object_type VARCHAR(64) NOT NULL AFTER object_id";

                $this->database->query($alterQuery);

                // Update post entries
                $generalPostType = ObjectHandler::GENERAL_POST_OBJECT_TYPE;

                $query = "UPDATE {$dbAccessGroupToObject}
                    SET general_object_type = '{$generalPostType}'
                    WHERE object_type IN ('post', 'page', 'attachment')";

                $this->database->query($query);

                // Update role entries
                $generalRoleType = ObjectHandler::GENERAL_ROLE_OBJECT_TYPE;

                $query = "UPDATE {$dbAccessGroupToObject}
                    SET general_object_type = '{$generalRoleType}'
                    WHERE object_type = 'role'";

                $this->database->query($query);

                // Update user entries
                $generalUserType = ObjectHandler::GENERAL_USER_OBJECT_TYPE;

                $query = "UPDATE {$dbAccessGroupToObject}
                    SET general_object_type = '{$generalUserType}'
                    WHERE object_type = 'user'";

                $this->database->query($query);

                // Update term entries
                $generalTermType = ObjectHandler::GENERAL_TERM_OBJECT_TYPE;

                $query = "UPDATE {$dbAccessGroupToObject}
                    SET general_object_type = '{$generalTermType}'
                    WHERE object_type = 'term'";

                $this->database->query($query);

                $query = "UPDATE {$dbAccessGroupToObject} AS gto
                    LEFT JOIN {$this->database->getTermTaxonomyTable()} AS tt 
                      ON gto.object_id = tt.term_id
                    SET gto.object_type = tt.taxonomy
                    WHERE gto.general_object_type = '{$generalTermType}'";

                $this->database->query($query);
            }

            if (version_compare($currentDbVersion, '1.5.1', '<=') === true) {
                $query = "SELECT object_id AS objectId, object_type AS objectType, group_id AS groupId
                    FROM {$dbAccessGroupToObject}
                    WHERE general_object_type = ''";

                $dbObjects = (array)$this->database->getResults($query);

                foreach ($dbObjects as $dbObject) {
                    $this->database->update(
                        $dbAccessGroupToObject,
                        ['general_object_type' => $this->objectHandler->getGeneralObjectType($dbObject->objectType)],
                        [
                            'object_id' => $dbObject->objectId,
                            'group_id' => $dbObject->groupId,
                            'object_type' => $dbObject->objectType
                        ]
                    );
                }
            }

            $this->wordpress->updateOption('uam_db_version', UserAccessManager::DB_VERSION);
        }

        return true;
    }

    /**
     * Clean up wordpress if the plugin will be uninstalled.
     */
    public function uninstall()
    {
        $currentBlogId = $this->database->getCurrentBlogId();
        $blogIds = $this->getBlogIds();

        foreach ($blogIds as $blogId) {
            $this->wordpress->switchToBlog($blogId);
            $userGroupTable = $this->database->getUserGroupTable();
            $userGroupToObjectTable = $this->database->getUserGroupToObjectTable();

            $dropQuery = "DROP TABLE IF EXISTS {$userGroupTable}, {$userGroupToObjectTable}";
            $this->database->query($dropQuery);

            $this->wordpress->deleteOption(Config::ADMIN_OPTIONS_NAME);
            $this->wordpress->deleteOption('uam_version');
            $this->wordpress->deleteOption('uam_db_version');
        }

        $this->wordpress->switchToBlog($currentBlogId);
        $this->fileHandler->deleteFileProtection();
    }

    /**
     * Remove the htaccess file if the plugin is deactivated.
     *
     * @return bool
     */
    public function deactivate()
    {
        return $this->fileHandler->deleteFileProtection();
    }
}

```
