Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Extra Param Converter Bundle Laravel Package

bu/extra-param-converter-bundle

View on GitHub
Deep Wiki
Context7

BuExtraParamConverterBundle

BuExtraParamConverterBundle extends Sensio ParamConverter functionality, allowing to convert simple GET and complex POST data to entities, decode json data and strip tags from data.

Requires SensioFrameworkExtraBundle.

Build Status

Installation

Add bundle with composer:

composer require bu/extra-param-converter-bundle dev-master

Register bundle in AppKernel.php:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Bu\ExtraParamConverterBundle\BuExtraParamConverterBundle(),
    );
}

Sensio ParamConverter should be enabled, ie parameter sensio_framework_extra.request.converters in your app config should be set to true (set by default).

Usage

GetConverter

You don't need to write any annotations, following code will work with any GET request with user parameter, like "/getUserDetails?user=123"

public function detailsAction(User $user)
{
    ...
}

where 123 is user id. It will throw NotFoundHttpException if can't find User by this id.

PostConverter

use Bu\ExtraParamConverterBundle\Configuration\ExtraParamConverter;

    /**
     * @ExtraParamConverter("data", jsonData=true, stripTags=true, namespace="App", entities={"groups"="Group", "role"="Role"})
     */
    public function saveUserAction(array $data)
    {
        // $data['groups'] ...
    }

In this example:

  • raw post data will be json-decoded (jsonData=false by default for standard form submit)
  • all string values will be filtered (stripTags=false by default)
  • all "groups" will converted to "Group" entities, array [id1, id2, id3] - to array of "App:Group" entities
  • all "role" will converted to "Role" entity, single value to single entity
  • all is processed recursively to deepest level
  • result will available in $data (confugired by first unnamed parameter in annotation)
  • exceptions will be thrown in number of incorrect situations:
    • invalid json data, invalid post data
    • entities are defined without namespace (you can ommit them both if want only jsonDecode/stripTags)
    • key defined for entity not found in data
    • any entity not found by id

Recommented to set doctrine mapping alias for your bundle:

# Doctrine Configuration
doctrine:
    orm:
        mappings:
            ApplicationMySuperBundle:
                alias: My

This will allow you to use short namespace "My" instead of long autogenerated "ApplicationMySuperBundle".

License

This bundle is under the MIT license.

Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
comsave/common
alecsammon/php-raml-parser
chrome-php/wrench
lendable/composer-license-checker
typhoon/reflection
mesilov/moneyphp-percentage
mike42/gfx-php
bookdown/themes
aura/view
aura/html
aura/cli
povils/phpmnd
nayjest/manipulator
omnipay/tests
psr-mock/http-message-implementation
psr-mock/http-factory-implementation
psr-mock/http-client-implementation
voku/email-check
voku/urlify
rtheunissen/guzzle-log-middleware