use of com.redhat.devtools.intellij.tektoncd.tree.TaskNode in project intellij-tekton by redhat-developer.
the class TreeHelper method getYAMLAndKindFromNode.
/**
* Get YAML and Tekton kind from Tekton tree node.
*
* @param node the Tekton tree node
* @return Pair where 'first' is YAML content and 'second' is Tekton kind
*/
public static Pair<String, String> getYAMLAndKindFromNode(ParentableNode<?> node) {
Pair<String, String> yamlAndKind = null;
try {
String namespace = node.getNamespace();
Tkn tkncli = node.getRoot().getTkn();
String content = "";
String kind = "";
if (node instanceof PipelineNode) {
content = tkncli.getPipelineYAML(namespace, node.getName());
kind = KIND_PIPELINES;
} else if (node instanceof ResourceNode) {
content = tkncli.getResourceYAML(namespace, node.getName());
kind = KIND_RESOURCES;
} else if (node instanceof TaskNode) {
content = tkncli.getTaskYAML(namespace, node.getName());
kind = KIND_TASKS;
} else if (node instanceof ClusterTaskNode) {
content = tkncli.getClusterTaskYAML(node.getName());
kind = KIND_CLUSTERTASKS;
} else if (node instanceof ConditionNode) {
content = tkncli.getConditionYAML(namespace, node.getName());
kind = KIND_CONDITIONS;
} else if (node instanceof TriggerTemplateNode) {
content = tkncli.getTriggerTemplateYAML(namespace, node.getName());
kind = KIND_TRIGGERTEMPLATES;
} else if (node instanceof TriggerBindingNode) {
content = tkncli.getTriggerBindingYAML(namespace, node.getName());
kind = KIND_TRIGGERBINDINGS;
} else if (node instanceof ClusterTriggerBindingNode) {
content = tkncli.getClusterTriggerBindingYAML(node.getName());
kind = KIND_CLUSTERTRIGGERBINDINGS;
} else if (node instanceof EventListenerNode) {
content = tkncli.getEventListenerYAML(namespace, node.getName());
kind = KIND_EVENTLISTENERS;
} else if (node instanceof TaskRunNode) {
content = tkncli.getTaskRunYAML(namespace, node.getName());
kind = KIND_TASKRUN;
} else if (node instanceof PipelineRunNode) {
content = tkncli.getPipelineRunYAML(namespace, node.getName());
kind = KIND_PIPELINERUN;
}
yamlAndKind = Pair.create(content, kind);
} catch (IOException e) {
UIHelper.executeInUI(() -> Messages.showErrorDialog("Error: " + e.getLocalizedMessage(), "Error"));
}
return yamlAndKind;
}
use of com.redhat.devtools.intellij.tektoncd.tree.TaskNode in project intellij-tekton by redhat-developer.
the class WatchNodes method setWatchByNode.
public void setWatchByNode(ParentableNode<?> element) {
String namespace = element.getNamespace();
String watchId = getWatchId(element);
Watch watch = null;
WatchNodes wn = null;
// (e.g a taskRuns watcher, when a change happens, could update multiple nodes such as a single Task node and the TaskRuns node)
if (this.watches.containsKey(watchId)) {
wn = this.watches.get(watchId);
if (wn.getNodes().stream().noneMatch(item -> item.getName().equalsIgnoreCase(element.getName()) && ((ParentableNode) item.getParent()).getName().equalsIgnoreCase(((ParentableNode) element.getParent()).getName()))) {
wn.getNodes().add(element);
}
return;
}
Watcher watcher = getWatcher(watchId, element.getRoot().getProject());
try {
if (element instanceof PipelinesNode) {
watch = tkn.watchPipelines(namespace, watcher);
} else if (element instanceof PipelineNode) {
// we are expanding a single pipeline node and we want it to refresh if its children (pipelineruns) change
watch = tkn.watchPipelineRuns(namespace, watcher);
} else if (element instanceof PipelineRunsNode) {
watch = tkn.watchPipelineRuns(namespace, watcher);
} else if (element instanceof PipelineRunNode) {
// we are expanding a single pipelinerun node and we want it to refresh if its children (taskruns) change
watch = tkn.watchTaskRuns(namespace, watcher);
} else if (element instanceof ResourcesNode) {
watch = tkn.watchPipelineResources(namespace, watcher);
} else if (element instanceof TasksNode) {
watch = tkn.watchTasks(namespace, watcher);
} else if (element instanceof TaskNode) {
// we are expanding a single task node and we want it to refresh if its children (taskruns) change
watch = tkn.watchTaskRuns(namespace, watcher);
} else if (element instanceof TaskRunsNode) {
watch = tkn.watchTaskRuns(namespace, watcher);
} else if (element instanceof ClusterTasksNode) {
watch = tkn.watchClusterTasks(watcher);
} else if (element instanceof ConditionsNode) {
watch = tkn.watchConditions(namespace, watcher);
} else if (element instanceof TriggerTemplatesNode) {
watch = tkn.watchTriggerTemplates(namespace, watcher);
} else if (element instanceof TriggerBindingsNode) {
watch = tkn.watchTriggerBindings(namespace, watcher);
} else if (element instanceof ClusterTriggerBindingsNode) {
watch = tkn.watchClusterTriggerBindings(watcher);
} else if (element instanceof EventListenersNode) {
watch = tkn.watchEventListeners(namespace, watcher);
}
wn = new WatchNodes(watch, element);
} catch (IOException e) {
logger.warn("Error: " + e.getLocalizedMessage(), e);
}
if (wn != null) {
watches.put(watchId, wn);
}
}
Aggregations