Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use _dbs_info instead of fetching the db info one-by-one #1295

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 22 additions & 21 deletions app/addons/databases/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import app from '../../app';
import Helpers from '../../helpers';
import FauxtonAPI from '../../core/api';
import { get } from '../../core/ajax';
import { get, post } from '../../core/ajax';
import DatabasesBase from '../databases/base';
import Stores from './stores';
import ActionTypes from './actiontypes';
Expand All @@ -21,29 +21,30 @@ import * as API from './api';
function getDatabaseDetails (dbList, fullDbList) {
const databaseDetails = [];
const failedDbs = [];
let seen = 0;

dbList.forEach((db) => {
const url = FauxtonAPI.urls('databaseBaseURL', 'server', db);

fetch(url)
.then((res) => {
databaseDetails.push(res);
}).catch(() => {
failedDbs.push(db);
}).then(() => {
seen++;
if (seen !== dbList.length) {
return;
const url = FauxtonAPI.urls('dbsInfo', 'server');
const body = {
keys: dbList
};
post(url, body)
.then((res) => {
res.forEach((db) => {
if (db.info !== undefined) {
databaseDetails.push(db);
} else {
failedDbs.push(db.key);
}
updateDatabases({
dbList: dbList,
databaseDetails: databaseDetails,
failedDbs: failedDbs,
fullDbList: fullDbList
});
});
});
}).catch(() => {
failedDbs.push(...dbList);
}).then(() => {
updateDatabases({
dbList: dbList,
databaseDetails: databaseDetails,
failedDbs: failedDbs,
fullDbList: fullDbList
});
});
}

function fetch (url) {
Expand Down
6 changes: 6 additions & 0 deletions app/addons/databases/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,12 @@ FauxtonAPI.registerUrls('databaseBaseURL', {
}
});

FauxtonAPI.registerUrls('dbsInfo', {
server: function () {
return Helpers.getServerUrl('/_dbs_info');
}
});

FauxtonAPI.registerUrls('permissions', {
server: function (db) {
return Helpers.getServerUrl('/' + db + '/_security');
Expand Down