@rnaga/wp-node
Version:
👉 **[View Full Documentation at rnaga.github.io/wp-node →](https://rnaga.github.io/wp-node/)**
104 lines (103 loc) • 4.43 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);
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.RegistrationLogTrx = void 0;
const formatting_1 = require("../common/formatting");
const blog_1 = require("../core/blog");
const components_1 = require("../core/components");
const user_1 = require("../core/user");
const user_util_1 = require("../core/utils/user.util");
const database_1 = __importDefault(require("../database"));
const component_1 = require("../decorators/component");
const val = __importStar(require("../validators"));
const trx_1 = require("./trx");
let RegistrationLogTrx = class RegistrationLogTrx extends trx_1.Trx {
database;
components;
constructor(database, components) {
super(components);
this.database = database;
this.components = components;
}
// wpmu_log_new_registrations
async insert(blogOrId, userOrId, args) {
const user = userOrId instanceof user_1.User
? userOrId
: await this.components.get(user_util_1.UserUtil).get(userOrId);
if (!user.props) {
return;
}
const blogId = blogOrId instanceof blog_1.Blog ? blogOrId.props?.blog_id : blogOrId;
const dataInsert = val.database.wpRegistrationLog.omit({ ID: true }).parse({
email: user.props.user_email,
IP: args.ip,
blog_id: blogId,
date_registered: formatting_1.formatting.dateMySQL(),
});
let id = 0;
const trx = await this.database.transaction;
try {
await trx
.insert(dataInsert)
.into(this.tables.get("registration_log"))
.then((v) => {
id = v[0];
});
}
catch (e) {
await trx.rollback();
throw new Error(`Failed to insert registration log - ${e}`);
}
await trx.commit();
return id;
}
};
exports.RegistrationLogTrx = RegistrationLogTrx;
exports.RegistrationLogTrx = RegistrationLogTrx = __decorate([
(0, component_1.transactions)(),
__metadata("design:paramtypes", [database_1.default, components_1.Components])
], RegistrationLogTrx);