| | |
| | | import java.util.TreeSet;
|
| | |
|
| | | import org.apache.wicket.PageParameters;
|
| | | import org.apache.wicket.ajax.AjaxRequestTarget;
|
| | | import org.apache.wicket.ajax.markup.html.form.AjaxButton;
|
| | | import org.apache.wicket.markup.html.basic.Label;
|
| | | import org.apache.wicket.markup.html.form.Button;
|
| | | import org.apache.wicket.markup.html.form.DropDownChoice;
|
| | |
| | |
|
| | | import com.gitblit.Constants;
|
| | | import com.gitblit.Constants.AccessPermission;
|
| | | import com.gitblit.Constants.AuthorizationControl;
|
| | | import com.gitblit.models.RegistrantAccessPermission;
|
| | | import com.gitblit.models.TicketModel;
|
| | | import com.gitblit.models.TicketModel.Change;
|
| | |
| | | import com.gitblit.wicket.GitBlitWebSession;
|
| | | import com.gitblit.wicket.WicketUtils;
|
| | | import com.gitblit.wicket.panels.MarkdownTextArea;
|
| | | import com.google.common.base.Optional;
|
| | |
|
| | | /**
|
| | | * Page for editing a ticket.
|
| | |
| | |
|
| | | private Label descriptionPreview;
|
| | |
|
| | | private IModel<TicketModel.Priority> priorityModel;
|
| | |
|
| | | private IModel<TicketModel.Severity> severityModel;
|
| | |
|
| | | public EditTicketPage(PageParameters params) {
|
| | | super(params);
|
| | |
|
| | | UserModel currentUser = GitBlitWebSession.get().getUser();
|
| | | if (currentUser == null) {
|
| | | currentUser = UserModel.ANONYMOUS;
|
| | | }
|
| | |
|
| | | if (!currentUser.isAuthenticated || !app().tickets().isAcceptingTicketUpdates(getRepositoryModel())) {
|
| | | // tickets prohibited
|
| | | setResponsePage(TicketsPage.class, WicketUtils.newRepositoryParameter(repositoryName));
|
| | | }
|
| | |
|
| | | long ticketId = 0L;
|
| | |
| | | }
|
| | |
|
| | | TicketModel ticket = app().tickets().getTicket(getRepositoryModel(), ticketId);
|
| | | if (ticket == null) {
|
| | | setResponsePage(TicketsPage.class, WicketUtils.newRepositoryParameter(repositoryName));
|
| | | if (ticket == null
|
| | | || !currentUser.canEdit(ticket, getRepositoryModel())
|
| | | || !app().tickets().isAcceptingTicketUpdates(getRepositoryModel())) {
|
| | | setResponsePage(TicketsPage.class, WicketUtils.newObjectParameter(repositoryName, "" + ticketId));
|
| | |
|
| | | // create a placeholder object so we don't trigger NPEs
|
| | | ticket = new TicketModel();
|
| | | }
|
| | |
|
| | | typeModel = Model.of(ticket.type);
|
| | |
| | | topicModel = Model.of(ticket.topic == null ? "" : ticket.topic);
|
| | | responsibleModel = Model.of();
|
| | | milestoneModel = Model.of();
|
| | | mergeToModel = Model.of(ticket.mergeTo == null ? "" : ticket.mergeTo);
|
| | | mergeToModel = Model.of(ticket.mergeTo == null ? getRepositoryModel().mergeTo : ticket.mergeTo);
|
| | | statusModel = Model.of(ticket.status);
|
| | | priorityModel = Model.of(ticket.priority);
|
| | | severityModel = Model.of(ticket.severity);
|
| | |
|
| | | setStatelessHint(false);
|
| | | setOutputMarkupId(true);
|
| | |
|
| | | Form<Void> form = new Form<Void>("editForm") {
|
| | | Form<Void> form = new Form<Void>("editForm");
|
| | | add(form);
|
| | |
|
| | | List<Type> typeChoices;
|
| | | if (ticket.isProposal()) {
|
| | | typeChoices = Arrays.asList(Type.Proposal);
|
| | | } else {
|
| | | typeChoices = Arrays.asList(TicketModel.Type.choices());
|
| | | }
|
| | | form.add(new DropDownChoice<TicketModel.Type>("type", typeModel, typeChoices));
|
| | |
|
| | | form.add(new TextField<String>("title", titleModel));
|
| | | form.add(new TextField<String>("topic", topicModel));
|
| | |
|
| | | final IModel<String> markdownPreviewModel = Model.of(ticket.body == null ? "" : ticket.body);
|
| | | descriptionPreview = new Label("descriptionPreview", markdownPreviewModel);
|
| | | descriptionPreview.setEscapeModelStrings(false);
|
| | | descriptionPreview.setOutputMarkupId(true);
|
| | | form.add(descriptionPreview);
|
| | |
|
| | | descriptionEditor = new MarkdownTextArea("description", markdownPreviewModel, descriptionPreview);
|
| | | descriptionEditor.setRepository(repositoryName);
|
| | | descriptionEditor.setText(ticket.body);
|
| | | form.add(descriptionEditor);
|
| | |
|
| | | // status
|
| | | List<Status> statusChoices;
|
| | | if (ticket.isClosed()) {
|
| | | statusChoices = Arrays.asList(ticket.status, Status.Open);
|
| | | } else if (ticket.isProposal()) {
|
| | | statusChoices = Arrays.asList(TicketModel.Status.proposalWorkflow);
|
| | | } else if (ticket.isBug()) {
|
| | | statusChoices = Arrays.asList(TicketModel.Status.bugWorkflow);
|
| | | } else {
|
| | | statusChoices = Arrays.asList(TicketModel.Status.requestWorkflow);
|
| | | }
|
| | | Fragment status = new Fragment("status", "statusFragment", this);
|
| | | status.add(new DropDownChoice<TicketModel.Status>("status", statusModel, statusChoices));
|
| | | form.add(status);
|
| | |
|
| | | List<TicketModel.Severity> severityChoices = Arrays.asList(TicketModel.Severity.choices());
|
| | | form.add(new DropDownChoice<TicketModel.Severity>("severity", severityModel, severityChoices));
|
| | |
|
| | | if (currentUser.canAdmin(ticket, getRepositoryModel())) {
|
| | | // responsible
|
| | | Set<String> userlist = new TreeSet<String>(ticket.getParticipants());
|
| | |
|
| | | if (UserModel.ANONYMOUS.canPush(getRepositoryModel())
|
| | | || AuthorizationControl.AUTHENTICATED == getRepositoryModel().authorizationControl) {
|
| | | // authorization is ANONYMOUS or AUTHENTICATED (i.e. all users can be set responsible)
|
| | | userlist.addAll(app().users().getAllUsernames());
|
| | | } else {
|
| | | // authorization is by NAMED users (users with PUSH permission can be set responsible)
|
| | | for (RegistrantAccessPermission rp : app().repositories().getUserAccessPermissions(getRepositoryModel())) {
|
| | | if (rp.permission.atLeast(AccessPermission.PUSH)) {
|
| | | userlist.add(rp.registrant);
|
| | | }
|
| | | }
|
| | | }
|
| | |
|
| | | List<TicketResponsible> responsibles = new ArrayList<TicketResponsible>();
|
| | | for (String username : userlist) {
|
| | | UserModel user = app().users().getUserModel(username);
|
| | | if (user != null && !user.disabled) {
|
| | | TicketResponsible responsible = new TicketResponsible(user);
|
| | | responsibles.add(responsible);
|
| | | if (user.username.equals(ticket.responsible)) {
|
| | | responsibleModel.setObject(responsible);
|
| | | }
|
| | | }
|
| | | }
|
| | | Collections.sort(responsibles);
|
| | | responsibles.add(new TicketResponsible(NIL, "", ""));
|
| | | Fragment responsible = new Fragment("responsible", "responsibleFragment", this);
|
| | | responsible.add(new DropDownChoice<TicketResponsible>("responsible", responsibleModel, responsibles));
|
| | | form.add(responsible.setVisible(!responsibles.isEmpty()));
|
| | |
|
| | | // milestone
|
| | | List<TicketMilestone> milestones = app().tickets().getMilestones(getRepositoryModel(), Status.Open);
|
| | | for (TicketMilestone milestone : milestones) {
|
| | | if (milestone.name.equals(ticket.milestone)) {
|
| | | milestoneModel.setObject(milestone);
|
| | | break;
|
| | | }
|
| | | }
|
| | | if (milestoneModel.getObject() == null && !StringUtils.isEmpty(ticket.milestone)) {
|
| | | // ensure that this unrecognized milestone is listed
|
| | | // so that we get the <nil> selection.
|
| | | TicketMilestone tms = new TicketMilestone(ticket.milestone);
|
| | | milestones.add(tms);
|
| | | milestoneModel.setObject(tms);
|
| | | }
|
| | | if (!milestones.isEmpty()) {
|
| | | milestones.add(new TicketMilestone(NIL));
|
| | | }
|
| | |
|
| | | // milestone
|
| | | Fragment milestone = new Fragment("milestone", "milestoneFragment", this);
|
| | | milestone.add(new DropDownChoice<TicketMilestone>("milestone", milestoneModel, milestones));
|
| | | form.add(milestone.setVisible(!milestones.isEmpty()));
|
| | |
|
| | | // priority
|
| | | Fragment priority = new Fragment("priority", "priorityFragment", this);
|
| | | List<TicketModel.Priority> priorityChoices = Arrays.asList(TicketModel.Priority.choices());
|
| | | priority.add(new DropDownChoice<TicketModel.Priority>("priority", priorityModel, priorityChoices));
|
| | | form.add(priority);
|
| | |
|
| | | // mergeTo (integration branch)
|
| | | List<String> branches = new ArrayList<String>();
|
| | | for (String branch : getRepositoryModel().getLocalBranches()) {
|
| | | // exclude ticket branches
|
| | | if (!branch.startsWith(Constants.R_TICKET)) {
|
| | | branches.add(Repository.shortenRefName(branch));
|
| | | }
|
| | | }
|
| | | branches.remove(Repository.shortenRefName(getRepositoryModel().mergeTo));
|
| | | branches.add(0, Repository.shortenRefName(getRepositoryModel().mergeTo));
|
| | |
|
| | | Fragment mergeto = new Fragment("mergeto", "mergeToFragment", this);
|
| | | mergeto.add(new DropDownChoice<String>("mergeto", mergeToModel, branches));
|
| | | form.add(mergeto.setVisible(!branches.isEmpty()));
|
| | | } else {
|
| | | // user can not admin this ticket
|
| | | form.add(new Label("responsible").setVisible(false));
|
| | | form.add(new Label("milestone").setVisible(false));
|
| | | form.add(new Label("mergeto").setVisible(false));
|
| | | form.add(new Label("priority").setVisible(false));
|
| | | }
|
| | |
|
| | | form.add(new AjaxButton("update") {
|
| | |
|
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | @Override
|
| | | protected void onSubmit() {
|
| | | protected void onSubmit(AjaxRequestTarget target, Form<?> form) {
|
| | | long ticketId = 0L;
|
| | | try {
|
| | | String h = WicketUtils.getObject(getPageParameters());
|
| | |
| | | Change change = new Change(createdBy);
|
| | |
|
| | | String title = titleModel.getObject();
|
| | | if (StringUtils.isEmpty(title)) {
|
| | | return;
|
| | | }
|
| | |
|
| | | if (!ticket.title.equals(title)) {
|
| | | // title change
|
| | | change.setField(Field.title, title);
|
| | | }
|
| | |
|
| | | String description = descriptionEditor.getText();
|
| | | if (!ticket.body.equals(description)) {
|
| | | String description = Optional.fromNullable(descriptionEditor.getText()).or("");
|
| | | if ((StringUtils.isEmpty(ticket.body) && !StringUtils.isEmpty(description))
|
| | | || (!StringUtils.isEmpty(ticket.body) && !ticket.body.equals(description))) {
|
| | | // description change
|
| | | change.setField(Field.body, description);
|
| | | }
|
| | |
| | | change.setField(Field.type, type);
|
| | | }
|
| | |
|
| | | String topic = topicModel.getObject();
|
| | | String topic = Optional.fromNullable(topicModel.getObject()).or("");
|
| | | if ((StringUtils.isEmpty(ticket.topic) && !StringUtils.isEmpty(topic))
|
| | | || (!StringUtils.isEmpty(topic) && !topic.equals(ticket.topic))) {
|
| | | || (!StringUtils.isEmpty(ticket.topic) && !ticket.topic.equals(topic))) {
|
| | | // topic change
|
| | | change.setField(Field.topic, topic);
|
| | | }
|
| | |
| | | }
|
| | | }
|
| | |
|
| | | TicketModel.Priority priority = priorityModel.getObject();
|
| | | if (!ticket.priority.equals(priority))
|
| | | {
|
| | | change.setField(Field.priority, priority);
|
| | | }
|
| | |
|
| | | TicketModel.Severity severity = severityModel.getObject();
|
| | | if (!ticket.severity.equals(severity))
|
| | | {
|
| | | change.setField(Field.severity, severity);
|
| | | }
|
| | |
|
| | | String mergeTo = mergeToModel.getObject();
|
| | | if ((StringUtils.isEmpty(ticket.mergeTo) && !StringUtils.isEmpty(mergeTo))
|
| | | || (!StringUtils.isEmpty(mergeTo) && !mergeTo.equals(ticket.mergeTo))) {
|
| | |
| | | if (ticket != null) {
|
| | | TicketNotifier notifier = app().tickets().createNotifier();
|
| | | notifier.sendMailing(ticket);
|
| | | setResponsePage(TicketsPage.class, WicketUtils.newObjectParameter(getRepositoryModel().name, "" + ticket.number));
|
| | | redirectTo(TicketsPage.class, WicketUtils.newObjectParameter(getRepositoryModel().name, "" + ticket.number));
|
| | | } else {
|
| | | // TODO error
|
| | | }
|
| | | } else {
|
| | | // nothing to change?!
|
| | | setResponsePage(TicketsPage.class, WicketUtils.newObjectParameter(getRepositoryModel().name, "" + ticket.number));
|
| | | redirectTo(TicketsPage.class, WicketUtils.newObjectParameter(getRepositoryModel().name, "" + ticket.number));
|
| | | }
|
| | | }
|
| | | };
|
| | | add(form);
|
| | | });
|
| | |
|
| | | List<Type> typeChoices;
|
| | | if (ticket.isProposal()) {
|
| | | typeChoices = Arrays.asList(Type.Proposal);
|
| | | } else {
|
| | | typeChoices = Arrays.asList(TicketModel.Type.choices());
|
| | | }
|
| | | form.add(new DropDownChoice<TicketModel.Type>("type", typeModel, typeChoices));
|
| | |
|
| | | List<Status> statusChoices;
|
| | | if (ticket.isClosed()) {
|
| | | statusChoices = Arrays.asList(ticket.status, Status.Open);
|
| | | } else if (ticket.isProposal()) {
|
| | | statusChoices = Arrays.asList(TicketModel.Status.proposalWorkflow);
|
| | | } else if (ticket.isBug()) {
|
| | | statusChoices = Arrays.asList(TicketModel.Status.bugWorkflow);
|
| | | } else {
|
| | | statusChoices = Arrays.asList(TicketModel.Status.requestWorkflow);
|
| | | }
|
| | | form.add(new DropDownChoice<TicketModel.Status>("status", statusModel, statusChoices));
|
| | |
|
| | | form.add(new TextField<String>("title", titleModel));
|
| | | form.add(new TextField<String>("topic", topicModel));
|
| | |
|
| | | final IModel<String> markdownPreviewModel = new Model<String>();
|
| | | descriptionPreview = new Label("descriptionPreview", markdownPreviewModel);
|
| | | descriptionPreview.setEscapeModelStrings(false);
|
| | | descriptionPreview.setOutputMarkupId(true);
|
| | | form.add(descriptionPreview);
|
| | |
|
| | | descriptionEditor = new MarkdownTextArea("description", markdownPreviewModel, descriptionPreview);
|
| | | descriptionEditor.setRepository(repositoryName);
|
| | | descriptionEditor.setText(ticket.body);
|
| | | form.add(descriptionEditor);
|
| | |
|
| | | if (currentUser != null && currentUser.isAuthenticated && currentUser.canPush(getRepositoryModel())) {
|
| | | // responsible
|
| | | Set<String> userlist = new TreeSet<String>(ticket.getParticipants());
|
| | |
|
| | | for (RegistrantAccessPermission rp : app().repositories().getUserAccessPermissions(getRepositoryModel())) {
|
| | | if (rp.permission.atLeast(AccessPermission.PUSH) && !rp.isTeam()) {
|
| | | userlist.add(rp.registrant);
|
| | | }
|
| | | }
|
| | |
|
| | | List<TicketResponsible> responsibles = new ArrayList<TicketResponsible>();
|
| | | for (String username : userlist) {
|
| | | UserModel user = app().users().getUserModel(username);
|
| | | if (user != null) {
|
| | | TicketResponsible responsible = new TicketResponsible(user);
|
| | | responsibles.add(responsible);
|
| | | if (user.username.equals(ticket.responsible)) {
|
| | | responsibleModel.setObject(responsible);
|
| | | }
|
| | | }
|
| | | }
|
| | | Collections.sort(responsibles);
|
| | | responsibles.add(new TicketResponsible(NIL, "", ""));
|
| | | Fragment responsible = new Fragment("responsible", "responsibleFragment", this);
|
| | | responsible.add(new DropDownChoice<TicketResponsible>("responsible", responsibleModel, responsibles));
|
| | | form.add(responsible.setVisible(!responsibles.isEmpty()));
|
| | |
|
| | | // milestone
|
| | | List<TicketMilestone> milestones = app().tickets().getMilestones(getRepositoryModel(), Status.Open);
|
| | | for (TicketMilestone milestone : milestones) {
|
| | | if (milestone.name.equals(ticket.milestone)) {
|
| | | milestoneModel.setObject(milestone);
|
| | | break;
|
| | | }
|
| | | }
|
| | | if (!milestones.isEmpty()) {
|
| | | milestones.add(new TicketMilestone(NIL));
|
| | | }
|
| | |
|
| | | Fragment milestone = new Fragment("milestone", "milestoneFragment", this);
|
| | |
|
| | | milestone.add(new DropDownChoice<TicketMilestone>("milestone", milestoneModel, milestones));
|
| | | form.add(milestone.setVisible(!milestones.isEmpty()));
|
| | |
|
| | | // mergeTo (integration branch)
|
| | | List<String> branches = new ArrayList<String>();
|
| | | for (String branch : getRepositoryModel().getLocalBranches()) {
|
| | | // exclude ticket branches
|
| | | if (!branch.startsWith(Constants.R_TICKET)) {
|
| | | branches.add(Repository.shortenRefName(branch));
|
| | | }
|
| | | }
|
| | | branches.remove(Repository.shortenRefName(getRepositoryModel().HEAD));
|
| | | branches.add(0, Repository.shortenRefName(getRepositoryModel().HEAD));
|
| | |
|
| | | Fragment mergeto = new Fragment("mergeto", "mergeToFragment", this);
|
| | | mergeto.add(new DropDownChoice<String>("mergeto", mergeToModel, branches));
|
| | | form.add(mergeto.setVisible(!branches.isEmpty()));
|
| | |
|
| | | } else {
|
| | | // user does not have permission to assign milestone or responsible
|
| | | form.add(new Label("responsible").setVisible(false));
|
| | | form.add(new Label("milestone").setVisible(false));
|
| | | form.add(new Label("mergeto").setVisible(false));
|
| | | }
|
| | |
|
| | | form.add(new Button("update"));
|
| | | Button cancel = new Button("cancel") {
|
| | | private static final long serialVersionUID = 1L;
|
| | |
|