Download the PHP package floppy/server without Composer

On this page you can find all versions of the php package floppy/server. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package server

FloppyServer

Build Status

FloppyServer is a file storage library. There is also FloppyClient library and symfony2 bundle that adds few integration points to symfony2 applications.

The main goal of Floppy-family libraries is to make dealing with every aspect of files as easy as possible. Floppy-family libraries improve dealing with: file uploading, file storing, generating various file versions (thumbnails, watermarks etc.), representing files in Entities and more.

When your application uses images and other files intensively, there is a problem with generation required thumbnails, code to handle file upload is full of boilerplate, dealing with files is awkward. There are very good bundles to Imagine that partially resolves first problem, but not other problems. This documentation covers only FloppyServer library, if you want to see how to use FloppyServer from the client side, check FloppyBundle and FloppyClient libraries.

File optimizations

FloppyServer is able to do some extra processing on uploaded file. It is able to resize large images before store it to storage and execute various optimizations on images thanks to ImageOptimizer library. Resizing images greater that Full HD size is enabled by default, but other optimizations are disabled and you could enable it manually thanks to fileHandlers.image.enableOptimizations option. Be aware of that, image optimizations could be cpu extensive, however default optimizers are as lightweight as possible.

File filters

Floppy supports applying filters on files, especially on images. Original, optimized files are stored in storage, but it is possibility to generate different version of the file on the fly when users are requesting for the file. Different version of the file could be thumbnails, images with watermark, cropped images and more. See FloppyClient docs for more details about filters, supported filters are similar to filters from LiipImagineBundle. After generating thumbnail or other version of the file, it is cached and on the next request for the same version, file would be fetched from cache, so processing is done once.

Extensible architecture

FloppyServer is designed to handle multiple clients, so you can setup one instance of FloppyServer and use it in many applications. This library is fully customizable and extensible, you can define what file types can be stored, what file types would be processed before sending to client (for example generating thumbnails, adding watermarks etc), what file types would and how to be optimized, what security credentials would be required to upload / download files and more.

CORS / crossdomain.xml / clientaccesspolicy.xml are supported by adding simple entry into configuration so you can upload to FloppyServer directly from web browser even if FloppyServer instance is running on different host than your app. There is also nice symfony2 integration (see FloppyBundle documentation), so uploading files and using files in application is very simple and elegant.

Documentation

ToC

Simple setup example

To create your floppy server application you should create empty composer project, add dependency to floppy/server package and create following index.php file.

composer.json file:

web/index.php file:

Virtual host should be created in web directory, storage will be in web/../storage dir.

Detailed configuration and extension points

Security

There are two levels to define security rules:

To define firewall for given action, use this code:

FloppyServer uses Pimple2 library as dependency injection container, so $container variable in Closure param is Pimple instance.

You can also use security rules to have access to information about file that is being uploaded or downloaded while taking decision about permissions:

Floppy\Server\RequestHandler\Security\Rule interface has one method: processRule(Request $request, HasFileInfo $object). $object can be a Floppy\Common\FileSource when action is upload, Floppy\Common\FileId when action is download. Current only implementation of Security\Rule interface is PolicyRule that is able to check expiration of request and type of uploaded file. PolicyRule checks two parameters from Request: policy and signature. Policy contains information about request expiration time and supported file types of the request, signature ensures policy was send by approved client and was not modified by third-party entity. PolicyRule is default security rule. By default when in Request policy is missing, the rule allows perform requested action (download / upload). You can change this behaviour and configure PolicyRule to throw security exception when policy is missing. This is able thanks to two options:

When you define PolicyRule to upload (or/and download) action to require policy, every upload (or/and download) request should contains security credentials. To generate proper url to file from FloppyClient, you should provide security credentials in third argument of Floppy\Client\UrlGenerator::generate($fileId, $fileType = null, $credentialAttributes = array()) method, example:

To attach security credentials to upload action using Floppy\Client\FloppyClient class you should use second argument of FloppyClient::upload method:

If you use FloppyBundle you have possibility to provide security credentials in floppy_file form type:

You can also provide credentials while generating url from floppy_url twig function:

If you want to add extra security attributes, you can extend PolicyRule and add support for your extra attributes, for example user id etc.

File handlers

There are two file groups by default: images and other files. Images has its own FileHandler that adds support for processing before storing and sending file to a client. If you want to create your own files' group you should create Floppy\Server\FileHandler\FileHandler implementation (Floppy\Server\FileHandler\AbstractFileHandler implements the most part of file handler).

By default file will be processed by image file handler when file has jpg, jpeg, png or gif extension and has image/png, image/jpg, image/jpeg, image/pjpeg or image/gif mime type. file file handler is turned off by default, so you should explicitly configure what extensions and mime-types are supported. Extensions and mime types can be configured by options: fileHandlers.image.mimeTypes, fileHandlers.image.extensions, fileHandlers.file.mimeTypes, fileHandlers.file.extensions. Example:

There is an example how to configure your own file handler:

Recommended setups

FloppyServer can be setup in few ways, there are 4 recommended setups. Before reading this section read Simple setup example section, because it says how composer.json and index.php files should to be.

Public directory + apache htaccess (or nginx replacement) fallback for unexisting files

The idea is to put your storage directory to public directory and configure htaccess to fallback requests to unexisting files to your index.php file. This is the most efficient way to setup Floppy. When requested thumbnail exists (because it was generated in the past) server directly send file without running php code. When thumbnail is missing, it will be created by FloppyServer.

Advantages:

Disadvantages:

Example:

Non-public directory + apache x-sendfile (or nginx replacement)

The alternative is to setup FloppyServer in non-public directory and adds x-sendfile (or nginx replacement) support to gain performance.

Advantages:

Disadvantages:

Example:

More about x-sendfile configuration you can read in documentation

If you have no x-sendfile mod on your webserver, you should use configuration from Simple setup example section. It will be working but would be inefficient.

Both non-public and public directory

You can also setup your floppy server to store files in two root directories. One of those directories should be non-public. Client that is uploading file says whether file should be stored in public or non-public directory.

Example:

On the client side you should tell do you want to upload private or public file (default value is public):

(in Security section is more info about usage $client, floppy form and twig function in symfony2 bundle)

Bundle FloppyServer into your symfony2 application

Not yet available ;)

License

This project is under MIT license.


All versions of server with dependencies

PHP Build Version
Package Version
Requires floppy/common Version >=0.1.0,<0.2.0
symfony/http-foundation Version >=2.1,<2.5
symfony/event-dispatcher Version >=2.1,<2.5
imagine/imagine Version >=0.6.0,<0.7.0
symfony/filesystem Version >=2.1,<2.5
pimple/pimple Version 2.0.*
psr/log Version 1.0.0
ps/imagine-extra Version >=1.0.0,<2.0.0
ps/image-optimizer Version ~1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package floppy/server contains the following files

Loading the files please wait ....