2020-07-07 18:58:46 +00:00
|
|
|
import Service, { inject as service } from '@ember/service';
|
|
|
|
|
2020-11-09 09:25:35 +00:00
|
|
|
export default class ConnectionsService extends Service {
|
|
|
|
@service('dom')
|
|
|
|
dom;
|
|
|
|
|
|
|
|
@service('env')
|
|
|
|
env;
|
|
|
|
|
|
|
|
@service('data-source/service')
|
|
|
|
data;
|
|
|
|
|
|
|
|
init() {
|
|
|
|
super.init(...arguments);
|
2020-07-07 18:58:46 +00:00
|
|
|
this._listeners = this.dom.listeners();
|
|
|
|
this.connections = new Set();
|
|
|
|
this.addVisibilityChange();
|
2020-11-09 09:25:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
willDestroy() {
|
2020-07-07 18:58:46 +00:00
|
|
|
this._listeners.remove();
|
|
|
|
this.purge();
|
2020-11-09 09:25:35 +00:00
|
|
|
super.willDestroy(...arguments);
|
|
|
|
}
|
|
|
|
|
|
|
|
addVisibilityChange() {
|
2020-07-07 18:58:46 +00:00
|
|
|
// when the user hides the tab, abort all connections
|
|
|
|
this._listeners.add(this.dom.document(), {
|
|
|
|
visibilitychange: e => {
|
|
|
|
if (e.target.hidden) {
|
2020-08-11 17:47:15 +00:00
|
|
|
this.purge(-1);
|
2020-07-07 18:58:46 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
2020-11-09 09:25:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
whenAvailable(e) {
|
2020-07-07 18:58:46 +00:00
|
|
|
// if the user has hidden the tab (hidden browser/tab switch)
|
|
|
|
// any aborted errors should restart
|
|
|
|
const doc = this.dom.document();
|
|
|
|
if (doc.hidden) {
|
|
|
|
return new Promise(resolve => {
|
|
|
|
const remove = this._listeners.add(doc, {
|
|
|
|
visibilitychange: function(event) {
|
|
|
|
remove();
|
|
|
|
// we resolve with the event that comes from
|
|
|
|
// whenAvailable not visibilitychange
|
|
|
|
resolve(e);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return Promise.resolve(e);
|
2020-11-09 09:25:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
purge(statusCode = 0) {
|
2020-07-07 18:58:46 +00:00
|
|
|
[...this.connections].forEach(function(connection) {
|
|
|
|
// Cancelled
|
2020-07-17 13:42:45 +00:00
|
|
|
connection.abort(statusCode);
|
2020-07-07 18:58:46 +00:00
|
|
|
});
|
|
|
|
this.connections = new Set();
|
2020-11-09 09:25:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
acquire(request) {
|
2020-07-17 13:42:45 +00:00
|
|
|
if (this.connections.size >= this.env.var('CONSUL_HTTP_MAX_CONNECTIONS')) {
|
|
|
|
const closed = this.data.closed();
|
|
|
|
let connection = [...this.connections].find(item => {
|
|
|
|
const id = item.headers()['x-request-id'];
|
|
|
|
if (id) {
|
|
|
|
return closed.includes(item.headers()['x-request-id']);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
if (typeof connection === 'undefined') {
|
|
|
|
// all connections are being used on the page
|
|
|
|
// if the new one is a blocking query then cancel the oldest connection
|
|
|
|
if (request.headers()['content-type'] === 'text/event-stream') {
|
|
|
|
connection = this.connections.values().next().value;
|
|
|
|
}
|
|
|
|
// otherwise wait for a connection to become available
|
|
|
|
}
|
|
|
|
// cancel the connection
|
|
|
|
if (typeof connection !== 'undefined') {
|
|
|
|
// if its a shared blocking query cancel everything
|
|
|
|
// listening to it
|
|
|
|
this.release(connection);
|
|
|
|
// Too Many Requests
|
|
|
|
connection.abort(429);
|
|
|
|
}
|
2020-07-07 18:58:46 +00:00
|
|
|
}
|
2020-07-17 13:42:45 +00:00
|
|
|
this.connections.add(request);
|
2020-11-09 09:25:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
release(request) {
|
2020-07-07 18:58:46 +00:00
|
|
|
this.connections.delete(request);
|
2020-11-09 09:25:35 +00:00
|
|
|
}
|
|
|
|
}
|