/hooks/google-mail-users-hook/docroot/WEB-INF/src/com/liferay/google/mail/users/hook/mail/GoogleMailUsersHook.java

http://github.com/liferay/liferay-plugins · Java · 171 lines · 118 code · 36 blank · 17 comment · 0 complexity · 1ead6079f04d3a49b664dae4b8a9cbe2 MD5 · raw file

  1. /**
  2. * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
  3. *
  4. * This library is free software; you can redistribute it and/or modify it under
  5. * the terms of the GNU Lesser General Public License as published by the Free
  6. * Software Foundation; either version 2.1 of the License, or (at your option)
  7. * any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  11. * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
  12. * details.
  13. */
  14. package com.liferay.google.mail.users.hook.mail;
  15. import com.liferay.google.apps.connector.util.GoogleDirectoryUtil;
  16. import com.liferay.google.apps.connector.util.GoogleGmailSettingsUtil;
  17. import com.liferay.mail.kernel.model.Filter;
  18. import com.liferay.mail.kernel.util.Hook;
  19. import com.liferay.portal.kernel.exception.PortalException;
  20. import com.liferay.portal.kernel.log.Log;
  21. import com.liferay.portal.kernel.log.LogFactoryUtil;
  22. import com.liferay.portal.kernel.model.Company;
  23. import com.liferay.portal.kernel.model.User;
  24. import com.liferay.portal.kernel.security.auth.FullNameGenerator;
  25. import com.liferay.portal.kernel.service.CompanyLocalServiceUtil;
  26. import com.liferay.portal.kernel.service.UserLocalServiceUtil;
  27. import com.liferay.portal.kernel.util.PortalClassLoaderUtil;
  28. import com.liferay.portal.kernel.util.StringPool;
  29. import java.lang.reflect.Method;
  30. import java.util.List;
  31. /**
  32. * @author Brian Wing Shun Chan
  33. * @author Amos Fong
  34. */
  35. public class GoogleMailUsersHook implements Hook {
  36. @Override
  37. public void addForward(
  38. long companyId, long userId, List<Filter> filters,
  39. List<String> emailAddresses, boolean leaveCopy) {
  40. }
  41. @Override
  42. public void addUser(
  43. long companyId, long userId, String password, String firstName,
  44. String middleName, String lastName, String emailAddress) {
  45. try {
  46. String primaryEmailAddress = _getPrimaryEmailAddress(
  47. companyId, userId);
  48. GoogleDirectoryUtil.addUser(
  49. primaryEmailAddress, password, firstName, middleName, lastName);
  50. GoogleDirectoryUtil.addUserAlias(primaryEmailAddress, emailAddress);
  51. FullNameGenerator fullNameGenerator = _getFullNameGenerator();
  52. GoogleGmailSettingsUtil.addSendAs(
  53. companyId, userId,
  54. fullNameGenerator.getFullName(firstName, middleName, lastName),
  55. emailAddress);
  56. }
  57. catch (Exception e) {
  58. _log.error(e, e);
  59. }
  60. }
  61. @Override
  62. public void addVacationMessage(
  63. long companyId, long userId, String emailAddress,
  64. String vacationMessage) {
  65. }
  66. @Override
  67. public void deleteEmailAddress(long companyId, long userId) {
  68. try {
  69. String primaryEmailAddress = _getPrimaryEmailAddress(
  70. companyId, userId);
  71. User user = UserLocalServiceUtil.getUserById(userId);
  72. GoogleDirectoryUtil.deleteUserAlias(
  73. primaryEmailAddress, user.getEmailAddress());
  74. }
  75. catch (Exception e) {
  76. _log.error(e, e);
  77. }
  78. }
  79. @Override
  80. public void deleteUser(long companyId, long userId) {
  81. try {
  82. String primaryEmailAddress = _getPrimaryEmailAddress(
  83. companyId, userId);
  84. GoogleDirectoryUtil.deleteUser(primaryEmailAddress);
  85. }
  86. catch (Exception e) {
  87. _log.error(e, e);
  88. }
  89. }
  90. @Override
  91. public void updateBlocked(
  92. long companyId, long userId, List<String> blocked) {
  93. }
  94. @Override
  95. public void updateEmailAddress(
  96. long companyId, long userId, String emailAddress) {
  97. try {
  98. User user = UserLocalServiceUtil.getUserById(userId);
  99. deleteEmailAddress(companyId, userId);
  100. String primaryEmailAddress = _getPrimaryEmailAddress(
  101. companyId, userId);
  102. GoogleDirectoryUtil.addUserAlias(primaryEmailAddress, emailAddress);
  103. GoogleGmailSettingsUtil.addSendAs(
  104. companyId, userId, user.getFullName(), emailAddress);
  105. }
  106. catch (Exception e) {
  107. _log.error(e, e);
  108. }
  109. }
  110. @Override
  111. public void updatePassword(long companyId, long userId, String password) {
  112. try {
  113. String primaryEmailAddress = _getPrimaryEmailAddress(
  114. companyId, userId);
  115. GoogleDirectoryUtil.updateUserPassword(
  116. primaryEmailAddress, password);
  117. }
  118. catch (Exception e) {
  119. _log.error(e, e);
  120. }
  121. }
  122. private FullNameGenerator _getFullNameGenerator() throws Exception {
  123. ClassLoader classLoader = PortalClassLoaderUtil.getClassLoader();
  124. Class<?> clazz = classLoader.loadClass(
  125. "com.liferay.portal.kernel.security.auth.FullNameGeneratorFactory");
  126. Method method = clazz.getMethod("getInstance");
  127. return (FullNameGenerator)method.invoke(null);
  128. }
  129. private String _getPrimaryEmailAddress(long companyId, long userId)
  130. throws PortalException {
  131. Company company = CompanyLocalServiceUtil.getCompany(companyId);
  132. return userId + StringPool.AT + company.getMx();
  133. }
  134. private static Log _log = LogFactoryUtil.getLog(GoogleMailUsersHook.class);
  135. }