pagseguro/pagseguro-php-sdk

View on GitHub
source/Services/Authorization/CompanyService.php

Summary

Maintainability
F
4 days
Test Coverage
<?php
/**
 * 2007-2016 [PagSeguro Internet Ltda.]
 *
 * NOTICE OF LICENSE
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * @author    PagSeguro Internet Ltda.
 * @copyright 2007-2016 PagSeguro Internet Ltda.
 * @license   http://www.apache.org/licenses/LICENSE-2.0
 *
 */

namespace PagSeguro\Services\Authorization;

use PagSeguro\Domains\Authorization;
use PagSeguro\Domains\Authorization\Company;
use PagSeguro\Domains\Document;
use PagSeguro\Domains\Phone;

/**
 * Class CompanySeller
 *
 * @package PagSeguro\Services\Authorization
 */
class CompanyService
{
    /**
     * @var Company
     */
    private $authorization;
    /**
     * @var \DOMDocument
     */
    private $dom;

    /**
     * Seller constructor.
     *
     * @param Authorization $authorization
     */
    public function __construct(Authorization $authorization)
    {
        $this->authorization = $authorization;
        $this->dom = new \DOMDocument('1.0', 'UTF-8');
        $this->dom->xmlStandalone = true;
        $authorizationNode = $this->makeAuthorizationNode();
        $accountNode = $this->makeAccountNode($authorizationNode);
        $companyNode = $this->makeCompanyNode($accountNode);
        $this->makePartnerNode($companyNode);
        $this->makePhonesNode($companyNode);
        $this->makeDocumentsNode($companyNode);
        $this->makeAddressNode($companyNode);
    }

    /**
     * @return \DOMNode
     */
    private function makeAuthorizationNode()
    {
        $authorizationRequestElement = $this->dom->createElement('authorizationRequest');
        $authorizationRequestDom = $this->dom->appendChild($authorizationRequestElement);

        $referenceElement = $this->dom->createElement('reference', $this->authorization->getReference());
        $authorizationRequestDom->appendChild($referenceElement);

        $permissionsElement = $this->dom->createElement('permissions');
        $permissionsDom = $authorizationRequestDom->appendChild($permissionsElement);

        $permissions = $this->authorization->getPermissions();
        $permissions = explode(',', $permissions);

        foreach ($permissions as $permission) {
            $codeElement = $this->dom->createElement('code', $permission);
            $permissionsDom->appendChild($codeElement);
        }
        $redirectURLElement = $this->dom->createElement('redirectURL', $this->authorization->getRedirectURL());
        $authorizationRequestDom->appendChild($redirectURLElement);

        $notificationURLElement = $this->dom->createElement('notificationURL',
            $this->authorization->getNotificationURL());
        $authorizationRequestDom->appendChild($notificationURLElement);

        $accountElement = $this->dom->createElement('account');
        $accountDom = $authorizationRequestDom->appendChild($accountElement);

        return $accountDom;
    }

    /**
     * @param \DOMNode $accountDom
     *
     * @return \DOMNode
     */
    private function makeAccountNode(\DOMNode $accountDom)
    {
        $emailElement = $this->dom->createElement('email', $this->authorization->getAccount()->getEmail());
        $accountDom->appendChild($emailElement);

        $typeElement = $this->dom->createElement('type', $this->authorization->getAccount()->getType());
        $accountDom->appendChild($typeElement);

        return $accountDom;
    }

    /**
     * @param \DOMNode $accountDom
     *
     * @return \DOMNode
     */
    private function makeCompanyNode(\DOMNode $accountDom)
    {
        $companyElement = $this->dom->createElement('company');
        $companyDom = $accountDom->appendChild($companyElement);

        $displayNameElement = $this->dom->createElement('displayName',
            $this->authorization->getAccount()->getCompany()->getName());
        $companyDom->appendChild($displayNameElement);

        $websiteURLElement = $this->dom->createElement('websiteURL',
            $this->authorization->getAccount()->getCompany()->getWebsiteURL());
        $companyDom->appendChild($websiteURLElement);

        return $companyDom;
    }

    /**
     * @param \DOMNode $companyDom
     */
    private function makePartnerNode(\DOMNode $companyDom)
    {
        $partnerElement = $this->dom->createElement('partner');
        $partnerDom = $companyDom->appendChild($partnerElement);

        $partnerElement = $this->dom->createElement('name',
            $this->authorization->getAccount()->getCompany()->getPartner()->getName());
        $partnerDom->appendChild($partnerElement);

        if ($this->authorization->getAccount()->getCompany()->getPartner()->getPhones()) {
            $this->makePartnersPhonesNode($partnerDom);
        }
        if ($this->authorization->getAccount()->getCompany()->getPartner()->getDocuments()) {
            $this->makePartnerDocumentsNode($partnerDom);
        }
    }

    /**
     * @param \DOMNode $companyDom
     */
    private function makePartnersPhonesNode(\DOMNode $companyDom)
    {
        $phonesElement = $this->dom->createElement('phones');
        $phonesDom = $companyDom->appendChild($phonesElement);
        $phones = $this->authorization->getAccount()->getCompany()->getPartner()->getPhones();

        $phoneElement = $this->dom->createElement('phone');
        $phoneDom = $phonesDom->appendChild($phoneElement);

        /**
         * @var Phone $phone
         */
        foreach ($phones as $phone) {
            $typeElement = $this->dom->createElement('areaCode', $phone->getAreaCode());
            $phoneDom->appendChild($typeElement);

            $valueElement = $this->dom->createElement('number', $phone->getNumber());
            $phoneDom->appendChild($valueElement);

            $valueElement = $this->dom->createElement('type', $phone->getType());
            $phoneDom->appendChild($valueElement);
        }
    }

    /**
     * @param \DOMNode $companyDom
     */
    private function makePartnerDocumentsNode(\DOMNode $companyDom)
    {
        $documentsElement = $this->dom->createElement('documents');
        $documentsDom = $companyDom->appendChild($documentsElement);
        $documents = $this->authorization->getAccount()->getCompany()->getPartner()->getDocuments();

        $documentElement = $this->dom->createElement('document');
        $documentDom = $documentsDom->appendChild($documentElement);

        /**
         * @var Document $document
         */
        foreach ($documents as $document) {
            $typeElement = $this->dom->createElement('type', $document->getType());
            $documentDom->appendChild($typeElement);

            $valueElement = $this->dom->createElement('value', $document->getIdentifier());
            $documentDom->appendChild($valueElement);
        }
    }

    /**
     * @param \DOMNode $companyDom
     */
    private function makePhonesNode(\DOMNode $companyDom)
    {
        $phonesElement = $this->dom->createElement('phones');
        $phonesDom = $companyDom->appendChild($phonesElement);
        $phones = $this->authorization->getAccount()->getCompany()->getPhones();

        $phoneElement = $this->dom->createElement('phone');
        $phoneDom = $phonesDom->appendChild($phoneElement);

        /**
         * @var Phone $phone
         */
        foreach ($phones as $phone) {
            $typeElement = $this->dom->createElement('type', $phone->getType());
            $phoneDom->appendChild($typeElement);

            $areaCodeElement = $this->dom->createElement('areaCode', $phone->getAreaCode());
            $phoneDom->appendChild($areaCodeElement);

            $numberElement = $this->dom->createElement('number', $phone->getNumber());
            $phoneDom->appendChild($numberElement);
        }
    }

    /**
     * @param \DOMNode $companyDom
     */
    private function makeDocumentsNode(\DOMNode $companyDom)
    {
        $documentsElement = $this->dom->createElement('documents');
        $documentsDom = $companyDom->appendChild($documentsElement);
        $documents = $this->authorization->getAccount()->getCompany()->getDocuments();

        /**
         * @var Document $document
         */
        foreach ($documents as $document) {
            $documentElement = $this->dom->createElement('document');
            $documentDom = $documentsDom->appendChild($documentElement);

            $typeElement = $this->dom->createElement('type', $document->getType());
            $documentDom->appendChild($typeElement);

            $valueElement = $this->dom->createElement('value', $document->getIdentifier());
            $documentDom->appendChild($valueElement);
        }
    }

    /**
     * @param \DOMNode $companyDom
     */
    private function makeAddressNode(\DOMNode $companyDom)
    {
        $addressElement = $this->dom->createElement('address');
        $addressDom = $companyDom->appendChild($addressElement);

        $postalCodeElement = $this->dom->createElement('postalCode',
            $this->authorization->getAccount()->getCompany()->getAddress()->getPostalCode());
        $addressDom->appendChild($postalCodeElement);

        $streetElement = $this->dom->createElement('street',
            $this->authorization->getAccount()->getCompany()->getAddress()->getStreet());
        $addressDom->appendChild($streetElement);

        $numberElement = $this->dom->createElement('number',
            $this->authorization->getAccount()->getCompany()->getAddress()->getNumber());
        $addressDom->appendChild($numberElement);

        $complementElement = $this->dom->createElement('complement',
            $this->authorization->getAccount()->getCompany()->getAddress()->getComplement());
        $addressDom->appendChild($complementElement);

        $districtElement = $this->dom->createElement('district',
            $this->authorization->getAccount()->getCompany()->getAddress()->getDistrict());
        $addressDom->appendChild($districtElement);

        $cityElement = $this->dom->createElement('city',
            $this->authorization->getAccount()->getCompany()->getAddress()->getCity());
        $addressDom->appendChild($cityElement);

        $stateElement = $this->dom->createElement('state',
            $this->authorization->getAccount()->getCompany()->getAddress()->getState());
        $addressDom->appendChild($stateElement);

        $countryElement = $this->dom->createElement('country',
            $this->authorization->getAccount()->getCompany()->getAddress()->getCountry());
        $addressDom->appendChild($countryElement);
    }

    /**
     * @return string
     */
    public function getAsXML()
    {
        return $this->dom->saveXML();
    }
}