mirror of
https://github.com/discourse/discourse.git
synced 2025-05-26 06:01:43 +08:00
71 lines
1.7 KiB
JavaScript
71 lines
1.7 KiB
JavaScript
import EmberObject from "@ember/object";
|
|
import { ajax } from "discourse/lib/ajax";
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
|
import { userPath } from "discourse/lib/url";
|
|
import { Promise } from "rsvp";
|
|
import { isNone } from "@ember/utils";
|
|
import User from "discourse/models/user";
|
|
|
|
const Invite = EmberObject.extend({
|
|
rescind() {
|
|
ajax("/invites", {
|
|
type: "DELETE",
|
|
data: { email: this.email }
|
|
});
|
|
this.set("rescinded", true);
|
|
},
|
|
|
|
reinvite() {
|
|
return ajax("/invites/reinvite", {
|
|
type: "POST",
|
|
data: { email: this.email }
|
|
})
|
|
.then(() => this.set("reinvited", true))
|
|
.catch(popupAjaxError);
|
|
}
|
|
});
|
|
|
|
Invite.reopenClass({
|
|
create() {
|
|
const result = this._super.apply(this, arguments);
|
|
if (result.user) {
|
|
result.user = User.create(result.user);
|
|
}
|
|
return result;
|
|
},
|
|
|
|
findInvitedBy(user, filter, search, offset) {
|
|
if (!user) Promise.resolve();
|
|
|
|
const data = {};
|
|
if (!isNone(filter)) data.filter = filter;
|
|
if (!isNone(search)) data.search = search;
|
|
data.offset = offset || 0;
|
|
|
|
return ajax(userPath(`${user.username_lower}/invited.json`), {
|
|
data
|
|
}).then(result => {
|
|
result.invites = result.invites.map(i => Invite.create(i));
|
|
return EmberObject.create(result);
|
|
});
|
|
},
|
|
|
|
findInvitedCount(user) {
|
|
if (!user) Promise.resolve();
|
|
|
|
return ajax(userPath(`${user.username_lower}/invited_count.json`)).then(
|
|
result => EmberObject.create(result.counts)
|
|
);
|
|
},
|
|
|
|
reinviteAll() {
|
|
return ajax("/invites/reinvite-all", { type: "POST" });
|
|
},
|
|
|
|
rescindAll() {
|
|
return ajax("/invites/rescind-all", { type: "POST" });
|
|
}
|
|
});
|
|
|
|
export default Invite;
|