338 lines
8.4 KiB
JavaScript
338 lines
8.4 KiB
JavaScript
// @flow
|
|
import slug from 'slug';
|
|
import { map, find, compact, uniq } from 'lodash';
|
|
import randomstring from 'randomstring';
|
|
import MarkdownSerializer from 'slate-md-serializer';
|
|
import Plain from 'slate-plain-serializer';
|
|
import Sequelize from 'sequelize';
|
|
import removeMarkdown from '@tommoor/remove-markdown';
|
|
|
|
import isUUID from 'validator/lib/isUUID';
|
|
import { Collection, User } from '../models';
|
|
import { DataTypes, sequelize } from '../sequelize';
|
|
import events from '../events';
|
|
import parseTitle from '../../shared/utils/parseTitle';
|
|
import unescape from '../../shared/utils/unescape';
|
|
import Revision from './Revision';
|
|
|
|
const Op = Sequelize.Op;
|
|
const Markdown = new MarkdownSerializer();
|
|
const URL_REGEX = /^[a-zA-Z0-9-]*-([a-zA-Z0-9]{10,15})$/;
|
|
const DEFAULT_TITLE = 'Untitled document';
|
|
|
|
// $FlowIssue invalid flow-typed
|
|
slug.defaults.mode = 'rfc3986';
|
|
const slugify = text =>
|
|
slug(text, {
|
|
remove: /[.]/g,
|
|
});
|
|
|
|
const createRevision = (doc, options = {}) => {
|
|
// we don't create revisions for autosaves
|
|
if (options.autosave) return;
|
|
|
|
// we don't create revisions if identical to previous
|
|
if (doc.text === doc.previous('text')) return;
|
|
|
|
return Revision.create({
|
|
title: doc.title,
|
|
text: doc.text,
|
|
userId: doc.lastModifiedById,
|
|
documentId: doc.id,
|
|
});
|
|
};
|
|
|
|
const createUrlId = doc => {
|
|
return (doc.urlId = doc.urlId || randomstring.generate(10));
|
|
};
|
|
|
|
const beforeSave = async doc => {
|
|
const { emoji, title } = parseTitle(doc.text);
|
|
|
|
// emoji in the title is split out for easier display
|
|
doc.emoji = emoji;
|
|
|
|
// ensure document has a title
|
|
if (!title) {
|
|
doc.title = DEFAULT_TITLE;
|
|
doc.text = doc.text.replace(/^.*$/m, `# ${DEFAULT_TITLE}`);
|
|
}
|
|
|
|
// add the current user as a collaborator on this doc
|
|
if (!doc.collaboratorIds) doc.collaboratorIds = [];
|
|
doc.collaboratorIds = uniq(doc.collaboratorIds.concat(doc.lastModifiedById));
|
|
|
|
// increment revision
|
|
doc.revisionCount += 1;
|
|
|
|
return doc;
|
|
};
|
|
|
|
const Document = sequelize.define(
|
|
'document',
|
|
{
|
|
id: {
|
|
type: DataTypes.UUID,
|
|
defaultValue: DataTypes.UUIDV4,
|
|
primaryKey: true,
|
|
},
|
|
urlId: {
|
|
type: DataTypes.STRING,
|
|
primaryKey: true,
|
|
},
|
|
title: {
|
|
type: DataTypes.STRING,
|
|
validate: {
|
|
len: {
|
|
args: [0, 100],
|
|
msg: 'Document title must be less than 100 characters',
|
|
},
|
|
},
|
|
},
|
|
text: DataTypes.TEXT,
|
|
revisionCount: { type: DataTypes.INTEGER, defaultValue: 0 },
|
|
publishedAt: DataTypes.DATE,
|
|
parentDocumentId: DataTypes.UUID,
|
|
collaboratorIds: DataTypes.ARRAY(DataTypes.UUID),
|
|
},
|
|
{
|
|
paranoid: true,
|
|
hooks: {
|
|
beforeValidate: createUrlId,
|
|
beforeCreate: beforeSave,
|
|
beforeUpdate: beforeSave,
|
|
afterCreate: createRevision,
|
|
afterUpdate: createRevision,
|
|
},
|
|
getterMethods: {
|
|
url: function() {
|
|
const slugifiedTitle = slugify(this.title);
|
|
return `/doc/${slugifiedTitle}-${this.urlId}`;
|
|
},
|
|
},
|
|
}
|
|
);
|
|
|
|
// Class methods
|
|
|
|
Document.associate = models => {
|
|
Document.belongsTo(models.Collection, {
|
|
as: 'collection',
|
|
foreignKey: 'collectionId',
|
|
onDelete: 'cascade',
|
|
});
|
|
Document.belongsTo(models.Team, {
|
|
as: 'team',
|
|
foreignKey: 'teamId',
|
|
});
|
|
Document.belongsTo(models.User, {
|
|
as: 'createdBy',
|
|
foreignKey: 'createdById',
|
|
});
|
|
Document.belongsTo(models.User, {
|
|
as: 'updatedBy',
|
|
foreignKey: 'lastModifiedById',
|
|
});
|
|
Document.belongsTo(models.User, {
|
|
as: 'pinnedBy',
|
|
foreignKey: 'pinnedById',
|
|
});
|
|
Document.hasMany(models.Revision, {
|
|
as: 'revisions',
|
|
onDelete: 'cascade',
|
|
});
|
|
Document.hasMany(models.Star, {
|
|
as: 'starred',
|
|
});
|
|
Document.hasMany(models.View, {
|
|
as: 'views',
|
|
});
|
|
Document.addScope(
|
|
'defaultScope',
|
|
{
|
|
include: [
|
|
{ model: models.Collection, as: 'collection' },
|
|
{ model: models.User, as: 'createdBy', paranoid: false },
|
|
{ model: models.User, as: 'updatedBy', paranoid: false },
|
|
],
|
|
where: {
|
|
publishedAt: {
|
|
// $FlowFixMe
|
|
[Op.ne]: null,
|
|
},
|
|
},
|
|
},
|
|
{ override: true }
|
|
);
|
|
Document.addScope('withUnpublished', {
|
|
include: [
|
|
{ model: models.Collection, as: 'collection' },
|
|
{ model: models.User, as: 'createdBy', paranoid: false },
|
|
{ model: models.User, as: 'updatedBy', paranoid: false },
|
|
],
|
|
});
|
|
Document.addScope('withViews', userId => ({
|
|
include: [
|
|
{ model: models.View, as: 'views', where: { userId }, required: false },
|
|
],
|
|
}));
|
|
Document.addScope('withStarred', userId => ({
|
|
include: [
|
|
{ model: models.Star, as: 'starred', where: { userId }, required: false },
|
|
],
|
|
}));
|
|
};
|
|
|
|
Document.findById = async id => {
|
|
const scope = Document.scope('withUnpublished');
|
|
|
|
if (isUUID(id)) {
|
|
return scope.findOne({
|
|
where: { id },
|
|
});
|
|
} else if (id.match(URL_REGEX)) {
|
|
return scope.findOne({
|
|
where: {
|
|
urlId: id.match(URL_REGEX)[1],
|
|
},
|
|
});
|
|
}
|
|
};
|
|
|
|
type SearchResult = {
|
|
ranking: number,
|
|
context: string,
|
|
document: Document,
|
|
};
|
|
|
|
Document.searchForUser = async (
|
|
user,
|
|
query,
|
|
options = {}
|
|
): Promise<SearchResult[]> => {
|
|
const limit = options.limit || 15;
|
|
const offset = options.offset || 0;
|
|
const wildcardQuery = `${sequelize.escape(query)}:*`;
|
|
|
|
const sql = `
|
|
SELECT
|
|
id,
|
|
ts_rank(documents."searchVector", to_tsquery('english', :query)) as "searchRanking",
|
|
ts_headline('english', "text", to_tsquery('english', :query), 'MaxFragments=1, MinWords=20, MaxWords=30') as "searchContext"
|
|
FROM documents
|
|
WHERE "searchVector" @@ to_tsquery('english', :query) AND
|
|
"collectionId" IN(:collectionIds) AND
|
|
"deletedAt" IS NULL AND
|
|
("publishedAt" IS NOT NULL OR "createdById" = '${user.id}')
|
|
ORDER BY
|
|
"searchRanking" DESC,
|
|
"updatedAt" DESC
|
|
LIMIT :limit
|
|
OFFSET :offset;
|
|
`;
|
|
|
|
const collectionIds = await user.collectionIds();
|
|
const results = await sequelize.query(sql, {
|
|
type: sequelize.QueryTypes.SELECT,
|
|
replacements: {
|
|
query: wildcardQuery,
|
|
limit,
|
|
offset,
|
|
collectionIds,
|
|
},
|
|
});
|
|
|
|
// Final query to get associated document data
|
|
const documents = await Document.scope({
|
|
method: ['withViews', user.id],
|
|
}).findAll({
|
|
where: {
|
|
id: map(results, 'id'),
|
|
},
|
|
include: [
|
|
{ model: Collection, as: 'collection' },
|
|
{ model: User, as: 'createdBy', paranoid: false },
|
|
{ model: User, as: 'updatedBy', paranoid: false },
|
|
],
|
|
});
|
|
|
|
return map(results, result => ({
|
|
ranking: result.searchRanking,
|
|
context: removeMarkdown(unescape(result.searchContext), {
|
|
stripHTML: false,
|
|
}),
|
|
document: find(documents, { id: result.id }),
|
|
}));
|
|
};
|
|
|
|
// Hooks
|
|
|
|
Document.addHook('beforeSave', async model => {
|
|
if (!model.publishedAt) return;
|
|
|
|
const collection = await Collection.findById(model.collectionId);
|
|
if (collection.type !== 'atlas') return;
|
|
|
|
await collection.updateDocument(model);
|
|
model.collection = collection;
|
|
});
|
|
|
|
Document.addHook('afterCreate', async model => {
|
|
if (!model.publishedAt) return;
|
|
|
|
const collection = await Collection.findById(model.collectionId);
|
|
if (collection.type !== 'atlas') return;
|
|
|
|
await collection.addDocumentToStructure(model);
|
|
model.collection = collection;
|
|
|
|
events.add({ name: 'documents.create', model });
|
|
return model;
|
|
});
|
|
|
|
Document.addHook('afterDestroy', model =>
|
|
events.add({ name: 'documents.delete', model })
|
|
);
|
|
|
|
// Instance methods
|
|
|
|
Document.prototype.publish = async function() {
|
|
if (this.publishedAt) return this.save();
|
|
|
|
const collection = await Collection.findById(this.collectionId);
|
|
if (collection.type !== 'atlas') return this.save();
|
|
|
|
await collection.addDocumentToStructure(this);
|
|
|
|
this.publishedAt = new Date();
|
|
await this.save();
|
|
this.collection = collection;
|
|
|
|
events.add({ name: 'documents.publish', model: this });
|
|
return this;
|
|
};
|
|
|
|
Document.prototype.getTimestamp = function() {
|
|
return Math.round(new Date(this.updatedAt).getTime() / 1000);
|
|
};
|
|
|
|
Document.prototype.getSummary = function() {
|
|
const value = Markdown.deserialize(this.text);
|
|
const plain = Plain.serialize(value);
|
|
const lines = compact(plain.split('\n'));
|
|
return lines.length >= 1 ? lines[1] : '';
|
|
};
|
|
|
|
Document.prototype.toJSON = function() {
|
|
// Warning: only use for new documents as order of children is
|
|
// handled in the collection's documentStructure
|
|
return {
|
|
id: this.id,
|
|
title: this.title,
|
|
url: this.url,
|
|
children: [],
|
|
};
|
|
};
|
|
|
|
export default Document;
|