User.java 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. package com.tofly.base.entity.user;
  2. import com.fasterxml.jackson.annotation.JsonIgnore;
  3. import com.fasterxml.jackson.annotation.JsonProperty;
  4. import com.fasterxml.jackson.databind.JsonNode;
  5. import com.tofly.base.server.common.data.HasCustomerId;
  6. import com.tofly.base.server.common.data.HasName;
  7. import com.tofly.base.server.common.data.HasTenantId;
  8. import com.tofly.base.server.common.data.SearchTextBasedWithAdditionalInfo;
  9. import com.tofly.base.server.common.data.dto.UserDetailsDTO;
  10. import com.tofly.base.server.common.data.id.CustomerId;
  11. import com.tofly.base.server.common.data.id.EntityId;
  12. import com.tofly.base.server.common.data.id.TenantId;
  13. import com.tofly.base.server.common.data.id.UserId;
  14. import com.tofly.base.server.common.data.security.Authority;
  15. import com.tofly.base.server.common.data.vaildation.Length;
  16. import com.tofly.base.server.common.data.vaildation.NoXss;
  17. import io.swagger.annotations.ApiModel;
  18. import io.swagger.annotations.ApiModelProperty;
  19. import lombok.EqualsAndHashCode;
  20. import lombok.Getter;
  21. import lombok.Setter;
  22. @ApiModel
  23. @EqualsAndHashCode(callSuper = true)
  24. public class User extends SearchTextBasedWithAdditionalInfo<UserId>
  25. implements HasName, HasTenantId, HasCustomerId {
  26. private static final long serialVersionUID = 8250339805336035966L;
  27. private TenantId tenantId;
  28. private CustomerId customerId;
  29. private String email;
  30. private Authority authority;
  31. @NoXss
  32. @Length(fieldName = "first name")
  33. private String firstName;
  34. @NoXss
  35. @Length(fieldName = "last name")
  36. private String lastName;
  37. /** 平台的用户详情 */
  38. @Getter @Setter private UserDetailsDTO userDetailsDTO;
  39. public User() {
  40. super();
  41. }
  42. public User(UserId id) {
  43. super(id);
  44. }
  45. public User(User user) {
  46. super(user);
  47. this.tenantId = user.getTenantId();
  48. this.customerId = user.getCustomerId();
  49. this.email = user.getEmail();
  50. this.authority = user.getAuthority();
  51. this.firstName = user.getFirstName();
  52. this.lastName = user.getLastName();
  53. }
  54. @ApiModelProperty(
  55. position = 1,
  56. value =
  57. "JSON object with the User Id. "
  58. + "Specify this field to update the device. "
  59. + "Referencing non-existing User Id will cause error. "
  60. + "Omit this field to create new customer.")
  61. @Override
  62. public UserId getId() {
  63. return super.getId();
  64. }
  65. @ApiModelProperty(
  66. position = 2,
  67. value = "Timestamp of the user creation, in milliseconds",
  68. example = "1609459200000",
  69. readOnly = true)
  70. @Override
  71. public long getCreatedTime() {
  72. return super.getCreatedTime();
  73. }
  74. @ApiModelProperty(position = 3, value = "JSON object with the Tenant Id.", readOnly = true)
  75. public TenantId getTenantId() {
  76. return tenantId;
  77. }
  78. public void setTenantId(TenantId tenantId) {
  79. this.tenantId = tenantId;
  80. }
  81. @ApiModelProperty(position = 4, value = "JSON object with the Customer Id.", readOnly = true)
  82. public CustomerId getCustomerId() {
  83. return customerId;
  84. }
  85. public void setCustomerId(CustomerId customerId) {
  86. this.customerId = customerId;
  87. }
  88. @ApiModelProperty(
  89. position = 5,
  90. required = true,
  91. value = "Email of the user",
  92. example = "user@example.com")
  93. public String getEmail() {
  94. return email;
  95. }
  96. public void setEmail(String email) {
  97. this.email = email;
  98. }
  99. @ApiModelProperty(
  100. position = 6,
  101. readOnly = true,
  102. value = "Duplicates the email of the user, readonly",
  103. example = "user@example.com")
  104. @Override
  105. @JsonProperty(access = JsonProperty.Access.READ_ONLY)
  106. public String getName() {
  107. return email;
  108. }
  109. @ApiModelProperty(
  110. position = 7,
  111. required = true,
  112. value = "Authority",
  113. example = "SYS_ADMIN, TENANT_ADMIN or CUSTOMER_USER")
  114. public Authority getAuthority() {
  115. return authority;
  116. }
  117. public void setAuthority(Authority authority) {
  118. this.authority = authority;
  119. }
  120. @ApiModelProperty(
  121. position = 8,
  122. required = true,
  123. value = "First name of the user",
  124. example = "John")
  125. public String getFirstName() {
  126. return firstName;
  127. }
  128. public void setFirstName(String firstName) {
  129. this.firstName = firstName;
  130. }
  131. @ApiModelProperty(position = 9, required = true, value = "Last name of the user", example = "Doe")
  132. public String getLastName() {
  133. return lastName;
  134. }
  135. public void setLastName(String lastName) {
  136. this.lastName = lastName;
  137. }
  138. @ApiModelProperty(
  139. position = 10,
  140. value = "Additional parameters of the user",
  141. dataType = "com.fasterxml.jackson.databind.JsonNode")
  142. @Override
  143. public JsonNode getAdditionalInfo() {
  144. return super.getAdditionalInfo();
  145. }
  146. @Override
  147. public String getSearchText() {
  148. return getEmail();
  149. }
  150. @Override
  151. public String toString() {
  152. StringBuilder builder = new StringBuilder();
  153. builder.append("User [tenantId=");
  154. builder.append(tenantId);
  155. builder.append(", customerId=");
  156. builder.append(customerId);
  157. builder.append(", email=");
  158. builder.append(email);
  159. builder.append(", authority=");
  160. builder.append(authority);
  161. builder.append(", firstName=");
  162. builder.append(firstName);
  163. builder.append(", lastName=");
  164. builder.append(lastName);
  165. builder.append(", additionalInfo=");
  166. builder.append(getAdditionalInfo());
  167. builder.append(", createdTime=");
  168. builder.append(createdTime);
  169. builder.append(", id=");
  170. builder.append(id);
  171. builder.append("]");
  172. return builder.toString();
  173. }
  174. @JsonIgnore
  175. public boolean isSystemAdmin() {
  176. return (tenantId == null || EntityId.NULL_UUID.equals(tenantId.getId()));
  177. }
  178. @JsonIgnore
  179. public boolean isTenantAdmin() {
  180. return !isSystemAdmin()
  181. && (customerId == null || EntityId.NULL_UUID.equals(customerId.getId()));
  182. }
  183. @JsonIgnore
  184. public boolean isCustomerUser() {
  185. return !isSystemAdmin() && !isTenantAdmin();
  186. }
  187. }