Jérémy Derussé
Contributed by Jérémy Derussé in #28975

When using env vars to configure Symfony it's common to use URLs to define the value of DSN-like config options like the following:

1
2
# .env
MONGODB_URL="mongodb://db_user:db_password@127.0.0.1:27017/db_name"

However, sometimes you need to access to some parts of the URL (such as the database name or the port number) to define the value of other options. In Symfony 4.3, we've added two new env var processors (url and query_string) to do that.

The url processor parses the given URL and returns an associative array with its components, so you can combine it with the key processor:

1
2
3
4
5
6
7
8
9
10
# config/packages/mongodb.yaml
mongo_db_bundle:
    clients:
        default:
            # ...
            username: '%env(key:user:url:MONGODB_URL)%'
            password: '%env(key:pass:url:MONGODB_URL)%'
    connections:
        default:
            database_name: '%env(key:path:url:MONGODB_URL)%'

The query_string processor parses the query string part of the given URL and returns an associative array with its components, so you can also combine it with the key processor. If the env var is defined like this:

1
2
# .env
MONGODB_URL="mongodb://db_user:db_password@127.0.0.1:27017/db_name?timeout=3000"

You can get the value of the timeout parameter of the query string as follows:

1
2
3
4
5
6
# config/packages/mongodb.yaml
mongo_db_bundle:
    clients:
        default:
            # ...
            connectTimeoutMS: '%env(int:key:timeout:query_string:MONGODB_URL)%'
Published in #Living on the edge