2018-06-15 23:03:24 +08:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
2015-08-12 00:27:07 +08:00
|
|
|
export default Ember.Controller.extend({
|
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
|
|
|
**/
|
2019-01-12 00:54:23 +08:00
|
|
|
sendTestEmailDisabled: Ember.computed.empty("testEmailAddress"),
|
2013-06-04 04:12:24 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
Clears the 'sentTestEmail' property on successful send.
|
|
|
|
|
|
|
|
@method testEmailAddressChanged
|
|
|
|
**/
|
|
|
|
testEmailAddressChanged: function() {
|
2018-06-15 23:03:24 +08:00
|
|
|
this.set("sentTestEmail", false);
|
|
|
|
}.observes("testEmailAddress"),
|
2013-06-04 04:12:24 +08:00
|
|
|
|
2013-09-17 02:08:55 +08:00
|
|
|
actions: {
|
|
|
|
/**
|
|
|
|
Sends a test email to the currently entered email address
|
|
|
|
|
|
|
|
@method sendTestEmail
|
|
|
|
**/
|
|
|
|
sendTestEmail: function() {
|
2014-03-19 03:25:16 +08:00
|
|
|
this.setProperties({
|
|
|
|
sendingEmail: true,
|
|
|
|
sentTestEmail: false
|
|
|
|
});
|
2013-09-17 02:08:55 +08:00
|
|
|
|
2016-07-01 01:55:44 +08:00
|
|
|
ajax("/admin/email/test", {
|
2018-06-15 23:03:24 +08:00
|
|
|
type: "POST",
|
|
|
|
data: { email_address: this.get("testEmailAddress") }
|
|
|
|
})
|
2018-08-30 05:14:16 +08:00
|
|
|
.then(response =>
|
|
|
|
this.set("sentTestEmailMessage", response.send_test_email_message)
|
2018-06-15 23:03:24 +08:00
|
|
|
)
|
2018-08-30 05:14:16 +08: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-17 02:08:55 +08:00
|
|
|
}
|
2013-02-23 04:41:12 +08:00
|
|
|
}
|
|
|
|
});
|