blob: 5279486f24a771da8a966ce1d0757c625fa95418 [file] [log] [blame]
/*
* Copyright 2000-2011 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 git4idea.history.wholeTree;
import com.intellij.openapi.components.ServiceManager;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.ui.InputValidator;
import com.intellij.openapi.ui.Messages;
import com.intellij.openapi.util.text.StringUtil;
import git4idea.branch.GitBrancher;
import git4idea.repo.GitRepository;
import java.util.Collections;
/**
* Created by IntelliJ IDEA.
* User: Irina.Chernushina
* Date: 10/26/11
* Time: 3:07 PM
*/
public class GitCreateNewTag {
private final Project myProject;
private final GitRepository myRepository;
private final String myReference;
private final Runnable myCallInAwtAfterExecution;
public GitCreateNewTag(Project project, GitRepository repository, String reference, Runnable callInAwtAfterExecution) {
myProject = project;
myRepository = repository;
myReference = reference;
myCallInAwtAfterExecution = callInAwtAfterExecution;
}
public void execute() {
final String name = Messages.showInputDialog(myProject, "Enter the name of new tag", "Create New Tag On " + myReference,
Messages.getQuestionIcon(), "", new InputValidator() {
@Override
public boolean checkInput(String inputString) {
return ! StringUtil.isEmpty(inputString) && ! StringUtil.containsWhitespaces(inputString);
}
@Override
public boolean canClose(String inputString) {
return ! StringUtil.isEmpty(inputString) && ! StringUtil.containsWhitespaces(inputString);
}
});
if (name != null) {
GitBrancher brancher = ServiceManager.getService(myProject, GitBrancher.class);
brancher.createNewTag(name, myReference, Collections.singletonList(myRepository), myCallInAwtAfterExecution);
}
}
}