This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/app/Middleware/EnableCORS.php

32 lines
820 B
PHP

<?php
/**
* Enables CORS globally.
* @package Sakura
*/
namespace Sakura\Middleware;
/**
* Enables CORS.
* @package Sakura
* @author Julian van de Groep <me@flash.moe>
*/
class EnableCORS implements MiddlewareInterface
{
/**
* Enables CORS.
*/
public function run(): void
{
if (isset($_SERVER['HTTP_ORIGIN'])) {
header("Access-Control-Allow-Origin: {$_SERVER['HTTP_ORIGIN']}");
header('Access-Control-Allow-Credentials: true');
header('Access-Control-Max-Age: 86400');
header("Access-Control-Allow-Methods: GET, POST");
if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS'])) {
header("Access-Control-Allow-Headers: {$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']}");
}
}
}
}