PageModification.java
8.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* org.osgi.service.event.Event
*/
package com.day.cq.wcm.api;
import com.day.cq.wcm.api.PageEvent;
import java.io.Serializable;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import org.osgi.service.event.Event;
public final class PageModification
implements Serializable {
private static final String PROPERTY_CHANGES = "changes";
private static final String PROPERTY_VERSION_ID = "versionId";
private static final String PROPERTY_USER_ID = "userId";
private static final String PROPERTY_PATH = "path";
private static final String PROPERTY_DESTINATION = "destination";
private static final String PROPERTY_ABOVE = "above";
private static final String PROPERTY_MODIFIED_DATE = "modifiedDate";
private static final String PROPERTY_TYPE = "type";
private final String path;
private final String destination;
private final String above;
private final ModificationType type;
private final String versionId;
private final String userId;
private final Date modificationDate;
private final Set<String> changes;
public static PageModification created(String path, String above, String userId) {
return new PageModification(ModificationType.CREATED, path, null, null, above, userId, null, null);
}
public static PageModification modified(String path, String vid, String userId, Set<String> changes) {
return new PageModification(ModificationType.MODIFIED, path, vid, null, null, userId, null, changes);
}
public static PageModification moved(String path, String destination, String above, String userId) {
return new PageModification(ModificationType.MOVED, path, null, destination, above, userId, null, null);
}
public static PageModification deleted(String path, String userId) {
return new PageModification(ModificationType.DELETED, path, null, null, null, userId, null, null);
}
public static PageModification versionCreated(String path, String vid, String userId) {
return new PageModification(ModificationType.VERSION_CREATED, path, vid, null, null, userId, null, null);
}
public static PageModification pageRestored(String path, String vid, String userId) {
return new PageModification(ModificationType.RESTORED, path, vid, null, null, userId, null, null);
}
public static PageModification pageValid(String path, long time) {
return new PageModification(ModificationType.VALID, path, null, null, null, null, new Date(time), null);
}
public static PageModification pageInvalid(String path, long time) {
return new PageModification(ModificationType.INVALID, path, null, null, null, null, new Date(time), null);
}
public static PageModification rolledout(String path, String userId) {
return new PageModification(ModificationType.ROLLEDOUT, path, null, null, null, userId, null, null);
}
private PageModification(ModificationType type, String path, String versionid, String destination, String above, String userId, Date md, Set<String> changes) {
this.type = type;
this.path = path;
this.versionId = versionid;
this.destination = destination;
this.above = above;
this.userId = userId == null ? "admin" : userId;
this.modificationDate = md == null ? new Date() : md;
this.changes = changes;
}
public String getPath() {
return this.path;
}
public String getDestination() {
return this.destination;
}
public String getAbove() {
return this.above;
}
public ModificationType getType() {
return this.type;
}
public String getVersionId() {
return this.versionId;
}
public String getUserId() {
return this.userId;
}
public Date getModificationDate() {
return this.modificationDate;
}
public Set<String> getModificationPaths() {
return this.changes;
}
public final boolean equals(Object o) {
if (o instanceof PageModification) {
PageModification other = (PageModification)o;
return other.path.equals(this.path) && other.destination.equals(this.destination) && other.type == this.type;
}
return false;
}
public int hashCode() {
int hashCode = this.path.hashCode() ^ this.type.hashCode();
if (this.destination != null) {
hashCode ^= this.destination.hashCode();
}
return hashCode;
}
public String toString() {
StringBuffer b = new StringBuffer();
b.append("page ");
switch (this.type) {
case CREATED: {
b.append("created");
break;
}
case MODIFIED: {
b.append("modified");
break;
}
case MOVED: {
b.append("moved");
break;
}
case DELETED: {
b.append("deleted");
break;
}
case VERSION_CREATED: {
b.append("version created");
break;
}
case RESTORED: {
b.append("version restored");
break;
}
case ROLLEDOUT: {
b.append("rolled out");
break;
}
case VALID: {
b.append("valid");
break;
}
case INVALID: {
b.append("invalid");
}
}
b.append(": ");
b.append(this.path);
if (this.destination != null) {
b.append(" --> ");
b.append(this.destination);
}
if (this.above != null) {
b.append(", above: ");
b.append(this.above);
}
if (this.versionId != null) {
b.append(", vid: ");
b.append(this.versionId);
}
if (this.userId != null) {
b.append(", userId: ");
b.append(this.userId);
}
return b.toString();
}
public Map<String, Object> getEventProperties() {
HashMap<String, Object> properties = new HashMap<String, Object>();
properties.put("type", this.type.toString());
properties.put("modifiedDate", this.modificationDate);
if (this.above != null) {
properties.put("above", this.above);
}
if (this.destination != null) {
properties.put("destination", this.destination);
}
if (this.path != null) {
properties.put("path", this.path);
}
if (this.userId != null) {
properties.put("userId", this.userId);
}
if (this.versionId != null) {
properties.put("versionId", this.versionId);
}
if (this.changes != null) {
properties.put("changes", this.changes);
}
return properties;
}
public static PageModification fromEventProperties(Map<String, Object> props) {
return new PageModification(ModificationType.fromName((String)props.get("type")), (String)props.get("path"), (String)props.get("versionId"), (String)props.get("destination"), (String)props.get("above"), (String)props.get("userId"), (Date)props.get("modifiedDate"), (Set)props.get("changes"));
}
public Event toEvent() {
return new PageEvent(this).toEvent();
}
public static enum ModificationType {
CREATED("PageCreated"),
MODIFIED("PageModified"),
MOVED("PageMoved"),
DELETED("PageDeleted"),
VERSION_CREATED("VersionCreated"),
RESTORED("PageRestored"),
ROLLEDOUT("PageRolledOut"),
VALID("PageValid"),
INVALID("PageInvalid");
private final String name;
private ModificationType(String name) {
this.name = name;
}
public String toString() {
return this.name;
}
public static ModificationType fromName(String n) {
for (ModificationType m : ModificationType.values()) {
if (!m.toString().equals(n)) continue;
return m;
}
throw new IllegalArgumentException("Unknown modification type: " + n);
}
}
}