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
Raw Permalink Normal View History

2016-08-10 16:10:57 +00:00
<?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.
*/
2016-12-04 16:33:52 +00:00
public function run(): void
2016-08-10 16:10:57 +00:00
{
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']}");
}
}
}
}