mirror of
https://github.com/portainer/portainer.git
synced 2025-07-25 08:19:40 +02:00
* feat(endpoints): create an associated endpoints selector * feat(schedules): remove edge specific explanations * refactor(schedule): replace multi-endpoint-selector * refactor(schedule): move controller to single file * refactor(endpoints): remove multi-endpoint-selector * feat(edge): rename host jobs to edge jobs * feat(edge-jobs): remove edge warning * refactor(edge-jobs): move schedule pages to edge * refactor(edge-jobs): mv views to edgeJobs * refactor(edge-jobs): rename edge jobs * refactor(edge-jobs): move services to edge * refactor(edge-jobs): move tasks datatable * fix(edge-jobs): fix import * fix(edge-jobs): use right services * feat(settings): adjust host management description * feat(edge-jobs): introduce interfaces and types * feat(edge-jobs): implement bolt service * refactor(edge-jobs): replace schedule routes * refactor(edge-job): replace Schedule service * refactor(edge-jobs): remove job_script_exec * refactor(host): remove jobs table * feat(edge-jobs): replace schedule * feat(edge-jobs): load file on inspect * fix(edge-job): parse cron correctly * feat(edge-jobs): show tasks * feat(host): rename tooltip * refactor(host): remove old components * refactor(main): remove schedule types * refactor(snapshot): replace job service with snapshot service * refactor(jobs): remove jobs form and datatable * feat(edge-jobs): create db migration * fix(main): start snapshot service with correct interval * feat(settings): change host tooltip * feat(edge-jobs): load endpoints * fix(edge-job): disable form submit when form is invalid * refactor(edge-compute): use const * refactor(edge-jobs): use generic controller * refactor(edge-jobs): replace $scope with controllerAs * refactor(edge-jobs): replace routes with components * refactor(edge-jobs): replace functions with classes * refactor(edge-jobs): use async/await * refactor(edge-jobs): rename functions * feat(edge-jobs): introduce beta panel * feat(edge-jobs): allow single character names * fix(snapshot): run snapshot in coroutine * feat(edge-jobs): add logs status * feat(filesystem): add edge job logs methods * feat(edge-jobs): intoduce edge jobs tasks api * feat(edge-jobs): remove schedule task model * fix(fs): build edge job task file path * fix(edge-jobs): update task meta * fix(edge-jobs): return a list of endpoints * feat(edge-jobs): update logs from agent * feat(edge-jobs): collect logs * feat(edge-jobs): rename url * feat(edge-jobs): refresh to same tab * feat(edge-jobs): remove old info * refactor(edge-jobs): rename script path json * fix(edge-job): save file before adding job * feat(edge-job): show retrieving logs label * feat(edge-job): replace cron with 5 places * refactor(edge-jobs): replace tasks with results * feat(edge-jobs): add auto refresh until logs are collected * feat(edge-jobs): fix column size * feat(edge-job): display editor * feat(edge-job): add name validation * feat(edge-job): set default time for 1 hour from now * feat(edge-job): add validation for cron format * feat(edge-job): add a note about timezone * fix(edge-job): replace regex * fix(edge-job): check for every minute cron * style(edge-jobs): add reference for cron regex * refactor(edge-jobs): rename migration name * refactor(edge-job): rename edge job response * refactor(snapshot): rename snapshot endpoint method * refactor(edge-jobs): move tasks handler to edgejobs * feat(security): introduce a middleware for edge compute operations * feat(edge-job): use edge compute middleware * feat(edge-groups): filter http actions based on edge setting * fix(security): return from edge bouncer if failed * feat(edge-stacks): filter http actions based on edge setting * feat(edge-groups): show error when failed to load groups * refactor(db): remove edge-jobs migration * refactor(migrator): remove unused dependency Co-authored-by: Anthony Lapenna <lapenna.anthony@gmail.com>
159 lines
5.1 KiB
JavaScript
159 lines
5.1 KiB
JavaScript
import angular from 'angular';
|
|
import _ from 'lodash-es';
|
|
|
|
class EdgeJobController {
|
|
constructor($async, $q, $state, EdgeJobService, EndpointService, FileSaver, GroupService, HostBrowserService, Notifications, TagService) {
|
|
this.state = {
|
|
actionInProgress: false,
|
|
showEditorTab: false,
|
|
};
|
|
|
|
this.$async = $async;
|
|
this.$q = $q;
|
|
this.$state = $state;
|
|
this.EdgeJobService = EdgeJobService;
|
|
this.EndpointService = EndpointService;
|
|
this.FileSaver = FileSaver;
|
|
this.GroupService = GroupService;
|
|
this.HostBrowserService = HostBrowserService;
|
|
this.Notifications = Notifications;
|
|
this.TagService = TagService;
|
|
|
|
this.update = this.update.bind(this);
|
|
this.updateAsync = this.updateAsync.bind(this);
|
|
this.downloadLogs = this.downloadLogs.bind(this);
|
|
this.downloadLogsAsync = this.downloadLogsAsync.bind(this);
|
|
this.collectLogs = this.collectLogs.bind(this);
|
|
this.collectLogsAsync = this.collectLogsAsync.bind(this);
|
|
this.clearLogs = this.clearLogs.bind(this);
|
|
this.clearLogsAsync = this.clearLogsAsync.bind(this);
|
|
this.refresh = this.refresh.bind(this);
|
|
this.refreshAsync = this.refreshAsync.bind(this);
|
|
this.showEditor = this.showEditor.bind(this);
|
|
}
|
|
|
|
update() {
|
|
return this.$async(this.updateAsync);
|
|
}
|
|
|
|
async updateAsync() {
|
|
const model = this.edgeJob;
|
|
this.state.actionInProgress = true;
|
|
|
|
try {
|
|
await this.EdgeJobService.updateEdgeJob(model);
|
|
this.Notifications.success('Edge job successfully updated');
|
|
this.$state.go('edge.jobs', {}, { reload: true });
|
|
} catch (err) {
|
|
this.Notifications.error('Failure', err, 'Unable to update Edge job');
|
|
}
|
|
|
|
this.state.actionInProgress = false;
|
|
}
|
|
|
|
downloadLogs(endpointId) {
|
|
return this.$async(this.downloadLogsAsync, endpointId);
|
|
}
|
|
async downloadLogsAsync(endpointId) {
|
|
try {
|
|
const data = await this.EdgeJobService.logFile(this.edgeJob.Id, endpointId);
|
|
const downloadData = new Blob([data.FileContent], {
|
|
type: 'text/plain;charset=utf-8',
|
|
});
|
|
const logFileName = `job_${this.edgeJob.Id}_task_${endpointId}.log`;
|
|
this.FileSaver.saveAs(downloadData, logFileName);
|
|
} catch (err) {
|
|
this.Notifications.error('Failure', err, 'Unable to download file');
|
|
}
|
|
}
|
|
|
|
associateEndpointsToResults(results, endpoints) {
|
|
return _.map(results, (result) => {
|
|
const endpoint = _.find(endpoints, (endpoint) => endpoint.Id === result.EndpointId);
|
|
result.Endpoint = endpoint;
|
|
return result;
|
|
});
|
|
}
|
|
|
|
collectLogs(endpointId) {
|
|
return this.$async(this.collectLogsAsync, endpointId);
|
|
}
|
|
|
|
async collectLogsAsync(endpointId) {
|
|
try {
|
|
await this.EdgeJobService.collectLogs(this.edgeJob.Id, endpointId);
|
|
const result = _.find(this.results, (result) => result.EndpointId === endpointId);
|
|
result.LogsStatus = 2;
|
|
} catch (err) {
|
|
this.Notifications.error('Failure', err, 'Unable to collect logs');
|
|
}
|
|
}
|
|
|
|
clearLogs(endpointId) {
|
|
return this.$async(this.clearLogsAsync, endpointId);
|
|
}
|
|
async clearLogsAsync(endpointId) {
|
|
try {
|
|
await this.EdgeJobService.clearLogs(this.edgeJob.Id, endpointId);
|
|
const result = _.find(this.results, (result) => result.EndpointId === endpointId);
|
|
result.LogsStatus = 1;
|
|
} catch (err) {
|
|
this.Notifications.error('Failure', err, 'Unable to clear logs');
|
|
}
|
|
}
|
|
|
|
refresh() {
|
|
return this.$async(this.refreshAsync);
|
|
}
|
|
async refreshAsync() {
|
|
const { id } = this.$state.params;
|
|
const results = await this.EdgeJobService.jobResults(id);
|
|
if (results.length > 0) {
|
|
const endpointIds = _.map(results, (result) => result.EndpointId);
|
|
const endpoints = await this.EndpointService.endpoints(undefined, undefined, { endpointIds });
|
|
this.results = this.associateEndpointsToResults(results, endpoints.value);
|
|
} else {
|
|
this.results = results;
|
|
}
|
|
}
|
|
|
|
showEditor() {
|
|
this.state.showEditorTab = true;
|
|
}
|
|
|
|
async $onInit() {
|
|
const { id, tab } = this.$state.params;
|
|
this.state.activeTab = tab;
|
|
if (!tab || tab === 0) {
|
|
this.state.showEditorTab = true;
|
|
}
|
|
|
|
try {
|
|
const [edgeJob, file, results, groups, tags] = await Promise.all([
|
|
this.EdgeJobService.edgeJob(id),
|
|
this.EdgeJobService.getScriptFile(id),
|
|
this.EdgeJobService.jobResults(id),
|
|
this.GroupService.groups(),
|
|
this.TagService.tags(),
|
|
]);
|
|
|
|
edgeJob.FileContent = file.FileContent;
|
|
this.edgeJob = edgeJob;
|
|
this.groups = groups;
|
|
this.tags = tags;
|
|
|
|
if (results.length > 0) {
|
|
const endpointIds = _.map(results, (result) => result.EndpointId);
|
|
const endpoints = await this.EndpointService.endpoints(undefined, undefined, { endpointIds });
|
|
this.results = this.associateEndpointsToResults(results, endpoints.value);
|
|
} else {
|
|
this.results = results;
|
|
}
|
|
} catch (err) {
|
|
this.Notifications.error('Failure', err, 'Unable to retrieve endpoint list');
|
|
}
|
|
}
|
|
}
|
|
|
|
angular.module('portainer.edge').controller('EdgeJobController', EdgeJobController);
|
|
export default EdgeJobController;
|