UNPKG

@rnaga/wp-node

Version:

👉 **[View Full Documentation at rnaga.github.io/wp-node →](https://rnaga.github.io/wp-node/)**

149 lines (148 loc) • 6.03 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __importStar = (this && this.__importStar) || (function () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.Options = void 0; const zod_1 = require("zod"); const common_1 = require("../common"); const config_1 = require("../config"); const constants_1 = require("../constants"); const component_1 = require("../decorators/component"); const val = __importStar(require("../validators")); const components_1 = require("./components"); const current_1 = require("./current"); const logger_1 = require("./logger"); const meta_util_1 = require("./utils/meta.util"); const query_util_1 = require("./utils/query.util"); let Options = class Options { components; logger; config; constructor(components, logger, config) { this.components = components; this.logger = logger; this.config = config; } get tables() { return this.components.get(current_1.Current).tables; } usingBlog(id) { if (this.config.isMultiSite()) this.tables.index = id; return this; } resetBlog() { this.usingBlog(-99); return this; } async getMultiple(names, args) { const queryUtil = this.components .get(query_util_1.QueryUtil) .usingBlog(this.tables.index); const result = new Map(); try { if (typeof args?.siteId === "number") { const metaUtil = this.components.get(meta_util_1.MetaUtil); for (const name of names) { const value = await metaUtil.getValue("site", args.siteId, name); result.set(name, common_1.formatting.primitive(value)); } } else { const options = (await queryUtil .usingBlog(args?.blogId ?? this.tables.index) .options((query) => { query.whereIn(names); }, zod_1.z.array(val.database.wpOptions))) ?? []; for (const option of options) { result.set(option.option_name, common_1.formatting.primitive(option.option_value)); } } } catch (e) { this.logger.info(`Option not found: ${names}`); } return result; } async get(name, args) { const queryUtil = this.components .get(query_util_1.QueryUtil) .usingBlog(this.tables.index); let value; try { if (Array.isArray(name)) { return (await this.getMultiple(name, args)); } else if (typeof name === "string") { if (typeof args?.siteId === "number") { // get_network_option( null, $option, $default_value ) // get_site_option( $option, $default_value = false, $deprecated = true ) const metaUtil = this.components.get(meta_util_1.MetaUtil); value = await metaUtil.getValue("site", args.siteId, name); } else { const option = await queryUtil .usingBlog(args?.blogId ?? this.tables.index) .options((query) => { query.get(args?.withPrefix ? this.tables.get(name) : name); }); value = common_1.formatting.primitive(option?.option_value); } } } catch (e) { this.logger.info(`Option not found: ${name}`); } if (!value && args?.default) { value = args.default; } return value ?? undefined; } }; exports.Options = Options; exports.Options = Options = __decorate([ (0, component_1.component)({ scope: constants_1.Scope.Transient }), __metadata("design:paramtypes", [components_1.Components, logger_1.Logger, config_1.Config]) ], Options);