This bundle allows you to have an upload of files through an API.
Step 1: Install MediaApiBundle using Composer
Add MediaApiBundle in your composer.json
:
{
"require": {
"saro0h/media-api-bundle": "~1.0"
}
}
Now tell composer to download the bundle by running the command:
$ php composer.phar update saro0h/media-api-bundle
Enable the bundle in the kernel:
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Saro0h\MediaApiBundle\MediaApiBundle(),
// ...
);
}
Add the following lines to the app/config/routing.yml
:
media_api_bundle:
resource: "@MediaApiBundle/Resources/config/routing.yml"
Run the following commands (after configuring the ORM parameters)
app/console doctrine:database:create
app/console doctrine:schema:create
# app/config/config.yml
media_api:
media_path: %media_path% # Path to the folder where the media will be uploaded (by default it's `web/uploads` folder of your project)
field_name: %filename% # Name of the field used to supply the file in the form (by default it's "media")
- POST /media
If you did not configure the bundle, you just have to POST on the url /media/api/upload
the field media
with the file as showed below:
If you can also choose the name of the file uploaded by supplying the field filename
:
- GET /media/api/{id}
- DELETE /media/api/get/{id}
This bundle is licensed under the MIT license.