mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 15:29:42 +02:00
* refactor(agent): replace v1 browse with es6 module * refactor(agent): refactor agentv1 to es6 * refactor(agent): replace agent factory with es6 * refactor(agent): refactor browse response to es6 * refactor(agent): refactor browse to es6 * refactor(agent): import angular * refactor(agent): refactor host to es6 * refactor(agent): refactor ping to es6
32 lines
965 B
JavaScript
32 lines
965 B
JavaScript
import angular from 'angular';
|
|
|
|
angular.module('portainer.agent').factory('AgentPing', AgentPingFactory);
|
|
|
|
function AgentPingFactory($resource, API_ENDPOINT_ENDPOINTS, EndpointProvider, $q) {
|
|
return $resource(
|
|
`${API_ENDPOINT_ENDPOINTS}/:endpointId/docker/ping`,
|
|
{
|
|
endpointId: EndpointProvider.endpointID,
|
|
},
|
|
{
|
|
ping: {
|
|
method: 'GET',
|
|
interceptor: {
|
|
response: function versionInterceptor(response) {
|
|
const instance = response.resource;
|
|
const version = response.headers('Portainer-Agent-Api-Version') || 1;
|
|
instance.version = Number(version);
|
|
return instance;
|
|
},
|
|
responseError: function versionResponseError(error) {
|
|
// 404 - agent is up - set version to 1
|
|
if (error.status === 404) {
|
|
return { version: 1 };
|
|
}
|
|
return $q.reject(error);
|
|
},
|
|
},
|
|
},
|
|
}
|
|
);
|
|
}
|