47 lines
2.2 KiB
PHP
47 lines
2.2 KiB
PHP
<?php
|
|
$settings = [
|
|
'database' => 'php-crud-api',
|
|
'username' => 'php-crud-api',
|
|
'password' => 'php-crud-api',
|
|
'controllers' => 'records,columns,cache,openapi',
|
|
'middlewares' => 'cors,jwtAuth,basicAuth,authorization,validation,ipAddress,sanitation,multiTenancy,pageLimits,joinLimits,customization',
|
|
'jwtAuth.mode' => 'optional',
|
|
'jwtAuth.time' => '1538207605',
|
|
'jwtAuth.secret' => 'axpIrCGNGqxzx2R9dtXLIPUSqPo778uhb8CA0F4Hx',
|
|
'basicAuth.mode' => 'optional',
|
|
'basicAuth.passwordFile' => __DIR__ . DIRECTORY_SEPARATOR . '.htpasswd',
|
|
'authorization.tableHandler' => function ($operation, $tableName) {
|
|
return !($tableName == 'invisibles' && !isset($_SESSION['claims']['name']) && empty($_SESSION['username']));
|
|
},
|
|
'authorization.columnHandler' => function ($operation, $tableName, $columnName) {
|
|
return !($columnName == 'invisible');
|
|
},
|
|
'authorization.recordHandler' => function ($operation, $tableName) {
|
|
return ($tableName == 'comments') ? 'filter=message,neq,invisible' : '';
|
|
},
|
|
'ipAddress.tables' => 'barcodes',
|
|
'ipAddress.columns' => 'ip_address',
|
|
'sanitation.handler' => function ($operation, $tableName, $column, $value) {
|
|
return is_string($value) ? strip_tags($value) : $value;
|
|
},
|
|
'validation.handler' => function ($operation, $tableName, $column, $value, $context) {
|
|
return ($column['name'] == 'post_id' && !is_numeric($value)) ? 'must be numeric' : true;
|
|
},
|
|
'multiTenancy.handler' => function ($operation, $tableName) {
|
|
return ($tableName == 'kunsthåndværk') ? ['user_id' => 1] : [];
|
|
},
|
|
'pageLimits.pages' => 5,
|
|
'pageLimits.records' => 10,
|
|
'joinLimits.depth' => 2,
|
|
'joinLimits.tables' => 4,
|
|
'joinLimits.records' => 10,
|
|
'customization.beforeHandler' => function ($operation, $tableName, $request, $environment) {
|
|
$environment->start = 0.003/*microtime(true)*/;
|
|
},
|
|
'customization.afterHandler' => function ($operation, $tableName, $response, $environment) {
|
|
if ($tableName == 'kunsthåndværk' && $operation == 'increment') {
|
|
$response->addHeader('X-Time-Taken', 0.006/*microtime(true)*/ - $environment->start);
|
|
}
|
|
},
|
|
'debug' => false,
|
|
];
|