762a240890
- Log system revamp: - Logs to stdout, disabled while testing - Use header `X-Request-Id`, or create a new `uuid` when no present, to identyfy log entries - Be able to set log level from env variable `LOG_LEVEL`, useful while testing: `LOG_LEVEL=info npm test`; even more human-readable: `LOG_LEVEL=info npm t | ./node_modules/.bin/pino-pretty` - Be able to reduce the footprint in the final log file depending on the environment - Use one logger for every service: Queries, Batch Queries (Jobs), and Data Ingestion (CopyTo/CopyFrom) - Stop using headers such as: `X-SQL-API-Log`, `X-SQL-API-Profiler`, and `X-SQL-API-Errors` as a way to log info. - Be able to tag requests with labels as an easier way to provide business metrics - Metro: Add log-collector utility (`metro`), it will be moved to its own repository. Attaching it here fro development purposes. Try it with the following command `LOG_LEVEL=info npm t | node metro` - Metro: Creates `metrics-collector.js` a stream to update Prometheus' counters and histograms and exposes them via Express' app (`:9145/metrics`). Use the ones defined in `grok_exporter` Announcements: - Profiler is always set. No need to check its existence anymore - Unify profiler usage for every endpoint Bug fixes: - Avoid hung requests while fetching user identifier
122 lines
2.8 KiB
JavaScript
122 lines
2.8 KiB
JavaScript
'use strict';
|
|
|
|
const AuthApi = require('../../auth/auth-api');
|
|
const basicAuth = require('basic-auth');
|
|
|
|
module.exports = function authorization (metadataBackend, forceToBeMaster = false) {
|
|
return function authorizationMiddleware (req, res, next) {
|
|
const { user } = res.locals;
|
|
const credentials = getCredentialsFromRequest(req);
|
|
|
|
if (!userMatches(credentials, user)) {
|
|
req.profiler.done('authorization');
|
|
|
|
return next(new Error('permission denied'));
|
|
}
|
|
|
|
res.locals.api_key = credentials.apiKeyToken;
|
|
|
|
const params = Object.assign({ metadataBackend }, res.locals, req.query, req.body);
|
|
const authApi = new AuthApi(req, params);
|
|
|
|
authApi.verifyCredentials(function (err, authorizationLevel) {
|
|
req.profiler.done('authorization');
|
|
|
|
if (err) {
|
|
return next(err);
|
|
}
|
|
|
|
res.locals.authorizationLevel = authorizationLevel;
|
|
|
|
if (forceToBeMaster && authorizationLevel !== 'master') {
|
|
return next(new Error('permission denied'));
|
|
}
|
|
|
|
res.set('vary', 'Authorization'); // Honor Authorization header when caching.
|
|
|
|
next();
|
|
});
|
|
};
|
|
};
|
|
|
|
const credentialsGetters = [
|
|
getCredentialsFromHeaderAuthorization,
|
|
getCredentialsFromRequestQueryString,
|
|
getCredentialsFromRequestBody
|
|
];
|
|
|
|
function getCredentialsFromRequest (req) {
|
|
let credentials = null;
|
|
|
|
for (var getter of credentialsGetters) {
|
|
credentials = getter(req);
|
|
|
|
if (apiKeyTokenFound(credentials)) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
return credentials;
|
|
}
|
|
|
|
function getCredentialsFromHeaderAuthorization (req) {
|
|
const { pass, name } = basicAuth(req) || {};
|
|
|
|
if (pass !== undefined && name !== undefined) {
|
|
return {
|
|
apiKeyToken: pass,
|
|
user: name
|
|
};
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
function getCredentialsFromRequestQueryString (req) {
|
|
if (req.query.api_key) {
|
|
return {
|
|
apiKeyToken: req.query.api_key
|
|
};
|
|
}
|
|
|
|
if (req.query.map_key) {
|
|
return {
|
|
apiKeyToken: req.query.map_key
|
|
};
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
function getCredentialsFromRequestBody (req) {
|
|
if (req.body && req.body.api_key) {
|
|
return {
|
|
apiKeyToken: req.body.api_key
|
|
};
|
|
}
|
|
|
|
if (req.body && req.body.map_key) {
|
|
return {
|
|
apiKeyToken: req.body.map_key
|
|
};
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
function apiKeyTokenFound (credentials) {
|
|
if (typeof credentials === 'boolean') {
|
|
return credentials;
|
|
}
|
|
|
|
if (credentials.apiKeyToken !== undefined) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
function userMatches (credentials, user) {
|
|
return !(credentials.user !== undefined && credentials.user !== user);
|
|
}
|