1. Go to this page and download the library: Download floppy/server library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
$requestHandler = $requestHandlerFactory->createRequestHandler(array(
//other options...
'requestHandler.firewall.download' => function($container){ //it can be also requestHandler.firewall.upload
return function(\Symfony\Component\HttpFoundation\Request $request){
if(/* if access should be denied */) {
throw new \Floppy\Server\RequestHandler\Exception\AccessDeniedException();
}
};
},
//...
));
$requestHandler = $requestHandlerFactory->createRequestHandler(array(
//other options...
'action.upload.securityRule' => function($container){ //it can be also action.download.securityRule
return //implementation of Floppy\Server\RequestHandler\Security\Rule interface
},
//...
));
//for example in controller
$form = $this->createFormBuilder($document)
->add('file', 'floppy_file', array('credentials' => array('expiration' => time()+500, 'file_types' => array('image', 'file'))))
->getForm();
//add support for text files - both mimeTypes and extensions must be configured
$requestHandler = $requestHandlerFactory->createRequestHandler(array(
'fileHandlers.file.mimeTypes' => array('text/plain'),
'fileHandlers.file.extensions' => array('txt'),
));
//add support for text files - both mimeTypes and extensions must be configured
$requestHandler = $requestHandlerFactory->createRequestHandler(array(
'fileHandlers' => function($container){
return array(
//default "image" file handler
$container['fileHandlers.image.name'] => $container['fileHandlers.image'],
'custom' => new YourCustomFileHandler(new CustomPathMatcher(), array()),
//default "file" file handler
$container['fileHandlers.file.name'] => $container['fileHandlers.file'],
);
}
));
//part of web/index.php file in public directory
$requestHandler = $requestHandlerFactory->createRequestHandler(array(
'storage.dir' => __DIR__,//path to public directory
'secretKey' => 'super-secret-key',
'action.cors.allowedOriginHosts' => array(
'*.your-client-host.com',
),
));
//example of minimal web/.htaccess file
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (.*) index.php/$1
//part of web/index.php file in public directory
$requestHandler = $requestHandlerFactory->createRequestHandler(array(
'storage.dir' => __DIR__.'/../storage', //path to private directory
'secretKey' => 'super-secret-key',
'action.cors.allowedOriginHosts' => array(
'*.your-client-host.com',
),
'action.download.responseFactory' => new \Floppy\Server\RequestHandler\XSendFileDownloadResponseFactory(),
));
//web/.htaccess file
<IfModule mod_xsendfile.c>
<files index.php>
XSendFile on
</files>
</IfModule>
//your virtual host configuration
<VirtualHost ...>
XSendFilePath /absolute/path/to/your/storage/directory
</VirtualHost>
//part of web/index.php file in public directory
$requestHandler = $requestHandlerFactory->createRequestHandler(array(
'storage.dir' => __DIR__, //path to public directory
'storage.dir.private' => __DIR__.'/../storage', //path to private directory
'secretKey' => 'super-secret-key',
'action.cors.allowedOriginHosts' => array(
'*.your-client-host.com',
),
//if you have xsendfile on your webserver this response factory is recommended
'action.download.responseFactory' => new \Floppy\Server\RequestHandler\XSendFileDownloadResponseFactory(),
));
//eventual xsendfile configuration as in previous example
//using Floppy\Client\FloppyClient
$client->upload($someFileSource, array('access' => 'private'));
//using symfony2 form
$form = $this->createFormBuilder($document)
->add('file', 'floppy_file', array('credentials' => array('access' => 'private')))
->getForm();
//generate url to private file using twig function from symfony2 bundle
<img src="{{ floppy_url(document.file.with({ "thumbnail": { "size": [50, 50] } }), {
"access": "private"
}) }}" />
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.