forked from Apicurio/apicurio-data-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangePayloadRefCommand_Aai20.java
executable file
·130 lines (108 loc) · 3.95 KB
/
ChangePayloadRefCommand_Aai20.java
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
/*
* Copyright 2021 JBoss Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.apicurio.datamodels.cmd.commands;
import io.apicurio.datamodels.Library;
import io.apicurio.datamodels.asyncapi.models.AaiMessage;
import io.apicurio.datamodels.asyncapi.models.AaiOperation;
import io.apicurio.datamodels.cmd.AbstractCommand;
import io.apicurio.datamodels.compat.JsonCompat;
import io.apicurio.datamodels.compat.LoggerCompat;
import io.apicurio.datamodels.core.models.Document;
import io.apicurio.datamodels.core.models.NodePath;
/**
* A command used to change the $ref inside an AsyncAPI message payload.
* @author [email protected]
*/
public class ChangePayloadRefCommand_Aai20 extends AbstractCommand {
public NodePath _operationPath; // deprecated
public NodePath _messagePath;
public String _payloadRef;
public String _oldPayloadRef = null;
public boolean _changed;
ChangePayloadRefCommand_Aai20() {
}
/**
* Constructor.
* @deprecated Use the AaiMessage variant instead
* @param payloadRef
* @param operationNode
*/
@Deprecated
ChangePayloadRefCommand_Aai20(String payloadRef, AaiOperation operationNode) {
this._operationPath = Library.createNodePath(operationNode);
this._payloadRef = payloadRef;
}
ChangePayloadRefCommand_Aai20(String payloadRef, AaiMessage messageNode) {
this._messagePath = Library.createNodePath(messageNode);
this._payloadRef = payloadRef;
}
@Override
public void execute(Document document) {
LoggerCompat.info("[ChangePayloadRefCommand_Aai20] Executing.");
this._changed = false;
AaiMessage message;
// Legacy: lookup from operation path
if (!this.isNullOrUndefined(this._operationPath)) {
AaiOperation operation = (AaiOperation) this._operationPath.resolve(document);
if (this.isNullOrUndefined(operation) || this.isNullOrUndefined(operation.message)) {
return;
}
message = operation.message;
} else {
message = (AaiMessage) this._messagePath.resolve(document);
}
if (this.isNullOrUndefined(message)) {
return;
}
Object payload = message.payload;
if (payload == null) {
payload = JsonCompat.objectNode();
message.payload = payload;
}
Object oldValue = JsonCompat.getProperty(payload, "$ref");
if (oldValue != null && JsonCompat.isString(oldValue)) {
this._oldPayloadRef = JsonCompat.toString(oldValue);
}
JsonCompat.setProperty(payload, "$ref", this._payloadRef);
this._changed = true;
}
@Override
public void undo(Document document) {
LoggerCompat.info("[ChangePayloadRefCommand_Aai20] Reverting.");
if (!this._changed) {
return;
}
AaiMessage message;
if (!this.isNullOrUndefined(this._operationPath)) {
AaiOperation operation = (AaiOperation) this._operationPath.resolve(document);
if (this.isNullOrUndefined(operation)) {
return;
}
message = operation.message;
} else {
message = (AaiMessage) this._messagePath.resolve(document);
}
if (this.isNullOrUndefined(message)) {
return;
}
Object payload = message.payload;
if (this._oldPayloadRef != null) {
JsonCompat.setProperty(payload, "$ref", this._oldPayloadRef);
} else {
JsonCompat.consumeProperty(payload, "$ref");
}
}
}