resume/src/Sikofitt/Controller/ApiControllerProvider.php

87 lines
2.6 KiB
PHP
Raw Normal View History

2016-07-08 14:58:30 -07:00
<?php
2016-07-09 21:37:39 -07:00
/*
* This file is part of Resume.PHP.
*
* (copyleft) R. Eric Wheeler <sikofitt@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
2016-07-08 14:58:30 -07:00
/**
* This file is part of test.
*
* @file ApiControllerProvider.php
*
* R. Eric Wheeler <reric@ee.stanford.edu>
*
* 7/8/16 / 10:11 AM
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sikofitt\Controller;
use ReCaptcha\ReCaptcha;
use Silex\Api\ControllerProviderInterface;
2016-07-09 21:37:39 -07:00
use Silex\Application;
2016-07-08 14:58:30 -07:00
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request;
2016-07-09 21:37:39 -07:00
class ApiControllerProvider implements ControllerProviderInterface
{
2016-07-08 14:58:30 -07:00
2016-07-09 21:37:39 -07:00
public function connect(Application $app)
{
$controllers = $app['controllers_factory'];
2016-07-08 14:58:30 -07:00
2016-07-09 21:37:39 -07:00
$controllers->get('/v1/schema', function () {
2016-07-08 14:58:30 -07:00
return new \Symfony\Component\HttpFoundation\Response('Success!');
});
2016-07-09 21:37:39 -07:00
$controllers->post('/v1/captcha', function (Request $request) use ($app) {
2016-07-08 14:58:30 -07:00
$captcha = new ReCaptcha('6LcvmSQTAAAAAITkvYJjgLar1LqGGLz-ic0ZMiXo');
$valid = $captcha->verify(
$request->request->get('g-recaptcha-response'),
$request->server->get('REMOTE_ADDR')
);
2016-07-09 21:37:39 -07:00
if ($valid->isSuccess()) {
$return = [
2016-07-08 14:58:30 -07:00
'valid' => true,
'message' => [
'email' => null !== $app->config('app.email') ? $app->config('app.email') : 'No email has been set in the configuration. Please let the owner know.',
'phone' => null !== $app->config('app.phone') ? $app->config('app.phone') : 'No phone has been set in the configuration. Please let the owner know.',
],
];
} else {
2016-07-09 21:37:39 -07:00
$errorCodes = [
2016-07-08 14:58:30 -07:00
'missing-input-secret' => 'The secret parameter is missing.',
'invalid-input-secret' => 'The secret parameter is invalid or malformed.',
'missing-input-response' =>'The response parameter is missing.',
'invalid-input-response' => 'The response parameter is invalid or malformed.'
];
2016-07-09 21:37:39 -07:00
foreach ($valid->getErrorCodes() as $code) {
if (array_key_exists($code, $errorCodes)) {
$errors[] = $errorCodes[$code];
}
}
if (!isset($errors)) {
$errors[] = 'An unknown error occurred.';
2016-07-08 14:58:30 -07:00
}
2016-07-09 21:37:39 -07:00
$return = [
2016-07-08 14:58:30 -07:00
'valid' => false,
'message' => $errors,
];
}
return new JsonResponse(json_encode($return));
});
2016-07-09 21:37:39 -07:00
return $controllers;
}
}