open-nomad/ui/app/adapters/task-state.js

40 lines
1.0 KiB
JavaScript

import ApplicationAdapter from './application';
import { inject as service } from '@ember/service';
export default ApplicationAdapter.extend({
token: service(),
ls(model, path) {
return this.token
.authorizedRequest(`/v1/client/fs/ls/${model.allocation.id}?path=${encodeURIComponent(path)}`)
.then(handleFSResponse);
},
stat(model, path) {
return this.token
.authorizedRequest(
`/v1/client/fs/stat/${model.allocation.id}?path=${encodeURIComponent(path)}`
)
.then(handleFSResponse);
},
});
async function handleFSResponse(response) {
if (response.ok) {
return response.json();
} else {
const body = await response.text();
// TODO update this if/when endpoint returns 404 as expected
const statusIs500 = response.status === 500;
const bodyIncludes404Text = body.includes('no such file or directory');
const translatedCode = statusIs500 && bodyIncludes404Text ? 404 : response.status;
throw {
code: translatedCode,
toString: () => body,
};
}
}