blob: 8871a43f40862c6af3c00dc82bd4e1ca05d5f0ec [file] [log] [blame]
/*
* Copyright 2000-2013 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.plugins.groovy.mvc;
import com.intellij.notification.Notification;
import com.intellij.notification.NotificationListener;
import com.intellij.notification.NotificationType;
import com.intellij.openapi.module.Module;
import com.intellij.openapi.module.ModuleManager;
import com.intellij.openapi.progress.ProgressIndicator;
import com.intellij.openapi.progress.util.ProgressIndicatorUtils;
import com.intellij.openapi.progress.util.ReadTask;
import com.intellij.openapi.project.DumbAware;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.startup.StartupActivity;
import com.intellij.openapi.util.Pair;
import com.intellij.openapi.vfs.VirtualFile;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import javax.swing.event.HyperlinkEvent;
/**
* @author Sergey Evdokimov
*/
public class MvcProjectWithoutLibraryNotificator implements StartupActivity, DumbAware {
@Override
public void runActivity(@NotNull final Project project) {
ProgressIndicatorUtils.scheduleWithWriteActionPriority(new ReadTask() {
@Override
public void computeInReadAction(@NotNull ProgressIndicator indicator) {
if (project.isDisposed()) {
return;
}
Pair<Module, MvcFramework> pair = findModuleWithoutLibrary(project);
if (pair != null) {
final MvcFramework framework = pair.second;
final Module module = pair.first;
String name = framework.getFrameworkName();
String content = "<html><body>Module '" + module.getName() + "' has no " + name + " SDK. <a href='create'>Configure SDK</a></body></html>";
new Notification(name + ".Configure",
name + " SDK not found",
content, NotificationType.INFORMATION,
new NotificationListener.Adapter() {
@Override
protected void hyperlinkActivated(@NotNull Notification notification, @NotNull HyperlinkEvent e) {
if (!module.isDisposed()) {
MvcConfigureNotification.configure(framework, module);
}
}
}
).notify(project);
}
}
@Override
public void onCanceled(@NotNull ProgressIndicator indicator) {
ProgressIndicatorUtils.scheduleWithWriteActionPriority(this);
}
});
}
@Nullable
private static Pair<Module, MvcFramework> findModuleWithoutLibrary(Project project) {
MvcFramework[] frameworks = MvcFramework.EP_NAME.getExtensions();
for (Module module : ModuleManager.getInstance(project).getModules()) {
for (MvcFramework framework : frameworks) {
VirtualFile appRoot = framework.findAppRoot(module);
if (appRoot != null && appRoot.findChild("application.properties") != null) {
if (!framework.hasFrameworkJar(module)) {
return Pair.create(module, framework);
}
}
}
}
return null;
}
}