discourse/app/assets/javascripts/admin/controllers/admin-web-hooks-show-events...

81 lines
1.9 KiB
Plaintext
Raw Normal View History

import { alias } from "@ember/object/computed";
import Controller from "@ember/controller";
2018-06-15 11:03:24 -04:00
import { ajax } from "discourse/lib/ajax";
import { popupAjaxError } from "discourse/lib/ajax-error";
import computed from "ember-addons/ember-computed-decorators";
2016-06-15 13:49:57 -04:00
export default Controller.extend({
2016-09-13 19:54:53 -04:00
pingDisabled: false,
incomingCount: alias("incomingEventIds.length"),
2016-09-13 19:54:53 -04:00
init() {
this._super(...arguments);
this.incomingEventIds = [];
},
2018-06-15 11:03:24 -04:00
@computed("incomingCount")
2016-09-13 19:54:53 -04:00
hasIncoming(incomingCount) {
return incomingCount > 0;
},
subscribe() {
2018-06-15 11:03:24 -04:00
this.messageBus.subscribe(
`/web_hook_events/${this.get("model.extras.web_hook_id")}`,
data => {
if (data.event_type === "ping") {
this.set("pingDisabled", false);
}
this._addIncoming(data.web_hook_event_id);
2016-09-13 19:54:53 -04:00
}
2018-06-15 11:03:24 -04:00
);
2016-09-13 19:54:53 -04:00
},
unsubscribe() {
2018-06-15 11:03:24 -04:00
this.messageBus.unsubscribe("/web_hook_events/*");
2016-09-13 19:54:53 -04:00
},
_addIncoming(eventId) {
const incomingEventIds = this.incomingEventIds;
2016-09-13 19:54:53 -04:00
if (incomingEventIds.indexOf(eventId) === -1) {
incomingEventIds.pushObject(eventId);
}
},
2016-06-15 13:49:57 -04:00
actions: {
loadMore() {
this.model.loadMore();
2016-06-15 13:49:57 -04:00
},
ping() {
2018-06-15 11:03:24 -04:00
this.set("pingDisabled", true);
2016-09-13 19:54:53 -04:00
2018-06-15 11:03:24 -04:00
ajax(
`/admin/api/web_hooks/${this.get("model.extras.web_hook_id")}/ping`,
{
type: "POST"
}
).catch(error => {
this.set("pingDisabled", false);
2016-09-13 19:54:53 -04:00
popupAjaxError(error);
});
},
showInserted() {
2018-06-15 11:03:24 -04:00
const webHookId = this.get("model.extras.web_hook_id");
2016-09-13 19:54:53 -04:00
ajax(`/admin/api/web_hooks/${webHookId}/events/bulk`, {
2018-06-15 11:03:24 -04:00
type: "GET",
data: { ids: this.incomingEventIds }
2016-09-13 19:54:53 -04:00
}).then(data => {
2018-06-15 11:03:24 -04:00
const objects = data.map(event =>
this.store.createRecord("web-hook-event", event)
);
this.model.unshiftObjects(objects);
2016-09-13 19:54:53 -04:00
this.set("incomingEventIds", []);
});
2016-06-15 13:49:57 -04:00
}
}
});