2013-02-23 04:41:12 +08:00
|
|
|
/**
|
|
|
|
Our data model for interacting with flagged posts.
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2013-03-06 04:39:21 +08:00
|
|
|
@class FlaggedPost
|
2013-02-23 04:41:12 +08:00
|
|
|
@extends Discourse.Post
|
|
|
|
@namespace Discourse
|
|
|
|
@module Discourse
|
2013-03-06 04:39:21 +08:00
|
|
|
**/
|
2013-02-23 04:41:12 +08:00
|
|
|
Discourse.FlaggedPost = Discourse.Post.extend({
|
2013-02-22 03:09:28 +08:00
|
|
|
|
2013-05-21 03:27:58 +08:00
|
|
|
flaggers: function() {
|
2013-02-23 04:41:12 +08:00
|
|
|
var r,
|
|
|
|
_this = this;
|
|
|
|
r = [];
|
2013-06-11 04:48:50 +08:00
|
|
|
_.each(this.post_actions, function(action) {
|
|
|
|
r.push(_this.userLookup[action.user_id]);
|
2013-02-23 04:41:12 +08:00
|
|
|
});
|
|
|
|
return r;
|
2013-05-21 03:27:58 +08:00
|
|
|
}.property(),
|
2013-02-22 03:09:28 +08:00
|
|
|
|
2013-05-21 03:27:58 +08:00
|
|
|
messages: function() {
|
2013-02-23 04:41:12 +08:00
|
|
|
var r,
|
|
|
|
_this = this;
|
|
|
|
r = [];
|
2013-06-11 04:48:50 +08:00
|
|
|
_.each(this.post_actions,function(action) {
|
|
|
|
if (action.message) {
|
|
|
|
r.push({
|
|
|
|
user: _this.userLookup[action.user_id],
|
|
|
|
message: action.message,
|
|
|
|
permalink: action.permalink
|
2013-02-23 04:41:12 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return r;
|
2013-05-21 03:27:58 +08:00
|
|
|
}.property(),
|
2013-02-22 03:09:28 +08:00
|
|
|
|
2013-04-04 04:06:55 +08:00
|
|
|
lastFlagged: function() {
|
2013-02-23 04:41:12 +08:00
|
|
|
return this.post_actions[0].created_at;
|
2013-04-04 04:06:55 +08:00
|
|
|
}.property(),
|
2013-02-22 03:09:28 +08:00
|
|
|
|
2013-04-04 04:06:55 +08:00
|
|
|
user: function() {
|
2013-02-23 04:41:12 +08:00
|
|
|
return this.userLookup[this.user_id];
|
2013-04-04 04:06:55 +08:00
|
|
|
}.property(),
|
2013-02-22 03:09:28 +08:00
|
|
|
|
2013-04-04 04:06:55 +08:00
|
|
|
topicHidden: function() {
|
2013-02-23 04:41:12 +08:00
|
|
|
return this.get('topic_visible') === 'f';
|
2013-04-04 04:06:55 +08:00
|
|
|
}.property('topic_hidden'),
|
2013-02-22 03:09:28 +08:00
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
deletePost: function() {
|
|
|
|
if (this.get('post_number') === "1") {
|
2013-05-08 01:30:12 +08:00
|
|
|
return Discourse.ajax("/t/" + this.topic_id, { type: 'DELETE', cache: false });
|
2013-02-23 04:41:12 +08:00
|
|
|
} else {
|
2013-05-08 01:30:12 +08:00
|
|
|
return Discourse.ajax("/posts/" + this.id, { type: 'DELETE', cache: false });
|
2013-02-21 02:15:50 +08:00
|
|
|
}
|
2013-02-23 04:41:12 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
clearFlags: function() {
|
2013-05-08 01:30:12 +08:00
|
|
|
return Discourse.ajax("/admin/flags/clear/" + this.id, { type: 'POST', cache: false });
|
2013-02-23 04:41:12 +08:00
|
|
|
},
|
|
|
|
|
2013-04-04 04:06:55 +08:00
|
|
|
hiddenClass: function() {
|
2013-02-23 04:41:12 +08:00
|
|
|
if (this.get('hidden') === "t") return "hidden-post";
|
2013-04-04 04:06:55 +08:00
|
|
|
}.property()
|
2013-02-23 04:41:12 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
Discourse.FlaggedPost.reopenClass({
|
|
|
|
findAll: function(filter) {
|
2013-04-04 04:06:55 +08:00
|
|
|
var result = Em.A();
|
2013-06-05 22:24:50 +08:00
|
|
|
result.set('loading', true);
|
2013-05-08 01:30:12 +08:00
|
|
|
Discourse.ajax("/admin/flags/" + filter + ".json").then(function(data) {
|
2013-04-04 04:06:55 +08:00
|
|
|
var userLookup = {};
|
2013-06-11 04:48:50 +08:00
|
|
|
_.each(data.users,function(user) {
|
|
|
|
userLookup[user.id] = Discourse.User.create(user);
|
2013-04-04 04:06:55 +08:00
|
|
|
});
|
2013-06-11 04:48:50 +08:00
|
|
|
_.each(data.posts,function(post) {
|
|
|
|
var f = Discourse.FlaggedPost.create(post);
|
2013-04-04 04:06:55 +08:00
|
|
|
f.userLookup = userLookup;
|
|
|
|
result.pushObject(f);
|
|
|
|
});
|
2013-06-05 22:24:50 +08:00
|
|
|
result.set('loading', false);
|
2013-02-23 04:41:12 +08:00
|
|
|
});
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-02-21 02:15:50 +08:00
|
|
|
|