Merge branch 'autotagpush' of https://github.com/akquinet/gitblit into pushtags
| | |
| | | model.addOwners(ArrayUtils.fromString(getConfig(config, "owner", "")));
|
| | | model.useTickets = getConfig(config, "useTickets", false);
|
| | | model.useDocs = getConfig(config, "useDocs", false);
|
| | | model.useIncrementalRevisionNumbers = getConfig(config, "useIncrementalRevisionNumbers", false);
|
| | | model.allowForks = getConfig(config, "allowForks", true);
|
| | | model.accessRestriction = AccessRestrictionType.fromName(getConfig(config,
|
| | | "accessRestriction", settings.getString(Keys.git.defaultAccessRestriction, null)));
|
| | |
| | | config.setString(Constants.CONFIG_GITBLIT, null, "owner", ArrayUtils.toString(repository.owners));
|
| | | config.setBoolean(Constants.CONFIG_GITBLIT, null, "useTickets", repository.useTickets);
|
| | | config.setBoolean(Constants.CONFIG_GITBLIT, null, "useDocs", repository.useDocs);
|
| | | config.setBoolean(Constants.CONFIG_GITBLIT, null, "useIncrementalRevisionNumbers", repository.useIncrementalRevisionNumbers);
|
| | | config.setBoolean(Constants.CONFIG_GITBLIT, null, "allowForks", repository.allowForks);
|
| | | config.setString(Constants.CONFIG_GITBLIT, null, "accessRestriction", repository.accessRestriction.name());
|
| | | config.setString(Constants.CONFIG_GITBLIT, null, "authorizationControl", repository.authorizationControl.name());
|
| | |
| | | import java.text.MessageFormat;
|
| | | import java.util.Collection;
|
| | | import java.util.Enumeration;
|
| | | import java.util.Iterator;
|
| | | import java.util.LinkedHashSet;
|
| | | import java.util.List;
|
| | | import java.util.Map;
|
| | |
| | | import javax.servlet.ServletContext;
|
| | | import javax.servlet.ServletException;
|
| | | import javax.servlet.http.HttpServletRequest;
|
| | | import javax.servlet.http.Part;
|
| | |
|
| | | import org.eclipse.jgit.api.Git;
|
| | | import org.eclipse.jgit.http.server.resolver.DefaultReceivePackFactory;
|
| | | import org.eclipse.jgit.http.server.resolver.DefaultUploadPackFactory;
|
| | | import org.eclipse.jgit.lib.PersonIdent;
|
| | |
| | | @Override
|
| | | public ReceivePack create(HttpServletRequest req, Repository db)
|
| | | throws ServiceNotEnabledException, ServiceNotAuthorizedException {
|
| | | |
| | | // determine repository name from request
|
| | | String repositoryName = req.getPathInfo().substring(1);
|
| | | repositoryName = GitFilter.getRepositoryName(repositoryName);
|
| | |
| | | return up;
|
| | | }
|
| | | });
|
| | | |
| | | super.init(new GitblitServletConfig(config));
|
| | | }
|
| | |
|
| | |
| | | UserModel user = getUserModel(rp);
|
| | | RepositoryModel repository = GitBlit.self().getRepositoryModel(repositoryName);
|
| | |
|
| | | if (repository.useIncrementalRevisionNumbers) {
|
| | | List<ReceiveCommand> allCommands = rp.getAllCommands();
|
| | | String cmds = "";
|
| | | for (ReceiveCommand receiveCommand : allCommands) {
|
| | | cmds += receiveCommand.getType() + "_"
|
| | | + receiveCommand.getResult() + "_"
|
| | | + receiveCommand.getMessage() + ", ";
|
| | | if (receiveCommand.getType().equals(
|
| | | ReceiveCommand.Type.UPDATE)
|
| | | && receiveCommand.getResult().equals(
|
| | | ReceiveCommand.Result.OK)) {
|
| | | // if type=update and update was ok, autotag
|
| | | String objectId = receiveCommand.getNewId().toString()
|
| | | .replace("AnyObjectId[", "").replace("]", "");
|
| | | boolean result = JGitUtils
|
| | | .createIncrementalRevisionTag(
|
| | | rp.getRepository(), objectId); |
| | | }
|
| | | } |
| | | }
|
| | | |
| | | // log ref changes
|
| | | for (ReceiveCommand cmd : commands) {
|
| | | if (Result.OK.equals(cmd.getResult())) {
|
| | |
| | |
|
| | | private JCheckBox useDocs;
|
| | |
|
| | | private JCheckBox useIncrementalRevisionNumbers;
|
| | | |
| | | private JCheckBox showRemoteBranches;
|
| | |
|
| | | private JCheckBox showReadme;
|
| | |
| | | anRepository.useTickets);
|
| | | useDocs = new JCheckBox(Translation.get("gb.useDocsDescription"),
|
| | | anRepository.useDocs);
|
| | | useIncrementalRevisionNumbers = new JCheckBox(Translation.get("gb.useIncrementalRevisionNumbersDescription"),
|
| | | anRepository.useIncrementalRevisionNumbers);
|
| | | showRemoteBranches = new JCheckBox(
|
| | | Translation.get("gb.showRemoteBranchesDescription"),
|
| | | anRepository.showRemoteBranches);
|
| | |
| | | useTickets));
|
| | | fieldsPanel
|
| | | .add(newFieldPanel(Translation.get("gb.enableDocs"), useDocs));
|
| | | fieldsPanel
|
| | | .add(newFieldPanel(Translation.get("gb.enableIncrementalRevisionNumbers"), useIncrementalRevisionNumbers));
|
| | | fieldsPanel.add(newFieldPanel(Translation.get("gb.showRemoteBranches"),
|
| | | showRemoteBranches));
|
| | | fieldsPanel.add(newFieldPanel(Translation.get("gb.showReadme"),
|
| | |
| | | repository.gcThreshold = gcThreshold.getText();
|
| | | repository.useTickets = useTickets.isSelected();
|
| | | repository.useDocs = useDocs.isSelected();
|
| | | repository.useIncrementalRevisionNumbers = useIncrementalRevisionNumbers.isSelected();
|
| | | repository.showRemoteBranches = showRemoteBranches.isSelected();
|
| | | repository.showReadme = showReadme.isSelected();
|
| | | repository.skipSizeCalculation = skipSizeCalculation.isSelected();
|
| | |
| | | public boolean showRemoteBranches;
|
| | | public boolean useTickets;
|
| | | public boolean useDocs;
|
| | | public boolean useIncrementalRevisionNumbers;
|
| | | public AccessRestrictionType accessRestriction;
|
| | | public AuthorizationControl authorizationControl;
|
| | | public boolean allowAuthenticated;
|
| | |
| | | clone.showRemoteBranches = false;
|
| | | clone.allowForks = false;
|
| | | clone.useDocs = useDocs;
|
| | | clone.useIncrementalRevisionNumbers = useIncrementalRevisionNumbers;
|
| | | clone.useTickets = useTickets;
|
| | | clone.skipSizeCalculation = skipSizeCalculation;
|
| | | clone.skipSummaryMetrics = skipSummaryMetrics;
|
| | |
| | | import java.util.Collections;
|
| | | import java.util.Date;
|
| | | import java.util.HashMap;
|
| | | import java.util.Iterator;
|
| | | import java.util.List;
|
| | | import java.util.Map;
|
| | | import java.util.Map.Entry;
|
| | |
| | | import org.eclipse.jgit.api.CloneCommand;
|
| | | import org.eclipse.jgit.api.FetchCommand;
|
| | | import org.eclipse.jgit.api.Git;
|
| | | import org.eclipse.jgit.api.TagCommand;
|
| | | import org.eclipse.jgit.api.errors.GitAPIException;
|
| | | import org.eclipse.jgit.diff.DiffEntry;
|
| | | import org.eclipse.jgit.diff.DiffEntry.ChangeType;
|
| | |
| | | import org.slf4j.Logger;
|
| | | import org.slf4j.LoggerFactory;
|
| | |
|
| | | import com.gitblit.GitBlit;
|
| | | import com.gitblit.Keys;
|
| | | import com.gitblit.models.GitNote;
|
| | | import com.gitblit.models.PathModel;
|
| | | import com.gitblit.models.PathModel.PathChangeModel;
|
| | |
| | | */
|
| | | public class JGitUtils {
|
| | |
|
| | | private static final String REVISION_TAG_PREFIX = "rev_";
|
| | | static final Logger LOGGER = LoggerFactory.getLogger(JGitUtils.class);
|
| | |
|
| | | /**
|
| | |
| | | }
|
| | |
|
| | | /**
|
| | | * this method creates an incremental revision number as a tag according to
|
| | | * the amount of already existing tags, which start with a defined prefix {@link REVISION_TAG_PREFIX}
|
| | | * |
| | | * @param repository
|
| | | * @param objectId
|
| | | * @return true if operation was successful, otherwise false
|
| | | */
|
| | | public static boolean createIncrementalRevisionTag(Repository repository, String objectId) {
|
| | | boolean result = false;
|
| | | Iterator<Entry<String, Ref>> iterator = repository.getTags().entrySet().iterator();
|
| | | long revisionNumber = 1;
|
| | | while (iterator.hasNext()) {
|
| | | Entry<String, Ref> entry = iterator.next();
|
| | | if (entry.getKey().startsWith(REVISION_TAG_PREFIX)) {
|
| | | revisionNumber++;
|
| | | }
|
| | | }
|
| | | result = createTag(repository,REVISION_TAG_PREFIX+revisionNumber,objectId);
|
| | | return result;
|
| | | }
|
| | |
|
| | | /**
|
| | | * creates a tag in a repository referring to the current head
|
| | | * |
| | | * @param repository
|
| | | * @param tag, the string label
|
| | | * @return boolean, true if operation was successful, otherwise false
|
| | | */
|
| | | public static boolean createTag(Repository repository, String tag) {
|
| | | return createTag(repository, tag, null);
|
| | | }
|
| | | |
| | | /**
|
| | | * creates a tag in a repository
|
| | | * |
| | | * @param repository
|
| | | * @param tag, the string label
|
| | | * @param objectId, the ref the tag points towards
|
| | | * @return boolean, true if operation was successful, otherwise false
|
| | | */
|
| | | public static boolean createTag(Repository repository, String tag,
|
| | | String objectId) {
|
| | | try { |
| | | PersonIdent author = new PersonIdent("GitblitAutoTagPush",
|
| | | "gitblit@localhost");
|
| | |
|
| | | LOGGER.debug("createTag in repo: "+repository.getDirectory().getAbsolutePath());
|
| | | Git gitClient = Git.open(repository.getDirectory());
|
| | | TagCommand tagCommand = gitClient.tag();
|
| | | tagCommand.setTagger(author);
|
| | | tagCommand.setMessage("autotag");
|
| | | if (objectId != null) {
|
| | | RevObject revObj = getCommit(repository, objectId);
|
| | | tagCommand.setObjectId(revObj);
|
| | | }
|
| | | tagCommand.setName(tag);
|
| | | Ref call = tagCommand.call(); |
| | | return call != null ? true : false;
|
| | | } catch (Exception e) {
|
| | | e.printStackTrace();
|
| | | }
|
| | | return false;
|
| | | }
|
| | | |
| | | /**
|
| | | * Create an orphaned branch in a repository.
|
| | | *
|
| | | * @param repository
|
| | |
| | | gb.name = name
|
| | | gb.enableTickets = enable tickets
|
| | | gb.enableDocs = enable docs
|
| | | gb.enableIncrementalRevisionNumbers = enable incremental revision numbers
|
| | | gb.save = save
|
| | | gb.showRemoteBranches = show remote branches
|
| | | gb.editUsers = edit users
|
| | |
| | | gb.viewRestricted = authenticated view, clone, & push
|
| | | gb.useTicketsDescription = readonly, distributed Ticgit issues
|
| | | gb.useDocsDescription = enumerates Markdown documentation in repository
|
| | | gb.useIncrementalRevisionNumbersDescription = automatic tagging of each push with an incremental revision number
|
| | | gb.showRemoteBranchesDescription = show remote branches
|
| | | gb.canAdminDescription = can administer Gitblit server
|
| | | gb.permittedUsers = permitted users
|
| | |
| | | <tr><th colspan="2"><hr/></th></tr>
|
| | | <tr><th><wicket:message key="gb.enableTickets"></wicket:message></th><td class="edit"><label class="checkbox"><input type="checkbox" wicket:id="useTickets" tabindex="7" /> <span class="help-inline"><wicket:message key="gb.useTicketsDescription"></wicket:message></span></label></td></tr>
|
| | | <tr><th><wicket:message key="gb.enableDocs"></wicket:message></th><td class="edit"><label class="checkbox"><input type="checkbox" wicket:id="useDocs" tabindex="8" /> <span class="help-inline"><wicket:message key="gb.useDocsDescription"></wicket:message></span></label></td></tr>
|
| | | <tr><th><wicket:message key="gb.enableIncrementalRevisionNumbers"></wicket:message></th><td class="edit"><label class="checkbox"><input type="checkbox" wicket:id="useIncrementalRevisionNumbers" tabindex="8" /> <span class="help-inline"><wicket:message key="gb.useIncrementalRevisionNumbersDescription"></wicket:message></span></label></td></tr>
|
| | | <tr><th><wicket:message key="gb.showRemoteBranches"></wicket:message></th><td class="edit"><label class="checkbox"><input type="checkbox" wicket:id="showRemoteBranches" tabindex="9" /> <span class="help-inline"><wicket:message key="gb.showRemoteBranchesDescription"></wicket:message></span></label></td></tr>
|
| | | <tr><th><wicket:message key="gb.showReadme"></wicket:message></th><td class="edit"><label class="checkbox"><input type="checkbox" wicket:id="showReadme" tabindex="10" /> <span class="help-inline"><wicket:message key="gb.showReadmeDescription"></wicket:message></span></label></td></tr>
|
| | | <tr><th><wicket:message key="gb.skipSizeCalculation"></wicket:message></th><td class="edit"><label class="checkbox"><input type="checkbox" wicket:id="skipSizeCalculation" tabindex="11" /> <span class="help-inline"><wicket:message key="gb.skipSizeCalculationDescription"></wicket:message></span></label></td></tr>
|
| | |
| | | new FederationTypeRenderer()));
|
| | | form.add(new CheckBox("useTickets"));
|
| | | form.add(new CheckBox("useDocs"));
|
| | | form.add(new CheckBox("useIncrementalRevisionNumbers"));
|
| | | form.add(new CheckBox("showRemoteBranches"));
|
| | | form.add(new CheckBox("showReadme"));
|
| | | form.add(new CheckBox("skipSizeCalculation"));
|