-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.php
100 lines (81 loc) · 2.87 KB
/
api.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?php
require 'vendor/autoload.php';
require 'config.php';
require 'Database.php';
require 'GraphQLSchema.php';
require 'JwtHandler.php';
require 'RateLimiter.php';
use GraphQL\GraphQL;
use GraphQL\Error\FormattedError;
use GraphQL\Error\DebugFlag;
use MyApp\Database;
use MyApp\JwtHandler;
use MyApp\RateLimiter;
use MyApp\GraphQLSchema;
// Configurations
$config = include('config.php');
try {
// Initialize Database
$db = new Database($config['db']);
// Initialize JWT Handler
$jwtHandler = new JwtHandler($config['jwt_secret']);
// Get the client's token
$headers = getallheaders();
if (!isset($headers['Authorization'])) {
throw new Exception('Authorization header not found.');
}
$token = str_replace('Bearer ', '', $headers['Authorization']);
$decodedToken = $jwtHandler->decode($token);
// Ensure the token has a 'sub' property
if (!isset($decodedToken->sub)) {
throw new Exception('Invalid token structure: "sub" property not found.');
}
// Initialize Rate Limiter
$rateLimiter = new RateLimiter('redis', 2, 1); // 'redis' should be the service name if using docker-compose
// Define allowed services
$allowedServices = ['products', 'customers']; // add more services as needed
// Extract the service from the query
$rawInput = file_get_contents('php://input');
$input = json_decode($rawInput, true);
if (!isset($input['query'])) {
throw new Exception('No query provided.');
}
// Extract service name from the query
preg_match('/\{ (\w+)\(/', $input['query'], $matches);
if (!isset($matches[1]) || !in_array($matches[1], $allowedServices)) {
throw new Exception('Service not allowed.');
}
$service = $matches[1];
// Check rate limit
if ($rateLimiter->isRateLimited($decodedToken->sub, $service)) {
http_response_code(429);
echo json_encode(['error' => 'Too many requests. Please try again later.']);
exit();
}
// Validate input parameters
$query = $input['query'];
$variables = isset($input['variables']) ? $input['variables'] : [];
// Initialize GraphQL Schema
$graphqlSchema = new GraphQLSchema($db, $jwtHandler, 10);
$schema = $graphqlSchema->createSchema();
$context = ['token' => $token];
$rootValue = ['prefix' => 'You said: '];
$result = GraphQL::executeQuery($schema, $query, $rootValue, $context, $variables);
$output = $result->toArray(DebugFlag::INCLUDE_DEBUG_MESSAGE | DebugFlag::RETHROW_INTERNAL_EXCEPTIONS);
} catch (\GraphQL\Error\Error $e) {
$output = [
'errors' => [
FormattedError::createFromException($e)
]
];
} catch (\Exception $e) {
$output = [
'errors' => [
[
'message' => $e->getMessage()
]
]
];
}
header('Content-Type: application/json');
echo json_encode($output);