mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-07-28 20:00:09 +02:00
Merge branch 'master' into develop
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
[](https://github.com/NodeBB/NodeBB/actions/workflows/test.yaml)
|
||||
[](https://coveralls.io/github/NodeBB/NodeBB?branch=master)
|
||||
[](https://codeclimate.com/github/NodeBB/NodeBB)
|
||||
[](https://discord.gg/p6YKPXu7er)
|
||||
|
||||
[**NodeBB Forum Software**](https://nodebb.org) is powered by Node.js and supports either Redis, MongoDB, or a PostgreSQL database. It utilizes web sockets for instant interactions and real-time notifications. NodeBB takes the best of the modern web: real-time streaming discussions, mobile responsiveness, and rich RESTful read/write APIs, while staying true to the original bulletin board/forum format → categorical hierarchies, local user accounts, and asynchronous messaging.
|
||||
|
||||
|
||||
@@ -99,9 +99,9 @@
|
||||
"nodebb-plugin-spam-be-gone": "1.0.2",
|
||||
"nodebb-rewards-essentials": "0.2.1",
|
||||
"nodebb-theme-lavender": "6.0.0",
|
||||
"nodebb-theme-persona": "12.1.9",
|
||||
"nodebb-theme-persona": "12.1.10",
|
||||
"nodebb-theme-slick": "2.0.2",
|
||||
"nodebb-theme-vanilla": "12.1.18",
|
||||
"nodebb-theme-vanilla": "12.1.19",
|
||||
"nodebb-widget-essentials": "6.0.0",
|
||||
"nodemailer": "6.8.0",
|
||||
"nprogress": "0.2.0",
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
|
||||
define('forum/groups/memberlist', ['api', 'bootbox', 'alerts'], function (api, bootbox, alerts) {
|
||||
const MemberList = {};
|
||||
let searchInterval;
|
||||
let groupName;
|
||||
let templateName;
|
||||
|
||||
@@ -89,25 +88,22 @@ define('forum/groups/memberlist', ['api', 'bootbox', 'alerts'], function (api, b
|
||||
}
|
||||
|
||||
function handleMemberSearch() {
|
||||
$('[component="groups/members/search"]').on('keyup', function () {
|
||||
const query = $(this).val();
|
||||
if (searchInterval) {
|
||||
clearInterval(searchInterval);
|
||||
searchInterval = 0;
|
||||
}
|
||||
|
||||
searchInterval = setTimeout(function () {
|
||||
socket.emit('groups.searchMembers', { groupName: groupName, query: query }, function (err, results) {
|
||||
if (err) {
|
||||
return alerts.error(err);
|
||||
}
|
||||
parseAndTranslate(results.users, function (html) {
|
||||
$('[component="groups/members"] tbody').html(html);
|
||||
$('[component="groups/members"]').attr('data-nextstart', 20);
|
||||
});
|
||||
const searchEl = $('[component="groups/members/search"]');
|
||||
searchEl.on('keyup', utils.debounce(function () {
|
||||
const query = searchEl.val();
|
||||
socket.emit('groups.searchMembers', {
|
||||
groupName: groupName,
|
||||
query: query,
|
||||
}, function (err, results) {
|
||||
if (err) {
|
||||
return alerts.error(err);
|
||||
}
|
||||
parseAndTranslate(results.users, function (html) {
|
||||
$('[component="groups/members"] tbody').html(html);
|
||||
$('[component="groups/members"]').attr('data-nextstart', 20);
|
||||
});
|
||||
}, 250);
|
||||
});
|
||||
});
|
||||
}, 250));
|
||||
}
|
||||
|
||||
function handleMemberInfiniteScroll() {
|
||||
|
||||
@@ -29,11 +29,15 @@ searchController.search = async function (req, res, next) {
|
||||
'search:tags': privileges.global.can('search:tags', req.uid),
|
||||
});
|
||||
req.query.in = req.query.in || meta.config.searchDefaultIn || 'titlesposts';
|
||||
const allowed = (req.query.in === 'users' && userPrivileges['search:users']) ||
|
||||
let allowed = (req.query.in === 'users' && userPrivileges['search:users']) ||
|
||||
(req.query.in === 'tags' && userPrivileges['search:tags']) ||
|
||||
(req.query.in === 'categories') ||
|
||||
(['titles', 'titlesposts', 'posts'].includes(req.query.in) && userPrivileges['search:content']);
|
||||
|
||||
({ allowed } = await plugins.hooks.fire('filter:search.isAllowed', {
|
||||
uid: req.uid,
|
||||
query: req.query,
|
||||
allowed,
|
||||
}));
|
||||
if (!allowed) {
|
||||
return helpers.notAllowed(req, res);
|
||||
}
|
||||
|
||||
@@ -171,7 +171,7 @@ Auth.reloadRoutes = async function (params) {
|
||||
|
||||
router.post('/register', middlewares, controllers.authentication.register);
|
||||
router.post('/register/complete', middlewares, controllers.authentication.registerComplete);
|
||||
router.post('/register/abort', controllers.authentication.registerAbort);
|
||||
router.post('/register/abort', Auth.middleware.applyCSRF, controllers.authentication.registerAbort);
|
||||
router.post('/login', Auth.middleware.applyCSRF, Auth.middleware.applyBlacklist, controllers.authentication.login);
|
||||
router.post('/logout', Auth.middleware.applyCSRF, controllers.authentication.logout);
|
||||
};
|
||||
|
||||
@@ -15,7 +15,6 @@ const search = module.exports;
|
||||
|
||||
search.search = async function (data) {
|
||||
const start = process.hrtime();
|
||||
data.searchIn = data.searchIn || 'titlesposts';
|
||||
data.sortBy = data.sortBy || 'relevance';
|
||||
|
||||
let result;
|
||||
@@ -27,6 +26,10 @@ search.search = async function (data) {
|
||||
result = await categories.search(data);
|
||||
} else if (data.searchIn === 'tags') {
|
||||
result = await topics.searchAndLoadTags(data);
|
||||
} else if (data.searchIn) {
|
||||
result = await plugins.hooks.fire('filter:search.searchIn', {
|
||||
data,
|
||||
});
|
||||
} else {
|
||||
throw new Error('[[error:unknown-search-filter]]');
|
||||
}
|
||||
@@ -108,6 +111,7 @@ async function searchInContent(data) {
|
||||
returnData.posts = await posts.getPostSummaryByPids(metadata.pids, data.uid, {});
|
||||
await plugins.hooks.fire('filter:search.contentGetResult', { result: returnData, data: data });
|
||||
delete metadata.pids;
|
||||
delete metadata.data;
|
||||
return Object.assign(returnData, metadata);
|
||||
}
|
||||
|
||||
|
||||
@@ -4,9 +4,7 @@ module.exports = {
|
||||
name: 'Navigation item visibility groups',
|
||||
timestamp: Date.UTC(2018, 10, 10),
|
||||
method: async function () {
|
||||
const navigationAdmin = require('../../navigation/admin');
|
||||
|
||||
const data = await navigationAdmin.get();
|
||||
const data = await navigationAdminGet();
|
||||
data.forEach((navItem) => {
|
||||
if (navItem && navItem.properties) {
|
||||
navItem.groups = [];
|
||||
@@ -23,6 +21,38 @@ module.exports = {
|
||||
}
|
||||
}
|
||||
});
|
||||
await navigationAdmin.save(data);
|
||||
await navigationAdminSave(data);
|
||||
},
|
||||
};
|
||||
// use navigation.get/save as it was in 1.11.0 so upgrade script doesn't crash on latest nbb
|
||||
// see https://github.com/NodeBB/NodeBB/pull/11013
|
||||
async function navigationAdminGet() {
|
||||
const db = require('../../database');
|
||||
const data = await db.getSortedSetRange('navigation:enabled', 0, -1);
|
||||
return data.filter(Boolean).map((item) => {
|
||||
item = JSON.parse(item);
|
||||
item.groups = item.groups || [];
|
||||
if (item.groups && !Array.isArray(item.groups)) {
|
||||
item.groups = [item.groups];
|
||||
}
|
||||
return item;
|
||||
});
|
||||
}
|
||||
|
||||
async function navigationAdminSave(data) {
|
||||
const db = require('../../database');
|
||||
const translator = require('../../translator');
|
||||
const order = Object.keys(data);
|
||||
const items = data.map((item, index) => {
|
||||
Object.keys(item).forEach((key) => {
|
||||
if (item.hasOwnProperty(key) && typeof item[key] === 'string' && (key === 'title' || key === 'text')) {
|
||||
item[key] = translator.escape(item[key]);
|
||||
}
|
||||
});
|
||||
item.order = order[index];
|
||||
return JSON.stringify(item);
|
||||
});
|
||||
|
||||
await db.delete('navigation:enabled');
|
||||
await db.sortedSetAdd('navigation:enabled', order, items);
|
||||
}
|
||||
|
||||
@@ -183,7 +183,7 @@ describe('Search', () => {
|
||||
it('should fail if searchIn is wrong', (done) => {
|
||||
search.search({
|
||||
query: 'plug',
|
||||
searchIn: 'invalidfilter',
|
||||
searchIn: '',
|
||||
}, (err) => {
|
||||
assert.equal(err.message, '[[error:unknown-search-filter]]');
|
||||
done();
|
||||
@@ -216,6 +216,7 @@ describe('Search', () => {
|
||||
it('should not find anything', (done) => {
|
||||
search.search({
|
||||
query: 'xxxxxxxxxxxxxx',
|
||||
searchIn: 'titles',
|
||||
}, (err, data) => {
|
||||
assert.ifError(err);
|
||||
assert(Array.isArray(data.posts));
|
||||
|
||||
Reference in New Issue
Block a user