/src/org/openmrs/api/impl/AdministrationServiceImpl.java

https://bitbucket.org/jwesonga/androidopenmrs · Java · 992 lines · 485 code · 115 blank · 392 comment · 33 complexity · 16c9660b1ee6b4a40ae37517e9901dd3 MD5 · raw file

  1. /**
  2. * The contents of this file are subject to the OpenMRS Public License
  3. * Version 1.0 (the "License"); you may not use this file except in
  4. * compliance with the License. You may obtain a copy of the License at
  5. * http://license.openmrs.org
  6. *
  7. * Software distributed under the License is distributed on an "AS IS"
  8. * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
  9. * License for the specific language governing rights and limitations
  10. * under the License.
  11. *
  12. * Copyright (C) OpenMRS, LLC. All Rights Reserved.
  13. */
  14. package org.openmrs.api.impl;
  15. import java.io.UnsupportedEncodingException;
  16. import java.net.InetAddress;
  17. import java.net.UnknownHostException;
  18. import java.util.ArrayList;
  19. import java.util.Collection;
  20. import java.util.HashSet;
  21. import java.util.List;
  22. import java.util.Locale;
  23. import java.util.Set;
  24. import java.util.SortedMap;
  25. import java.util.TreeMap;
  26. import org.apache.commons.lang.NotImplementedException;
  27. import org.apache.commons.logging.Log;
  28. import org.apache.commons.logging.LogFactory;
  29. import org.openmrs.Concept;
  30. import org.openmrs.ConceptClass;
  31. import org.openmrs.ConceptDatatype;
  32. import org.openmrs.ConceptProposal;
  33. import org.openmrs.EncounterType;
  34. import org.openmrs.FieldType;
  35. import org.openmrs.GlobalProperty;
  36. import org.openmrs.ImplementationId;
  37. import org.openmrs.Location;
  38. import org.openmrs.MimeType;
  39. import org.openmrs.PatientIdentifierType;
  40. import org.openmrs.Privilege;
  41. import org.openmrs.Role;
  42. import org.openmrs.Tribe;
  43. import org.openmrs.api.APIAuthenticationException;
  44. import org.openmrs.api.APIException;
  45. import org.openmrs.api.AdministrationService;
  46. import org.openmrs.api.EventListeners;
  47. import org.openmrs.api.GlobalPropertyListener;
  48. import org.openmrs.api.context.Context;
  49. import org.openmrs.api.db.AdministrationDAO;
  50. import org.openmrs.module.ModuleUtil;
  51. import org.openmrs.reporting.AbstractReportObject;
  52. import org.openmrs.reporting.Report;
  53. import org.openmrs.util.OpenmrsConstants;
  54. /**
  55. * Default implementation of the administration services. This class should not
  56. * be used on its own. The current OpenMRS implementation should be fetched from
  57. * the Context
  58. *
  59. * @see org.openmrs.api.AdministrationService
  60. * @see org.openmrs.api.context.Context
  61. */
  62. public class AdministrationServiceImpl extends BaseOpenmrsService implements
  63. AdministrationService, GlobalPropertyListener {
  64. protected Log log = LogFactory.getLog(getClass());
  65. protected AdministrationDAO dao;
  66. private EventListeners eventListeners;
  67. /**
  68. * An always up-to-date collection of the allowed locales.
  69. */
  70. private GlobalLocaleList globalLocaleList;
  71. /**
  72. * Default empty constructor
  73. */
  74. public AdministrationServiceImpl() {
  75. }
  76. /**
  77. * @see org.openmrs.api.AdministrationService#setAdministrationDAO(org.openmrs.api.db.AdministrationDAO)
  78. */
  79. public void setAdministrationDAO(AdministrationDAO dao) {
  80. this.dao = dao;
  81. }
  82. public void setEventListeners(EventListeners eventListeners) {
  83. this.eventListeners = eventListeners;
  84. // add ourselves to the list
  85. this.eventListeners.getGlobalPropertyListeners().add(this);
  86. }
  87. /**
  88. * @see org.openmrs.api.AdministrationService#createEncounterType(org.openmrs.EncounterType)
  89. * @deprecated
  90. */
  91. @Deprecated
  92. public void createEncounterType(EncounterType encounterType)
  93. throws APIException {
  94. Context.getEncounterService().saveEncounterType(encounterType);
  95. }
  96. /**
  97. * @see org.openmrs.api.AdministrationService#updateEncounterType(org.openmrs.EncounterType)
  98. * @deprecated
  99. */
  100. @Deprecated
  101. public void updateEncounterType(EncounterType encounterType)
  102. throws APIException {
  103. Context.getEncounterService().saveEncounterType(encounterType);
  104. }
  105. /**
  106. * @see org.openmrs.api.AdministrationService#deleteEncounterType(org.openmrs.EncounterType)
  107. * @deprecated
  108. */
  109. @Deprecated
  110. public void deleteEncounterType(EncounterType encounterType)
  111. throws APIException {
  112. Context.getEncounterService().purgeEncounterType(encounterType);
  113. }
  114. /**
  115. * @see org.openmrs.api.PatientService#savePatientIdentifierType(PatientIdentifierType)
  116. * @deprecated replaced by
  117. * {@link org.openmrs.api.PatientService#savePatientIdentifierType(PatientIdentifierType)}
  118. */
  119. @Deprecated
  120. public void createPatientIdentifierType(
  121. PatientIdentifierType patientIdentifierType) throws APIException {
  122. Context.getPatientService().savePatientIdentifierType(
  123. patientIdentifierType);
  124. }
  125. /**
  126. * @see org.openmrs.api.PatientService#savePatientIdentifierType(PatientIdentifierType)
  127. * @deprecated replaced by
  128. * {@link org.openmrs.api.PatientService#savePatientIdentifierType(PatientIdentifierType)}
  129. */
  130. @Deprecated
  131. public void updatePatientIdentifierType(
  132. PatientIdentifierType patientIdentifierType) throws APIException {
  133. Context.getPatientService().savePatientIdentifierType(
  134. patientIdentifierType);
  135. }
  136. /**
  137. * @see org.openmrs.api.PatientService#purgePatientIdentifierType(PatientIdentifierType)
  138. * @deprecated replaced by
  139. * {@link org.openmrs.api.PatientService#purgePatientIdentifierType(PatientIdentifierType)}
  140. */
  141. @Deprecated
  142. public void deletePatientIdentifierType(
  143. PatientIdentifierType patientIdentifierType) throws APIException {
  144. Context.getPatientService().purgePatientIdentifierType(
  145. patientIdentifierType);
  146. }
  147. /**
  148. * Create a new Tribe
  149. *
  150. * @param tribe
  151. * Tribe to create
  152. * @throws APIException
  153. * @deprecated
  154. */
  155. @Deprecated
  156. public void createTribe(Tribe tribe) throws APIException {
  157. throw new APIException(
  158. "The Tribe object is no longer supported. Install the Tribe module");
  159. }
  160. /**
  161. * Update Tribe
  162. *
  163. * @param tribe
  164. * Tribe to update
  165. * @throws APIException
  166. * @deprecated
  167. */
  168. @Deprecated
  169. public void updateTribe(Tribe tribe) throws APIException {
  170. throw new APIException(
  171. "The Tribe object is no longer supported. Install the Tribe module");
  172. }
  173. /**
  174. * Delete Tribe
  175. *
  176. * @param tribe
  177. * Tribe to delete
  178. * @throws APIException
  179. * @deprecated
  180. */
  181. @Deprecated
  182. public void deleteTribe(Tribe tribe) throws APIException {
  183. throw new APIException(
  184. "The Tribe object is no longer supported. Install the Tribe module");
  185. }
  186. /**
  187. * Retire Tribe
  188. *
  189. * @param tribe
  190. * Tribe to retire
  191. * @throws APIException
  192. * @deprecated
  193. */
  194. @Deprecated
  195. public void retireTribe(Tribe tribe) throws APIException {
  196. throw new APIException(
  197. "The Tribe object is no longer supported. Install the Tribe module");
  198. }
  199. /**
  200. * Unretire Tribe
  201. *
  202. * @param tribe
  203. * Tribe to unretire
  204. * @throws APIException
  205. * @deprecated
  206. */
  207. @Deprecated
  208. public void unretireTribe(Tribe tribe) throws APIException {
  209. throw new APIException(
  210. "The Tribe object is no longer supported. Install the Tribe module");
  211. }
  212. /**
  213. * @deprecated
  214. */
  215. @Deprecated
  216. public void createFieldType(FieldType fieldType) throws APIException {
  217. Context.getFormService().saveFieldType(fieldType);
  218. }
  219. /**
  220. * @deprecated
  221. */
  222. @Deprecated
  223. public void updateFieldType(FieldType fieldType) throws APIException {
  224. Context.getFormService().saveFieldType(fieldType);
  225. }
  226. /**
  227. * @deprecated
  228. */
  229. @Deprecated
  230. public void deleteFieldType(FieldType fieldType) throws APIException {
  231. Context.getFormService().purgeFieldType(fieldType);
  232. }
  233. /**
  234. * @deprecated use {@link org.openmrs.api.ObsService#saveMimeType(MimeType)}
  235. */
  236. @Deprecated
  237. public void createMimeType(MimeType mimeType) throws APIException {
  238. Context.getObsService().saveMimeType(mimeType);
  239. }
  240. /**
  241. * @deprecated use {@link org.openmrs.api.ObsService#saveMimeType(MimeType)}
  242. */
  243. @Deprecated
  244. public void updateMimeType(MimeType mimeType) throws APIException {
  245. Context.getObsService().saveMimeType(mimeType);
  246. }
  247. /**
  248. * @deprecated use
  249. * {@link org.openmrs.api.ObsService#purgeMimeType(MimeType)}
  250. */
  251. @Deprecated
  252. public void deleteMimeType(MimeType mimeType) throws APIException {
  253. Context.getObsService().purgeMimeType(mimeType);
  254. }
  255. /**
  256. * @see org.openmrs.api.AdministrationService#createLocation(org.openmrs.Location)
  257. * @deprecated
  258. */
  259. @Deprecated
  260. public void createLocation(Location location) throws APIException {
  261. Context.getLocationService().saveLocation(location);
  262. }
  263. /**
  264. * @see org.openmrs.api.AdministrationService#updateLocation(org.openmrs.Location)
  265. * @deprecated
  266. */
  267. @Deprecated
  268. public void updateLocation(Location location) throws APIException {
  269. Context.getLocationService().saveLocation(location);
  270. }
  271. /**
  272. * @see org.openmrs.api.AdministrationService#deleteLocation(org.openmrs.Location)
  273. * @deprecated
  274. */
  275. @Deprecated
  276. public void deleteLocation(Location location) throws APIException {
  277. Context.getLocationService().purgeLocation(location);
  278. }
  279. /**
  280. * @see org.openmrs.api.AdministrationService#createRole(org.openmrs.Role)
  281. * @deprecated
  282. */
  283. @Deprecated
  284. public void createRole(Role role) throws APIException {
  285. Context.getUserService().saveRole(role);
  286. }
  287. /**
  288. * @see org.openmrs.api.AdministrationService#updateRole(org.openmrs.Role)
  289. * @deprecated
  290. */
  291. @Deprecated
  292. public void updateRole(Role role) throws APIException {
  293. Context.getUserService().saveRole(role);
  294. }
  295. /**
  296. * @see org.openmrs.api.AdministrationService#deleteRole(org.openmrs.Role)
  297. * @deprecated
  298. */
  299. @Deprecated
  300. public void deleteRole(Role role) throws APIException {
  301. Context.getUserService().purgeRole(role);
  302. }
  303. /**
  304. * @see org.openmrs.api.AdministrationService#createPrivilege(org.openmrs.Privilege)
  305. * @deprecated
  306. */
  307. @Deprecated
  308. public void createPrivilege(Privilege privilege) throws APIException {
  309. Context.getUserService().savePrivilege(privilege);
  310. }
  311. /**
  312. * @see org.openmrs.api.AdministrationService#updatePrivilege(org.openmrs.Privilege)
  313. * @deprecated
  314. */
  315. @Deprecated
  316. public void updatePrivilege(Privilege privilege) throws APIException {
  317. Context.getUserService().savePrivilege(privilege);
  318. }
  319. /**
  320. * @see org.openmrs.api.AdministrationService#deletePrivilege(org.openmrs.Privilege)
  321. * @deprecated
  322. */
  323. @Deprecated
  324. public void deletePrivilege(Privilege privilege) throws APIException {
  325. Context.getUserService().purgePrivilege(privilege);
  326. }
  327. /**
  328. * @deprecated moved to ConceptService
  329. */
  330. @Deprecated
  331. public void createConceptClass(ConceptClass cc) throws APIException {
  332. Context.getConceptService().saveConceptClass(cc);
  333. }
  334. /**
  335. * @deprecated moved to ConceptService
  336. */
  337. @Deprecated
  338. public void updateConceptClass(ConceptClass cc) throws APIException {
  339. Context.getConceptService().saveConceptClass(cc);
  340. }
  341. /**
  342. * @deprecated moved to ConceptService
  343. */
  344. @Deprecated
  345. public void deleteConceptClass(ConceptClass cc) throws APIException {
  346. Context.getConceptService().purgeConceptClass(cc);
  347. }
  348. /**
  349. * @deprecated moved to ConceptService
  350. */
  351. @Deprecated
  352. public void createConceptDatatype(ConceptDatatype cd) throws APIException {
  353. Context.getConceptService().saveConceptDatatype(cd);
  354. }
  355. /**
  356. * @deprecated moved to ConceptService
  357. */
  358. @Deprecated
  359. public void updateConceptDatatype(ConceptDatatype cd) throws APIException {
  360. Context.getConceptService().saveConceptDatatype(cd);
  361. }
  362. /**
  363. * @deprecated moved to ConceptService
  364. */
  365. @Deprecated
  366. public void deleteConceptDatatype(ConceptDatatype cd) throws APIException {
  367. Context.getConceptService().purgeConceptDatatype(cd);
  368. }
  369. /**
  370. * Create a new Report
  371. *
  372. * @param report
  373. * Report to create
  374. * @deprecated see reportingcompatibility module
  375. * @throws APIException
  376. */
  377. @Deprecated
  378. public void createReport(Report report) throws APIException {
  379. if (!Context.hasPrivilege(OpenmrsConstants.PRIV_ADD_REPORTS))
  380. throw new APIAuthenticationException("Privilege required: "
  381. + OpenmrsConstants.PRIV_ADD_REPORTS);
  382. dao.createReport(report);
  383. }
  384. /**
  385. * Update Report
  386. *
  387. * @param report
  388. * Report to update
  389. * @deprecated see reportingcompatibility module
  390. * @throws APIException
  391. */
  392. @Deprecated
  393. public void updateReport(Report report) throws APIException {
  394. if (!Context.hasPrivilege(OpenmrsConstants.PRIV_EDIT_REPORTS))
  395. throw new APIAuthenticationException("Privilege required: "
  396. + OpenmrsConstants.PRIV_EDIT_REPORTS);
  397. dao.updateReport(report);
  398. }
  399. /**
  400. * Delete Report
  401. *
  402. * @param report
  403. * Report to delete
  404. * @deprecated see reportingcompatibility module
  405. * @throws APIException
  406. */
  407. @Deprecated
  408. public void deleteReport(Report report) throws APIException {
  409. if (!Context.hasPrivilege(OpenmrsConstants.PRIV_DELETE_REPORTS))
  410. throw new APIAuthenticationException("Privilege required: "
  411. + OpenmrsConstants.PRIV_DELETE_REPORTS);
  412. dao.deleteReport(report);
  413. }
  414. /**
  415. * Create a new Report Object
  416. *
  417. * @param reportObject
  418. * Report Object to create
  419. * @deprecated see reportingcompatibility module
  420. * @throws APIException
  421. */
  422. @Deprecated
  423. public void createReportObject(AbstractReportObject reportObject)
  424. throws APIException {
  425. if (!Context.hasPrivilege(OpenmrsConstants.PRIV_ADD_REPORT_OBJECTS))
  426. throw new APIAuthenticationException("Privilege required: "
  427. + OpenmrsConstants.PRIV_ADD_REPORT_OBJECTS);
  428. dao.createReportObject(reportObject);
  429. }
  430. /**
  431. * Update Report Object
  432. *
  433. * @param reportObject
  434. * Report Object to update
  435. * @deprecated see reportingcompatibility module
  436. * @throws APIException
  437. */
  438. @Deprecated
  439. public void updateReportObject(AbstractReportObject reportObject)
  440. throws APIException {
  441. if (!Context.hasPrivilege(OpenmrsConstants.PRIV_EDIT_REPORT_OBJECTS))
  442. throw new APIAuthenticationException("Privilege required: "
  443. + OpenmrsConstants.PRIV_EDIT_REPORT_OBJECTS);
  444. dao.updateReportObject(reportObject);
  445. }
  446. /**
  447. * Delete Report Object
  448. *
  449. * @param reportObjectId
  450. * Internal Integer identifier of Report Object to delete
  451. * @deprecated see reportingcompatibility module
  452. * @throws APIException
  453. */
  454. @Deprecated
  455. public void deleteReportObject(Integer reportObjectId) throws APIException {
  456. if (!Context.hasPrivilege(OpenmrsConstants.PRIV_DELETE_REPORT_OBJECTS))
  457. throw new APIAuthenticationException("Privilege required: "
  458. + OpenmrsConstants.PRIV_DELETE_REPORT_OBJECTS);
  459. dao.deleteReportObject(reportObjectId);
  460. }
  461. /**
  462. * @deprecated moved to ConceptServiceImpl
  463. */
  464. @Deprecated
  465. public void updateConceptWord(Concept concept) throws APIException {
  466. Context.getConceptService().updateConceptWord(concept);
  467. }
  468. /**
  469. * @deprecated moved to ConceptServiceImpl
  470. */
  471. @Deprecated
  472. public void updateConceptWords() throws APIException {
  473. Context.getConceptService().updateConceptWords();
  474. }
  475. /**
  476. * @deprecated moved to ConceptService
  477. */
  478. @Deprecated
  479. public void updateConceptWords(Integer conceptIdStart, Integer conceptIdEnd)
  480. throws APIException {
  481. Context.getConceptService().updateConceptWords(conceptIdStart,
  482. conceptIdEnd);
  483. }
  484. /**
  485. * @deprecated moved to ConceptService
  486. */
  487. @Deprecated
  488. public void updateConceptSetDerived(Concept concept) throws APIException {
  489. Context.getConceptService().updateConceptSetDerived(concept);
  490. }
  491. /**
  492. * @deprecated moved to ConceptService
  493. */
  494. @Deprecated
  495. public void updateConceptSetDerived() throws APIException {
  496. Context.getConceptService().updateConceptSetDerived();
  497. }
  498. /**
  499. * @deprecated moved to ConceptService
  500. */
  501. @Deprecated
  502. public void createConceptProposal(ConceptProposal cp) throws APIException {
  503. Context.getConceptService().saveConceptProposal(cp);
  504. }
  505. /**
  506. * @deprecated moved to ConceptService
  507. */
  508. @Deprecated
  509. public void updateConceptProposal(ConceptProposal cp) throws APIException {
  510. Context.getConceptService().saveConceptProposal(cp);
  511. }
  512. /**
  513. * @deprecated moved to ConceptService
  514. */
  515. @Deprecated
  516. public void mapConceptProposalToConcept(ConceptProposal cp,
  517. Concept mappedConcept) throws APIException {
  518. Context.getConceptService().mapConceptProposalToConcept(cp,
  519. mappedConcept);
  520. }
  521. /**
  522. * @deprecated moved to ConceptService
  523. * @see org.openmrs.api.AdministrationService#rejectConceptProposal(org.openmrs.ConceptProposal)
  524. */
  525. @Deprecated
  526. public void rejectConceptProposal(ConceptProposal cp) {
  527. Context.getConceptService().rejectConceptProposal(cp);
  528. }
  529. /**
  530. * @see org.openmrs.api.AdministrationService#mrnGeneratorLog(java.lang.String,
  531. * java.lang.Integer, java.lang.Integer)
  532. * @deprecated
  533. */
  534. @Deprecated
  535. public void mrnGeneratorLog(String site, Integer start, Integer count)
  536. throws APIException {
  537. if (!Context.hasPrivilege(OpenmrsConstants.PRIV_EDIT_PATIENTS))
  538. throw new APIAuthenticationException("Privilege required: "
  539. + OpenmrsConstants.PRIV_EDIT_PATIENTS);
  540. dao.mrnGeneratorLog(site, start, count);
  541. }
  542. /**
  543. * @see org.openmrs.api.AdministrationService#getMRNGeneratorLog()
  544. * @deprecated
  545. */
  546. @Deprecated
  547. public Collection<?> getMRNGeneratorLog() throws APIException {
  548. if (!Context.hasPrivilege(OpenmrsConstants.PRIV_EDIT_PATIENTS))
  549. throw new APIAuthenticationException("Privilege required: "
  550. + OpenmrsConstants.PRIV_EDIT_PATIENTS);
  551. return dao.getMRNGeneratorLog();
  552. }
  553. /**
  554. * Static-ish variable used to cache the system variables. This is not
  555. * static so that every time a module is loaded or removed the variable is
  556. * destroyed (along with the administration service) and recreated the next
  557. * time it is called
  558. */
  559. protected SortedMap<String, String> systemVariables = null;
  560. /**
  561. * Set of locales which can be used to present messages in the user
  562. * interface. Created lazily as needed by {@link #getAllowedLocales()}.
  563. */
  564. private HashSet<Locale> presentationLocales;
  565. /**
  566. * @see org.openmrs.api.AdministrationService#getSystemVariables()
  567. */
  568. public SortedMap<String, String> getSystemVariables() throws APIException {
  569. if (systemVariables == null) {
  570. systemVariables = new TreeMap<String, String>();
  571. // Added the server's fully qualified domain name
  572. try {
  573. systemVariables.put("OPENMRS_HOSTNAME", InetAddress
  574. .getLocalHost().getCanonicalHostName());
  575. } catch (UnknownHostException e) {
  576. systemVariables.put("OPENMRS_HOSTNAME", "Unknown host: "
  577. + e.getMessage());
  578. }
  579. systemVariables.put("OPENMRS_VERSION", String
  580. .valueOf(OpenmrsConstants.OPENMRS_VERSION));
  581. systemVariables
  582. .put("DATABASE_NAME", OpenmrsConstants.DATABASE_NAME);
  583. systemVariables.put("DATABASE_BUSINESS_NAME",
  584. OpenmrsConstants.DATABASE_BUSINESS_NAME);
  585. systemVariables.put("OBSCURE_PATIENTS", String
  586. .valueOf(OpenmrsConstants.OBSCURE_PATIENTS));
  587. systemVariables.put("OBSCURE_PATIENTS_FAMILY_NAME",
  588. OpenmrsConstants.OBSCURE_PATIENTS_FAMILY_NAME);
  589. systemVariables.put("OBSCURE_PATIENTS_GIVEN_NAME",
  590. OpenmrsConstants.OBSCURE_PATIENTS_GIVEN_NAME);
  591. systemVariables.put("OBSCURE_PATIENTS_MIDDLE_NAME",
  592. OpenmrsConstants.OBSCURE_PATIENTS_MIDDLE_NAME);
  593. systemVariables.put("STOP_WORDS", OpenmrsConstants.STOP_WORDS()
  594. .toString());
  595. systemVariables.put("MODULE_REPOSITORY_PATH", ModuleUtil
  596. .getModuleRepository().getAbsolutePath());
  597. systemVariables.put("OPERATING_SYSTEM_KEY", String
  598. .valueOf(OpenmrsConstants.OPERATING_SYSTEM_KEY));
  599. systemVariables.put("OPERATING_SYSTEM", String
  600. .valueOf(OpenmrsConstants.OPERATING_SYSTEM));
  601. }
  602. return systemVariables;
  603. }
  604. /**
  605. * @see org.openmrs.api.AdministrationService#getGlobalProperty(java.lang.String)
  606. */
  607. public String getGlobalProperty(String propertyName) throws APIException {
  608. // This method should not have any authorization check
  609. if (propertyName == null)
  610. return null;
  611. return dao.getGlobalProperty(propertyName);
  612. }
  613. /**
  614. * @see org.openmrs.api.AdministrationService#getGlobalProperty(java.lang.String,
  615. * java.lang.String)
  616. */
  617. public String getGlobalProperty(String propertyName, String defaultValue)
  618. throws APIException {
  619. String s = getGlobalProperty(propertyName);
  620. if (s == null)
  621. return defaultValue;
  622. return s;
  623. }
  624. /**
  625. * @see org.openmrs.api.AdministrationService#getGlobalPropertyObject(java.lang.String)
  626. */
  627. public GlobalProperty getGlobalPropertyObject(String propertyName) {
  628. return dao.getGlobalPropertyObject(propertyName);
  629. }
  630. /**
  631. * @see org.openmrs.api.AdministrationService#getGlobalProperties()
  632. * @deprecated
  633. */
  634. @Deprecated
  635. public List<GlobalProperty> getGlobalProperties() throws APIException {
  636. return getAllGlobalProperties();
  637. }
  638. /**
  639. * @see org.openmrs.api.AdministrationService#setGlobalProperties(java.util.List)
  640. * @deprecated
  641. */
  642. @Deprecated
  643. public void setGlobalProperties(List<GlobalProperty> props)
  644. throws APIException {
  645. Context.getAdministrationService().saveGlobalProperties(props);
  646. }
  647. /**
  648. * @see org.openmrs.api.AdministrationService#deleteGlobalProperty(java.lang.String)
  649. * @deprecated
  650. */
  651. @Deprecated
  652. public void deleteGlobalProperty(String propertyName) throws APIException {
  653. purgeGlobalProperty(new GlobalProperty(propertyName));
  654. }
  655. /**
  656. * @see org.openmrs.api.AdministrationService#setGlobalProperty(java.lang.String,
  657. * java.lang.String)
  658. * @deprecated
  659. */
  660. @Deprecated
  661. public void setGlobalProperty(String propertyName, String propertyValue)
  662. throws APIException {
  663. Context.getAdministrationService().saveGlobalProperty(
  664. new GlobalProperty(propertyName, propertyValue));
  665. }
  666. /**
  667. * @see org.openmrs.api.AdministrationService#setGlobalProperty(org.openmrs.GlobalProperty)
  668. * @deprecated
  669. */
  670. @Deprecated
  671. public void setGlobalProperty(GlobalProperty gp) throws APIException {
  672. Context.getAdministrationService().saveGlobalProperty(gp);
  673. }
  674. /**
  675. * @see org.openmrs.api.AdministrationService#addGlobalProperty(org.openmrs.GlobalProperty)
  676. * @deprecated
  677. */
  678. @Deprecated
  679. public void addGlobalProperty(GlobalProperty gp) {
  680. setGlobalProperty(gp);
  681. }
  682. /**
  683. * @see org.openmrs.api.AdministrationService#addGlobalProperty(java.lang.String,
  684. * java.lang.String)
  685. * @deprecated
  686. */
  687. @Deprecated
  688. public void addGlobalProperty(String propertyName, String propertyValue)
  689. throws APIException {
  690. // dao.addGlobalProperty(propertyName, propertyValue);
  691. Context.getAdministrationService().saveGlobalProperty(
  692. new GlobalProperty(propertyName, propertyValue));
  693. }
  694. /**
  695. * @see org.openmrs.api.AdministrationService#getAllGlobalProperties()
  696. */
  697. public List<GlobalProperty> getAllGlobalProperties() throws APIException {
  698. return dao.getAllGlobalProperties();
  699. }
  700. /**
  701. * @see org.openmrs.api.AdministrationService#getGlobalPropertiesByPrefix(java.lang.String)
  702. */
  703. public List<GlobalProperty> getGlobalPropertiesByPrefix(String prefix) {
  704. return dao.getGlobalPropertiesByPrefix(prefix);
  705. }
  706. /**
  707. * @see org.openmrs.api.AdministrationService#getGlobalPropertiesBySuffix(java.lang.String)
  708. */
  709. public List<GlobalProperty> getGlobalPropertiesBySuffix(String suffix) {
  710. return dao.getGlobalPropertiesBySuffix(suffix);
  711. }
  712. /**
  713. * @see org.openmrs.api.AdministrationService#purgeGlobalProperty(org.openmrs.GlobalProperty)
  714. */
  715. public void purgeGlobalProperty(GlobalProperty globalProperty)
  716. throws APIException {
  717. notifyGlobalPropertyDelete(globalProperty.getProperty());
  718. dao.deleteGlobalProperty(globalProperty);
  719. }
  720. /**
  721. * @see org.openmrs.api.AdministrationService#saveGlobalProperties(java.util.List)
  722. */
  723. public List<GlobalProperty> saveGlobalProperties(List<GlobalProperty> props)
  724. throws APIException {
  725. log.debug("saving a list of global properties");
  726. // delete all properties not in this new list
  727. for (GlobalProperty gp : getGlobalProperties()) {
  728. if (!props.contains(gp))
  729. purgeGlobalProperty(gp);
  730. }
  731. // add all of the new properties
  732. for (GlobalProperty prop : props) {
  733. if (prop.getProperty() != null && prop.getProperty().length() > 0) {
  734. saveGlobalProperty(prop);
  735. }
  736. }
  737. return props;
  738. }
  739. /**
  740. * @see org.openmrs.api.AdministrationService#saveGlobalProperty(org.openmrs.GlobalProperty)
  741. */
  742. public GlobalProperty saveGlobalProperty(GlobalProperty gp)
  743. throws APIException {
  744. // only try to save it if the global property has a key
  745. if (gp.getProperty() != null && gp.getProperty().length() > 0) {
  746. dao.saveGlobalProperty(gp);
  747. notifyGlobalPropertyChange(gp);
  748. return gp;
  749. }
  750. return gp;
  751. }
  752. /**
  753. * @see org.openmrs.api.AdministrationService#executeSQL(java.lang.String,
  754. * boolean)
  755. */
  756. public List<List<Object>> executeSQL(String sql, boolean selectOnly)
  757. throws APIException {
  758. if (sql == null || sql.trim().equals(""))
  759. return null;
  760. return dao.executeSQL(sql, selectOnly);
  761. }
  762. /**
  763. * @see org.openmrs.api.AdministrationService#addGlobalPropertyListener(GlobalPropertyListener)
  764. */
  765. public void addGlobalPropertyListener(GlobalPropertyListener listener) {
  766. eventListeners.getGlobalPropertyListeners().add(listener);
  767. }
  768. /**
  769. * @see org.openmrs.api.AdministrationService#removeGlobalPropertyListener(GlobalPropertyListener)
  770. */
  771. public void removeGlobalPropertyListener(GlobalPropertyListener listener) {
  772. eventListeners.getGlobalPropertyListeners().remove(listener);
  773. }
  774. /**
  775. * Calls global property listeners registered for this create/change
  776. *
  777. * @param gp
  778. */
  779. private void notifyGlobalPropertyChange(GlobalProperty gp) {
  780. for (GlobalPropertyListener listener : eventListeners
  781. .getGlobalPropertyListeners())
  782. if (listener.supportsPropertyName(gp.getProperty()))
  783. listener.globalPropertyChanged(gp);
  784. }
  785. /**
  786. * Calls global property listeners registered for this delete
  787. *
  788. * @param propertyName
  789. */
  790. private void notifyGlobalPropertyDelete(String propertyName) {
  791. for (GlobalPropertyListener listener : eventListeners
  792. .getGlobalPropertyListeners())
  793. if (listener.supportsPropertyName(propertyName))
  794. listener.globalPropertyDeleted(propertyName);
  795. }
  796. /**
  797. * @see org.openmrs.api.AdministrationService#getImplementationId()
  798. */
  799. public ImplementationId getImplementationId() throws APIException {
  800. throw new NotImplementedException("getImplementationId");
  801. }
  802. /**
  803. * @see org.openmrs.api.AdministrationService#setImplementationId(org.openmrs.ImplementationId)
  804. */
  805. public void setImplementationId(ImplementationId implementationId)
  806. throws APIException {
  807. throw new NotImplementedException("setImplementationId");
  808. }
  809. /**
  810. * Checks the remote server for this exact implementation id. Returns the
  811. * description if 1) there is no implementation id or 2) there is a
  812. * implementation id and this passphrase matches it. In the case of 1), this
  813. * implementation id and passphrase are saved to the remote server's
  814. * database
  815. *
  816. * @param implementationId
  817. * @param description
  818. * @param passphrase
  819. * @return the stored description on the remote server
  820. * @throws APIException
  821. * @throws UnsupportedEncodingException
  822. */
  823. private String checkImplementationIdValidity(String implementationId,
  824. String description, String passphrase) throws APIException {
  825. throw new NotImplementedException("checkImplementationIdValidity");
  826. }
  827. /**
  828. * @see org.openmrs.api.AdministrationService#getAllowedLocales()
  829. */
  830. public List<Locale> getAllowedLocales() {
  831. // lazy-load the global locale list and initialize with current global
  832. // property value
  833. if (globalLocaleList == null) {
  834. globalLocaleList = new GlobalLocaleList();
  835. addGlobalPropertyListener(globalLocaleList);
  836. String currentPropertyValue = getGlobalProperty(
  837. OpenmrsConstants.GLOBAL_PROPERTY_LOCALE_ALLOWED_LIST, "");
  838. GlobalProperty allowedLocalesProperty = new GlobalProperty(
  839. OpenmrsConstants.GLOBAL_PROPERTY_LOCALE_ALLOWED_LIST,
  840. currentPropertyValue);
  841. globalLocaleList.globalPropertyChanged(allowedLocalesProperty);
  842. }
  843. return new ArrayList<Locale>(globalLocaleList.getAllowedLocales());
  844. }
  845. /**
  846. * @see org.openmrs.api.AdministrationService#getPresentationLocales()
  847. */
  848. public Set<Locale> getPresentationLocales() {
  849. throw new NotImplementedException("getPresentationLocales");
  850. }
  851. /**
  852. * @see org.openmrs.api.GlobalPropertyListener#globalPropertyChanged(org.openmrs.GlobalProperty)
  853. */
  854. public void globalPropertyChanged(GlobalProperty newValue) {
  855. if (newValue.getProperty().equals(
  856. OpenmrsConstants.GLOBAL_PROPERTY_LOCALE_ALLOWED_LIST)) {
  857. // reset the calculated locale values
  858. presentationLocales = null;
  859. }
  860. }
  861. /**
  862. * @see org.openmrs.api.GlobalPropertyListener#globalPropertyDeleted(java.lang.String)
  863. */
  864. public void globalPropertyDeleted(String propertyName) {
  865. // TODO Auto-generated method stub
  866. }
  867. /**
  868. * @see org.openmrs.api.GlobalPropertyListener#supportsPropertyName(java.lang.String)
  869. */
  870. public boolean supportsPropertyName(String propertyName) {
  871. return propertyName
  872. .equals(OpenmrsConstants.GLOBAL_PROPERTY_LOCALE_ALLOWED_LIST);
  873. }
  874. public GlobalProperty getGlobalPropertyByUuid(String uuid) {
  875. return dao.getGlobalPropertyByUuid(uuid);
  876. }
  877. }