PHP code example of tuupola / branca-middleware
1. Go to this page and download the library: Download tuupola/branca-middleware library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
tuupola / branca-middleware example snippets
$app->add(new Tuupola\Middleware\BrancaAuthentication([
"secret" => "supersecretkeyyoushouldnotcommit",
"error" => function ($request, $response, $arguments) {
$data["status"] = "error";
$data["message"] = $arguments["message"];
return $response
->withHeader("Content-Type", "application/json")
->write(json_encode($data, JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT));
}
]));
php
$app->add(new Tuupola\Middleware\BrancaAuthentication([
"secret" => "supersecretkeyyoushouldnotcommit"
]));
php
$app->add(new Tuupola\Middleware\BrancaAuthentication([
"secret" => getenv("BRANCA_SECRET")
]));
php
$app->add(new Tuupola\Middleware\BrancaAuthentication([
"path" => "/api", /* or ["/api", "/admin"] */
"secret" => "supersecretkeyyoushouldnotcommit"
]));
php
$app->add(new Tuupola\Middleware\BrancaAuthentication([
"path" => ["/api", "/admin"],
"ignore" => ["/api/token", "/admin/ping"],
"secret" => "supersecretkeyyoushouldnotcommit"
]));
php
$app->add(new Tuupola\Middleware\BrancaAuthentication([
"ttl" => 3600, /* 60 minutes */
"secret" => "supersecretkeyyoushouldnotcommit"
]));
php
$app->add(new Tuupola\Middleware\BrancaAuthentication([
"header" => "X-Token",
"secret" => "supersecretkeyyoushouldnotcommit"
]));
php
$app->add(new Tuupola\Middleware\BrancaAuthentication([
"header" => "X-Token",
"regexp" => "/(.*)/",
"secret" => "supersecretkeyyoushouldnotcommit"
]));
php
$app->add(new Tuupola\Middleware\BrancaAuthentication([
"cookie" => "nekot",
"secret" => "supersecretkeyyoushouldnotcommit"
]));
php
$app->add(new Tuupola\Middleware\BrancaAuthentication([
"secret" => "supersecretkeyyoushouldnotcommit",
"before" => function ($request, $arguments) {
return $request->withAttribute("test", "test");
}
]));
php
$app->add(new Tuupola\Middleware\BrancaAuthentication([
"secret" => "supersecretkeyyoushouldnotcommit",
"after" => function ($response, $arguments) {
return $response->withHeader("X-Brawndo", "plants crave");
}
]));
php
$app->add(new Tuupola\Middleware\BrancaAuthentication([
"secure" => false,
"secret" => "supersecretkeyyoushouldnotcommit"
]));
php
[
"uid" => 123,
"scope" => ["read", "write", "delete"]
]
php
$app->add(new Tuupola\Middleware\BrancaAuthentication([
"secret" => "supersecretkeyyoushouldnotcommit",
"before" => function ($request, $arguments) {
$payload = json_decode($arguments["payload"], true);
return $request->withAttribute("token", $payload);
}
]));
$app->delete("/item/{id}", function ($request, $response, $arguments) {
if (in_array("delete", $request->token->scope)) {
/* Code for deleting item */
} else {
/* No scope so respond with 401 Unauthorized */
return $response->withStatus(401);
}
});