Covivo/mobicoop

View on GitHub
client/src/MobicoopBundle/Communication/Controller/ContactController.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 * Copyright (c) 2018, MOBICOOP. All rights reserved.
 * This project is dual licensed under AGPL and proprietary licence.
 ***************************
 *    This program is free software: you can redistribute it and/or modify
 *    it under the terms of the GNU Affero General Public License as
 *    published by the Free Software Foundation, either version 3 of the
 *    License, or (at your option) any later version.
 *
 *    This program 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 Affero General Public License for more details.
 *
 *    You should have received a copy of the GNU Affero General Public License
 *    along with this program.  If not, see <gnu.org/licenses>.
 ***************************
 *    Licence MOBICOOP described in the file
 *    LICENSE
 **************************/

namespace Mobicoop\Bundle\MobicoopBundle\Communication\Controller;

use DateTime;
use Mobicoop\Bundle\MobicoopBundle\Communication\Entity\Contact;
use Mobicoop\Bundle\MobicoopBundle\Communication\Service\ContactManager;
use Mobicoop\Bundle\MobicoopBundle\Traits\HydraControllerTrait;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request;

class ContactController extends AbstractController
{
    use HydraControllerTrait;

    private $contactTypes;
    private $contactManager;

    public function __construct(ContactManager $contactManager)
    {
        $this->contactManager = $contactManager;
    }

    /**
     * Show the contact page
     */
    public function showContact()
    {
        $this->denyAccessUnlessGranted('contact_create', new Contact());
        return $this->render(
            '@Mobicoop/contact/contact.html.twig'
        );
    }

    /**
     * @param Request $request
     *
     * Handle post request from contact form
     *
     * @param ContactManager $contactManager
     *
     * @return JsonResponse
     */
    public function sendContact(Request $request, ContactManager $contactManager)
    {
        $contact = new Contact();

        if ($request->isMethod('POST')) {
            $data = json_decode($request->getContent(), true);

            $reponseofmanager = $this->handleManagerReturnValue($data);
            if (!empty($reponseofmanager)) {
                return $reponseofmanager;
            }
            
            if (!empty($data["website"])) {
                return new JsonResponse(
                    ["message" => "error"],
                    \Symfony\Component\HttpFoundation\Response::HTTP_BAD_REQUEST
                );
            }
            
            $errors = [];

            // pass front info into contact form
            !empty($data['email']) ? $contact->setEmail($data['email']) : $errors[] = "email.errors.required";
            !empty($data['message']) ? $contact->setMessage($data['message']) : $errors[] = "message.errors.required";
            $contact->setDemand($data['demand']);
            $contact->setGivenName($data['givenName']);
            $contact->setFamilyName($data['familyName']);
            $contact->setDatetime(new DateTime());

            // We set the right type of contact
            if (isset($this->contactTypes[$data['demand']])) {
                (isset(Contact::TYPES[$this->contactTypes[$data['demand']]])) ? $contact->setType(Contact::TYPES[$this->contactTypes[$data['demand']]]) : $contact->setType(Contact::TYPES['contact']);
            } else {
                $contact->setType(Contact::TYPES['contact']);
            }

            if (count($errors) > 0) {
                return new JsonResponse(
                    ["errors" => $errors],
                    \Symfony\Component\HttpFoundation\Response::HTTP_UNPROCESSABLE_ENTITY
                );
            }

            if ($response = $contactManager->sendContactEmail($contact)) {
                return new JsonResponse(
                    ["message" => "success"],
                    \Symfony\Component\HttpFoundation\Response::HTTP_ACCEPTED
                );
            }
            return new JsonResponse(
                ["message" => "error"],
                \Symfony\Component\HttpFoundation\Response::HTTP_BAD_REQUEST
            );
        }

        // todo: custom error and ok messages
        return new JsonResponse(
            ["message" => "error"],
            \Symfony\Component\HttpFoundation\Response::HTTP_FORBIDDEN
        );
    }

    /**
     * Get the contact items
     */
    public function getContactItems(Request $request)
    {
        if ($request->isMethod('POST')) {
            return new JsonResponse($this->contactManager->getContactItems());
        }
        return new JsonResponse();
    }
}