108 lines
2.7 KiB
JavaScript
108 lines
2.7 KiB
JavaScript
import Sequelize from 'sequelize';
|
|
import _orderBy from 'lodash.orderby';
|
|
import { Document, Atlas, User, Revision } from './models';
|
|
|
|
export function presentUser(ctx, user) {
|
|
ctx.cache.set(user.id, user);
|
|
|
|
return new Promise(async (resolve, _reject) => {
|
|
const data = {
|
|
id: user.id,
|
|
name: user.name,
|
|
username: user.username,
|
|
avatarUrl: user.slackData.image_192,
|
|
};
|
|
resolve(data);
|
|
});
|
|
}
|
|
|
|
export function presentTeam(ctx, team) {
|
|
ctx.cache.set(team.id, team);
|
|
|
|
return new Promise(async (resolve, _reject) => {
|
|
resolve({
|
|
id: team.id,
|
|
name: team.name,
|
|
});
|
|
});
|
|
}
|
|
|
|
export async function presentDocument(ctx, document, includeCollection = false) {
|
|
ctx.cache.set(document.id, document);
|
|
|
|
const data = {
|
|
id: document.id,
|
|
url: document.buildUrl(),
|
|
private: document.private,
|
|
title: document.title,
|
|
text: document.text,
|
|
html: document.html,
|
|
preview: document.preview,
|
|
createdAt: document.createdAt,
|
|
createdBy: undefined,
|
|
updatedAt: document.updatedAt,
|
|
updatedBy: undefined,
|
|
team: document.teamId,
|
|
collaborators: [],
|
|
};
|
|
|
|
if (includeCollection) {
|
|
const collection = await Atlas.findOne({ where: {
|
|
id: document.atlasId,
|
|
} });
|
|
data.collection = await ctx.cache.get(
|
|
collection.id,
|
|
async () => await presentCollection(ctx, collection, false)
|
|
);
|
|
}
|
|
|
|
const createdBy = await ctx.cache.get(
|
|
document.createdById,
|
|
async () => await User.findById(document.createdById)
|
|
);
|
|
data.createdBy = await presentUser(ctx, createdBy);
|
|
|
|
const updatedBy = await ctx.cache.get(
|
|
document.createdById,
|
|
async () => await User.findById(document.updatedById)
|
|
);
|
|
data.createdBy = await presentUser(ctx, updatedBy);
|
|
|
|
return data;
|
|
}
|
|
|
|
export function presentCollection(ctx, collection, includeRecentDocuments=false) {
|
|
ctx.cache.set(collection.id, collection);
|
|
|
|
return new Promise(async (resolve, _reject) => {
|
|
const data = {
|
|
id: collection.id,
|
|
name: collection.name,
|
|
description: collection.description,
|
|
type: collection.type,
|
|
};
|
|
|
|
if (collection.type === 'atlas') data.navigationTree = collection.navigationTree;
|
|
|
|
if (includeRecentDocuments) {
|
|
const documents = await Document.findAll({
|
|
where: {
|
|
atlasId: collection.id,
|
|
},
|
|
limit: 10,
|
|
order: [
|
|
['updatedAt', 'DESC'],
|
|
],
|
|
});
|
|
|
|
const recentDocuments = [];
|
|
await Promise.all(documents.map(async (document) => {
|
|
recentDocuments.push(await presentDocument(ctx, document, true));
|
|
}));
|
|
data.recentDocuments = _orderBy(recentDocuments, ['updatedAt'], ['desc']);
|
|
}
|
|
|
|
resolve(data);
|
|
});
|
|
}
|