/org.jabylon.rest.ui/src/main/java/org/jabylon/rest/ui/wicket/validators/TerminologyProjectValidator.java

http://github.com/jutzig/jabylon · Java · 67 lines · 44 code · 7 blank · 16 comment · 7 complexity · ffb0d18356563bfca2abca959bb9d0f0 MD5 · raw file

  1. /**
  2. * (C) Copyright 2013 Jabylon (http://www.jabylon.org) and others.
  3. *
  4. * All rights reserved. This program and the accompanying materials
  5. * are made available under the terms of the Eclipse Public License v1.0
  6. * which accompanies this distribution, and is available at
  7. * http://www.eclipse.org/legal/epl-v10.html
  8. */
  9. /**
  10. *
  11. */
  12. package org.jabylon.rest.ui.wicket.validators;
  13. import org.apache.wicket.model.IModel;
  14. import org.apache.wicket.validation.IValidatable;
  15. import org.apache.wicket.validation.IValidator;
  16. import org.apache.wicket.validation.ValidationError;
  17. import org.eclipse.emf.common.util.EList;
  18. import org.jabylon.properties.Project;
  19. import org.jabylon.properties.Workspace;
  20. import org.jabylon.rest.ui.model.AttachableModel;
  21. /**
  22. * @author jutzig.dev@googlemail.com
  23. *
  24. */
  25. public class TerminologyProjectValidator implements IValidator<Boolean> {
  26. private static final long serialVersionUID = 1L;
  27. private IModel<Project> project;
  28. public TerminologyProjectValidator(IModel<Project> project) {
  29. super();
  30. this.project = project;
  31. }
  32. @Override
  33. public void validate(IValidatable<Boolean> validatable) {
  34. if(validatable.getValue()) {
  35. Project object = project.getObject();
  36. Workspace workspace = object.getParent();
  37. if(workspace==null) {
  38. if (project instanceof AttachableModel) {
  39. AttachableModel<Project> model = (AttachableModel<Project>) project;
  40. workspace = (Workspace) model.getParent().getObject();
  41. }
  42. }
  43. if(workspace!=null)
  44. {
  45. EList<Project> children = workspace.getChildren();
  46. for (Project other : children) {
  47. if(other==object)
  48. continue;
  49. if(other.isTerminology())
  50. {
  51. //only one terminology project allowed atm
  52. ValidationError error = new ValidationError(this);
  53. error.getVariables().put("name", other.getName());
  54. validatable.error(error);
  55. }
  56. }
  57. }
  58. }
  59. }
  60. }