mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:08:44 +08:00
fa8a84f20c
bring in latest ace from local so we don't mess up with https
87 lines
2.0 KiB
JavaScript
87 lines
2.0 KiB
JavaScript
/**
|
|
Our data model for interacting with flagged posts.
|
|
|
|
@class FlaggedPost
|
|
@extends Discourse.Post
|
|
@namespace Discourse
|
|
@module Discourse
|
|
**/
|
|
Discourse.FlaggedPost = Discourse.Post.extend({
|
|
|
|
flaggers: function() {
|
|
var r,
|
|
_this = this;
|
|
r = [];
|
|
_.each(this.post_actions, function(action) {
|
|
r.push(_this.userLookup[action.user_id]);
|
|
});
|
|
return r;
|
|
}.property(),
|
|
|
|
messages: function() {
|
|
var r,
|
|
_this = this;
|
|
r = [];
|
|
_.each(this.post_actions,function(action) {
|
|
if (action.message) {
|
|
r.push({
|
|
user: _this.userLookup[action.user_id],
|
|
message: action.message,
|
|
permalink: action.permalink
|
|
});
|
|
}
|
|
});
|
|
return r;
|
|
}.property(),
|
|
|
|
lastFlagged: function() {
|
|
return this.post_actions[0].created_at;
|
|
}.property(),
|
|
|
|
user: function() {
|
|
return this.userLookup[this.user_id];
|
|
}.property(),
|
|
|
|
topicHidden: function() {
|
|
return this.get('topic_visible') === 'f';
|
|
}.property('topic_hidden'),
|
|
|
|
deletePost: function() {
|
|
if (this.get('post_number') === "1") {
|
|
return Discourse.ajax("/t/" + this.topic_id, { type: 'DELETE', cache: false });
|
|
} else {
|
|
return Discourse.ajax("/posts/" + this.id, { type: 'DELETE', cache: false });
|
|
}
|
|
},
|
|
|
|
clearFlags: function() {
|
|
return Discourse.ajax("/admin/flags/clear/" + this.id, { type: 'POST', cache: false });
|
|
},
|
|
|
|
hiddenClass: function() {
|
|
if (this.get('hidden') === "t") return "hidden-post";
|
|
}.property()
|
|
});
|
|
|
|
Discourse.FlaggedPost.reopenClass({
|
|
findAll: function(filter) {
|
|
var result = Em.A();
|
|
result.set('loading', true);
|
|
Discourse.ajax("/admin/flags/" + filter + ".json").then(function(data) {
|
|
var userLookup = {};
|
|
_.each(data.users,function(user) {
|
|
userLookup[user.id] = Discourse.User.create(user);
|
|
});
|
|
_.each(data.posts,function(post) {
|
|
var f = Discourse.FlaggedPost.create(post);
|
|
f.userLookup = userLookup;
|
|
result.pushObject(f);
|
|
});
|
|
result.set('loading', false);
|
|
});
|
|
return result;
|
|
}
|
|
});
|
|
|
|
|