/src-modules/org/opencms/workplace/search/CmsSearchWorkplaceBean.java

http://github.com/alkacon/opencms-core · Java · 283 lines · 89 code · 53 blank · 141 comment · 4 complexity · 362005fce95842354c117216100a9a3e MD5 · raw file

  1. /*
  2. * This library is part of OpenCms -
  3. * the Open Source Content Management System
  4. *
  5. * Copyright (c) Alkacon Software GmbH & Co. KG (http://www.alkacon.com)
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * For further information about Alkacon Software GmbH & Co. KG, please see the
  18. * company website: http://www.alkacon.com
  19. *
  20. * For further information about OpenCms, please see the
  21. * project website: http://www.opencms.org
  22. *
  23. * You should have received a copy of the GNU Lesser General Public
  24. * License along with this library; if not, write to the Free Software
  25. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  26. */
  27. package org.opencms.workplace.search;
  28. import org.opencms.main.CmsIllegalArgumentException;
  29. import org.opencms.main.CmsIllegalStateException;
  30. import org.opencms.search.CmsSearchParameters;
  31. import org.opencms.util.CmsStringUtil;
  32. /**
  33. * Bean to handle search parameters in the workplace.<p>
  34. *
  35. * @since 6.3.0
  36. */
  37. public class CmsSearchWorkplaceBean {
  38. /** The current folder. */
  39. private String m_currentFolder;
  40. /** The comma separated list of fields to search parameter value. */
  41. private String m_fields;
  42. /** The index name. */
  43. private String m_indexName;
  44. /** The creation date the resources have to have as maximum. */
  45. private String m_maxDateCreated;
  46. /** The last modification date the resources have to have as maximum. */
  47. private String m_maxDateLastModified;
  48. /** The creation date the resources have to have as minimum. */
  49. private String m_minDateCreated;
  50. /** The last modification date the resources have to have as minimum. */
  51. private String m_minDateLastModified;
  52. /** The query. */
  53. private String m_query;
  54. /** If set, will restrict the search to the current folder. */
  55. private boolean m_restrictSearch;
  56. /** The sort Order. */
  57. private String m_sortOrder;
  58. /**
  59. * Default constructor.<p>
  60. *
  61. * @param currentFolder the current folder
  62. */
  63. public CmsSearchWorkplaceBean(String currentFolder) {
  64. m_fields = CmsStringUtil.collectionAsString(new CmsSearchParameters().getFields(), ",");
  65. m_sortOrder = CmsSearchParameters.SORT_NAMES[0];
  66. m_currentFolder = currentFolder;
  67. }
  68. /**
  69. * Returns the fields parameter value.<p>
  70. *
  71. * @return the fields parameter value
  72. */
  73. public String getFields() {
  74. return m_fields;
  75. }
  76. /**
  77. * Returns the index name.<p>
  78. *
  79. * @return the index name
  80. */
  81. public String getIndexName() {
  82. return m_indexName;
  83. }
  84. /**
  85. * Returns the creation date the resources have to have as maximum.<p>
  86. *
  87. * @return the creation date the resources have to have as maximum
  88. */
  89. public String getMaxDateCreated() {
  90. return m_maxDateCreated;
  91. }
  92. /**
  93. * Returns the last modification date the resources have to have as maximum.<p>
  94. *
  95. * @return the last modification date the resources have to have as maximum
  96. */
  97. public String getMaxDateLastModified() {
  98. return m_maxDateLastModified;
  99. }
  100. /**
  101. * Returns the creation date the resources have to have as minimum.<p>
  102. *
  103. * @return the creation date the resources have to have as minimum
  104. */
  105. public String getMinDateCreated() {
  106. return m_minDateCreated;
  107. }
  108. /**
  109. * Returns the last modification date the resources have to have as minimum.<p>
  110. *
  111. * @return the last modification date the resources have to have as minimum
  112. */
  113. public String getMinDateLastModified() {
  114. return m_minDateLastModified;
  115. }
  116. /**
  117. * Returns the query.<p>
  118. *
  119. * @return the query
  120. */
  121. public String getQuery() {
  122. return m_query;
  123. }
  124. /**
  125. * Returns the search path.<p>
  126. *
  127. * @return the search path
  128. */
  129. public String getSearchPath() {
  130. if (isRestrictSearch()) {
  131. return m_currentFolder;
  132. } else {
  133. return "/";
  134. }
  135. }
  136. /**
  137. * Returns the sort Order.<p>
  138. *
  139. * @return the sort Order
  140. */
  141. public String getSortOrder() {
  142. return m_sortOrder;
  143. }
  144. /**
  145. * Returns the restrict Search flag.<p>
  146. *
  147. * @return the restrict Search flag
  148. */
  149. public boolean isRestrictSearch() {
  150. return m_restrictSearch;
  151. }
  152. /**
  153. * Sets the fields parameter value.<p>
  154. *
  155. * @param fields the fields parameter value to set
  156. */
  157. public void setFields(String fields) {
  158. if (CmsStringUtil.isEmptyOrWhitespaceOnly(fields)) {
  159. throw new CmsIllegalStateException(Messages.get().container(Messages.ERR_VALIDATE_SEARCH_PARAMS_0));
  160. }
  161. m_fields = fields;
  162. }
  163. /**
  164. * Sets the index name.<p>
  165. *
  166. * @param indexName the index name
  167. */
  168. public void setIndexName(String indexName) {
  169. m_indexName = indexName;
  170. }
  171. /**
  172. * Sets the creation date the resources have to have as maximum.<p>
  173. *
  174. * @param maxDateCreated the creation date the resources have to have as maximum to set
  175. */
  176. public void setMaxDateCreated(String maxDateCreated) {
  177. m_maxDateCreated = maxDateCreated;
  178. }
  179. /**
  180. * Sets the last modification date the resources have to have as maximum.<p>
  181. *
  182. * @param maxDateLastModified the last modification date the resources have to have as maximum to set
  183. */
  184. public void setMaxDateLastModified(String maxDateLastModified) {
  185. m_maxDateLastModified = maxDateLastModified;
  186. }
  187. /**
  188. * Sets the creation date the resources have to have as minimum.<p>
  189. *
  190. * @param dateCreatedFrom the creation date the resources have to have as minimum to set
  191. */
  192. public void setMinDateCreated(String dateCreatedFrom) {
  193. m_minDateCreated = dateCreatedFrom;
  194. }
  195. /**
  196. * Sets the last modification date the resources have to have as minimum.<p>
  197. *
  198. * @param minDateLastModified the last modification date the resources have to have as minimum to set
  199. */
  200. public void setMinDateLastModified(String minDateLastModified) {
  201. m_minDateLastModified = minDateLastModified;
  202. }
  203. /**
  204. * Sets the query.<p>
  205. *
  206. * @param query the query to set
  207. */
  208. public void setQuery(String query) {
  209. if (CmsStringUtil.isEmptyOrWhitespaceOnly(query)) {
  210. throw new CmsIllegalArgumentException(Messages.get().container(Messages.ERR_VALIDATE_SEARCH_QUERY_0));
  211. }
  212. m_query = query;
  213. }
  214. /**
  215. * Sets the restrict Search flag.<p>
  216. *
  217. * @param restrictSearch the restrict Search flag to set
  218. */
  219. public void setRestrictSearch(boolean restrictSearch) {
  220. m_restrictSearch = restrictSearch;
  221. }
  222. /**
  223. * Sets the sort Order.<p>
  224. *
  225. * @param sortOrder the sort Order to set
  226. */
  227. public void setSortOrder(String sortOrder) {
  228. m_sortOrder = sortOrder;
  229. }
  230. }