| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252 |
- /* eslint-disable no-use-before-define */
- module.exports = function(crowi, app) {
- const debug = require('debug')('growi:routes:admin');
- const logger = require('@alias/logger')('growi:routes:admin');
- const models = crowi.models;
- const User = models.User;
- const ExternalAccount = models.ExternalAccount;
- const UserGroup = models.UserGroup;
- const UserGroupRelation = models.UserGroupRelation;
- const GlobalNotificationSetting = models.GlobalNotificationSetting;
- const GlobalNotificationMailSetting = models.GlobalNotificationMailSetting;
- const GlobalNotificationSlackSetting = models.GlobalNotificationSlackSetting; // eslint-disable-line no-unused-vars
- const {
- configManager,
- aclService,
- slackNotificationService,
- customizeService,
- exportService,
- } = crowi;
- const recommendedWhitelist = require('@commons/service/xss/recommended-whitelist');
- const PluginUtils = require('../plugins/plugin-utils');
- const ApiResponse = require('../util/apiResponse');
- const importer = require('../util/importer')(crowi);
- const searchEvent = crowi.event('search');
- const pluginUtils = new PluginUtils();
- const MAX_PAGE_LIST = 50;
- const actions = {};
- const { check } = require('express-validator/check');
- const api = {};
- function createPager(total, limit, page, pagesCount, maxPageList) {
- const pager = {
- page,
- pagesCount,
- pages: [],
- total,
- previous: null,
- previousDots: false,
- next: null,
- nextDots: false,
- };
- if (page > 1) {
- pager.previous = page - 1;
- }
- if (page < pagesCount) {
- pager.next = page + 1;
- }
- let pagerMin = Math.max(1, Math.ceil(page - maxPageList / 2));
- let pagerMax = Math.min(pagesCount, Math.floor(page + maxPageList / 2));
- if (pagerMin === 1) {
- if (MAX_PAGE_LIST < pagesCount) {
- pagerMax = MAX_PAGE_LIST;
- }
- else {
- pagerMax = pagesCount;
- }
- }
- if (pagerMax === pagesCount) {
- if ((pagerMax - MAX_PAGE_LIST) < 1) {
- pagerMin = 1;
- }
- else {
- pagerMin = pagerMax - MAX_PAGE_LIST;
- }
- }
- pager.previousDots = null;
- if (pagerMin > 1) {
- pager.previousDots = true;
- }
- pager.nextDots = null;
- if (pagerMax < pagesCount) {
- pager.nextDots = true;
- }
- for (let i = pagerMin; i <= pagerMax; i++) {
- pager.pages.push(i);
- }
- return pager;
- }
- actions.index = function(req, res) {
- return res.render('admin/index', {
- plugins: pluginUtils.listPlugins(crowi.rootDir),
- });
- };
- // app.get('/admin/app' , admin.app.index);
- actions.app = {};
- actions.app.index = function(req, res) {
- return res.render('admin/app');
- };
- actions.app.settingUpdate = function(req, res) {
- };
- // app.get('/admin/security' , admin.security.index);
- actions.security = {};
- actions.security.index = function(req, res) {
- const isWikiModeForced = aclService.isWikiModeForced();
- const guestModeValue = aclService.getGuestModeValue();
- return res.render('admin/security', {
- isWikiModeForced,
- guestModeValue,
- });
- };
- // app.get('/admin/markdown' , admin.markdown.index);
- actions.markdown = {};
- actions.markdown.index = function(req, res) {
- const markdownSetting = configManager.getConfigByPrefix('markdown', 'markdown:');
- return res.render('admin/markdown', {
- markdownSetting,
- recommendedWhitelist,
- });
- };
- // app.post('/admin/markdown/lineBreaksSetting' , admin.markdown.lineBreaksSetting);
- actions.markdown.lineBreaksSetting = async function(req, res) {
- const array = req.body.params;
- try {
- await configManager.updateConfigsInTheSameNamespace('markdown', array);
- return res.json(ApiResponse.success());
- }
- catch (err) {
- return res.json(ApiResponse.error(err));
- }
- };
- // app.post('/admin/markdown/presentationSetting' , admin.markdown.presentationSetting);
- actions.markdown.presentationSetting = async function(req, res) {
- const markdownSetting = req.form.markdownSetting;
- if (req.form.isValid) {
- await configManager.updateConfigsInTheSameNamespace('markdown', markdownSetting);
- req.flash('successMessage', ['Successfully updated!']);
- }
- else {
- req.flash('errorMessage', req.form.errors);
- }
- return res.redirect('/admin/markdown');
- };
- // app.post('/admin/markdown/xss-setting' , admin.markdown.xssSetting);
- actions.markdown.xssSetting = async function(req, res) {
- const xssSetting = req.form.markdownSetting;
- xssSetting['markdown:xss:tagWhiteList'] = csvToArray(xssSetting['markdown:xss:tagWhiteList']);
- xssSetting['markdown:xss:attrWhiteList'] = csvToArray(xssSetting['markdown:xss:attrWhiteList']);
- if (req.form.isValid) {
- await configManager.updateConfigsInTheSameNamespace('markdown', xssSetting);
- req.flash('successMessage', ['Successfully updated!']);
- }
- else {
- req.flash('errorMessage', req.form.errors);
- }
- return res.redirect('/admin/markdown');
- };
- const csvToArray = (string) => {
- const array = string.split(',');
- return array.map((item) => { return item.trim() });
- };
- // app.get('/admin/customize' , admin.customize.index);
- actions.customize = {};
- actions.customize.index = function(req, res) {
- const settingForm = configManager.getConfigByPrefix('crowi', 'customize:');
- /* eslint-disable quote-props, no-multi-spaces */
- const highlightJsCssSelectorOptions = {
- 'github': { name: '[Light] GitHub', border: false },
- 'github-gist': { name: '[Light] GitHub Gist', border: true },
- 'atom-one-light': { name: '[Light] Atom One Light', border: true },
- 'xcode': { name: '[Light] Xcode', border: true },
- 'vs': { name: '[Light] Vs', border: true },
- 'atom-one-dark': { name: '[Dark] Atom One Dark', border: false },
- 'hybrid': { name: '[Dark] Hybrid', border: false },
- 'monokai': { name: '[Dark] Monokai', border: false },
- 'tomorrow-night': { name: '[Dark] Tomorrow Night', border: false },
- 'vs2015': { name: '[Dark] Vs 2015', border: false },
- };
- /* eslint-enable quote-props, no-multi-spaces */
- return res.render('admin/customize', {
- settingForm,
- highlightJsCssSelectorOptions,
- });
- };
- // app.get('/admin/notification' , admin.notification.index);
- actions.notification = {};
- actions.notification.index = async(req, res) => {
- const UpdatePost = crowi.model('UpdatePost');
- let slackSetting = configManager.getConfigByPrefix('notification', 'slack:');
- const hasSlackIwhUrl = !!configManager.getConfig('notification', 'slack:incomingWebhookUrl');
- const hasSlackToken = !!configManager.getConfig('notification', 'slack:token');
- if (!hasSlackIwhUrl) {
- slackSetting['slack:incomingWebhookUrl'] = '';
- }
- if (req.session.slackSetting) {
- slackSetting = req.session.slackSetting;
- req.session.slackSetting = null;
- }
- const globalNotifications = await GlobalNotificationSetting.findAll();
- const userNotifications = await UpdatePost.findAll();
- return res.render('admin/notification', {
- userNotifications,
- slackSetting,
- hasSlackIwhUrl,
- hasSlackToken,
- globalNotifications,
- });
- };
- // app.post('/admin/notification/slackSetting' , admin.notification.slackauth);
- actions.notification.slackSetting = async function(req, res) {
- const slackSetting = req.form.slackSetting;
- if (req.form.isValid) {
- await configManager.updateConfigsInTheSameNamespace('notification', slackSetting);
- req.flash('successMessage', ['Successfully Updated!']);
- // Re-setup
- crowi.setupSlack().then(() => {
- });
- }
- else {
- req.flash('errorMessage', req.form.errors);
- }
- return res.redirect('/admin/notification');
- };
- // app.get('/admin/notification/slackAuth' , admin.notification.slackauth);
- actions.notification.slackAuth = function(req, res) {
- const code = req.query.code;
- if (!code || !slackNotificationService.hasSlackConfig()) {
- return res.redirect('/admin/notification');
- }
- const slack = crowi.slack;
- slack.getOauthAccessToken(code)
- .then(async(data) => {
- debug('oauth response', data);
- try {
- await configManager.updateConfigsInTheSameNamespace('notification', { 'slack:token': data.access_token });
- req.flash('successMessage', ['Successfully Connected!']);
- }
- catch (err) {
- req.flash('errorMessage', ['Failed to save access_token. Please try again.']);
- }
- return res.redirect('/admin/notification');
- })
- .catch((err) => {
- debug('oauth response ERROR', err);
- req.flash('errorMessage', ['Failed to fetch access_token. Please do connect again.']);
- return res.redirect('/admin/notification');
- });
- };
- // app.post('/admin/notification/slackIwhSetting' , admin.notification.slackIwhSetting);
- actions.notification.slackIwhSetting = async function(req, res) {
- const slackIwhSetting = req.form.slackIwhSetting;
- if (req.form.isValid) {
- await configManager.updateConfigsInTheSameNamespace('notification', slackIwhSetting);
- req.flash('successMessage', ['Successfully Updated!']);
- // Re-setup
- crowi.setupSlack().then(() => {
- return res.redirect('/admin/notification#slack-incoming-webhooks');
- });
- }
- else {
- req.flash('errorMessage', req.form.errors);
- return res.redirect('/admin/notification#slack-incoming-webhooks');
- }
- };
- // app.post('/admin/notification/slackSetting/disconnect' , admin.notification.disconnectFromSlack);
- actions.notification.disconnectFromSlack = async function(req, res) {
- await configManager.updateConfigsInTheSameNamespace('notification', { 'slack:token': '' });
- req.flash('successMessage', ['Successfully Disconnected!']);
- return res.redirect('/admin/notification');
- };
- actions.globalNotification = {};
- actions.globalNotification.detail = async(req, res) => {
- const notificationSettingId = req.params.id;
- const renderVars = {};
- if (notificationSettingId) {
- try {
- renderVars.setting = await GlobalNotificationSetting.findOne({ _id: notificationSettingId });
- }
- catch (err) {
- logger.error(`Error in finding a global notification setting with {_id: ${notificationSettingId}}`);
- }
- }
- return res.render('admin/global-notification-detail', renderVars);
- };
- actions.globalNotification.create = (req, res) => {
- const form = req.form.notificationGlobal;
- let setting;
- switch (form.notifyToType) {
- case GlobalNotificationSetting.TYPE.MAIL:
- setting = new GlobalNotificationMailSetting(crowi);
- setting.toEmail = form.toEmail;
- break;
- case GlobalNotificationSetting.TYPE.SLACK:
- setting = new GlobalNotificationSlackSetting(crowi);
- setting.slackChannels = form.slackChannels;
- break;
- default:
- logger.error('GlobalNotificationSetting Type Error: undefined type');
- req.flash('errorMessage', 'Error occurred in creating a new global notification setting: undefined notification type');
- return res.redirect('/admin/notification#global-notification');
- }
- setting.triggerPath = form.triggerPath;
- setting.triggerEvents = getNotificationEvents(form);
- setting.save();
- return res.redirect('/admin/notification#global-notification');
- };
- actions.globalNotification.update = async(req, res) => {
- const form = req.form.notificationGlobal;
- const models = {
- [GlobalNotificationSetting.TYPE.MAIL]: GlobalNotificationMailSetting,
- [GlobalNotificationSetting.TYPE.SLACK]: GlobalNotificationSlackSetting,
- };
- let setting = await GlobalNotificationSetting.findOne({ _id: form.id });
- setting = setting.toObject();
- // when switching from one type to another,
- // remove toEmail from slack setting and slackChannels from mail setting
- if (setting.__t !== form.notifyToType) {
- setting = models[setting.__t].hydrate(setting);
- setting.toEmail = undefined;
- setting.slackChannels = undefined;
- await setting.save();
- setting = setting.toObject();
- }
- switch (form.notifyToType) {
- case GlobalNotificationSetting.TYPE.MAIL:
- setting = GlobalNotificationMailSetting.hydrate(setting);
- setting.toEmail = form.toEmail;
- break;
- case GlobalNotificationSetting.TYPE.SLACK:
- setting = GlobalNotificationSlackSetting.hydrate(setting);
- setting.slackChannels = form.slackChannels;
- break;
- default:
- logger.error('GlobalNotificationSetting Type Error: undefined type');
- req.flash('errorMessage', 'Error occurred in updating the global notification setting: undefined notification type');
- return res.redirect('/admin/notification#global-notification');
- }
- setting.__t = form.notifyToType;
- setting.triggerPath = form.triggerPath;
- setting.triggerEvents = getNotificationEvents(form);
- await setting.save();
- return res.redirect('/admin/notification#global-notification');
- };
- actions.globalNotification.remove = async(req, res) => {
- const id = req.params.id;
- try {
- await GlobalNotificationSetting.findOneAndRemove({ _id: id });
- return res.redirect('/admin/notification#global-notification');
- }
- catch (err) {
- req.flash('errorMessage', 'Error in deleting global notification setting');
- return res.redirect('/admin/notification#global-notification');
- }
- };
- const getNotificationEvents = (form) => {
- const triggerEvents = [];
- const triggerEventKeys = Object.keys(form).filter((key) => { return key.match(/^triggerEvent/) });
- triggerEventKeys.forEach((key) => {
- if (form[key]) {
- triggerEvents.push(form[key]);
- }
- });
- return triggerEvents;
- };
- actions.search = {};
- actions.search.index = function(req, res) {
- const search = crowi.getSearcher();
- if (!search) {
- return res.redirect('/admin');
- }
- return res.render('admin/search', {});
- };
- actions.user = {};
- actions.user.index = async function(req, res) {
- const activeUsers = await User.countListByStatus(User.STATUS_ACTIVE);
- const userUpperLimit = aclService.userUpperLimit();
- const isUserCountExceedsUpperLimit = await User.isUserCountExceedsUpperLimit();
- const page = parseInt(req.query.page) || 1;
- const result = await User.findUsersWithPagination({
- page,
- select: `${User.USER_PUBLIC_FIELDS} lastLoginAt`,
- populate: User.IMAGE_POPULATION,
- });
- const pager = createPager(result.total, result.limit, result.page, result.pages, MAX_PAGE_LIST);
- return res.render('admin/users', {
- users: result.docs,
- pager,
- activeUsers,
- userUpperLimit,
- isUserCountExceedsUpperLimit,
- });
- };
- actions.user.makeAdmin = function(req, res) {
- const id = req.params.id;
- User.findById(id, (err, userData) => {
- userData.makeAdmin((err, userData) => {
- if (err === null) {
- req.flash('successMessage', `${userData.name}さんのアカウントを管理者に設定しました。`);
- }
- else {
- req.flash('errorMessage', '更新に失敗しました。');
- debug(err, userData);
- }
- return res.redirect('/admin/users');
- });
- });
- };
- actions.user.removeFromAdmin = function(req, res) {
- const id = req.params.id;
- User.findById(id, (err, userData) => {
- userData.removeFromAdmin((err, userData) => {
- if (err === null) {
- req.flash('successMessage', `${userData.name}さんのアカウントを管理者から外しました。`);
- }
- else {
- req.flash('errorMessage', '更新に失敗しました。');
- debug(err, userData);
- }
- return res.redirect('/admin/users');
- });
- });
- };
- // TODO delete
- actions.user.suspend = function(req, res) {
- const id = req.params.id;
- User.findById(id, (err, userData) => {
- userData.statusSuspend((err, userData) => {
- if (err === null) {
- req.flash('successMessage', `${userData.name}さんのアカウントを利用停止にしました`);
- }
- else {
- req.flash('errorMessage', '更新に失敗しました。');
- debug(err, userData);
- }
- return res.redirect('/admin/users');
- });
- });
- };
- // これやったときの relation の挙動未確認
- actions.user.removeCompletely = function(req, res) {
- // ユーザーの物理削除
- const id = req.params.id;
- User.removeCompletelyById(id, (err, removed) => {
- if (err) {
- debug('Error while removing user.', err, id);
- req.flash('errorMessage', '完全な削除に失敗しました。');
- }
- else {
- req.flash('successMessage', '削除しました');
- }
- return res.redirect('/admin/users');
- });
- };
- // app.post('/_api/admin/users.resetPassword' , admin.api.usersResetPassword);
- actions.user.resetPassword = async function(req, res) {
- const id = req.body.user_id;
- const User = crowi.model('User');
- try {
- const newPassword = await User.resetPasswordByRandomString(id);
- const user = await User.findById(id);
- const result = { user: user.toObject(), newPassword };
- return res.json(ApiResponse.success(result));
- }
- catch (err) {
- debug('Error on reseting password', err);
- return res.json(ApiResponse.error(err));
- }
- };
- actions.externalAccount = {};
- actions.externalAccount.index = function(req, res) {
- const page = parseInt(req.query.page) || 1;
- ExternalAccount.findAllWithPagination({ page })
- .then((result) => {
- const pager = createPager(result.total, result.limit, result.page, result.pages, MAX_PAGE_LIST);
- return res.render('admin/external-accounts', {
- accounts: result.docs,
- pager,
- });
- });
- };
- actions.externalAccount.remove = async function(req, res) {
- const id = req.params.id;
- let account = null;
- try {
- account = await ExternalAccount.findByIdAndRemove(id);
- if (account == null) {
- throw new Error('削除に失敗しました。');
- }
- }
- catch (err) {
- req.flash('errorMessage', err.message);
- return res.redirect('/admin/users/external-accounts');
- }
- req.flash('successMessage', `外部アカウント '${account.providerType}/${account.accountId}' を削除しました`);
- return res.redirect('/admin/users/external-accounts');
- };
- actions.userGroup = {};
- actions.userGroup.index = function(req, res) {
- const page = parseInt(req.query.page) || 1;
- const isAclEnabled = aclService.isAclEnabled();
- const renderVar = {
- userGroups: [],
- userGroupRelations: new Map(),
- pager: null,
- isAclEnabled,
- };
- UserGroup.findUserGroupsWithPagination({ page })
- .then((result) => {
- const pager = createPager(result.total, result.limit, result.page, result.pages, MAX_PAGE_LIST);
- const userGroups = result.docs;
- renderVar.userGroups = userGroups;
- renderVar.pager = pager;
- return userGroups.map((userGroup) => {
- return new Promise((resolve, reject) => {
- UserGroupRelation.findAllRelationForUserGroup(userGroup)
- .then((relations) => {
- return resolve({
- id: userGroup._id,
- relatedUsers: relations.map((relation) => {
- return relation.relatedUser;
- }),
- });
- });
- });
- });
- })
- .then((allRelationsPromise) => {
- return Promise.all(allRelationsPromise);
- })
- .then((relations) => {
- for (const relation of relations) {
- renderVar.userGroupRelations[relation.id] = relation.relatedUsers;
- }
- debug('in findUserGroupsWithPagination findAllRelationForUserGroupResult', renderVar.userGroupRelations);
- return res.render('admin/user-groups', renderVar);
- })
- .catch((err) => {
- debug('Error on find all relations', err);
- return res.json(ApiResponse.error('Error'));
- });
- };
- // グループ詳細
- actions.userGroup.detail = async function(req, res) {
- const userGroupId = req.params.id;
- const userGroup = await UserGroup.findOne({ _id: userGroupId });
- if (userGroup == null) {
- logger.error('no userGroup is exists. ', userGroupId);
- return res.redirect('/admin/user-groups');
- }
- return res.render('admin/user-group-detail', { userGroup });
- };
- // Importer management
- actions.importer = {};
- actions.importer.api = api;
- api.validators = {};
- api.validators.importer = {};
- actions.importer.index = function(req, res) {
- const settingForm = configManager.getConfigByPrefix('crowi', 'importer:');
- return res.render('admin/importer', {
- settingForm,
- });
- };
- api.validators.importer.esa = function() {
- const validator = [
- check('importer:esa:team_name').not().isEmpty().withMessage('Error. Empty esa:team_name'),
- check('importer:esa:access_token').not().isEmpty().withMessage('Error. Empty esa:access_token'),
- ];
- return validator;
- };
- api.validators.importer.qiita = function() {
- const validator = [
- check('importer:qiita:team_name').not().isEmpty().withMessage('Error. Empty qiita:team_name'),
- check('importer:qiita:access_token').not().isEmpty().withMessage('Error. Empty qiita:access_token'),
- ];
- return validator;
- };
- // Export management
- actions.export = {};
- actions.export.index = (req, res) => {
- return res.render('admin/export');
- };
- actions.export.download = (req, res) => {
- // TODO: add express validator
- const { fileName } = req.params;
- try {
- const zipFile = exportService.getFile(fileName);
- return res.download(zipFile);
- }
- catch (err) {
- // TODO: use ApiV3Error
- logger.error(err);
- return res.json(ApiResponse.error());
- }
- };
- actions.api = {};
- actions.api.appSetting = async function(req, res) {
- const form = req.form.settingForm;
- if (req.form.isValid) {
- debug('form content', form);
- // mail setting ならここで validation
- if (form['mail:from']) {
- validateMailSetting(req, form, async(err, data) => {
- debug('Error validate mail setting: ', err, data);
- if (err) {
- req.form.errors.push('SMTPを利用したテストメール送信に失敗しました。設定をみなおしてください。');
- return res.json({ status: false, message: req.form.errors.join('\n') });
- }
- await configManager.updateConfigsInTheSameNamespace('crowi', form);
- return res.json({ status: true });
- });
- }
- else {
- await configManager.updateConfigsInTheSameNamespace('crowi', form);
- return res.json({ status: true });
- }
- }
- else {
- return res.json({ status: false, message: req.form.errors.join('\n') });
- }
- };
- actions.api.asyncAppSetting = async(req, res) => {
- const form = req.form.settingForm;
- if (!req.form.isValid) {
- return res.json({ status: false, message: req.form.errors.join('\n') });
- }
- debug('form content', form);
- try {
- await configManager.updateConfigsInTheSameNamespace('crowi', form);
- return res.json({ status: true });
- }
- catch (err) {
- logger.error(err);
- return res.json({ status: false });
- }
- };
- actions.api.securitySetting = async function(req, res) {
- if (!req.form.isValid) {
- return res.json({ status: false, message: req.form.errors.join('\n') });
- }
- const form = req.form.settingForm;
- if (aclService.isWikiModeForced()) {
- logger.debug('security:restrictGuestMode will not be changed because wiki mode is forced to set');
- delete form['security:restrictGuestMode'];
- }
- try {
- await configManager.updateConfigsInTheSameNamespace('crowi', form);
- return res.json({ status: true });
- }
- catch (err) {
- logger.error(err);
- return res.json({ status: false });
- }
- };
- actions.api.securityPassportLocalSetting = async function(req, res) {
- const form = req.form.settingForm;
- if (!req.form.isValid) {
- return res.json({ status: false, message: req.form.errors.join('\n') });
- }
- debug('form content', form);
- try {
- await configManager.updateConfigsInTheSameNamespace('crowi', form);
- // reset strategy
- crowi.passportService.resetLocalStrategy();
- // setup strategy
- if (configManager.getConfig('crowi', 'security:passport-local:isEnabled')) {
- crowi.passportService.setupLocalStrategy(true);
- }
- }
- catch (err) {
- logger.error(err);
- return res.json({ status: false, message: err.message });
- }
- return res.json({ status: true });
- };
- actions.api.securityPassportLdapSetting = async function(req, res) {
- const form = req.form.settingForm;
- if (!req.form.isValid) {
- return res.json({ status: false, message: req.form.errors.join('\n') });
- }
- debug('form content', form);
- try {
- await configManager.updateConfigsInTheSameNamespace('crowi', form);
- // reset strategy
- crowi.passportService.resetLdapStrategy();
- // setup strategy
- if (configManager.getConfig('crowi', 'security:passport-ldap:isEnabled')) {
- crowi.passportService.setupLdapStrategy(true);
- }
- }
- catch (err) {
- logger.error(err);
- return res.json({ status: false, message: err.message });
- }
- return res.json({ status: true });
- };
- actions.api.securityPassportSamlSetting = async(req, res) => {
- const form = req.form.settingForm;
- validateSamlSettingForm(req.form, req.t);
- if (!req.form.isValid) {
- return res.json({ status: false, message: req.form.errors.join('\n') });
- }
- debug('form content', form);
- await configManager.updateConfigsInTheSameNamespace('crowi', form);
- // reset strategy
- await crowi.passportService.resetSamlStrategy();
- // setup strategy
- if (configManager.getConfig('crowi', 'security:passport-saml:isEnabled')) {
- try {
- await crowi.passportService.setupSamlStrategy(true);
- }
- catch (err) {
- // reset
- await crowi.passportService.resetSamlStrategy();
- return res.json({ status: false, message: err.message });
- }
- }
- return res.json({ status: true });
- };
- actions.api.securityPassportBasicSetting = async(req, res) => {
- const form = req.form.settingForm;
- if (!req.form.isValid) {
- return res.json({ status: false, message: req.form.errors.join('\n') });
- }
- debug('form content', form);
- await configManager.updateConfigsInTheSameNamespace('crowi', form);
- // reset strategy
- await crowi.passportService.resetBasicStrategy();
- // setup strategy
- if (configManager.getConfig('crowi', 'security:passport-basic:isEnabled')) {
- try {
- await crowi.passportService.setupBasicStrategy(true);
- }
- catch (err) {
- // reset
- await crowi.passportService.resetBasicStrategy();
- return res.json({ status: false, message: err.message });
- }
- }
- return res.json({ status: true });
- };
- actions.api.securityPassportGoogleSetting = async(req, res) => {
- const form = req.form.settingForm;
- if (!req.form.isValid) {
- return res.json({ status: false, message: req.form.errors.join('\n') });
- }
- debug('form content', form);
- await configManager.updateConfigsInTheSameNamespace('crowi', form);
- // reset strategy
- await crowi.passportService.resetGoogleStrategy();
- // setup strategy
- if (configManager.getConfig('crowi', 'security:passport-google:isEnabled')) {
- try {
- await crowi.passportService.setupGoogleStrategy(true);
- }
- catch (err) {
- // reset
- await crowi.passportService.resetGoogleStrategy();
- return res.json({ status: false, message: err.message });
- }
- }
- return res.json({ status: true });
- };
- actions.api.securityPassportGitHubSetting = async(req, res) => {
- const form = req.form.settingForm;
- if (!req.form.isValid) {
- return res.json({ status: false, message: req.form.errors.join('\n') });
- }
- debug('form content', form);
- await configManager.updateConfigsInTheSameNamespace('crowi', form);
- // reset strategy
- await crowi.passportService.resetGitHubStrategy();
- // setup strategy
- if (configManager.getConfig('crowi', 'security:passport-github:isEnabled')) {
- try {
- await crowi.passportService.setupGitHubStrategy(true);
- }
- catch (err) {
- // reset
- await crowi.passportService.resetGitHubStrategy();
- return res.json({ status: false, message: err.message });
- }
- }
- return res.json({ status: true });
- };
- actions.api.securityPassportTwitterSetting = async(req, res) => {
- const form = req.form.settingForm;
- if (!req.form.isValid) {
- return res.json({ status: false, message: req.form.errors.join('\n') });
- }
- debug('form content', form);
- await configManager.updateConfigsInTheSameNamespace('crowi', form);
- // reset strategy
- await crowi.passportService.resetTwitterStrategy();
- // setup strategy
- if (configManager.getConfig('crowi', 'security:passport-twitter:isEnabled')) {
- try {
- await crowi.passportService.setupTwitterStrategy(true);
- }
- catch (err) {
- // reset
- await crowi.passportService.resetTwitterStrategy();
- return res.json({ status: false, message: err.message });
- }
- }
- return res.json({ status: true });
- };
- actions.api.securityPassportOidcSetting = async(req, res) => {
- const form = req.form.settingForm;
- if (!req.form.isValid) {
- return res.json({ status: false, message: req.form.errors.join('\n') });
- }
- debug('form content', form);
- await configManager.updateConfigsInTheSameNamespace('crowi', form);
- // reset strategy
- await crowi.passportService.resetOidcStrategy();
- // setup strategy
- if (configManager.getConfig('crowi', 'security:passport-oidc:isEnabled')) {
- try {
- await crowi.passportService.setupOidcStrategy(true);
- }
- catch (err) {
- // reset
- await crowi.passportService.resetOidcStrategy();
- return res.json({ status: false, message: err.message });
- }
- }
- return res.json({ status: true });
- };
- actions.api.customizeSetting = async function(req, res) {
- const form = req.form.settingForm;
- if (req.form.isValid) {
- debug('form content', form);
- await configManager.updateConfigsInTheSameNamespace('crowi', form);
- customizeService.initCustomCss();
- customizeService.initCustomTitle();
- return res.json({ status: true });
- }
- return res.json({ status: false, message: req.form.errors.join('\n') });
- };
- // app.post('/_api/admin/notifications.add' , admin.api.notificationAdd);
- actions.api.notificationAdd = function(req, res) {
- const UpdatePost = crowi.model('UpdatePost');
- const pathPattern = req.body.pathPattern;
- const channel = req.body.channel;
- debug('notification.add', pathPattern, channel);
- UpdatePost.create(pathPattern, channel, req.user)
- .then((doc) => {
- debug('Successfully save updatePost', doc);
- // fixme: うーん
- doc.creator = doc.creator._id.toString();
- return res.json(ApiResponse.success({ updatePost: doc }));
- })
- .catch((err) => {
- debug('Failed to save updatePost', err);
- return res.json(ApiResponse.error());
- });
- };
- // app.post('/_api/admin/notifications.remove' , admin.api.notificationRemove);
- actions.api.notificationRemove = function(req, res) {
- const UpdatePost = crowi.model('UpdatePost');
- const id = req.body.id;
- UpdatePost.remove(id)
- .then(() => {
- debug('Successfully remove updatePost');
- return res.json(ApiResponse.success({}));
- })
- .catch((err) => {
- debug('Failed to remove updatePost', err);
- return res.json(ApiResponse.error());
- });
- };
- // app.get('/_api/admin/users.search' , admin.api.userSearch);
- actions.api.usersSearch = function(req, res) {
- const User = crowi.model('User');
- const email = req.query.email;
- User.findUsersByPartOfEmail(email, {})
- .then((users) => {
- const result = {
- data: users,
- };
- return res.json(ApiResponse.success(result));
- })
- .catch((err) => {
- return res.json(ApiResponse.error());
- });
- };
- actions.api.toggleIsEnabledForGlobalNotification = async(req, res) => {
- const id = req.query.id;
- const isEnabled = (req.query.isEnabled === 'true');
- try {
- if (isEnabled) {
- await GlobalNotificationSetting.enable(id);
- }
- else {
- await GlobalNotificationSetting.disable(id);
- }
- return res.json(ApiResponse.success());
- }
- catch (err) {
- return res.json(ApiResponse.error());
- }
- };
- /**
- * save esa settings, update config cache, and response json
- *
- * @param {*} req
- * @param {*} res
- */
- actions.api.importerSettingEsa = async(req, res) => {
- const form = req.body;
- const { validationResult } = require('express-validator');
- const errors = validationResult(req);
- if (!errors.isEmpty()) {
- return res.json(ApiResponse.error('esa.io form is blank'));
- }
- await configManager.updateConfigsInTheSameNamespace('crowi', form);
- importer.initializeEsaClient(); // let it run in the back aftert res
- return res.json(ApiResponse.success());
- };
- /**
- * save qiita settings, update config cache, and response json
- *
- * @param {*} req
- * @param {*} res
- */
- actions.api.importerSettingQiita = async(req, res) => {
- const form = req.body;
- const { validationResult } = require('express-validator');
- const errors = validationResult(req);
- if (!errors.isEmpty()) {
- console.log('validator', errors);
- return res.json(ApiResponse.error('Qiita form is blank'));
- }
- await configManager.updateConfigsInTheSameNamespace('crowi', form);
- importer.initializeQiitaClient(); // let it run in the back aftert res
- return res.json(ApiResponse.success());
- };
- /**
- * Import all posts from esa
- *
- * @param {*} req
- * @param {*} res
- */
- actions.api.importDataFromEsa = async(req, res) => {
- const user = req.user;
- let errors;
- try {
- errors = await importer.importDataFromEsa(user);
- }
- catch (err) {
- errors = [err];
- }
- if (errors.length > 0) {
- return res.json(ApiResponse.error(`<br> - ${errors.join('<br> - ')}`));
- }
- return res.json(ApiResponse.success());
- };
- /**
- * Import all posts from qiita
- *
- * @param {*} req
- * @param {*} res
- */
- actions.api.importDataFromQiita = async(req, res) => {
- const user = req.user;
- let errors;
- try {
- errors = await importer.importDataFromQiita(user);
- }
- catch (err) {
- errors = [err];
- }
- if (errors.length > 0) {
- return res.json(ApiResponse.error(`<br> - ${errors.join('<br> - ')}`));
- }
- return res.json(ApiResponse.success());
- };
- /**
- * Test connection to esa and response result with json
- *
- * @param {*} req
- * @param {*} res
- */
- actions.api.testEsaAPI = async(req, res) => {
- try {
- await importer.testConnectionToEsa();
- return res.json(ApiResponse.success());
- }
- catch (err) {
- return res.json(ApiResponse.error(err));
- }
- };
- /**
- * Test connection to qiita and response result with json
- *
- * @param {*} req
- * @param {*} res
- */
- actions.api.testQiitaAPI = async(req, res) => {
- try {
- await importer.testConnectionToQiita();
- return res.json(ApiResponse.success());
- }
- catch (err) {
- return res.json(ApiResponse.error(err));
- }
- };
- actions.api.searchBuildIndex = async function(req, res) {
- const search = crowi.getSearcher();
- if (!search) {
- return res.json(ApiResponse.error('ElasticSearch Integration is not set up.'));
- }
- searchEvent.on('addPageProgress', (total, current, skip) => {
- crowi.getIo().sockets.emit('admin:addPageProgress', { total, current, skip });
- });
- searchEvent.on('finishAddPage', (total, current, skip) => {
- crowi.getIo().sockets.emit('admin:finishAddPage', { total, current, skip });
- });
- await search.buildIndex();
- return res.json(ApiResponse.success());
- };
- function validateMailSetting(req, form, callback) {
- const mailer = crowi.mailer;
- const option = {
- host: form['mail:smtpHost'],
- port: form['mail:smtpPort'],
- };
- if (form['mail:smtpUser'] && form['mail:smtpPassword']) {
- option.auth = {
- user: form['mail:smtpUser'],
- pass: form['mail:smtpPassword'],
- };
- }
- if (option.port === 465) {
- option.secure = true;
- }
- const smtpClient = mailer.createSMTPClient(option);
- debug('mailer setup for validate SMTP setting', smtpClient);
- smtpClient.sendMail({
- from: form['mail:from'],
- to: req.user.email,
- subject: 'Wiki管理設定のアップデートによるメール通知',
- text: 'このメールは、WikiのSMTP設定のアップデートにより送信されています。',
- }, callback);
- }
- /**
- * validate setting form values for SAML
- *
- * This validation checks, for the value of each mandatory items,
- * whether it from the environment variables is empty and form value to update it is empty.
- */
- function validateSamlSettingForm(form, t) {
- for (const key of crowi.passportService.mandatoryConfigKeysForSaml) {
- const formValue = form.settingForm[key];
- if (configManager.getConfigFromEnvVars('crowi', key) === null && formValue === '') {
- const formItemName = t(`security_setting.form_item_name.${key}`);
- form.errors.push(t('form_validation.required', formItemName));
- }
- }
- }
- return actions;
- };
|