
new endpoints for uploads POST api/public/v1/files/upload Change-Id: If35c616eb243bf5ec66205fb630fe30ce4dad647 Signed-off-by: smarcet <smarcet@gmail.com>
56 lines
2.4 KiB
PHP
56 lines
2.4 KiB
PHP
<?php namespace App\Http\Middleware;
|
|
/**
|
|
* Copyright 2019 OpenStack Foundation
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
**/
|
|
use Closure;
|
|
use utils\ParseMultiPartFormDataInputStream;
|
|
use Illuminate\Support\Facades\Log;
|
|
/**
|
|
* Class ParseMultipartFormDataInputForNonPostRequests
|
|
* @package App\Http\Middleware
|
|
*/
|
|
final class ParseMultipartFormDataInputForNonPostRequests
|
|
{
|
|
/*
|
|
* Content-Type: multipart/form-data - only works for POST requests. All others fail, this is a bug in PHP since 2011.
|
|
* See comments here: https://github.com/laravel/framework/issues/13457
|
|
*
|
|
* This middleware converts all multi-part/form-data for NON-POST requests, into a properly formatted
|
|
* request variable for Laravel 5.6. It uses the ParseInputStream class, found here:
|
|
* https://gist.github.com/devmycloud/df28012101fbc55d8de1737762b70348
|
|
*/
|
|
public function handle($request, Closure $next)
|
|
{
|
|
if ($request->method() == 'POST' || $request->method() == 'GET') {
|
|
return $next($request);
|
|
}
|
|
|
|
if (preg_match('/multipart\/form-data/', $request->headers->get('Content-Type')) or
|
|
preg_match('/multipart\/form-data/', $request->headers->get('content-type'))
|
|
) {
|
|
$parser = new ParseMultiPartFormDataInputStream(file_get_contents('php://input'));
|
|
$params = $parser->getInput();
|
|
$data = $params['parameters'];
|
|
$files = $params['files'];
|
|
if (count($files) > 0) {
|
|
Log::debug("ParseMultipartFormDataInputForNonPostRequests: files ".json_encode($files));
|
|
$request->files->add($files);
|
|
}
|
|
|
|
if (count($data) > 0) {
|
|
Log::debug("ParseMultipartFormDataInputForNonPostRequests: parameters ".json_encode($data));
|
|
$request->request->add($data);
|
|
}
|
|
}
|
|
return $next($request);
|
|
}
|
|
} |