2018-03-26 23:14:23 +01:00
/ * *
* @ author n1474335 [ n1474335 @ gmail . com ]
* @ copyright Crown Copyright 2016
* @ license Apache - 2.0
* /
import Operation from "../Operation" ;
2018-04-02 17:10:51 +01:00
import { fromBase64 , ALPHABET _OPTIONS } from "../lib/Base64" ;
2018-03-26 23:14:23 +01:00
/ * *
* From Base64 operation
* /
class FromBase64 extends Operation {
/ * *
2018-04-02 17:10:51 +01:00
* FromBase64 constructor
2018-03-26 23:14:23 +01:00
* /
constructor ( ) {
super ( ) ;
2018-04-02 17:10:51 +01:00
this . name = "From Base64" ;
this . module = "Default" ;
2018-03-26 23:14:23 +01:00
this . description = "Base64 is a notation for encoding arbitrary byte data using a restricted set of symbols that can be conveniently used by humans and processed by computers.<br><br>This operation decodes data from an ASCII Base64 string back into its raw format.<br><br>e.g. <code>aGVsbG8=</code> becomes <code>hello</code>" ;
2018-04-02 17:10:51 +01:00
this . inputType = "string" ;
this . outputType = "byteArray" ;
this . args = [
2018-03-26 23:14:23 +01:00
{
name : "Alphabet" ,
type : "editableOption" ,
value : ALPHABET _OPTIONS
} ,
{
name : "Remove non-alphabet chars" ,
type : "boolean" ,
value : true
}
] ;
}
/ * *
* @ param { ArrayBuffer } input
* @ param { Object [ ] } args
* @ returns { string }
* /
run ( input , args ) {
2018-04-02 17:10:51 +01:00
const [ alphabet , removeNonAlphChars ] = args ;
2018-03-26 23:14:23 +01:00
2018-04-02 17:10:51 +01:00
return fromBase64 ( input , alphabet , "byteArray" , removeNonAlphChars ) ;
2018-03-26 23:14:23 +01:00
}
/ * *
* Highlight to Base64
*
* @ param { Object [ ] } pos
* @ param { number } pos [ ] . start
* @ param { number } pos [ ] . end
* @ param { Object [ ] } args
* @ returns { Object [ ] } pos
* /
highlight ( pos , args ) {
pos [ 0 ] . start = Math . ceil ( pos [ 0 ] . start / 4 * 3 ) ;
pos [ 0 ] . end = Math . floor ( pos [ 0 ] . end / 4 * 3 ) ;
return pos ;
}
/ * *
* Highlight from Base64
*
* @ param { Object [ ] } pos
* @ param { number } pos [ ] . start
* @ param { number } pos [ ] . end
* @ param { Object [ ] } args
* @ returns { Object [ ] } pos
* /
highlightReverse ( pos , args ) {
pos [ 0 ] . start = Math . floor ( pos [ 0 ] . start / 3 * 4 ) ;
pos [ 0 ] . end = Math . ceil ( pos [ 0 ] . end / 3 * 4 ) ;
return pos ;
}
}
export default FromBase64 ;