@rnaga/wp-node
Version:
👉 **[View Full Documentation at rnaga.github.io/wp-node →](https://rnaga.github.io/wp-node/)**
106 lines (105 loc) • 4.28 kB
JavaScript
;
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.Site = void 0;
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 meta_1 = require("./meta");
const query_util_1 = require("./utils/query.util");
/**
* https://github.com/WordPress/WordPress/blob/master/wp-includes/class-wp-site.php
*/
let Site = class Site {
meta;
queryUtil;
siteRef;
blogRef;
_props;
constructor(meta, queryUtil, siteRef, blogRef = 1, _props) {
this.meta = meta;
this.queryUtil = queryUtil;
this.siteRef = siteRef;
this.blogRef = blogRef;
this._props = _props;
//Set default if _props is not passed
if (!this._props) {
this._props = { site: { id: 1 }, blog: { blog_id: 1 } };
}
}
get props() {
return this._props;
}
async setBlog(b) {
const blog = (await this.queryUtil.blogs((query) => {
query.get(b);
}, val.database.wpBlogs)) ?? this._props.blog;
if (this._props.site.id !== blog.site_id) {
throw new Error(`Site Id doesn't match ${this._props.site.id} - ${blog.site_id}`);
}
this._props.blog = blog;
this.blogRef = b;
}
async init() {
this._props.site =
(await this.queryUtil.sites((query) => {
query.get(this.siteRef);
}, val.database.wpSite)) ?? this._props.site;
await this.setBlog(this.blogRef);
this._props.site.id && this.meta.set("site", this._props.site.id);
}
};
exports.Site = Site;
__decorate([
async_init_1.asyncInit,
__metadata("design:type", Function),
__metadata("design:paramtypes", []),
__metadata("design:returntype", Promise)
], Site.prototype, "init", null);
exports.Site = Site = __decorate([
(0, component_1.component)({ scope: constants_1.Scope.Transient }),
__metadata("design:paramtypes", [meta_1.Meta,
query_util_1.QueryUtil, Object, Object, Object])
], Site);