| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449 |
- const { serializePageSecurely } = require('../models/serializers/page-serializer');
- const { serializeRevisionSecurely } = require('../models/serializers/revision-serializer');
- const { serializeUserSecurely } = require('../models/serializers/user-serializer');
- /**
- * @swagger
- * tags:
- * name: Pages
- */
- /**
- * @swagger
- *
- * components:
- * schemas:
- * Page:
- * description: Page
- * type: object
- * properties:
- * _id:
- * type: string
- * description: page ID
- * example: 5e07345972560e001761fa63
- * __v:
- * type: number
- * description: DB record version
- * example: 0
- * commentCount:
- * type: number
- * description: count of comments
- * example: 3
- * createdAt:
- * type: string
- * description: date created at
- * example: 2010-01-01T00:00:00.000Z
- * creator:
- * $ref: '#/components/schemas/User'
- * extended:
- * type: object
- * description: extend data
- * example: {}
- * grant:
- * type: number
- * description: grant
- * example: 1
- * grantedUsers:
- * type: array
- * description: granted users
- * items:
- * type: string
- * description: user ID
- * example: ["5ae5fccfc5577b0004dbd8ab"]
- * lastUpdateUser:
- * $ref: '#/components/schemas/User'
- * liker:
- * type: array
- * description: granted users
- * items:
- * type: string
- * description: user ID
- * example: []
- * path:
- * type: string
- * description: page path
- * example: /
- * redirectTo:
- * type: string
- * description: redirect path
- * example: ""
- * revision:
- * $ref: '#/components/schemas/Revision'
- * status:
- * type: string
- * description: status
- * enum:
- * - 'wip'
- * - 'published'
- * - 'deleted'
- * - 'deprecated'
- * example: published
- * updatedAt:
- * type: string
- * description: date updated at
- * example: 2010-01-01T00:00:00.000Z
- *
- * UpdatePost:
- * description: UpdatePost
- * type: object
- * properties:
- * _id:
- * type: string
- * description: update post ID
- * example: 5e0734e472560e001761fa68
- * __v:
- * type: number
- * description: DB record version
- * example: 0
- * pathPattern:
- * type: string
- * description: path pattern
- * example: /test
- * patternPrefix:
- * type: string
- * description: patternPrefix prefix
- * example: /
- * patternPrefix2:
- * type: string
- * description: path
- * example: test
- * channel:
- * type: string
- * description: channel
- * example: general
- * provider:
- * type: string
- * description: provider
- * enum:
- * - slack
- * example: slack
- * creator:
- * $ref: '#/components/schemas/User'
- * createdAt:
- * type: string
- * description: date created at
- * example: 2010-01-01T00:00:00.000Z
- */
- /* eslint-disable no-use-before-define */
- module.exports = function(crowi, app) {
- const debug = require('debug')('growi:routes:page');
- const logger = require('@alias/logger')('growi:routes:page');
- const swig = require('swig-templates');
- const pathUtils = require('growi-commons').pathUtils;
- const Page = crowi.model('Page');
- const User = crowi.model('User');
- const PageTagRelation = crowi.model('PageTagRelation');
- const GlobalNotificationSetting = crowi.model('GlobalNotificationSetting');
- const ShareLink = crowi.model('ShareLink');
- const ApiResponse = require('../util/apiResponse');
- const getToday = require('../util/getToday');
- const { configManager, xssService } = crowi;
- const interceptorManager = crowi.getInterceptorManager();
- const globalNotificationService = crowi.getGlobalNotificationService();
- const userNotificationService = crowi.getUserNotificationService();
- const XssOption = require('../../lib/service/xss/xssOption');
- const Xss = require('../../lib/service/xss/index');
- const initializedConfig = {
- isEnabledXssPrevention: configManager.getConfig('markdown', 'markdown:xss:isEnabledPrevention'),
- tagWhiteList: xssService.getTagWhiteList(),
- attrWhiteList: xssService.getAttrWhiteList(),
- };
- const xssOption = new XssOption(initializedConfig);
- const xss = new Xss(xssOption);
- const actions = {};
- function getPathFromRequest(req) {
- return pathUtils.normalizePath(req.params[0] || '');
- }
- function isUserPage(path) {
- if (path.match(/^\/user\/[^/]+\/?$/)) {
- return true;
- }
- return false;
- }
- function generatePager(offset, limit, totalCount) {
- let prev = null;
- if (offset > 0) {
- prev = offset - limit;
- if (prev < 0) {
- prev = 0;
- }
- }
- let next = offset + limit;
- if (totalCount < next) {
- next = null;
- }
- return {
- prev,
- next,
- offset,
- };
- }
- function addRenderVarsForPage(renderVars, page) {
- renderVars.page = page;
- renderVars.revision = page.revision;
- renderVars.pageIdOnHackmd = page.pageIdOnHackmd;
- renderVars.revisionHackmdSynced = page.revisionHackmdSynced;
- renderVars.hasDraftOnHackmd = page.hasDraftOnHackmd;
- if (page.creator != null) {
- renderVars.page.creator = renderVars.page.creator.toObject();
- }
- if (page.revision.author != null) {
- renderVars.revision.author = renderVars.revision.author.toObject();
- }
- if (page.deleteUser != null) {
- renderVars.page.deleteUser = renderVars.page.deleteUser.toObject();
- }
- }
- function addRenderVarsForPresentation(renderVars, page) {
- // sanitize page.revision.body
- if (crowi.configManager.getConfig('markdown', 'markdown:xss:isEnabledPrevention')) {
- const preventXssRevision = xss.process(page.revision.body);
- page.revision.body = preventXssRevision;
- }
- renderVars.page = page;
- renderVars.revision = page.revision;
- }
- async function addRenderVarsForUserPage(renderVars, page) {
- const userData = await User.findUserByUsername(User.getUsernameByPath(page.path));
- if (userData != null) {
- renderVars.pageUser = serializeUserSecurely(userData);
- }
- }
- function addRenderVarsForScope(renderVars, page) {
- renderVars.grant = page.grant;
- renderVars.grantedGroupId = page.grantedGroup ? page.grantedGroup.id : null;
- renderVars.grantedGroupName = page.grantedGroup ? page.grantedGroup.name : null;
- }
- async function addRenderVarsForDescendants(renderVars, path, requestUser, offset, limit, isRegExpEscapedFromPath) {
- const SEENER_THRESHOLD = 10;
- const queryOptions = {
- offset,
- limit,
- includeTrashed: path.startsWith('/trash/'),
- isRegExpEscapedFromPath,
- };
- const result = await Page.findListWithDescendants(path, requestUser, queryOptions);
- if (result.pages.length > limit) {
- result.pages.pop();
- }
- renderVars.viewConfig = {
- seener_threshold: SEENER_THRESHOLD,
- };
- renderVars.pager = generatePager(result.offset, result.limit, result.totalCount);
- renderVars.pages = result.pages;
- }
- function replacePlaceholdersOfTemplate(template, req) {
- if (req.user == null) {
- return '';
- }
- const definitions = {
- pagepath: getPathFromRequest(req),
- username: req.user.name,
- today: getToday(),
- };
- const compiledTemplate = swig.compile(template);
- return compiledTemplate(definitions);
- }
- async function showPageForPresentation(req, res, next) {
- const path = getPathFromRequest(req);
- const { revisionId } = req.query;
- let page = await Page.findByPathAndViewer(path, req.user);
- if (page == null) {
- next();
- }
- const renderVars = {};
- // populate
- page = await page.populateDataToMakePresentation(revisionId);
- if (page != null) {
- addRenderVarsForPresentation(renderVars, page);
- }
- return res.render('page_presentation', renderVars);
- }
- async function showTopPage(req, res, next) {
- const portalPath = req.path;
- const revisionId = req.query.revision;
- const view = 'layout-growi/page_list';
- const renderVars = { path: portalPath };
- let portalPage = await Page.findByPathAndViewer(portalPath, req.user);
- portalPage.initLatestRevisionField(revisionId);
- // add user to seen users
- if (req.user != null) {
- portalPage = await portalPage.seen(req.user);
- }
- // populate
- portalPage = await portalPage.populateDataToShowRevision();
- addRenderVarsForPage(renderVars, portalPage);
- const sharelinksNumber = await ShareLink.countDocuments({ relatedPage: portalPage._id });
- renderVars.sharelinksNumber = sharelinksNumber;
- const limit = 50;
- const offset = parseInt(req.query.offset) || 0;
- await addRenderVarsForDescendants(renderVars, portalPath, req.user, offset, limit);
- await interceptorManager.process('beforeRenderPage', req, res, renderVars);
- return res.render(view, renderVars);
- }
- async function showPageForGrowiBehavior(req, res, next) {
- const path = getPathFromRequest(req);
- const revisionId = req.query.revision;
- let page = await Page.findByPathAndViewer(path, req.user);
- if (page == null) {
- // check the page is forbidden or just does not exist.
- req.isForbidden = await Page.count({ path }) > 0;
- return next();
- }
- if (page.redirectTo) {
- debug(`Redirect to '${page.redirectTo}'`);
- return res.redirect(`${encodeURI(page.redirectTo)}?redirectFrom=${encodeURIComponent(path)}`);
- }
- logger.debug('Page is found when processing pageShowForGrowiBehavior', page._id, page.path);
- const limit = 50;
- const offset = parseInt(req.query.offset) || 0;
- const renderVars = {};
- let view = 'layout-growi/page';
- page.initLatestRevisionField(revisionId);
- // add user to seen users
- if (req.user != null) {
- page = await page.seen(req.user);
- }
- // populate
- page = await page.populateDataToShowRevision();
- addRenderVarsForPage(renderVars, page);
- addRenderVarsForScope(renderVars, page);
- await addRenderVarsForDescendants(renderVars, path, req.user, offset, limit, true);
- const sharelinksNumber = await ShareLink.countDocuments({ relatedPage: page._id });
- renderVars.sharelinksNumber = sharelinksNumber;
- if (isUserPage(page.path)) {
- // change template
- view = 'layout-growi/user_page';
- await addRenderVarsForUserPage(renderVars, page);
- }
- await interceptorManager.process('beforeRenderPage', req, res, renderVars);
- return res.render(view, renderVars);
- }
- actions.showTopPage = function(req, res) {
- return showTopPage(req, res);
- };
- /**
- * Redirect to the page without trailing slash
- */
- actions.showPageWithEndOfSlash = function(req, res, next) {
- return res.redirect(pathUtils.removeTrailingSlash(req.path));
- };
- /**
- * switch action
- * - presentation mode
- * - by behaviorType
- */
- actions.showPage = async function(req, res, next) {
- // presentation mode
- if (req.query.presentation) {
- return showPageForPresentation(req, res, next);
- }
- // delegate to showPageForGrowiBehavior
- return showPageForGrowiBehavior(req, res, next);
- };
- actions.showSharedPage = async function(req, res, next) {
- const { linkId } = req.params;
- const revisionId = req.query.revision;
- const shareLink = await ShareLink.findOne({ _id: linkId }).populate('relatedPage');
- if (shareLink == null || shareLink.relatedPage == null) {
- // page or sharelink are not found
- return res.render('layout-growi/not_found_shared_page');
- }
- const renderVars = {};
- renderVars.sharelink = shareLink;
- // check if share link is expired
- if (shareLink.isExpired()) {
- // page is not found
- return res.render('layout-growi/expired_shared_page', renderVars);
- }
- let page = shareLink.relatedPage;
- // presentation mode
- if (req.query.presentation) {
- page = await page.populateDataToMakePresentation(revisionId);
- // populate
- addRenderVarsForPage(renderVars, page);
- return res.render('page_presentation', renderVars);
- }
- page.initLatestRevisionField(revisionId);
- // populate
- page = await page.populateDataToShowRevision();
- addRenderVarsForPage(renderVars, page);
- addRenderVarsForScope(renderVars, page);
- await interceptorManager.process('beforeRenderPage', req, res, renderVars);
- return res.render('layout-growi/shared_page', renderVars);
- };
- /**
- * switch action by behaviorType
- */
- /* eslint-disable no-else-return */
- actions.trashPageListShowWrapper = function(req, res) {
- // redirect to '/trash'
- return res.redirect('/trash');
- };
- /* eslint-enable no-else-return */
- /**
- * switch action by behaviorType
- */
- /* eslint-disable no-else-return */
- actions.trashPageShowWrapper = function(req, res) {
- // Crowi behavior for '/trash/*'
- return actions.deletedPageListShow(req, res);
- };
- /* eslint-enable no-else-return */
- /**
- * switch action by behaviorType
- */
- /* eslint-disable no-else-return */
- actions.deletedPageListShowWrapper = function(req, res) {
- const path = `/trash${getPathFromRequest(req)}`;
- return res.redirect(path);
- };
- /* eslint-enable no-else-return */
- actions.notFound = async function(req, res) {
- const path = getPathFromRequest(req);
- const isCreatable = Page.isCreatableName(path);
- let view;
- const renderVars = { path };
- if (!isCreatable) {
- view = 'layout-growi/not_creatable';
- }
- else if (req.isForbidden) {
- view = 'layout-growi/forbidden';
- }
- else {
- view = 'layout-growi/not_found';
- // retrieve templates
- if (req.user != null) {
- const template = await Page.findTemplate(path);
- if (template.templateBody) {
- const body = replacePlaceholdersOfTemplate(template.templateBody, req);
- const tags = template.templateTags;
- renderVars.template = body;
- renderVars.templateTags = tags;
- }
- }
- // add scope variables by ancestor page
- const ancestor = await Page.findAncestorByPathAndViewer(path, req.user);
- if (ancestor != null) {
- await ancestor.populate('grantedGroup').execPopulate();
- addRenderVarsForScope(renderVars, ancestor);
- }
- }
- const limit = 50;
- const offset = parseInt(req.query.offset) || 0;
- await addRenderVarsForDescendants(renderVars, path, req.user, offset, limit, true);
- return res.render(view, renderVars);
- };
- actions.deletedPageListShow = async function(req, res) {
- // normalizePath makes '/trash/' -> '/trash'
- const path = pathUtils.normalizePath(`/trash${getPathFromRequest(req)}`);
- const limit = 50;
- const offset = parseInt(req.query.offset) || 0;
- const queryOptions = {
- offset,
- limit,
- includeTrashed: true,
- };
- const renderVars = {
- page: null,
- path,
- pages: [],
- };
- const result = await Page.findListWithDescendants(path, req.user, queryOptions);
- if (result.pages.length > limit) {
- result.pages.pop();
- }
- renderVars.pager = generatePager(result.offset, result.limit, result.totalCount);
- renderVars.pages = result.pages;
- res.render('layout-growi/page_list', renderVars);
- };
- /**
- * redirector
- */
- actions.redirector = async function(req, res) {
- const id = req.params.id;
- const page = await Page.findByIdAndViewer(id, req.user);
- if (page != null) {
- return res.redirect(encodeURI(page.path));
- }
- return res.redirect('/');
- };
- const api = {};
- actions.api = api;
- /**
- * @swagger
- *
- * /pages.list:
- * get:
- * tags: [Pages, CrowiCompatibles]
- * operationId: listPages
- * summary: /pages.list
- * description: Get list of pages
- * parameters:
- * - in: query
- * name: path
- * schema:
- * $ref: '#/components/schemas/Page/properties/path'
- * - in: query
- * name: user
- * schema:
- * $ref: '#/components/schemas/User/properties/username'
- * - in: query
- * name: limit
- * schema:
- * $ref: '#/components/schemas/V1PaginateResult/properties/meta/properties/limit'
- * - in: query
- * name: offset
- * schema:
- * $ref: '#/components/schemas/V1PaginateResult/properties/meta/properties/offset'
- * responses:
- * 200:
- * description: Succeeded to get list of pages.
- * content:
- * application/json:
- * schema:
- * properties:
- * ok:
- * $ref: '#/components/schemas/V1Response/properties/ok'
- * pages:
- * type: array
- * items:
- * $ref: '#/components/schemas/Page'
- * description: page list
- * 403:
- * $ref: '#/components/responses/403'
- * 500:
- * $ref: '#/components/responses/500'
- */
- /**
- * @api {get} /pages.list List pages by user
- * @apiName ListPage
- * @apiGroup Page
- *
- * @apiParam {String} path
- * @apiParam {String} user
- */
- api.list = async function(req, res) {
- const username = req.query.user || null;
- const path = req.query.path || null;
- const limit = +req.query.limit || 50;
- const offset = parseInt(req.query.offset) || 0;
- const queryOptions = { offset, limit: limit + 1 };
- // Accepts only one of these
- if (username === null && path === null) {
- return res.json(ApiResponse.error('Parameter user or path is required.'));
- }
- if (username !== null && path !== null) {
- return res.json(ApiResponse.error('Parameter user or path is required.'));
- }
- try {
- let result = null;
- if (path == null) {
- const user = await User.findUserByUsername(username);
- if (user === null) {
- throw new Error('The user not found.');
- }
- result = await Page.findListByCreator(user, req.user, queryOptions);
- }
- else {
- result = await Page.findListByStartWith(path, req.user, queryOptions);
- }
- if (result.pages.length > limit) {
- result.pages.pop();
- }
- result.pages.forEach((page) => {
- if (page.lastUpdateUser != null && page.lastUpdateUser instanceof User) {
- page.lastUpdateUser = serializeUserSecurely(page.lastUpdateUser);
- }
- });
- return res.json(ApiResponse.success(result));
- }
- catch (err) {
- return res.json(ApiResponse.error(err));
- }
- };
- // TODO If everything that depends on this route, delete it too
- api.create = async function(req, res) {
- const body = req.body.body || null;
- let pagePath = req.body.path || null;
- const grant = req.body.grant || null;
- const grantUserGroupId = req.body.grantUserGroupId || null;
- const overwriteScopesOfDescendants = req.body.overwriteScopesOfDescendants || null;
- const isSlackEnabled = !!req.body.isSlackEnabled; // cast to boolean
- const slackChannels = req.body.slackChannels || null;
- const socketClientId = req.body.socketClientId || undefined;
- const pageTags = req.body.pageTags || undefined;
- if (body === null || pagePath === null) {
- return res.json(ApiResponse.error('Parameters body and path are required.'));
- }
- // check whether path starts slash
- pagePath = pathUtils.addHeadingSlash(pagePath);
- // check page existence
- const isExist = await Page.count({ path: pagePath }) > 0;
- if (isExist) {
- return res.json(ApiResponse.error('Page exists', 'already_exists'));
- }
- const options = { socketClientId };
- if (grant != null) {
- options.grant = grant;
- options.grantUserGroupId = grantUserGroupId;
- }
- const createdPage = await Page.create(pagePath, body, req.user, options);
- let savedTags;
- if (pageTags != null) {
- await PageTagRelation.updatePageTags(createdPage.id, pageTags);
- savedTags = await PageTagRelation.listTagNamesByPage(createdPage.id);
- }
- const result = {
- page: serializePageSecurely(createdPage),
- revision: serializeRevisionSecurely(createdPage.revision),
- tags: savedTags,
- };
- res.json(ApiResponse.success(result));
- // update scopes for descendants
- if (overwriteScopesOfDescendants) {
- Page.applyScopesToDescendantsAsyncronously(createdPage, req.user);
- }
- // global notification
- try {
- await globalNotificationService.fire(GlobalNotificationSetting.EVENT.PAGE_CREATE, createdPage, req.user);
- }
- catch (err) {
- logger.error('Create notification failed', err);
- }
- // user notification
- if (isSlackEnabled) {
- try {
- const results = await userNotificationService.fire(createdPage, req.user, slackChannels, 'create');
- results.forEach((result) => {
- if (result.status === 'rejected') {
- logger.error('Create user notification failed', result.reason);
- }
- });
- }
- catch (err) {
- logger.error('Create user notification failed', err);
- }
- }
- };
- /**
- * @swagger
- *
- * /pages.update:
- * post:
- * tags: [Pages, CrowiCompatibles]
- * operationId: updatePage
- * summary: /pages.update
- * description: Update page
- * requestBody:
- * content:
- * application/json:
- * schema:
- * properties:
- * body:
- * $ref: '#/components/schemas/Revision/properties/body'
- * page_id:
- * $ref: '#/components/schemas/Page/properties/_id'
- * revision_id:
- * $ref: '#/components/schemas/Revision/properties/_id'
- * grant:
- * $ref: '#/components/schemas/Page/properties/grant'
- * required:
- * - body
- * - page_id
- * - revision_id
- * responses:
- * 200:
- * description: Succeeded to update page.
- * content:
- * application/json:
- * schema:
- * properties:
- * ok:
- * $ref: '#/components/schemas/V1Response/properties/ok'
- * page:
- * $ref: '#/components/schemas/Page'
- * revision:
- * $ref: '#/components/schemas/Revision'
- * 403:
- * $ref: '#/components/responses/403'
- * 500:
- * $ref: '#/components/responses/500'
- */
- /**
- * @api {post} /pages.update Update page
- * @apiName UpdatePage
- * @apiGroup Page
- *
- * @apiParam {String} body
- * @apiParam {String} page_id
- * @apiParam {String} revision_id
- * @apiParam {String} grant
- *
- * In the case of the page exists:
- * - If revision_id is specified => update the page,
- * - If revision_id is not specified => force update by the new contents.
- */
- api.update = async function(req, res) {
- const pageBody = req.body.body || null;
- const pageId = req.body.page_id || null;
- const revisionId = req.body.revision_id || null;
- const grant = req.body.grant || null;
- const grantUserGroupId = req.body.grantUserGroupId || null;
- const overwriteScopesOfDescendants = req.body.overwriteScopesOfDescendants || null;
- const isSlackEnabled = !!req.body.isSlackEnabled; // cast to boolean
- const slackChannels = req.body.slackChannels || null;
- const isSyncRevisionToHackmd = !!req.body.isSyncRevisionToHackmd; // cast to boolean
- const socketClientId = req.body.socketClientId || undefined;
- const pageTags = req.body.pageTags || undefined;
- if (pageId === null || pageBody === null || revisionId === null) {
- return res.json(ApiResponse.error('page_id, body and revision_id are required.'));
- }
- // check page existence
- const isExist = await Page.count({ _id: pageId }) > 0;
- if (!isExist) {
- return res.json(ApiResponse.error(`Page('${pageId}' is not found or forbidden`, 'notfound_or_forbidden'));
- }
- // check revision
- let page = await Page.findByIdAndViewer(pageId, req.user);
- if (page != null && revisionId != null && !page.isUpdatable(revisionId)) {
- return res.json(ApiResponse.error('Posted param "revisionId" is outdated.', 'outdated'));
- }
- const options = { isSyncRevisionToHackmd, socketClientId };
- if (grant != null) {
- options.grant = grant;
- options.grantUserGroupId = grantUserGroupId;
- }
- const Revision = crowi.model('Revision');
- const previousRevision = await Revision.findById(revisionId);
- try {
- page = await Page.updatePage(page, pageBody, previousRevision.body, req.user, options);
- }
- catch (err) {
- logger.error('error on _api/pages.update', err);
- return res.json(ApiResponse.error(err));
- }
- let savedTags;
- if (pageTags != null) {
- await PageTagRelation.updatePageTags(pageId, pageTags);
- savedTags = await PageTagRelation.listTagNamesByPage(pageId);
- }
- const result = {
- page: serializePageSecurely(page),
- revision: serializeRevisionSecurely(page.revision),
- tags: savedTags,
- };
- res.json(ApiResponse.success(result));
- // update scopes for descendants
- if (overwriteScopesOfDescendants) {
- Page.applyScopesToDescendantsAsyncronously(page, req.user);
- }
- // global notification
- try {
- await globalNotificationService.fire(GlobalNotificationSetting.EVENT.PAGE_EDIT, page, req.user);
- }
- catch (err) {
- logger.error('Edit notification failed', err);
- }
- // user notification
- if (isSlackEnabled) {
- try {
- const results = await userNotificationService.fire(page, req.user, slackChannels, 'update', { previousRevision });
- results.forEach((result) => {
- if (result.status === 'rejected') {
- logger.error('Create user notification failed', result.reason);
- }
- });
- }
- catch (err) {
- logger.error('Create user notification failed', err);
- }
- }
- };
- /**
- * @swagger
- *
- * /pages.get:
- * get:
- * tags: [Pages, CrowiCompatibles]
- * operationId: getPage
- * summary: /pages.get
- * description: Get page data
- * parameters:
- * - in: query
- * name: page_id
- * schema:
- * $ref: '#/components/schemas/Page/properties/_id'
- * - in: query
- * name: path
- * schema:
- * $ref: '#/components/schemas/Page/properties/path'
- * - in: query
- * name: revision_id
- * schema:
- * $ref: '#/components/schemas/Revision/properties/_id'
- * responses:
- * 200:
- * description: Succeeded to get page data.
- * content:
- * application/json:
- * schema:
- * properties:
- * ok:
- * $ref: '#/components/schemas/V1Response/properties/ok'
- * page:
- * $ref: '#/components/schemas/Page'
- * 403:
- * $ref: '#/components/responses/403'
- * 500:
- * $ref: '#/components/responses/500'
- */
- /**
- * @api {get} /pages.get Get page data
- * @apiName GetPage
- * @apiGroup Page
- *
- * @apiParam {String} page_id
- * @apiParam {String} path
- * @apiParam {String} revision_id
- */
- api.get = async function(req, res) {
- const pagePath = req.query.path || null;
- const pageId = req.query.page_id || null; // TODO: handling
- if (!pageId && !pagePath) {
- return res.json(ApiResponse.error(new Error('Parameter path or page_id is required.')));
- }
- let page;
- try {
- if (pageId) { // prioritized
- page = await Page.findByIdAndViewer(pageId, req.user);
- }
- else if (pagePath) {
- page = await Page.findByPathAndViewer(pagePath, req.user);
- }
- if (page == null) {
- throw new Error(`Page '${pageId || pagePath}' is not found or forbidden`, 'notfound_or_forbidden');
- }
- page.initLatestRevisionField();
- // populate
- page = await page.populateDataToShowRevision();
- }
- catch (err) {
- return res.json(ApiResponse.error(err));
- }
- const result = {};
- result.page = page; // TODO consider to use serializePageSecurely method -- 2018.08.06 Yuki Takei
- return res.json(ApiResponse.success(result));
- };
- /**
- * @swagger
- *
- * /pages.exist:
- * get:
- * tags: [Pages]
- * operationId: getPageExistence
- * summary: /pages.exist
- * description: Get page existence
- * parameters:
- * - in: query
- * name: pagePaths
- * schema:
- * type: string
- * description: Page path list in JSON Array format
- * example: '["/", "/user/unknown"]'
- * responses:
- * 200:
- * description: Succeeded to get page existence.
- * content:
- * application/json:
- * schema:
- * properties:
- * ok:
- * $ref: '#/components/schemas/V1Response/properties/ok'
- * pages:
- * type: string
- * description: Properties of page path and existence
- * example: '{"/": true, "/user/unknown": false}'
- * 403:
- * $ref: '#/components/responses/403'
- * 500:
- * $ref: '#/components/responses/500'
- */
- /**
- * @api {get} /pages.exist Get if page exists
- * @apiName GetPage
- * @apiGroup Page
- *
- * @apiParam {String} pages (stringified JSON)
- */
- api.exist = async function(req, res) {
- const pagePaths = JSON.parse(req.query.pagePaths || '[]');
- const pages = {};
- await Promise.all(pagePaths.map(async(path) => {
- // check page existence
- const isExist = await Page.count({ path }) > 0;
- pages[path] = isExist;
- return;
- }));
- const result = { pages };
- return res.json(ApiResponse.success(result));
- };
- /**
- * @swagger
- *
- * /pages.getPageTag:
- * get:
- * tags: [Pages]
- * operationId: getPageTag
- * summary: /pages.getPageTag
- * description: Get page tag
- * parameters:
- * - in: query
- * name: pageId
- * schema:
- * $ref: '#/components/schemas/Page/properties/_id'
- * responses:
- * 200:
- * description: Succeeded to get page tags.
- * content:
- * application/json:
- * schema:
- * properties:
- * ok:
- * $ref: '#/components/schemas/V1Response/properties/ok'
- * tags:
- * $ref: '#/components/schemas/Tags'
- * 403:
- * $ref: '#/components/responses/403'
- * 500:
- * $ref: '#/components/responses/500'
- */
- /**
- * @api {get} /pages.getPageTag get page tags
- * @apiName GetPageTag
- * @apiGroup Page
- *
- * @apiParam {String} pageId
- */
- api.getPageTag = async function(req, res) {
- const result = {};
- try {
- result.tags = await PageTagRelation.listTagNamesByPage(req.query.pageId);
- }
- catch (err) {
- return res.json(ApiResponse.error(err));
- }
- return res.json(ApiResponse.success(result));
- };
- /**
- * @swagger
- *
- * /pages.updatePost:
- * get:
- * tags: [Pages, CrowiCompatibles]
- * operationId: getUpdatePostPage
- * summary: /pages.updatePost
- * description: Get UpdatePost setting list
- * parameters:
- * - in: query
- * name: path
- * schema:
- * $ref: '#/components/schemas/Page/properties/path'
- * responses:
- * 200:
- * description: Succeeded to get UpdatePost setting list.
- * content:
- * application/json:
- * schema:
- * properties:
- * ok:
- * $ref: '#/components/schemas/V1Response/properties/ok'
- * updatePost:
- * $ref: '#/components/schemas/UpdatePost'
- * 403:
- * $ref: '#/components/responses/403'
- * 500:
- * $ref: '#/components/responses/500'
- */
- /**
- * @api {get} /pages.updatePost
- * @apiName Get UpdatePost setting list
- * @apiGroup Page
- *
- * @apiParam {String} path
- */
- api.getUpdatePost = function(req, res) {
- const path = req.query.path;
- const UpdatePost = crowi.model('UpdatePost');
- if (!path) {
- return res.json(ApiResponse.error({}));
- }
- UpdatePost.findSettingsByPath(path)
- .then((data) => {
- // eslint-disable-next-line no-param-reassign
- data = data.map((e) => {
- return e.channel;
- });
- debug('Found updatePost data', data);
- const result = { updatePost: data };
- return res.json(ApiResponse.success(result));
- })
- .catch((err) => {
- debug('Error occured while get setting', err);
- return res.json(ApiResponse.error({}));
- });
- };
- /**
- * @api {post} /pages.remove Remove page
- * @apiName RemovePage
- * @apiGroup Page
- *
- * @apiParam {String} page_id Page Id.
- * @apiParam {String} revision_id
- */
- api.remove = async function(req, res) {
- const pageId = req.body.page_id;
- const previousRevision = req.body.revision_id || null;
- const socketClientId = req.body.socketClientId || undefined;
- // get completely flag
- const isCompletely = (req.body.completely != null);
- // get recursively flag
- const isRecursively = (req.body.recursively != null);
- const options = { socketClientId };
- const page = await Page.findByIdAndViewer(pageId, req.user);
- if (page == null) {
- return res.json(ApiResponse.error(`Page '${pageId}' is not found or forbidden`, 'notfound_or_forbidden'));
- }
- debug('Delete page', page._id, page.path);
- try {
- if (isCompletely) {
- if (!req.user.canDeleteCompletely(page.creator)) {
- return res.json(ApiResponse.error('You can not delete completely', 'user_not_admin'));
- }
- await crowi.pageService.deleteCompletely(page, req.user, options, isRecursively);
- }
- else {
- if (!page.isUpdatable(previousRevision)) {
- return res.json(ApiResponse.error('Someone could update this page, so couldn\'t delete.', 'outdated'));
- }
- await crowi.pageService.deletePage(page, req.user, options, isRecursively);
- }
- }
- catch (err) {
- logger.error('Error occured while get setting', err);
- return res.json(ApiResponse.error('Failed to delete page.', err.message));
- }
- debug('Page deleted', page.path);
- const result = {};
- result.page = page; // TODO consider to use serializePageSecurely method -- 2018.08.06 Yuki Takei
- res.json(ApiResponse.success(result));
- try {
- // global notification
- await globalNotificationService.fire(GlobalNotificationSetting.EVENT.PAGE_DELETE, page, req.user);
- }
- catch (err) {
- logger.error('Delete notification failed', err);
- }
- };
- /**
- * @api {post} /pages.revertRemove Revert removed page
- * @apiName RevertRemovePage
- * @apiGroup Page
- *
- * @apiParam {String} page_id Page Id.
- */
- api.revertRemove = async function(req, res, options) {
- const pageId = req.body.page_id;
- const socketClientId = req.body.socketClientId || undefined;
- // get recursively flag
- const isRecursively = (req.body.recursively != null);
- let page;
- try {
- page = await Page.findByIdAndViewer(pageId, req.user);
- if (page == null) {
- throw new Error(`Page '${pageId}' is not found or forbidden`, 'notfound_or_forbidden');
- }
- page = await crowi.pageService.revertDeletedPage(page, req.user, { socketClientId }, isRecursively);
- }
- catch (err) {
- logger.error('Error occured while get setting', err);
- return res.json(ApiResponse.error('Failed to revert deleted page.'));
- }
- const result = {};
- result.page = page; // TODO consider to use serializePageSecurely method -- 2018.08.06 Yuki Takei
- return res.json(ApiResponse.success(result));
- };
- /**
- * @swagger
- *
- * /pages.rename:
- * post:
- * tags: [Pages, CrowiCompatibles]
- * operationId: renamePage
- * summary: /pages.rename
- * description: Rename page
- * requestBody:
- * content:
- * application/json:
- * schema:
- * properties:
- * page_id:
- * $ref: '#/components/schemas/Page/properties/_id'
- * path:
- * $ref: '#/components/schemas/Page/properties/path'
- * revision_id:
- * $ref: '#/components/schemas/Revision/properties/_id'
- * new_path:
- * type: string
- * description: new path
- * example: /user/alice/new_test
- * create_redirect:
- * type: boolean
- * description: whether redirect page
- * required:
- * - page_id
- * responses:
- * 200:
- * description: Succeeded to rename page.
- * content:
- * application/json:
- * schema:
- * properties:
- * ok:
- * $ref: '#/components/schemas/V1Response/properties/ok'
- * page:
- * $ref: '#/components/schemas/Page'
- * 403:
- * $ref: '#/components/responses/403'
- * 500:
- * $ref: '#/components/responses/500'
- */
- /**
- * @api {post} /pages.rename Rename page
- * @apiName RenamePage
- * @apiGroup Page
- *
- * @apiParam {String} page_id Page Id.
- * @apiParam {String} path
- * @apiParam {String} revision_id
- * @apiParam {String} new_path New path name.
- * @apiParam {Bool} create_redirect
- */
- api.rename = async function(req, res) {
- const pageId = req.body.page_id;
- const previousRevision = req.body.revision_id || null;
- let newPagePath = pathUtils.normalizePath(req.body.new_path);
- const options = {
- createRedirectPage: (req.body.create_redirect != null),
- updateMetadata: (req.body.remain_metadata == null),
- socketClientId: +req.body.socketClientId || undefined,
- };
- const isRecursively = (req.body.recursively != null);
- if (!Page.isCreatableName(newPagePath)) {
- return res.json(ApiResponse.error(`Could not use the path '${newPagePath})'`, 'invalid_path'));
- }
- // check whether path starts slash
- newPagePath = pathUtils.addHeadingSlash(newPagePath);
- const isExist = await Page.count({ path: newPagePath }) > 0;
- if (isExist) {
- // if page found, cannot cannot rename to that path
- return res.json(ApiResponse.error(`'new_path=${newPagePath}' already exists`, 'already_exists'));
- }
- let page;
- try {
- page = await Page.findByIdAndViewer(pageId, req.user);
- if (page == null) {
- return res.json(ApiResponse.error(`Page '${pageId}' is not found or forbidden`, 'notfound_or_forbidden'));
- }
- if (!page.isUpdatable(previousRevision)) {
- return res.json(ApiResponse.error('Someone could update this page, so couldn\'t delete.', 'outdated'));
- }
- page = await crowi.pageService.renamePage(page, newPagePath, req.user, options, isRecursively);
- }
- catch (err) {
- logger.error(err);
- return res.json(ApiResponse.error('Failed to update page.', 'unknown'));
- }
- const result = {};
- result.page = page; // TODO consider to use serializePageSecurely method -- 2018.08.06 Yuki Takei
- res.json(ApiResponse.success(result));
- try {
- // global notification
- await globalNotificationService.fire(GlobalNotificationSetting.EVENT.PAGE_MOVE, page, req.user, {
- oldPath: req.body.path,
- });
- }
- catch (err) {
- logger.error('Move notification failed', err);
- }
- return page;
- };
- /**
- * @swagger
- *
- * /pages.duplicate:
- * post:
- * tags: [Pages]
- * operationId: duplicatePage
- * summary: /pages.duplicate
- * description: Duplicate page
- * requestBody:
- * content:
- * application/json:
- * schema:
- * properties:
- * page_id:
- * $ref: '#/components/schemas/Page/properties/_id'
- * new_path:
- * $ref: '#/components/schemas/Page/properties/path'
- * required:
- * - page_id
- * responses:
- * 200:
- * description: Succeeded to duplicate page.
- * content:
- * application/json:
- * schema:
- * properties:
- * ok:
- * $ref: '#/components/schemas/V1Response/properties/ok'
- * page:
- * $ref: '#/components/schemas/Page'
- * tags:
- * $ref: '#/components/schemas/Tags'
- * 403:
- * $ref: '#/components/responses/403'
- * 500:
- * $ref: '#/components/responses/500'
- */
- /**
- * @api {post} /pages.duplicate Duplicate page
- * @apiName DuplicatePage
- * @apiGroup Page
- *
- * @apiParam {String} page_id Page Id.
- * @apiParam {String} new_path New path name.
- */
- api.duplicate = async function(req, res) {
- const pageId = req.body.page_id;
- let newPagePath = pathUtils.normalizePath(req.body.new_path);
- const page = await Page.findByIdAndViewer(pageId, req.user);
- if (page == null) {
- return res.json(ApiResponse.error(`Page '${pageId}' is not found or forbidden`, 'notfound_or_forbidden'));
- }
- // check whether path starts slash
- newPagePath = pathUtils.addHeadingSlash(newPagePath);
- await page.populateDataToShowRevision();
- const originTags = await page.findRelatedTagsById();
- req.body.path = newPagePath;
- req.body.body = page.revision.body;
- req.body.grant = page.grant;
- req.body.grantedUsers = page.grantedUsers;
- req.body.grantUserGroupId = page.grantedGroup;
- req.body.pageTags = originTags;
- return api.create(req, res);
- };
- /**
- * @api {post} /pages.unlink Remove the redirecting page
- * @apiName UnlinkPage
- * @apiGroup Page
- *
- * @apiParam {String} page_id Page Id.
- * @apiParam {String} revision_id
- */
- api.unlink = async function(req, res) {
- const path = req.body.path;
- try {
- await Page.removeRedirectOriginPageByPath(path);
- logger.debug('Redirect Page deleted', path);
- }
- catch (err) {
- logger.error('Error occured while get setting', err);
- return res.json(ApiResponse.error('Failed to delete redirect page.'));
- }
- const result = { path };
- return res.json(ApiResponse.success(result));
- };
- return actions;
- };
|