@chevre/domain
Version:
Chevre Domain Library for Node.js
170 lines (169 loc) • 8.47 kB
JavaScript
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __rest = (this && this.__rest) || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.IdentityRepo = void 0;
const factory = require("../factory");
const settings_1 = require("../settings");
const identity_1 = require("./mongoose/schemas/identity");
/**
* アイデンティティリポジトリ
*/
class IdentityRepo {
constructor(connection) {
this.identityModel = connection.model(identity_1.modelName, (0, identity_1.createSchema)());
}
// tslint:disable-next-line:max-func-body-length
static CREATE_FILTER_QUERY(params) {
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
const andConditions = [];
const projectIdEq = (_b = (_a = params.project) === null || _a === void 0 ? void 0 : _a.id) === null || _b === void 0 ? void 0 : _b.$eq;
if (typeof projectIdEq === 'string') {
andConditions.push({ 'project.id': { $eq: projectIdEq } });
}
const idEq = (_c = params.id) === null || _c === void 0 ? void 0 : _c.$eq;
if (typeof idEq === 'string') {
andConditions.push({ _id: { $eq: idEq } });
}
const idIn = (_d = params.id) === null || _d === void 0 ? void 0 : _d.$in;
if (Array.isArray(idIn)) {
andConditions.push({ _id: { $in: idIn } });
}
const aboutIdEq = (_f = (_e = params.about) === null || _e === void 0 ? void 0 : _e.id) === null || _f === void 0 ? void 0 : _f.$eq;
if (typeof aboutIdEq === 'string') {
andConditions.push({ 'about.id': { $eq: aboutIdEq } });
}
const aboutIdRegex = (_h = (_g = params.about) === null || _g === void 0 ? void 0 : _g.id) === null || _h === void 0 ? void 0 : _h.$regex;
if (typeof aboutIdRegex === 'string' && aboutIdRegex.length > 0) {
andConditions.push({ 'about.id': { $regex: new RegExp(aboutIdRegex) } });
}
const aboutTypeOfEq = (_k = (_j = params.about) === null || _j === void 0 ? void 0 : _j.typeOf) === null || _k === void 0 ? void 0 : _k.$eq;
if (typeof aboutTypeOfEq === 'string') {
andConditions.push({ 'about.typeOf': { $eq: aboutTypeOfEq } });
}
const issuedByIdentifierEq = (_m = (_l = params.issuedBy) === null || _l === void 0 ? void 0 : _l.identifier) === null || _m === void 0 ? void 0 : _m.$eq;
if (typeof issuedByIdentifierEq === 'string') {
andConditions.push({ 'issuedBy.identifier': { $eq: issuedByIdentifierEq } });
}
return andConditions;
}
saveIdentity(params) {
return __awaiter(this, void 0, void 0, function* () {
var _a, _b;
let doc;
let savedId;
const savingId = params.id;
if (typeof savingId === 'string') {
if (savingId === '') {
throw new factory.errors.ArgumentNull('id');
}
// issuedByのみ更新可能
const _c = params.attributes, { id, dateCreated, about, project, typeOf, $unset } = _c, updateFields = __rest(_c, ["id", "dateCreated", "about", "project", "typeOf", "$unset"]);
const filter = {
_id: { $eq: savingId },
'project.id': { $eq: project.id }
};
const update = Object.assign({ $set: Object.assign(Object.assign({}, updateFields), { dateModified: new Date() }) }, ($unset !== undefined && $unset !== null) ? { $unset } : undefined);
const options = {
upsert: false,
new: true,
projection: { _id: 1, id: { $toString: '$_id' } }
};
doc = yield this.identityModel.findOneAndUpdate(filter, update, options)
.lean()
.exec();
if (doc === null) {
throw new factory.errors.NotFound(this.identityModel.modelName);
}
savedId = savingId;
}
else {
const _d = params.attributes, { $unset, id, dateModified } = _d, createParams = __rest(_d, ["$unset", "id", "dateModified"]);
const result = yield this.identityModel.insertMany(Object.assign(Object.assign({}, createParams), { dateCreated: new Date() }), { rawResult: true });
const insertedId = (_b = (_a = result.insertedIds) === null || _a === void 0 ? void 0 : _a[0]) === null || _b === void 0 ? void 0 : _b.toHexString();
if (typeof insertedId !== 'string') {
throw new factory.errors.Internal(`seller not saved unexpectedly. result:${JSON.stringify(result)}`);
}
savedId = insertedId;
}
return { id: savedId };
});
}
projectIdentityFields(conditions, inclusion) {
return __awaiter(this, void 0, void 0, function* () {
var _a;
const andConditions = IdentityRepo.CREATE_FILTER_QUERY(conditions);
const projection = Object.assign({ _id: 0, id: { $toString: '$_id' } }, Object.fromEntries(inclusion.map((key) => ([key, 1]))));
const query = this.identityModel.find((andConditions.length > 0) ? { $and: andConditions } : {}, projection);
if (typeof conditions.limit === 'number' && conditions.limit > 0) {
const page = (typeof conditions.page === 'number' && conditions.page > 0) ? conditions.page : 1;
query.limit(conditions.limit)
.skip(conditions.limit * (page - 1));
}
if (typeof ((_a = conditions.sort) === null || _a === void 0 ? void 0 : _a['about.id']) === 'number') {
query.sort({ 'about.id': conditions.sort['about.id'] });
}
return query.setOptions({ maxTimeMS: settings_1.MONGO_MAX_TIME_MS })
.lean()
.exec();
});
}
deleteIdentityById(params) {
return __awaiter(this, void 0, void 0, function* () {
yield this.identityModel.findOneAndDelete({
_id: { $eq: params.id },
'project.id': { $eq: params.project.id }
}, { projection: { _id: 1 } })
.exec();
});
}
getCursor(conditions, projection) {
return this.identityModel.find(conditions, projection)
.sort({ 'about.id': factory.sortType.Ascending })
.cursor();
}
updateIssuedBy2array(params) {
return __awaiter(this, void 0, void 0, function* () {
let doc;
const { id, issuedBy } = params;
const filter = {
_id: { $eq: id }
};
const update = {
$set: {
issuedBy
}
};
const options = {
upsert: false,
new: true,
projection: { _id: 1, id: { $toString: '$_id' } }
};
doc = yield this.identityModel.findOneAndUpdate(filter, update, options)
.lean()
.exec();
if (doc === null) {
throw new factory.errors.NotFound(this.identityModel.modelName);
}
});
}
}
exports.IdentityRepo = IdentityRepo;
;