2017-06-29 04:56:44 +08:00
|
|
|
import { ajax } from 'discourse/lib/ajax';
|
|
|
|
|
|
|
|
const WatchedWord = Discourse.Model.extend({
|
|
|
|
save() {
|
2017-08-01 05:06:26 +08:00
|
|
|
return ajax("/admin/logs/watched_words" + (this.id ? '/' + this.id : '') + ".json", {
|
2017-06-29 04:56:44 +08:00
|
|
|
type: this.id ? 'PUT' : 'POST',
|
|
|
|
data: {word: this.get('word'), action_key: this.get('action')},
|
|
|
|
dataType: 'json'
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
destroy() {
|
2017-08-01 05:06:26 +08:00
|
|
|
return ajax("/admin/logs/watched_words/" + this.get('id') + ".json", {type: 'DELETE'});
|
2017-06-29 04:56:44 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
WatchedWord.reopenClass({
|
|
|
|
findAll() {
|
2017-09-28 03:48:57 +08:00
|
|
|
return ajax("/admin/logs/watched_words").then(list => {
|
2017-06-29 04:56:44 +08:00
|
|
|
const actions = {};
|
|
|
|
list.words.forEach(s => {
|
|
|
|
if (!actions[s.action]) { actions[s.action] = []; }
|
|
|
|
actions[s.action].pushObject(WatchedWord.create(s));
|
|
|
|
});
|
|
|
|
|
|
|
|
list.actions.forEach(a => {
|
|
|
|
if (!actions[a]) { actions[a] = []; }
|
|
|
|
});
|
|
|
|
|
2017-09-28 03:48:57 +08:00
|
|
|
return Object.keys(actions).map(n => {
|
|
|
|
return Ember.Object.create({
|
|
|
|
nameKey: n,
|
|
|
|
name: I18n.t('admin.watched_words.actions.' + n),
|
|
|
|
words: actions[n],
|
|
|
|
count: actions[n].length,
|
|
|
|
regularExpressions: list.regular_expressions
|
|
|
|
});
|
2017-06-29 04:56:44 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default WatchedWord;
|