use of org.jboss.tools.openshift.internal.ui.wizard.importapp.ImportApplicationWizard in project jbosstools-openshift by jbosstools.
the class ImportApplicationHandler method execute.
@Override
public Object execute(final ExecutionEvent event) throws ExecutionException {
ISelection currentSelection = UIUtils.getCurrentSelection(event);
IBuildConfig buildConfig = UIUtils.getFirstElement(currentSelection, IBuildConfig.class);
Map<IProject, Collection<IBuildConfig>> projectsAndBuildConfigs = null;
IProject project = null;
Collection<IBuildConfig> buildConfigs = null;
if (buildConfig == null) {
IResource resource = UIUtils.getFirstElement(currentSelection, IResource.class);
if (resource != null) {
project = resource.getProject();
}
if (project != null) {
buildConfigs = project.getResources(ResourceKind.BUILD_CONFIG);
}
} else {
project = buildConfig.getProject();
buildConfigs = Collections.singleton(buildConfig);
}
if (project != null) {
if (buildConfigs == null || buildConfigs.isEmpty()) {
MessageDialog.openWarning(HandlerUtil.getActiveShell(event), NO_BUILD_CONFIG_MSG, NO_BUILD_CONFIG_MSG);
return OpenShiftUIActivator.statusFactory().cancelStatus(NO_BUILD_CONFIG_MSG);
}
projectsAndBuildConfigs = Collections.singletonMap(project, buildConfigs);
}
if (projectsAndBuildConfigs == null) {
ImportApplicationWizard wizard = new ImportApplicationWizard();
Connection connection = UIUtils.getFirstElement(currentSelection, Connection.class);
wizard.setConnection(connection);
WizardUtils.openWizardDialog(wizard, HandlerUtil.getActiveShell(event));
} else {
WizardUtils.openWizardDialog(new ImportApplicationWizard(projectsAndBuildConfigs), HandlerUtil.getActiveShell(event));
}
return Status.OK_STATUS;
}
use of org.jboss.tools.openshift.internal.ui.wizard.importapp.ImportApplicationWizard in project jbosstools-openshift by jbosstools.
the class NewApplicationWizard method performFinish.
@Override
public boolean performFinish() {
final IResourcesModelJob createJob = isTemplateFlow() ? fromTemplateModel.createFinishJob() : fromImageModel.createFinishJob();
createJob.addJobChangeListener(new JobChangeAdapter() {
@Override
public void done(IJobChangeEvent event) {
IStatus status = event.getResult();
if (JobUtils.isOk(status) || JobUtils.isWarning(status)) {
Display.getDefault().syncExec(createJob.getSummaryRunnable(getShell()));
OpenShiftUIUtils.showOpenShiftExplorer();
if (model.getEclipseProject() != null) {
// No need to import the project from git, it's already here
return;
}
Collection<IResource> resources = createJob.getResources();
final Map<IProject, Collection<IBuildConfig>> projectsAndBuildConfigs = getBuildConfigs(resources);
if (projectsAndBuildConfigs.isEmpty()) {
return;
}
Connection connection = model.getConnection();
Display.getDefault().asyncExec(new Runnable() {
@Override
public void run() {
ImportApplicationWizard wizard = new ImportApplicationWizard(projectsAndBuildConfigs);
wizard.addImportJobChangeListener(new JobChangeAdapter() {
@Override
public void done(IJobChangeEvent event) {
IService service = getService(resources);
List<org.eclipse.core.resources.IProject> importedProjects = wizard.getImportJob().getImportedProjects();
if (service != null && importedProjects.size() == 1) {
Display.getDefault().asyncExec(new Runnable() {
@Override
public void run() {
if (MessageDialog.openQuestion(getShell(), "Create server adapter", NLS.bind("Would you like to create a server adapter for the imported {0} project?", importedProjects.get(0).getName()))) {
createServerAdapter(importedProjects.get(0), connection, service, getRoute(resources));
}
}
});
}
}
});
new WizardDialog(getShell(), wizard).open();
}
});
}
}
protected Map<IProject, Collection<IBuildConfig>> getBuildConfigs(Collection<IResource> resources) {
Map<IProject, Collection<IBuildConfig>> projects = new LinkedHashMap<>();
for (IResource resource : resources) {
if (resource instanceof IBuildConfig) {
IBuildConfig buildConfig = (IBuildConfig) resource;
if (StringUtils.isNotBlank(buildConfig.getSourceURI())) {
IProject p = buildConfig.getProject();
Collection<IBuildConfig> buildConfigs = projects.get(p);
if (buildConfigs == null) {
buildConfigs = new LinkedHashSet<>();
projects.put(p, buildConfigs);
}
buildConfigs.add(buildConfig);
}
}
}
return projects;
}
protected IService getService(Collection<IResource> resources) {
IResource service = getResourceOfType(resources, IService.class);
return service == null ? null : (IService) service;
}
protected IRoute getRoute(Collection<IResource> resources) {
IResource route = getResourceOfType(resources, IRoute.class);
return route == null ? null : (IRoute) route;
}
private IResource getResourceOfType(Collection<IResource> resources, Class<? extends IResource> type) {
for (IResource resource : resources) {
if (type.isInstance(resource)) {
return resource;
}
}
return null;
}
protected void createServerAdapter(org.eclipse.core.resources.IProject project, Connection connection, IService service, IRoute route) {
try {
IServerWorkingCopy server = OpenShiftServerUtils.create(OpenShiftResourceUniqueId.get(service));
ServerSettingsWizardPageModel serverModel = new ServerSettingsWizardPageModel(service, route, project, connection, server, OCBinary.getInstance().getStatus(connection, new NullProgressMonitor()), RSyncValidator.get().getStatus());
serverModel.loadResources();
serverModel.updateServer();
server.setAttribute(OpenShiftServerUtils.SERVER_START_ON_CREATION, false);
serverModel.saveServer(null);
} catch (CoreException ce) {
OpenShiftUIActivator.getDefault().getLogger().logError("Error occured while creating a server adapter", ce);
return;
}
}
});
boolean success = false;
try {
Job job = new JobChainBuilder(createJob.getJob()).runWhenSuccessfullyDone(new RefreshResourcesJob(createJob, true)).build();
IStatus status = runInWizard(job, createJob.getDelegatingProgressMonitor(), getContainer());
success = isFailed(status);
} catch (InvocationTargetException | InterruptedException e) {
OpenShiftUIActivator.getDefault().getLogger().logError(e);
success = false;
} finally {
UsageStats.getInstance().newV3Application(model.getConnection().getHost(), success);
}
return success;
}
use of org.jboss.tools.openshift.internal.ui.wizard.importapp.ImportApplicationWizard in project jbosstools-openshift by jbosstools.
the class ServerSettingsWizardPage method onImportProject.
/**
* Open a dialog box to import an Eclipse project when clicking on the 'Import'
* button.
*
* @return
*/
private SelectionListener onImportProject(ServerSettingsWizardPageModel model, final Shell shell) {
return new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
if (model.getResource() == null) {
MessageDialog.openWarning(shell, "No Build Configurations found", "A build config is used to import a project to Eclipse");
return;
}
Map<com.openshift.restclient.model.IProject, Collection<IBuildConfig>> projectsAndBuildConfigs = new HashMap<>();
projectsAndBuildConfigs.put(model.getResource().getProject(), Collections.emptyList());
ImportApplicationWizard wizard = new ImportApplicationWizard(projectsAndBuildConfigs);
final boolean done = WizardUtils.openWizardDialog(wizard, shell);
if (done) {
model.setDeployProject(ResourcesPlugin.getWorkspace().getRoot().getProject(wizard.getModel().getRepoName()));
}
}
};
}
Aggregations