2014-08-13 07:04:36 +08:00
|
|
|
import DiscourseController from 'discourse/controllers/controller';
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2014-08-13 07:04:36 +08:00
|
|
|
export default DiscourseController.extend({
|
2013-03-06 04:39:21 +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
|
|
|
**/
|
2013-06-04 04:12:24 +08:00
|
|
|
sendTestEmailDisabled: Em.computed.empty('testEmailAddress'),
|
|
|
|
|
|
|
|
/**
|
|
|
|
Clears the 'sentTestEmail' property on successful send.
|
|
|
|
|
|
|
|
@method testEmailAddressChanged
|
|
|
|
**/
|
|
|
|
testEmailAddressChanged: function() {
|
|
|
|
this.set('sentTestEmail', false);
|
|
|
|
}.observes('testEmailAddress'),
|
|
|
|
|
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
|
|
|
|
2014-03-19 03:25:16 +08:00
|
|
|
var self = this;
|
2013-09-17 02:08:55 +08:00
|
|
|
Discourse.ajax("/admin/email/test", {
|
|
|
|
type: 'POST',
|
|
|
|
data: { email_address: this.get('testEmailAddress') }
|
|
|
|
}).then(function () {
|
2014-03-19 03:25:16 +08:00
|
|
|
self.set('sentTestEmail', true);
|
2014-11-19 23:49:12 +08:00
|
|
|
}, function(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'));
|
|
|
|
}
|
2014-03-19 03:25:16 +08:00
|
|
|
}).finally(function() {
|
|
|
|
self.set('sendingEmail', false);
|
2013-09-17 02:08:55 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
}
|
2013-02-23 04:41:12 +08:00
|
|
|
}
|
2013-03-06 04:39:21 +08:00
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
});
|