2019-10-30 16:28:29 -04:00
|
|
|
import { empty } from "@ember/object/computed";
|
2019-10-23 13:06:54 -04:00
|
|
|
import Controller from "@ember/controller";
|
2018-06-15 11:03:24 -04:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
2019-10-23 13:06:54 -04:00
|
|
|
export default Controller.extend({
|
2013-02-21 12:58:21 -05:00
|
|
|
/**
|
2013-02-22 15:41:12 -05:00
|
|
|
Is the "send test email" button disabled?
|
2013-02-21 12:58:21 -05:00
|
|
|
|
2013-02-22 15:41:12 -05:00
|
|
|
@property sendTestEmailDisabled
|
2013-03-05 15:39:21 -05:00
|
|
|
**/
|
2019-10-30 16:28:29 -04:00
|
|
|
sendTestEmailDisabled: empty("testEmailAddress"),
|
2013-06-03 16:12:24 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
Clears the 'sentTestEmail' property on successful send.
|
|
|
|
|
|
|
|
@method testEmailAddressChanged
|
|
|
|
**/
|
|
|
|
testEmailAddressChanged: function() {
|
2018-06-15 11:03:24 -04:00
|
|
|
this.set("sentTestEmail", false);
|
|
|
|
}.observes("testEmailAddress"),
|
2013-06-03 16:12:24 -04:00
|
|
|
|
2013-09-16 14:08:55 -04:00
|
|
|
actions: {
|
|
|
|
/**
|
|
|
|
Sends a test email to the currently entered email address
|
|
|
|
|
|
|
|
@method sendTestEmail
|
|
|
|
**/
|
|
|
|
sendTestEmail: function() {
|
2014-03-18 15:25:16 -04:00
|
|
|
this.setProperties({
|
|
|
|
sendingEmail: true,
|
|
|
|
sentTestEmail: false
|
|
|
|
});
|
2013-09-16 14:08:55 -04:00
|
|
|
|
2016-06-30 13:55:44 -04:00
|
|
|
ajax("/admin/email/test", {
|
2018-06-15 11:03:24 -04:00
|
|
|
type: "POST",
|
2019-05-27 04:15:39 -04:00
|
|
|
data: { email_address: this.testEmailAddress }
|
2018-06-15 11:03:24 -04:00
|
|
|
})
|
2018-08-29 17:14:16 -04:00
|
|
|
.then(response =>
|
2019-02-25 07:12:58 -05:00
|
|
|
this.set("sentTestEmailMessage", response.sent_test_email_message)
|
2018-06-15 11:03:24 -04:00
|
|
|
)
|
2018-08-29 17:14:16 -04:00
|
|
|
.catch(e => {
|
|
|
|
if (e.responseJSON && e.responseJSON.errors) {
|
|
|
|
bootbox.alert(
|
|
|
|
I18n.t("admin.email.error", {
|
|
|
|
server_error: e.responseJSON.errors[0]
|
|
|
|
})
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
bootbox.alert(I18n.t("admin.email.test_error"));
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.finally(() => this.set("sendingEmail", false));
|
2013-09-16 14:08:55 -04:00
|
|
|
}
|
2013-02-22 15:41:12 -05:00
|
|
|
}
|
|
|
|
});
|