Search in sources :

Example 11 with PluginPackageModel

use of com.liferay.ide.portlet.core.PluginPackageModel in project liferay-ide by liferay.

the class PortalDeployExcludesSection method initialize.

public void initialize() {
    PluginPackageModel model = (PluginPackageModel) getPage().getModel();
    if (model == null) {
        return;
    }
    _fViewer.setInput(model);
    _updateButtons();
    model.addModelChangedListener(this);
    _fAddAction.setEnabled(model.isEditable());
    _fRemoveAction.setEnabled(model.isEditable());
}
Also used : PluginPackageModel(com.liferay.ide.portlet.core.PluginPackageModel) IPluginPackageModel(com.liferay.ide.portlet.core.IPluginPackageModel)

Example 12 with PluginPackageModel

use of com.liferay.ide.portlet.core.PluginPackageModel in project liferay-ide by liferay.

the class PortalDeployExcludesSection method _handleRemove.

@SuppressWarnings("rawtypes")
private void _handleRemove() {
    IStructuredSelection ssel = (IStructuredSelection) _fViewer.getSelection();
    PluginPackageModel model = (PluginPackageModel) getPage().getModel();
    int i = 0;
    String[] removedFiles = new String[ssel.size()];
    for (Iterator iter = ssel.iterator(); iter.hasNext(); i++) {
        removedFiles[i] = ((File) iter.next()).getName();
    }
    model.removePortalDeployExcludeJar(removedFiles);
    _updateButtons();
}
Also used : PluginPackageModel(com.liferay.ide.portlet.core.PluginPackageModel) IPluginPackageModel(com.liferay.ide.portlet.core.IPluginPackageModel) Iterator(java.util.Iterator) IStructuredSelection(org.eclipse.jface.viewers.IStructuredSelection)

Example 13 with PluginPackageModel

use of com.liferay.ide.portlet.core.PluginPackageModel in project liferay-ide by liferay.

the class PortalDeployExcludesSection method _handleAdd.

private void _handleAdd() {
    PluginPackageModel model = (PluginPackageModel) getPage().getModel();
    String[] excludeJars = model.getPortalDeloyExcludesJars();
    IProject project = getProject();
    IFolder docroot = CoreUtil.getDefaultDocrootFolder(project);
    SDK sdk = SDKUtil.getSDK(project);
    IPath sdkLocation = sdk.getLocation();
    String type;
    if (ProjectUtil.isPortletProject(project)) {
        type = "portlets";
    } else if (ProjectUtil.isHookProject(project)) {
        type = "hooks";
    } else if (ProjectUtil.isWebProject(project)) {
        type = "webs";
    } else {
        type = StringPool.EMPTY;
    }
    IPath serviceJarPath = sdkLocation.append(type).append(docroot.getFullPath());
    if (serviceJarPath != null) {
        Shell shell = getPage().getShell();
        PortalJarViewerFilter filter = new PortalJarViewerFilter(serviceJarPath.toFile(), new String[] { "WEB-INF", "WEB-INF/lib" }, excludeJars);
        ExternalFileSelectionDialog dialog = new ExternalFileSelectionDialog(shell, filter, true, false);
        dialog.setInput(serviceJarPath.toFile());
        dialog.create();
        if (dialog.open() == Window.OK) {
            Object[] selectedFiles = dialog.getResult();
            try {
                for (int i = 0; i < selectedFiles.length; i++) {
                    File jar = (File) selectedFiles[i];
                    if (jar.exists()) {
                        model.addPortalDeployExcludeJar(jar.getName());
                    }
                }
            } catch (Exception e) {
            }
        }
    } else {
        MessageDialog.openInformation(getPage().getShell(), Msgs.liferayPluginPackageEditor, Msgs.notDeterminePortalDirectory);
    }
}
Also used : IPath(org.eclipse.core.runtime.IPath) IProject(org.eclipse.core.resources.IProject) ExternalFileSelectionDialog(com.liferay.ide.ui.wizard.ExternalFileSelectionDialog) Shell(org.eclipse.swt.widgets.Shell) PluginPackageModel(com.liferay.ide.portlet.core.PluginPackageModel) IPluginPackageModel(com.liferay.ide.portlet.core.IPluginPackageModel) SDK(com.liferay.ide.sdk.core.SDK) File(java.io.File) IFolder(org.eclipse.core.resources.IFolder)

Example 14 with PluginPackageModel

use of com.liferay.ide.portlet.core.PluginPackageModel in project liferay-ide by liferay.

the class PortalJarsSection method createJarsArray.

protected void createJarsArray() {
    _fJars = new Vector<>();
    PluginPackageModel model = (PluginPackageModel) getPage().getModel();
    String[] portalJars = model.getPortalDependencyJars();
    IPath portalDir = ((PluginPackageEditor) getPage().getEditor()).getPortalDir();
    if (portalDir != null) {
        for (String portalJar : portalJars) {
            File jarFile = new File(portalDir.append("WEB-INF/lib").toFile(), portalJar.trim());
            if (jarFile.isFile() && jarFile.exists()) {
                _fJars.add(jarFile);
            }
        }
    }
}
Also used : IPath(org.eclipse.core.runtime.IPath) IPluginPackageModel(com.liferay.ide.portlet.core.IPluginPackageModel) PluginPackageModel(com.liferay.ide.portlet.core.PluginPackageModel) File(java.io.File)

Example 15 with PluginPackageModel

use of com.liferay.ide.portlet.core.PluginPackageModel in project liferay-ide by liferay.

the class PortalJarsSection method _handleAdd.

private void _handleAdd() {
    PluginPackageModel model = (PluginPackageModel) getPage().getModel();
    String[] existingJars = model.getPortalDependencyJars();
    PluginPackageEditor editor = (PluginPackageEditor) getPage().getEditor();
    IPath portalDir = editor.getPortalDir();
    if (portalDir != null) {
        PortalJarViewerFilter filter = new PortalJarViewerFilter(portalDir.toFile(), new String[] { "WEB-INF", "WEB-INF/lib" }, existingJars);
        ExternalFileSelectionDialog dialog = new ExternalFileSelectionDialog(getPage().getShell(), filter, true, false);
        dialog.setInput(portalDir.toFile());
        dialog.create();
        if (dialog.open() == Window.OK) {
            Object[] selectedFiles = dialog.getResult();
            try {
                for (int i = 0; i < selectedFiles.length; i++) {
                    File jar = (File) selectedFiles[i];
                    if (jar.exists()) {
                        model.addPortalDependencyJar(jar.getName());
                    }
                }
            } catch (Exception e) {
            }
        }
    } else {
        MessageDialog.openInformation(getPage().getShell(), Msgs.liferayPluginPackageEditor, Msgs.notDeterminePortalDirectory);
    }
}
Also used : ExternalFileSelectionDialog(com.liferay.ide.ui.wizard.ExternalFileSelectionDialog) IPath(org.eclipse.core.runtime.IPath) IPluginPackageModel(com.liferay.ide.portlet.core.IPluginPackageModel) PluginPackageModel(com.liferay.ide.portlet.core.PluginPackageModel) File(java.io.File)

Aggregations

PluginPackageModel (com.liferay.ide.portlet.core.PluginPackageModel)21 IPluginPackageModel (com.liferay.ide.portlet.core.IPluginPackageModel)17 File (java.io.File)6 IPath (org.eclipse.core.runtime.IPath)6 Iterator (java.util.Iterator)4 IStructuredSelection (org.eclipse.jface.viewers.IStructuredSelection)4 ExternalFileSelectionDialog (com.liferay.ide.ui.wizard.ExternalFileSelectionDialog)3 IProject (org.eclipse.core.resources.IProject)3 IDocument (org.eclipse.jface.text.IDocument)3 SDK (com.liferay.ide.sdk.core.SDK)2 IFolder (org.eclipse.core.resources.IFolder)2 TableViewer (org.eclipse.jface.viewers.TableViewer)2 Shell (org.eclipse.swt.widgets.Shell)2 LiferayProjectSelectionDialog (com.liferay.ide.project.ui.dialog.LiferayProjectSelectionDialog)1 IDEFormEditor (com.liferay.ide.ui.form.IDEFormEditor)1 TablePart (com.liferay.ide.ui.form.TablePart)1 ByteArrayInputStream (java.io.ByteArrayInputStream)1 IFile (org.eclipse.core.resources.IFile)1 CoreException (org.eclipse.core.runtime.CoreException)1 IJavaProject (org.eclipse.jdt.core.IJavaProject)1