2023-03-15 16:00:52 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*/
|
|
|
|
|
2022-06-01 18:42:05 +00:00
|
|
|
import {
|
|
|
|
isBefore,
|
|
|
|
startOfMonth,
|
|
|
|
endOfMonth,
|
|
|
|
addMonths,
|
|
|
|
subMonths,
|
|
|
|
differenceInCalendarMonths,
|
2023-01-27 02:21:12 +00:00
|
|
|
fromUnixTime,
|
|
|
|
isAfter,
|
|
|
|
formatRFC3339,
|
2022-06-01 18:42:05 +00:00
|
|
|
} from 'date-fns';
|
2022-04-12 18:30:40 +00:00
|
|
|
import { parseAPITimestamp } from 'core/utils/date-formatters';
|
2022-06-01 18:42:05 +00:00
|
|
|
|
2023-03-22 18:19:11 +00:00
|
|
|
// Matches mocked date in client-dashboard-test file
|
|
|
|
const CURRENT_DATE = new Date('2023-01-13T14:15:00');
|
2023-01-27 02:21:12 +00:00
|
|
|
const COUNTS_START = subMonths(CURRENT_DATE, 12); // pretend vault user started cluster 6 months ago
|
2022-06-01 18:42:05 +00:00
|
|
|
// for testing, we're in the middle of a license/billing period
|
2023-01-27 02:21:12 +00:00
|
|
|
const LICENSE_START = startOfMonth(subMonths(CURRENT_DATE, 6));
|
2022-06-01 18:42:05 +00:00
|
|
|
// upgrade happened 1 month after license start
|
|
|
|
const UPGRADE_DATE = addMonths(LICENSE_START, 1);
|
2023-01-27 02:21:12 +00:00
|
|
|
|
|
|
|
function getSum(array, key) {
|
|
|
|
return array.reduce((sum, { counts }) => sum + counts[key], 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
function getTotalCounts(array) {
|
|
|
|
return {
|
|
|
|
distinct_entities: getSum(array, 'entity_clients'),
|
|
|
|
entity_clients: getSum(array, 'entity_clients'),
|
|
|
|
non_entity_tokens: getSum(array, 'non_entity_clients'),
|
|
|
|
non_entity_clients: getSum(array, 'non_entity_clients'),
|
|
|
|
clients: getSum(array, 'clients'),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function randomBetween(min, max) {
|
|
|
|
return Math.floor(Math.random() * (max - min + 1) + min);
|
|
|
|
}
|
|
|
|
|
|
|
|
function arrayOfCounts(max, arrayLength) {
|
|
|
|
var result = [];
|
|
|
|
var sum = 0;
|
|
|
|
for (var i = 0; i < arrayLength - 1; i++) {
|
|
|
|
result[i] = randomBetween(1, max - (arrayLength - i - 1) - sum);
|
|
|
|
sum += result[i];
|
|
|
|
}
|
|
|
|
result[arrayLength - 1] = max - sum;
|
|
|
|
return result.sort((a, b) => b - a);
|
|
|
|
}
|
|
|
|
|
|
|
|
function generateNamespaceBlock(idx = 0, isLowerCounts = false, ns) {
|
|
|
|
const min = isLowerCounts ? 10 : 50;
|
|
|
|
const max = isLowerCounts ? 100 : 5000;
|
|
|
|
const nsBlock = {
|
|
|
|
namespace_id: ns?.namespace_id || (idx === 0 ? 'root' : Math.random().toString(36).slice(2, 7) + idx),
|
|
|
|
namespace_path: ns?.namespace_path || (idx === 0 ? '' : `ns/${idx}`),
|
|
|
|
counts: {},
|
|
|
|
};
|
|
|
|
const mounts = [];
|
|
|
|
Array.from(Array(10)).forEach((mount, index) => {
|
|
|
|
const mountClients = randomBetween(min, max);
|
|
|
|
const [nonEntity, entity] = arrayOfCounts(mountClients, 2);
|
|
|
|
mounts.push({
|
|
|
|
mount_path: `auth/authid${index}`,
|
2022-04-12 22:49:35 +00:00
|
|
|
counts: {
|
2023-01-27 02:21:12 +00:00
|
|
|
clients: mountClients,
|
|
|
|
entity_clients: entity,
|
|
|
|
non_entity_clients: nonEntity,
|
|
|
|
distinct_entities: entity,
|
|
|
|
non_entity_tokens: nonEntity,
|
2022-04-12 22:49:35 +00:00
|
|
|
},
|
2023-01-27 02:21:12 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
mounts.sort((a, b) => b.counts.clients - a.counts.clients);
|
|
|
|
nsBlock.mounts = mounts;
|
|
|
|
nsBlock.counts = getTotalCounts(mounts);
|
|
|
|
return nsBlock;
|
|
|
|
}
|
2022-06-01 18:42:05 +00:00
|
|
|
|
2023-01-27 02:21:12 +00:00
|
|
|
function generateMonths(startDate, endDate, namespaces) {
|
|
|
|
const startDateObject = startOfMonth(parseAPITimestamp(startDate));
|
|
|
|
const endDateObject = startOfMonth(parseAPITimestamp(endDate));
|
|
|
|
const numberOfMonths = differenceInCalendarMonths(endDateObject, startDateObject) + 1;
|
2022-11-09 23:15:31 +00:00
|
|
|
const months = [];
|
2023-01-27 02:21:12 +00:00
|
|
|
if (isBefore(startDateObject, UPGRADE_DATE) && isBefore(endDateObject, UPGRADE_DATE)) {
|
|
|
|
// months block is empty if dates do not span an upgrade
|
|
|
|
return [];
|
|
|
|
}
|
2022-06-01 18:42:05 +00:00
|
|
|
for (let i = 0; i < numberOfMonths; i++) {
|
2023-01-27 02:21:12 +00:00
|
|
|
const month = addMonths(startDateObject, i);
|
|
|
|
const hasNoData = isBefore(month, UPGRADE_DATE);
|
|
|
|
if (hasNoData) {
|
|
|
|
months.push({
|
|
|
|
timestamp: formatRFC3339(month),
|
|
|
|
counts: null,
|
|
|
|
namespaces: null,
|
|
|
|
new_clients: null,
|
|
|
|
});
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
const monthNs = namespaces.map((ns, idx) => generateNamespaceBlock(idx, true, ns));
|
|
|
|
const newClients = namespaces.map((ns, idx) => generateNamespaceBlock(idx, true, ns));
|
2022-06-01 18:42:05 +00:00
|
|
|
months.push({
|
2023-01-27 02:21:12 +00:00
|
|
|
timestamp: formatRFC3339(month),
|
|
|
|
counts: getTotalCounts(monthNs),
|
|
|
|
namespaces: monthNs.sort((a, b) => b.counts.clients - a.counts.clients),
|
|
|
|
new_clients: {
|
|
|
|
counts: getTotalCounts(newClients),
|
|
|
|
namespaces: newClients.sort((a, b) => b.counts.clients - a.counts.clients),
|
|
|
|
},
|
2022-06-01 18:42:05 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
return months;
|
|
|
|
}
|
|
|
|
|
2023-01-27 02:21:12 +00:00
|
|
|
function generateActivityResponse(namespaces, startDate, endDate) {
|
|
|
|
return {
|
|
|
|
start_time: isAfter(new Date(startDate), COUNTS_START) ? startDate : formatRFC3339(COUNTS_START),
|
|
|
|
end_time: endDate,
|
|
|
|
by_namespace: namespaces.sort((a, b) => b.counts.clients - a.counts.clients),
|
|
|
|
months: generateMonths(startDate, endDate, namespaces),
|
|
|
|
total: getTotalCounts(namespaces),
|
|
|
|
};
|
|
|
|
}
|
2022-04-25 17:23:12 +00:00
|
|
|
|
2022-04-12 22:49:35 +00:00
|
|
|
export default function (server) {
|
|
|
|
server.get('sys/license/status', function () {
|
|
|
|
return {
|
2022-06-01 18:42:05 +00:00
|
|
|
request_id: 'my-license-request-id',
|
2022-04-12 22:49:35 +00:00
|
|
|
data: {
|
|
|
|
autoloaded: {
|
2022-06-01 18:42:05 +00:00
|
|
|
license_id: 'my-license-id',
|
|
|
|
start_time: formatRFC3339(LICENSE_START),
|
2023-01-27 02:21:12 +00:00
|
|
|
expiration_time: formatRFC3339(endOfMonth(addMonths(CURRENT_DATE, 6))),
|
2022-04-12 22:49:35 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
server.get('sys/internal/counters/config', function () {
|
|
|
|
return {
|
2022-06-01 18:42:05 +00:00
|
|
|
request_id: 'some-config-id',
|
2022-04-12 22:49:35 +00:00
|
|
|
data: {
|
|
|
|
default_report_months: 12,
|
|
|
|
enabled: 'default-enable',
|
|
|
|
queries_available: true,
|
|
|
|
retention_months: 24,
|
|
|
|
},
|
2022-04-12 18:30:40 +00:00
|
|
|
};
|
2022-04-12 22:49:35 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
server.get('/sys/internal/counters/activity', (schema, req) => {
|
2023-01-27 02:21:12 +00:00
|
|
|
let { start_time, end_time } = req.queryParams;
|
|
|
|
// backend returns a timestamp if given unix time, so first convert to timestamp string here
|
|
|
|
if (!start_time.includes('T')) start_time = fromUnixTime(start_time).toISOString();
|
|
|
|
if (!end_time.includes('T')) end_time = fromUnixTime(end_time).toISOString();
|
|
|
|
const namespaces = Array.from(Array(12)).map((v, idx) => generateNamespaceBlock(idx));
|
2022-04-12 18:30:40 +00:00
|
|
|
return {
|
2023-01-27 02:21:12 +00:00
|
|
|
request_id: 'some-activity-id',
|
2022-04-12 18:30:40 +00:00
|
|
|
lease_id: '',
|
|
|
|
renewable: false,
|
|
|
|
lease_duration: 0,
|
2023-01-27 02:21:12 +00:00
|
|
|
data: generateActivityResponse(namespaces, start_time, end_time),
|
2022-02-22 21:24:33 +00:00
|
|
|
wrap_info: null,
|
|
|
|
warnings: null,
|
|
|
|
auth: null,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|