-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added 'AMF Encode' and 'AMF Decode' operations
- Loading branch information
Showing
5 changed files
with
153 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/** | ||
* @author n1474335 [[email protected]] | ||
* @copyright Crown Copyright 2022 | ||
* @license Apache-2.0 | ||
*/ | ||
|
||
import Operation from "../Operation.mjs"; | ||
import "reflect-metadata"; // Required as a shim for the amf library | ||
import { AMF0, AMF3 } from "@astronautlabs/amf"; | ||
|
||
/** | ||
* AMF Decode operation | ||
*/ | ||
class AMFDecode extends Operation { | ||
|
||
/** | ||
* AMFDecode constructor | ||
*/ | ||
constructor() { | ||
super(); | ||
|
||
this.name = "AMF Decode"; | ||
this.module = "Encodings"; | ||
this.description = "Action Message Format (AMF) is a binary format used to serialize object graphs such as ActionScript objects and XML, or send messages between an Adobe Flash client and a remote service, usually a Flash Media Server or third party alternatives."; | ||
this.infoURL = "https://wikipedia.org/wiki/Action_Message_Format"; | ||
this.inputType = "ArrayBuffer"; | ||
this.outputType = "JSON"; | ||
this.args = [ | ||
{ | ||
name: "Format", | ||
type: "option", | ||
value: ["AMF0", "AMF3"], | ||
defaultIndex: 1 | ||
} | ||
]; | ||
} | ||
|
||
/** | ||
* @param {ArrayBuffer} input | ||
* @param {Object[]} args | ||
* @returns {JSON} | ||
*/ | ||
run(input, args) { | ||
const [format] = args; | ||
const handler = format === "AMF0" ? AMF0 : AMF3; | ||
const encoded = new Uint8Array(input); | ||
return handler.Value.deserialize(encoded); | ||
} | ||
|
||
} | ||
|
||
export default AMFDecode; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/** | ||
* @author n1474335 [[email protected]] | ||
* @copyright Crown Copyright 2022 | ||
* @license Apache-2.0 | ||
*/ | ||
|
||
import Operation from "../Operation.mjs"; | ||
import "reflect-metadata"; // Required as a shim for the amf library | ||
import { AMF0, AMF3 } from "@astronautlabs/amf"; | ||
|
||
/** | ||
* AMF Encode operation | ||
*/ | ||
class AMFEncode extends Operation { | ||
|
||
/** | ||
* AMFEncode constructor | ||
*/ | ||
constructor() { | ||
super(); | ||
|
||
this.name = "AMF Encode"; | ||
this.module = "Encodings"; | ||
this.description = "Action Message Format (AMF) is a binary format used to serialize object graphs such as ActionScript objects and XML, or send messages between an Adobe Flash client and a remote service, usually a Flash Media Server or third party alternatives."; | ||
this.infoURL = "https://wikipedia.org/wiki/Action_Message_Format"; | ||
this.inputType = "JSON"; | ||
this.outputType = "ArrayBuffer"; | ||
this.args = [ | ||
{ | ||
name: "Format", | ||
type: "option", | ||
value: ["AMF0", "AMF3"], | ||
defaultIndex: 1 | ||
} | ||
]; | ||
} | ||
|
||
/** | ||
* @param {JSON} input | ||
* @param {Object[]} args | ||
* @returns {ArrayBuffer} | ||
*/ | ||
run(input, args) { | ||
const [format] = args; | ||
const handler = format === "AMF0" ? AMF0 : AMF3; | ||
const output = handler.Value.any(input).serialize(); | ||
return output.buffer; | ||
} | ||
|
||
} | ||
|
||
export default AMFEncode; |