| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488 |
- import fs from "node:fs";
- import batchflow from "batchflow";
- import _ from "lodash";
- import errs from "../lib/error.js";
- import utils from "../lib/utils.js";
- import { access as logger } from "../logger.js";
- import accessListModel from "../models/access_list.js";
- import accessListAuthModel from "../models/access_list_auth.js";
- import accessListClientModel from "../models/access_list_client.js";
- import proxyHostModel from "../models/proxy_host.js";
- import internalAuditLog from "./audit-log.js";
- import internalNginx from "./nginx.js";
- const omissions = () => {
- return ["is_deleted"];
- };
- const internalAccessList = {
- /**
- * @param {Access} access
- * @param {Object} data
- * @returns {Promise}
- */
- create: async (access, data) => {
- await access.can("access_lists:create", data);
- const row = await accessListModel
- .query()
- .insertAndFetch({
- name: data.name,
- satisfy_any: data.satisfy_any,
- pass_auth: data.pass_auth,
- owner_user_id: access.token.getUserId(1),
- })
- .then(utils.omitRow(omissions()));
- data.id = row.id;
- const promises = [];
- // Items
- data.items.map((item) => {
- promises.push(
- accessListAuthModel.query().insert({
- access_list_id: row.id,
- username: item.username,
- password: item.password,
- }),
- );
- return true;
- });
- // Clients
- data.clients?.map((client) => {
- promises.push(
- accessListClientModel.query().insert({
- access_list_id: row.id,
- address: client.address,
- directive: client.directive,
- }),
- );
- return true;
- });
- await Promise.all(promises);
- // re-fetch with expansions
- const freshRow = await internalAccessList.get(
- access,
- {
- id: data.id,
- expand: ["owner", "items", "clients", "proxy_hosts.access_list.[clients,items]"],
- },
- true // skip masking
- );
- // Audit log
- data.meta = _.assign({}, data.meta || {}, freshRow.meta);
- await internalAccessList.build(freshRow);
- if (Number.parseInt(freshRow.proxy_host_count, 10)) {
- await internalNginx.bulkGenerateConfigs("proxy_host", freshRow.proxy_hosts);
- }
- // Add to audit log
- await internalAuditLog.add(access, {
- action: "created",
- object_type: "access-list",
- object_id: freshRow.id,
- meta: internalAccessList.maskItems(data),
- });
- return internalAccessList.maskItems(freshRow);
- },
- /**
- * @param {Access} access
- * @param {Object} data
- * @param {Integer} data.id
- * @param {String} [data.name]
- * @param {String} [data.items]
- * @return {Promise}
- */
- update: async (access, data) => {
- await access.can("access_lists:update", data.id);
- const row = await internalAccessList.get(access, { id: data.id });
- if (row.id !== data.id) {
- // Sanity check that something crazy hasn't happened
- throw new errs.InternalValidationError(
- `Access List could not be updated, IDs do not match: ${row.id} !== ${data.id}`,
- );
- }
- // patch name if specified
- if (typeof data.name !== "undefined" && data.name) {
- await accessListModel.query().where({ id: data.id }).patch({
- name: data.name,
- satisfy_any: data.satisfy_any,
- pass_auth: data.pass_auth,
- });
- }
- // Check for items and add/update/remove them
- if (typeof data.items !== "undefined" && data.items) {
- const promises = [];
- const itemsToKeep = [];
- data.items.map((item) => {
- if (item.password) {
- promises.push(
- accessListAuthModel.query().insert({
- access_list_id: data.id,
- username: item.username,
- password: item.password,
- }),
- );
- } else {
- // This was supplied with an empty password, which means keep it but don't change the password
- itemsToKeep.push(item.username);
- }
- return true;
- });
- const query = accessListAuthModel.query().delete().where("access_list_id", data.id);
- if (itemsToKeep.length) {
- query.andWhere("username", "NOT IN", itemsToKeep);
- }
- await query;
- // Add new items
- if (promises.length) {
- await Promise.all(promises);
- }
- }
- // Check for clients and add/update/remove them
- if (typeof data.clients !== "undefined" && data.clients) {
- const clientPromises = [];
- data.clients.map((client) => {
- if (client.address) {
- clientPromises.push(
- accessListClientModel.query().insert({
- access_list_id: data.id,
- address: client.address,
- directive: client.directive,
- }),
- );
- }
- return true;
- });
- const query = accessListClientModel.query().delete().where("access_list_id", data.id);
- await query;
- // Add new clitens
- if (clientPromises.length) {
- await Promise.all(clientPromises);
- }
- }
- // Add to audit log
- await internalAuditLog.add(access, {
- action: "updated",
- object_type: "access-list",
- object_id: data.id,
- meta: internalAccessList.maskItems(data),
- });
- // re-fetch with expansions
- const freshRow = await internalAccessList.get(
- access,
- {
- id: data.id,
- expand: ["owner", "items", "clients", "proxy_hosts.[certificate,access_list.[clients,items]]"],
- },
- true // skip masking
- );
- await internalAccessList.build(freshRow)
- if (Number.parseInt(freshRow.proxy_host_count, 10)) {
- await internalNginx.bulkGenerateConfigs("proxy_host", freshRow.proxy_hosts);
- }
- await internalNginx.reload();
- return internalAccessList.maskItems(freshRow);
- },
- /**
- * @param {Access} access
- * @param {Object} data
- * @param {Integer} data.id
- * @param {Array} [data.expand]
- * @param {Array} [data.omit]
- * @param {Boolean} [skipMasking]
- * @return {Promise}
- */
- get: async (access, data, skipMasking) => {
- const thisData = data || {};
- const accessData = await access.can("access_lists:get", thisData.id)
- const query = accessListModel
- .query()
- .select("access_list.*", accessListModel.raw("COUNT(proxy_host.id) as proxy_host_count"))
- .leftJoin("proxy_host", function () {
- this.on("proxy_host.access_list_id", "=", "access_list.id").andOn(
- "proxy_host.is_deleted",
- "=",
- 0,
- );
- })
- .where("access_list.is_deleted", 0)
- .andWhere("access_list.id", thisData.id)
- .groupBy("access_list.id")
- .allowGraph("[owner,items,clients,proxy_hosts.[certificate,access_list.[clients,items]]]")
- .first();
- if (accessData.permission_visibility !== "all") {
- query.andWhere("access_list.owner_user_id", access.token.getUserId(1));
- }
- if (typeof thisData.expand !== "undefined" && thisData.expand !== null) {
- query.withGraphFetched(`[${thisData.expand.join(", ")}]`);
- }
- let row = await query.then(utils.omitRow(omissions()));
- if (!row || !row.id) {
- throw new errs.ItemNotFoundError(thisData.id);
- }
- if (!skipMasking && typeof row.items !== "undefined" && row.items) {
- row = internalAccessList.maskItems(row);
- }
- // Custom omissions
- if (typeof data.omit !== "undefined" && data.omit !== null) {
- row = _.omit(row, data.omit);
- }
- return row;
- },
- /**
- * @param {Access} access
- * @param {Object} data
- * @param {Integer} data.id
- * @param {String} [data.reason]
- * @returns {Promise}
- */
- delete: async (access, data) => {
- await access.can("access_lists:delete", data.id);
- const row = await internalAccessList.get(access, {
- id: data.id,
- expand: ["proxy_hosts", "items", "clients"],
- });
- if (!row || !row.id) {
- throw new errs.ItemNotFoundError(data.id);
- }
- // 1. update row to be deleted
- // 2. update any proxy hosts that were using it (ignoring permissions)
- // 3. reconfigure those hosts
- // 4. audit log
- // 1. update row to be deleted
- await accessListModel
- .query()
- .where("id", row.id)
- .patch({
- is_deleted: 1,
- });
- // 2. update any proxy hosts that were using it (ignoring permissions)
- if (row.proxy_hosts) {
- await proxyHostModel
- .query()
- .where("access_list_id", "=", row.id)
- .patch({ access_list_id: 0 });
- // 3. reconfigure those hosts, then reload nginx
- // set the access_list_id to zero for these items
- row.proxy_hosts.map((_val, idx) => {
- row.proxy_hosts[idx].access_list_id = 0;
- return true;
- });
- await internalNginx.bulkGenerateConfigs("proxy_host", row.proxy_hosts);
- }
- await internalNginx.reload();
- // delete the htpasswd file
- try {
- fs.unlinkSync(internalAccessList.getFilename(row));
- } catch (_err) {
- // do nothing
- }
- // 4. audit log
- await internalAuditLog.add(access, {
- action: "deleted",
- object_type: "access-list",
- object_id: row.id,
- meta: _.omit(internalAccessList.maskItems(row), ["is_deleted", "proxy_hosts"]),
- });
- return true;
- },
- /**
- * All Lists
- *
- * @param {Access} access
- * @param {Array} [expand]
- * @param {String} [searchQuery]
- * @returns {Promise}
- */
- getAll: async (access, expand, searchQuery) => {
- const accessData = await access.can("access_lists:list");
- const query = accessListModel
- .query()
- .select("access_list.*", accessListModel.raw("COUNT(proxy_host.id) as proxy_host_count"))
- .leftJoin("proxy_host", function () {
- this.on("proxy_host.access_list_id", "=", "access_list.id").andOn(
- "proxy_host.is_deleted",
- "=",
- 0,
- );
- })
- .where("access_list.is_deleted", 0)
- .groupBy("access_list.id")
- .allowGraph("[owner,items,clients]")
- .orderBy("access_list.name", "ASC");
- if (accessData.permission_visibility !== "all") {
- query.andWhere("access_list.owner_user_id", access.token.getUserId(1));
- }
- // Query is used for searching
- if (typeof searchQuery === "string") {
- query.where(function () {
- this.where("name", "like", `%${searchQuery}%`);
- });
- }
- if (typeof expand !== "undefined" && expand !== null) {
- query.withGraphFetched(`[${expand.join(", ")}]`);
- }
- const rows = await query.then(utils.omitRows(omissions()));
- if (rows) {
- rows.map((row, idx) => {
- if (typeof row.items !== "undefined" && row.items) {
- rows[idx] = internalAccessList.maskItems(row);
- }
- return true;
- });
- }
- return rows;
- },
- /**
- * Count is used in reports
- *
- * @param {Integer} userId
- * @param {String} visibility
- * @returns {Promise}
- */
- getCount: async (userId, visibility) => {
- const query = accessListModel
- .query()
- .count("id as count")
- .where("is_deleted", 0);
- if (visibility !== "all") {
- query.andWhere("owner_user_id", userId);
- }
- const row = await query.first();
- return Number.parseInt(row.count, 10);
- },
- /**
- * @param {Object} list
- * @returns {Object}
- */
- maskItems: (list) => {
- if (list && typeof list.items !== "undefined") {
- list.items.map((val, idx) => {
- let repeatFor = 8;
- let firstChar = "*";
- if (typeof val.password !== "undefined" && val.password) {
- repeatFor = val.password.length - 1;
- firstChar = val.password.charAt(0);
- }
- list.items[idx].hint = firstChar + "*".repeat(repeatFor);
- list.items[idx].password = "";
- return true;
- });
- }
- return list;
- },
- /**
- * @param {Object} list
- * @param {Integer} list.id
- * @returns {String}
- */
- getFilename: (list) => {
- return `/data/access/${list.id}`;
- },
- /**
- * @param {Object} list
- * @param {Integer} list.id
- * @param {String} list.name
- * @param {Array} list.items
- * @returns {Promise}
- */
- build: async (list) => {
- logger.info(`Building Access file #${list.id} for: ${list.name}`);
- const htpasswdFile = internalAccessList.getFilename(list);
- // 1. remove any existing access file
- try {
- fs.unlinkSync(htpasswdFile);
- } catch (_err) {
- // do nothing
- }
- // 2. create empty access file
- fs.writeFileSync(htpasswdFile, '', {encoding: 'utf8'});
- // 3. generate password for each user
- if (list.items.length) {
- await new Promise((resolve, reject) => {
- batchflow(list.items).sequential()
- .each((_i, item, next) => {
- if (item.password?.length) {
- logger.info(`Adding: ${item.username}`);
- utils.execFile('openssl', ['passwd', '-apr1', item.password])
- .then((res) => {
- try {
- fs.appendFileSync(htpasswdFile, `${item.username}:${res}\n`, {encoding: 'utf8'});
- } catch (err) {
- reject(err);
- }
- next();
- })
- .catch((err) => {
- logger.error(err);
- next(err);
- });
- }
- })
- .error((err) => {
- logger.error(err);
- reject(err);
- })
- .end((results) => {
- logger.success(`Built Access file #${list.id} for: ${list.name}`);
- resolve(results);
- });
- });
- }
- }
- }
- export default internalAccessList;
|