base64Binary.js 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * @Author: zhang peng
  3. * @Date: 2021-08-03 10:57:51
  4. * @LastEditTime: 2021-08-16 17:25:43
  5. * @LastEditors: zhang peng
  6. * @Description:
  7. * @FilePath: \miniprogram-to-uniapp2\src\project\template\polyfill\base64Binary.js
  8. *
  9. * 借鉴自:https://github.com/dankogai/js-base64/blob/main/base64.js
  10. * 因uniapp没有window,也无法使用Buffer,因此直接使用polyfill
  11. *
  12. */
  13. const b64ch = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='
  14. const b64chs = [...b64ch]
  15. const b64re = /^(?:[A-Za-z\d+\/]{4})*?(?:[A-Za-z\d+\/]{2}(?:==)?|[A-Za-z\d+\/]{3}=?)?$/
  16. const b64tab = ((a) => {
  17. let tab = {}
  18. a.forEach((c, i) => tab[c] = i)
  19. return tab
  20. })(b64chs)
  21. const _fromCC = String.fromCharCode.bind(String)
  22. /**
  23. * polyfill version of `btoa`
  24. */
  25. const btoaPolyfill = (bin) => {
  26. // console.log('polyfilled');
  27. let u32, c0, c1, c2, asc = ''
  28. const pad = bin.length % 3
  29. for (let i = 0;i < bin.length;) {
  30. if ((c0 = bin.charCodeAt(i++)) > 255 ||
  31. (c1 = bin.charCodeAt(i++)) > 255 ||
  32. (c2 = bin.charCodeAt(i++)) > 255)
  33. throw new TypeError('invalid character found')
  34. u32 = (c0 << 16) | (c1 << 8) | c2
  35. asc += b64chs[u32 >> 18 & 63]
  36. + b64chs[u32 >> 12 & 63]
  37. + b64chs[u32 >> 6 & 63]
  38. + b64chs[u32 & 63]
  39. }
  40. return pad ? asc.slice(0, pad - 3) + "===".substring(pad) : asc
  41. }
  42. /**
  43. * polyfill version of `atob`
  44. */
  45. const atobPolyfill = (asc) => {
  46. // console.log('polyfilled');
  47. asc = asc.replace(/\s+/g, '')
  48. if (!b64re.test(asc))
  49. throw new TypeError('malformed base64.')
  50. asc += '=='.slice(2 - (asc.length & 3))
  51. let u24, bin = '', r1, r2
  52. for (let i = 0;i < asc.length;) {
  53. u24 = b64tab[asc.charAt(i++)] << 18
  54. | b64tab[asc.charAt(i++)] << 12
  55. | (r1 = b64tab[asc.charAt(i++)]) << 6
  56. | (r2 = b64tab[asc.charAt(i++)])
  57. bin += r1 === 64 ? _fromCC(u24 >> 16 & 255)
  58. : r2 === 64 ? _fromCC(u24 >> 16 & 255, u24 >> 8 & 255)
  59. : _fromCC(u24 >> 16 & 255, u24 >> 8 & 255, u24 & 255)
  60. }
  61. return bin
  62. }
  63. /**
  64. * base64转ArrayBuffer
  65. */
  66. function base64ToArrayBuffer (base64) {
  67. const binaryStr = atobPolyfill(base64)
  68. const byteLength = binaryStr.length
  69. const bytes = new Uint8Array(byteLength)
  70. for (let i = 0;i < byteLength;i++) {
  71. bytes[i] = binary.charCodeAt(i)
  72. }
  73. return bytes.buffer
  74. }
  75. /**
  76. * ArrayBuffer转base64
  77. */
  78. function arrayBufferToBase64 (buffer) {
  79. let binaryStr = ""
  80. const bytes = new Uint8Array(buffer)
  81. var len = bytes.byteLength
  82. for (let i = 0;i < len;i++) {
  83. binaryStr += String.fromCharCode(bytes[i])
  84. }
  85. return btoaPolyfill(binaryStr)
  86. }
  87. module.exports = {
  88. base64ToArrayBuffer,
  89. arrayBufferToBase64,
  90. }