2014-10-09 22:39:34 +02:00
|
|
|
|
|
|
|
<script type="text/x-red" data-template-name="base64">
|
2018-02-03 16:08:05 +01:00
|
|
|
<div class="form-row">
|
|
|
|
<label for="node-input-action"><i class="fa fa-dot-circle-o"></i> Action</label>
|
|
|
|
<select style="width:70%" id="node-input-action">
|
|
|
|
<option value="">Convert Buffer <-> Base64</option>
|
2018-04-29 18:35:30 +02:00
|
|
|
<option value="str">Encode as Base64</option>
|
2018-02-03 16:08:05 +01:00
|
|
|
<option value="b64">Convert Base64 to String</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
2018-01-30 22:42:14 +01:00
|
|
|
<div class="form-row">
|
|
|
|
<label for="node-input-property"><i class="fa fa-ellipsis-h"></i> <span data-i18n="node-red:common.label.property"></span></label>
|
|
|
|
<input type="text" id="node-input-property" style="width:70%;"/>
|
|
|
|
</div>
|
2014-10-09 22:39:34 +02:00
|
|
|
<div class="form-row">
|
2017-11-10 16:17:05 +01:00
|
|
|
<label for="node-input-name"><i class="fa fa-tag"></i> <span data-i18n="node-red:common.label.name"></span></label>
|
|
|
|
<input type="text" id="node-input-name" data-i18n="[placeholder]node-red:common.label.name">
|
2014-10-09 22:39:34 +02:00
|
|
|
</div>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/x-red" data-help-name="base64">
|
2018-02-03 16:08:05 +01:00
|
|
|
<p>A function that converts the chosen property (default <code>msg.payload</code>) to and from base64 format.</p>
|
2014-10-09 22:39:34 +02:00
|
|
|
<p>If the input is a buffer it converts it to a Base64 encoded string.</p>
|
|
|
|
<p>If the input is a Base64 string it converts it back to a binary buffer.</p>
|
2018-04-29 18:35:30 +02:00
|
|
|
<p>You can also fix coding into base64, and base64 to buffer if required.</p>
|
|
|
|
<p>Note: Using "Encode to Base64" will encode an already encoded string.</p>
|
2014-10-09 22:39:34 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
RED.nodes.registerType('base64',{
|
|
|
|
category: 'function',
|
|
|
|
color:"#DEBD5C",
|
|
|
|
defaults: {
|
2018-01-30 22:42:14 +01:00
|
|
|
name: {value:""},
|
2018-02-03 16:08:05 +01:00
|
|
|
action: {value:""},
|
2018-01-30 22:42:14 +01:00
|
|
|
property: {value:"payload",required:true}
|
2014-10-09 22:39:34 +02:00
|
|
|
},
|
|
|
|
inputs:1,
|
|
|
|
outputs:1,
|
2018-02-08 16:52:30 +01:00
|
|
|
icon: "parser-base64.png",
|
2014-10-09 22:39:34 +02:00
|
|
|
label: function() {
|
|
|
|
return this.name||"base64";
|
|
|
|
},
|
|
|
|
labelStyle: function() {
|
|
|
|
return this.name?"node_label_italic":"";
|
2018-01-30 22:42:14 +01:00
|
|
|
},
|
|
|
|
oneditprepare: function() {
|
|
|
|
if (this.property === undefined) {
|
|
|
|
$("#node-input-property").val("payload");
|
|
|
|
}
|
|
|
|
$("#node-input-property").typedInput({default:'msg',types:['msg']});
|
2014-10-09 22:39:34 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|