2023-03-15 17:42:12 +08:00
|
|
|
import { action } from "@ember/object";
|
|
|
|
import { inject as service } from "@ember/service";
|
|
|
|
import { empty } from "@ember/object/computed";
|
2019-10-24 01:06:54 +08:00
|
|
|
import Controller from "@ember/controller";
|
2020-05-14 04:23:41 +08:00
|
|
|
import I18n from "I18n";
|
2016-07-01 01:55:44 +08:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
2023-03-15 17:42:12 +08:00
|
|
|
import { observes } from "@ember-decorators/object";
|
2022-08-30 01:59:57 +08:00
|
|
|
import { htmlSafe } from "@ember/template";
|
|
|
|
import { escapeExpression } from "discourse/lib/utilities";
|
2020-01-17 01:56:53 +08:00
|
|
|
|
2023-03-15 17:42:12 +08:00
|
|
|
export default class AdminEmailIndexController extends Controller {
|
|
|
|
@service dialog;
|
2022-08-30 01:59:57 +08:00
|
|
|
|
2013-02-22 01:58:21 +08:00
|
|
|
/**
|
2013-02-23 04:41:12 +08:00
|
|
|
Is the "send test email" button disabled?
|
2013-02-22 01:58:21 +08:00
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
@property sendTestEmailDisabled
|
2013-03-06 04:39:21 +08:00
|
|
|
**/
|
2023-03-15 17:42:12 +08:00
|
|
|
@empty("testEmailAddress") sendTestEmailDisabled;
|
2013-06-04 04:12:24 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
Clears the 'sentTestEmail' property on successful send.
|
|
|
|
|
|
|
|
@method testEmailAddressChanged
|
|
|
|
**/
|
2020-01-17 01:56:53 +08:00
|
|
|
@observes("testEmailAddress")
|
2021-11-13 21:01:55 +08:00
|
|
|
testEmailAddressChanged() {
|
2013-06-04 04:12:24 +08:00
|
|
|
this.set("sentTestEmail", false);
|
2023-03-15 17:42:12 +08:00
|
|
|
}
|
2013-06-04 04:12:24 +08:00
|
|
|
|
2023-03-15 17:42:12 +08:00
|
|
|
/**
|
|
|
|
Sends a test email to the currently entered email address
|
2013-09-17 02:08:55 +08:00
|
|
|
|
2023-03-15 17:42:12 +08:00
|
|
|
@method sendTestEmail
|
|
|
|
**/
|
|
|
|
@action
|
|
|
|
sendTestEmail() {
|
|
|
|
this.setProperties({
|
|
|
|
sendingEmail: true,
|
|
|
|
sentTestEmail: false,
|
|
|
|
});
|
2013-09-17 02:08:55 +08:00
|
|
|
|
2023-03-15 17:42:12 +08:00
|
|
|
ajax("/admin/email/test", {
|
|
|
|
type: "POST",
|
|
|
|
data: { email_address: this.testEmailAddress },
|
|
|
|
})
|
|
|
|
.then((response) =>
|
|
|
|
this.set("sentTestEmailMessage", response.sent_test_email_message)
|
|
|
|
)
|
|
|
|
.catch((e) => {
|
|
|
|
if (e.jqXHR.responseJSON?.errors) {
|
|
|
|
this.dialog.alert({
|
|
|
|
message: htmlSafe(
|
|
|
|
I18n.t("admin.email.error", {
|
|
|
|
server_error: escapeExpression(e.jqXHR.responseJSON.errors[0]),
|
|
|
|
})
|
|
|
|
),
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.dialog.alert({ message: I18n.t("admin.email.test_error") });
|
|
|
|
}
|
2013-09-17 02:08:55 +08:00
|
|
|
})
|
2023-03-15 17:42:12 +08:00
|
|
|
.finally(() => this.set("sendingEmail", false));
|
|
|
|
}
|
|
|
|
}
|