wassafr / simple-apikey-authenticator-bundle
Wassa Simple API Key Authenticator Bundle
Installs: 55
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ~5.4|~7.0
This package is auto-updated.
Last update: 2024-10-29 04:36:33 UTC
README
The WassaSimpleApiKeyAuthenticatorBundle bundle allows you to add a very simple and light way to authenticate HTTP requests with an API key. It doesn't rely on existing Symfony authentication mechanisms as they require to define some kind of user class to work.
Installation
Require the wassafr/simple-apikey-authenticator-bundle
package in your composer.json and update
your dependencies.
$ composer require wassafr/simple-apikey-authenticator-bundle
Register the bundle in app/AppKernel.php
:
// app/AppKernel.php public function registerBundles() { return array( // ... new Wassa\SimpleApiKeyAuthenticatorBundle\WassaSimpleApiKeyAuthenticatorBundle(), ); }
To enable the configuration, edit the config.yml file as follow:
# app/config/config.yml wassa_simple_api_key_authenticator: api_key: <YOUR_API_KEY> default_action: check | dont_check order: secured,unsecured | unsecured,secured secured_patterns: - ^\/api\/(?!doc) unsecured_patterns: - ^\/api\/(?!doc) - ^\/admin - ^\/bundles - ^\/toto
Configuration
api_key
: pretty straightforwarddefault_action
: should the bundle allow or deny access if not API key is configured, if the requested URL doesn't match any configured pattern or when no API key is providedorder
: the order the request URL will be evaluated against the configured patterns. Pay attention to this as it could lead to unwanted acess or the oppositesecured_patterns
: URL patterns that will required a valid API keyunsecured_patterns
: URL patterns that will NOT required a valid API key
Most of the time you won't need to configure both secured_patterns
and unsecured_patterns
, but who knows.