mirror of
https://git.rwth-aachen.de/acs/public/villas/web/
synced 2025-03-30 00:00:13 +01:00

The context broker is connected via the custom adapter and serializer. At the moment only the entity IDs are shown but the property table is empty. Mirage is disabled.
37 lines
852 B
JavaScript
37 lines
852 B
JavaScript
import DS from 'ember-data';
|
|
|
|
export default DS.RESTAdapter.extend({
|
|
host: 'http://46.101.131.212:80',
|
|
namespace: 'ngsi10',
|
|
headers: {
|
|
Accept: 'application/json'
|
|
},
|
|
|
|
findAll: function(store, type, sinceToken) {
|
|
var requestBody = {
|
|
entities: [
|
|
{
|
|
type: 'ElectricalGridMonitoring',
|
|
isPattern: true,
|
|
id: 'S?_ElectricalGrid'
|
|
}
|
|
]
|
|
};
|
|
|
|
return this.ajax(this.host + '/' + this.namespace + '/queryContext', 'POST', { data: requestBody });
|
|
},
|
|
|
|
findRecord: function(store, type, id, snapshot) {
|
|
var requestBody = {
|
|
entities: [
|
|
{
|
|
type: 'ElectricalGridMonitoring',
|
|
isPattern: false,
|
|
id: id
|
|
}
|
|
]
|
|
};
|
|
|
|
return this.ajax(this.host + '/' + this.namespace + '/queryContext', 'POST', { data: requestBody });
|
|
},
|
|
});
|