mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
20fe5eceb8
This commit adds a check that runs regularly as per
2d68e5d942
which tests the
credentials of groups with SMTP or IMAP enabled. If any issues
are found with those credentials a high priority problem is added to the
admin dashboard.
This commit also formats the admin dashboard differently if
there are high priority problems, bringing them to the top of
the list and highlighting them.
The problem will be cleared if the issue is fixed before the next
problem check, or if the group's settings are updated with a valid
credential.
124 lines
3.2 KiB
JavaScript
124 lines
3.2 KiB
JavaScript
import Controller, { inject as controller } from "@ember/controller";
|
|
import AdminDashboard from "admin/models/admin-dashboard";
|
|
import VersionCheck from "admin/models/version-check";
|
|
import { computed } from "@ember/object";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
import { setting } from "discourse/lib/computed";
|
|
|
|
const PROBLEMS_CHECK_MINUTES = 1;
|
|
|
|
export default Controller.extend({
|
|
isLoading: false,
|
|
dashboardFetchedAt: null,
|
|
exceptionController: controller("exception"),
|
|
showVersionChecks: setting("version_checks"),
|
|
|
|
@discourseComputed(
|
|
"lowPriorityProblems.length",
|
|
"highPriorityProblems.length"
|
|
)
|
|
foundProblems(lowPriorityProblemsLength, highPriorityProblemsLength) {
|
|
const problemsLength =
|
|
lowPriorityProblemsLength + highPriorityProblemsLength;
|
|
return this.currentUser.admin && problemsLength > 0;
|
|
},
|
|
|
|
visibleTabs: computed("siteSettings.dashboard_visible_tabs", function () {
|
|
return (this.siteSettings.dashboard_visible_tabs || "")
|
|
.split("|")
|
|
.filter(Boolean);
|
|
}),
|
|
|
|
isModerationTabVisible: computed("visibleTabs", function () {
|
|
return this.visibleTabs.includes("moderation");
|
|
}),
|
|
|
|
isSecurityTabVisible: computed("visibleTabs", function () {
|
|
return this.visibleTabs.includes("security");
|
|
}),
|
|
|
|
isReportsTabVisible: computed("visibleTabs", function () {
|
|
return this.visibleTabs.includes("reports");
|
|
}),
|
|
|
|
fetchProblems() {
|
|
if (this.isLoadingProblems) {
|
|
return;
|
|
}
|
|
|
|
if (
|
|
!this.problemsFetchedAt ||
|
|
moment().subtract(PROBLEMS_CHECK_MINUTES, "minutes").toDate() >
|
|
this.problemsFetchedAt
|
|
) {
|
|
this._loadProblems();
|
|
}
|
|
},
|
|
|
|
fetchDashboard() {
|
|
const versionChecks = this.siteSettings.version_checks;
|
|
|
|
if (this.isLoading || !versionChecks) {
|
|
return;
|
|
}
|
|
|
|
if (
|
|
!this.dashboardFetchedAt ||
|
|
moment().subtract(30, "minutes").toDate() > this.dashboardFetchedAt
|
|
) {
|
|
this.set("isLoading", true);
|
|
|
|
AdminDashboard.fetch()
|
|
.then((model) => {
|
|
let properties = {
|
|
dashboardFetchedAt: new Date(),
|
|
};
|
|
|
|
if (versionChecks) {
|
|
properties.versionCheck = VersionCheck.create(model.version_check);
|
|
}
|
|
|
|
this.setProperties(properties);
|
|
})
|
|
.catch((e) => {
|
|
this.exceptionController.set("thrown", e.jqXHR);
|
|
this.replaceRoute("exception");
|
|
})
|
|
.finally(() => {
|
|
this.set("isLoading", false);
|
|
});
|
|
}
|
|
},
|
|
|
|
_loadProblems() {
|
|
this.setProperties({
|
|
loadingProblems: true,
|
|
problemsFetchedAt: new Date(),
|
|
});
|
|
|
|
AdminDashboard.fetchProblems()
|
|
.then((model) => {
|
|
this.set(
|
|
"highPriorityProblems",
|
|
model.problems.filterBy("priority", "high")
|
|
);
|
|
this.set(
|
|
"lowPriorityProblems",
|
|
model.problems.filterBy("priority", "low")
|
|
);
|
|
})
|
|
.finally(() => this.set("loadingProblems", false));
|
|
},
|
|
|
|
@discourseComputed("problemsFetchedAt")
|
|
problemsTimestamp(problemsFetchedAt) {
|
|
return moment(problemsFetchedAt).locale("en").format("LLL");
|
|
},
|
|
|
|
actions: {
|
|
refreshProblems() {
|
|
this._loadProblems();
|
|
},
|
|
},
|
|
});
|