tollwerk/admin

View on GitHub
src/Admin/Ports/Facade/Domain.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 * admin
 *
 * @category    Tollwerk
 * @package     Tollwerk\Admin
 * @subpackage  Tollwerk\Admin\Ports\Facade
 * @author      Joschi Kuphal <joschi@tollwerk.de> / @jkphl
 * @copyright   Copyright © 2018 Joschi Kuphal <joschi@tollwerk.de> / @jkphl
 * @license     http://opensource.org/licenses/MIT The MIT License (MIT)
 */

/***********************************************************************************
 *  The MIT License (MIT)
 *
 *  Copyright © 2018 Joschi Kuphal <joschi@kuphal.net> / @jkphl
 *
 *  Permission is hereby granted, free of charge, to any person obtaining a copy of
 *  this software and associated documentation files (the "Software"), to deal in
 *  the Software without restriction, including without limitation the rights to
 *  use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
 *  the Software, and to permit persons to whom the Software is furnished to do so,
 *  subject to the following conditions:
 *
 *  The above copyright notice and this permission notice shall be included in all
 *  copies or substantial portions of the Software.
 *
 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 *  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
 *  FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 *  COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
 *  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 *  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 ***********************************************************************************/

namespace Tollwerk\Admin\Ports\Facade;

use \Tollwerk\Admin\Domain\Domain\Domain as DomainDomain;
use Tollwerk\Admin\Infrastructure\App;
use Tollwerk\Admin\Infrastructure\Facade\AbstractFacade;

/**
 * Domain facade
 *
 * @package Tollwerk\Admin
 * @subpackage Tollwerk\Admin\Ports
 */
class Domain extends AbstractFacade
{
    /**
     * Create and add a domain to an account
     *
     * @param string $account Account name
     * @param string $domain Domain name
     * @return boolean Success
     * @throws \Exception If the domain couldn't be created
     */
    public static function create($account, $domain)
    {
        // Get the account to operate on
        $account = self::loadAccount($account);

        // Check if the domain already exists and is unassigned
        try {
            $domain = App::getDomainService()->loadUnassigned($domain, $account);

        } catch (\RuntimeException $e) {
            // If the domain already exists but is assigned or belongs to another account: Error
            if ($e->getCode() != 1475915909) {
                throw $e;
            }

            // Create the domain
            $domain = App::getDomainService()->create($domain, $account);
        }

        return $domain instanceof DomainDomain;
    }

    /**
     * Delete a domain
     *
     * @param string $domain Domain name
     * @return boolean Success
     */
    public static function delete($name)
    {
        return App::getDomainService()->delete($name) instanceof DomainDomain;
    }

    /**
     * Enable a domain
     *
     * @param string $domain Domain name
     * @return boolean Success
     */
    public static function enable($name)
    {
        return App::getDomainService()->enable($name) instanceof DomainDomain;
    }

    /**
     * Disable a domain
     *
     * @param string $domain Domain name
     * @return boolean Success
     */
    public static function disable($name)
    {
        return App::getDomainService()->disable($name) instanceof DomainDomain;
    }

    /**
     * Enable a domain wildcard
     *
     * @param string $domain Domain name
     * @return boolean Success
     */
    public static function enableWildcard($name)
    {
        return App::getDomainService()->enableWildcard($name) instanceof DomainDomain;
    }

    /**
     * Disable a domain wildcard
     *
     * @param string $domain Domain name
     * @return boolean Success
     */
    public static function disableWildcard($name)
    {
        return App::getDomainService()->disableWildcard($name) instanceof DomainDomain;
    }
}