@rnaga/wp-node
Version:
👉 **[View Full Documentation at rnaga.github.io/wp-node →](https://rnaga.github.io/wp-node/)**
165 lines (164 loc) • 6.33 kB
JavaScript
"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.Post = void 0;
const zod_1 = require("zod");
const constants_1 = require("../constants/");
const async_init_1 = require("../decorators/async-init");
const component_1 = require("../decorators/component");
const val = __importStar(require("../validators"));
const logger_1 = require("./logger");
const meta_1 = require("./meta");
const query_util_1 = require("./utils/query.util");
let Post = class Post {
meta;
logger;
queryUtil;
postId;
_props;
_terms;
_parents;
_children;
// Optional. Type of filter to apply. Accepts 'raw', 'edit', 'db',
// or 'display'. Default 'raw'.
filter = "raw";
constructor(meta, logger, queryUtil, postId, _props, _terms, _parents = [], _children = []) {
this.meta = meta;
this.logger = logger;
this.queryUtil = queryUtil;
this.postId = postId;
this._props = _props;
this._terms = _terms;
this._parents = _parents;
this._children = _children;
this.meta.set("post", postId);
this._terms = new Map();
}
get props() {
return !this._props ? undefined : this._props;
}
withProps(props) {
this._props = { ...this._props, ...props };
return this;
}
async children() {
if (!this._props?.ID || this._children.length > 0) {
return this._children;
}
const postId = this.props?.ID;
this._children =
(await this.queryUtil.posts((query) => {
query.withChildren(postId).builder.clear("select").select("*");
}, zod_1.z.array(val.database.wpPosts))) ?? [];
//this._children = this._children.filter((post) => post.ID != this._props.ID);
return this._children;
}
// get_post_ancestors
async parents() {
if (!this._props?.ID || this._parents.length > 0) {
return this._parents;
}
const postId = this.props?.ID;
this._parents =
(await this.queryUtil.posts((query) => {
query.withParents(postId).builder.clear("select").select("*");
}, zod_1.z.array(val.database.wpPosts))) ?? [];
//this._parents = this._parents.filter((post) => post.ID != this.props?.ID);
return this._parents;
}
async terms(taxonomy) {
if (!this._props?.ID)
return [];
if (this._terms.get(taxonomy)) {
return this._terms.get(taxonomy) ?? [];
}
try {
const terms = await this.queryUtil.terms((query) => {
const { column } = query.alias;
query
.withObjectIds([this._props.ID])
.where("taxonomy", taxonomy)
.builder.orderBy(column("terms", "term_id"), "asc");
}, zod_1.z.array(val.database.wpTerms));
terms && this._terms.set(taxonomy, terms);
return terms;
}
catch (e) {
this.logger.info(`Terms not found: ${taxonomy}`);
return [];
}
}
async author() {
return await this.queryUtil.users((query) => {
query.where("ID", this._props.post_author).builder.first();
}, val.database.wpUsers);
}
async init() {
if (0 >= this.postId) {
return;
}
this.meta.set("post", this.postId);
const post = await this.queryUtil.posts((query) => {
query.get(this.postId);
}, val.database.wpPosts);
if (!post) {
this.logger.info(`Post not found: ${this.postId}`);
return;
}
this._props = post;
}
};
exports.Post = Post;
__decorate([
async_init_1.asyncInit,
__metadata("design:type", Function),
__metadata("design:paramtypes", []),
__metadata("design:returntype", Promise)
], Post.prototype, "init", null);
exports.Post = Post = __decorate([
(0, component_1.component)({ scope: constants_1.Scope.Transient }),
__metadata("design:paramtypes", [meta_1.Meta,
logger_1.Logger,
query_util_1.QueryUtil, Number, Object, Map, Array, Array])
], Post);