@agnostack/next-shopify 1.15.0-beta.2 → 1.15.0-beta.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (273) hide show
  1. package/CHANGELOG.md +136 -0
  2. package/dist/lib/handlers/api/auth.js +15 -11
  3. package/dist/lib/handlers/api/auth.js.map +1 -1
  4. package/dist/lib/handlers/api/billing.js +13 -9
  5. package/dist/lib/handlers/api/billing.js.map +1 -1
  6. package/dist/lib/handlers/api/callback.js +37 -33
  7. package/dist/lib/handlers/api/callback.js.map +1 -1
  8. package/dist/lib/handlers/api/index.js +25 -7
  9. package/dist/lib/handlers/api/index.js.map +1 -1
  10. package/dist/lib/handlers/api/uninstall.js +12 -8
  11. package/dist/lib/handlers/api/uninstall.js.map +1 -1
  12. package/dist/lib/handlers/api/verifiable/appInstallation.js +11 -7
  13. package/dist/lib/handlers/api/verifiable/appInstallation.js.map +1 -1
  14. package/dist/lib/handlers/api/verifiable/graph.js +26 -22
  15. package/dist/lib/handlers/api/verifiable/graph.js.map +1 -1
  16. package/dist/lib/handlers/api/verifiable/index.js +21 -5
  17. package/dist/lib/handlers/api/verifiable/index.js.map +1 -1
  18. package/dist/lib/handlers/api/verifiable/proxy.js +39 -32
  19. package/dist/lib/handlers/api/verifiable/proxy.js.map +1 -1
  20. package/dist/lib/handlers/api/verifiable/rest.js +23 -19
  21. package/dist/lib/handlers/api/verifiable/rest.js.map +1 -1
  22. package/dist/lib/handlers/api/verifiable/token.js +27 -23
  23. package/dist/lib/handlers/api/verifiable/token.js.map +1 -1
  24. package/dist/lib/handlers/api/webhook.js +13 -9
  25. package/dist/lib/handlers/api/webhook.js.map +1 -1
  26. package/dist/lib/handlers/index.js +18 -2
  27. package/dist/lib/handlers/index.js.map +1 -1
  28. package/dist/lib/handlers/ssr/index.js +18 -2
  29. package/dist/lib/handlers/ssr/index.js.map +1 -1
  30. package/dist/lib/handlers/ssr/protect.js +24 -17
  31. package/dist/lib/handlers/ssr/protect.js.map +1 -1
  32. package/dist/lib/handlers/ssr/wrap.js +10 -6
  33. package/dist/lib/handlers/ssr/wrap.js.map +1 -1
  34. package/dist/lib/index.d.ts +1 -1
  35. package/dist/lib/index.d.ts.map +1 -1
  36. package/dist/lib/index.js +24 -5
  37. package/dist/lib/index.js.map +1 -1
  38. package/dist/lib/utils/billing.js +23 -18
  39. package/dist/lib/utils/billing.js.map +1 -1
  40. package/dist/lib/utils/crypto.d.ts +1 -1
  41. package/dist/lib/utils/crypto.d.ts.map +1 -1
  42. package/dist/lib/utils/crypto.js +25 -15
  43. package/dist/lib/utils/crypto.js.map +1 -1
  44. package/dist/lib/utils/firebase.js +29 -17
  45. package/dist/lib/utils/firebase.js.map +1 -1
  46. package/dist/lib/utils/headers.js +13 -6
  47. package/dist/lib/utils/headers.js.map +1 -1
  48. package/dist/lib/utils/index.js +24 -8
  49. package/dist/lib/utils/index.js.map +1 -1
  50. package/dist/lib/utils/session.js +64 -59
  51. package/dist/lib/utils/session.js.map +1 -1
  52. package/dist/lib/utils/shopify-api-js/oauth.js +23 -16
  53. package/dist/lib/utils/shopify-api-js/oauth.js.map +1 -1
  54. package/dist/lib/utils/shopify.js +37 -25
  55. package/dist/lib/utils/shopify.js.map +1 -1
  56. package/dist/lib/utils/token.js +15 -11
  57. package/dist/lib/utils/token.js.map +1 -1
  58. package/dist/plugins/index.d.ts +3 -0
  59. package/dist/plugins/index.d.ts.map +1 -0
  60. package/dist/plugins/index.js +19 -0
  61. package/dist/plugins/index.js.map +1 -0
  62. package/dist/plugins/types.d.ts +1 -0
  63. package/dist/plugins/types.d.ts.map +1 -0
  64. package/dist/plugins/types.js +1 -0
  65. package/dist/plugins/types.js.map +1 -0
  66. package/dist/plugins/withShopify.d.ts.map +1 -0
  67. package/dist/{lib → plugins}/withShopify.js +83 -77
  68. package/dist/plugins/withShopify.js.map +1 -0
  69. package/dist/react/hooks/index.js +17 -1
  70. package/dist/react/hooks/index.js.map +1 -1
  71. package/dist/react/hooks/useVerification.d.ts +1 -1
  72. package/dist/react/hooks/useVerification.js +23 -7
  73. package/dist/react/hooks/useVerification.js.map +1 -1
  74. package/dist/react/index.d.ts +1 -0
  75. package/dist/react/index.d.ts.map +1 -1
  76. package/dist/react/index.js +18 -1
  77. package/dist/react/index.js.map +1 -1
  78. package/dist/runtime/index.js +17 -1
  79. package/dist/runtime/index.js.map +1 -1
  80. package/dist/shared/WebCrypto.d.ts +55 -0
  81. package/dist/shared/WebCrypto.d.ts.map +1 -0
  82. package/dist/shared/WebCrypto.js +345 -0
  83. package/dist/shared/WebCrypto.js.map +1 -0
  84. package/dist/shared/constants.js +15 -11
  85. package/dist/shared/constants.js.map +1 -1
  86. package/dist/shared/datetime.js +110 -83
  87. package/dist/shared/datetime.js.map +1 -1
  88. package/dist/shared/display.d.ts +0 -2
  89. package/dist/shared/display.d.ts.map +1 -1
  90. package/dist/shared/display.js +231 -155
  91. package/dist/shared/display.js.map +1 -1
  92. package/dist/shared/errors.js +12 -5
  93. package/dist/shared/errors.js.map +1 -1
  94. package/dist/shared/graph.js +14 -11
  95. package/dist/shared/graph.js.map +1 -1
  96. package/dist/shared/index.d.ts +2 -1
  97. package/dist/shared/index.d.ts.map +1 -1
  98. package/dist/shared/index.js +32 -10
  99. package/dist/shared/index.js.map +1 -1
  100. package/dist/shared/match.js +25 -17
  101. package/dist/shared/match.js.map +1 -1
  102. package/dist/shared/request.d.ts.map +1 -1
  103. package/dist/shared/request.js +19 -13
  104. package/dist/shared/request.js.map +1 -1
  105. package/dist/shared/shopify.js +31 -21
  106. package/dist/shared/shopify.js.map +1 -1
  107. package/dist/shared/uuid.d.ts +3 -0
  108. package/dist/shared/uuid.d.ts.map +1 -0
  109. package/dist/shared/uuid.js +10 -0
  110. package/dist/shared/uuid.js.map +1 -0
  111. package/dist/shared/verification.d.ts +12 -5
  112. package/dist/shared/verification.d.ts.map +1 -1
  113. package/dist/shared/verification.js +34 -23
  114. package/dist/shared/verification.js.map +1 -1
  115. package/dist/umd/lib/index.d.ts +1 -1
  116. package/dist/umd/lib/index.d.ts.map +1 -1
  117. package/dist/umd/lib/utils/crypto.d.ts +1 -1
  118. package/dist/umd/lib/utils/crypto.d.ts.map +1 -1
  119. package/dist/umd/plugins/index.d.ts +3 -0
  120. package/dist/umd/plugins/index.d.ts.map +1 -0
  121. package/dist/umd/plugins/types.d.ts +1 -0
  122. package/dist/umd/plugins/types.d.ts.map +1 -0
  123. package/dist/umd/plugins/withShopify.d.ts.map +1 -0
  124. package/dist/umd/react/hooks/useVerification.d.ts +1 -1
  125. package/dist/umd/react/index.d.ts +1 -0
  126. package/dist/umd/react/index.d.ts.map +1 -1
  127. package/dist/umd/shared/WebCrypto.d.ts +55 -0
  128. package/dist/umd/shared/WebCrypto.d.ts.map +1 -0
  129. package/dist/umd/shared/display.d.ts +0 -2
  130. package/dist/umd/shared/display.d.ts.map +1 -1
  131. package/dist/umd/shared/index.d.ts +2 -1
  132. package/dist/umd/shared/index.d.ts.map +1 -1
  133. package/dist/umd/shared/request.d.ts.map +1 -1
  134. package/dist/umd/shared/uuid.d.ts +3 -0
  135. package/dist/umd/shared/uuid.d.ts.map +1 -0
  136. package/dist/umd/shared/verification.d.ts +12 -5
  137. package/dist/umd/shared/verification.d.ts.map +1 -1
  138. package/dist/umd/verification/index.d.ts +2 -0
  139. package/dist/umd/verification/index.d.ts.map +1 -1
  140. package/dist/umd/verification/utils/errors.d.ts.map +1 -0
  141. package/dist/umd/verification/utils/index.d.ts +3 -0
  142. package/dist/umd/verification/utils/index.d.ts.map +1 -0
  143. package/dist/umd/verification/utils/rawbody.d.ts.map +1 -0
  144. package/dist/umd/verification/verification.d.ts +3 -1
  145. package/dist/umd/verification/verification.d.ts.map +1 -1
  146. package/dist/umd/verification.js +901 -0
  147. package/dist/umd/verification.js.map +1 -0
  148. package/dist/verification/index.d.ts +2 -0
  149. package/dist/verification/index.d.ts.map +1 -1
  150. package/dist/verification/index.js +19 -1
  151. package/dist/verification/index.js.map +1 -1
  152. package/dist/verification/utils/errors.d.ts.map +1 -0
  153. package/dist/verification/{errors.js → utils/errors.js} +5 -1
  154. package/dist/verification/utils/errors.js.map +1 -0
  155. package/dist/verification/utils/index.d.ts +3 -0
  156. package/dist/verification/utils/index.d.ts.map +1 -0
  157. package/dist/verification/utils/index.js +19 -0
  158. package/dist/verification/utils/index.js.map +1 -0
  159. package/dist/verification/utils/rawbody.d.ts.map +1 -0
  160. package/dist/verification/utils/rawbody.js +57 -0
  161. package/dist/verification/utils/rawbody.js.map +1 -0
  162. package/dist/verification/verification.d.ts +3 -1
  163. package/dist/verification/verification.d.ts.map +1 -1
  164. package/dist/verification/verification.js +71 -62
  165. package/dist/verification/verification.js.map +1 -1
  166. package/package.json +12 -12
  167. package/dist/lib/withShopify.d.ts.map +0 -1
  168. package/dist/lib/withShopify.js.map +0 -1
  169. package/dist/shared/subtlecrypto.d.ts +0 -41
  170. package/dist/shared/subtlecrypto.d.ts.map +0 -1
  171. package/dist/shared/subtlecrypto.js +0 -256
  172. package/dist/shared/subtlecrypto.js.map +0 -1
  173. package/dist/umd/lib/withShopify.d.ts.map +0 -1
  174. package/dist/umd/shared/subtlecrypto.d.ts +0 -41
  175. package/dist/umd/shared/subtlecrypto.d.ts.map +0 -1
  176. package/dist/umd/umd-verification.js +0 -968
  177. package/dist/umd/umd-verification.js.map +0 -1
  178. package/dist/umd/verification/errors.d.ts.map +0 -1
  179. package/dist/umd/verification/rawbody.d.ts.map +0 -1
  180. package/dist/verification/errors.d.ts.map +0 -1
  181. package/dist/verification/errors.js.map +0 -1
  182. package/dist/verification/rawbody.d.ts.map +0 -1
  183. package/dist/verification/rawbody.js +0 -31
  184. package/dist/verification/rawbody.js.map +0 -1
  185. package/node_modules/bytes/History.md +0 -97
  186. package/node_modules/bytes/LICENSE +0 -23
  187. package/node_modules/bytes/Readme.md +0 -152
  188. package/node_modules/bytes/index.js +0 -170
  189. package/node_modules/bytes/package.json +0 -42
  190. package/node_modules/depd/History.md +0 -103
  191. package/node_modules/depd/LICENSE +0 -22
  192. package/node_modules/depd/Readme.md +0 -280
  193. package/node_modules/depd/index.js +0 -538
  194. package/node_modules/depd/lib/browser/index.js +0 -77
  195. package/node_modules/depd/package.json +0 -45
  196. package/node_modules/http-errors/HISTORY.md +0 -180
  197. package/node_modules/http-errors/LICENSE +0 -23
  198. package/node_modules/http-errors/README.md +0 -169
  199. package/node_modules/http-errors/index.js +0 -289
  200. package/node_modules/http-errors/package.json +0 -50
  201. package/node_modules/iconv-lite/Changelog.md +0 -162
  202. package/node_modules/iconv-lite/LICENSE +0 -21
  203. package/node_modules/iconv-lite/README.md +0 -156
  204. package/node_modules/iconv-lite/encodings/dbcs-codec.js +0 -555
  205. package/node_modules/iconv-lite/encodings/dbcs-data.js +0 -176
  206. package/node_modules/iconv-lite/encodings/index.js +0 -22
  207. package/node_modules/iconv-lite/encodings/internal.js +0 -188
  208. package/node_modules/iconv-lite/encodings/sbcs-codec.js +0 -72
  209. package/node_modules/iconv-lite/encodings/sbcs-data-generated.js +0 -451
  210. package/node_modules/iconv-lite/encodings/sbcs-data.js +0 -174
  211. package/node_modules/iconv-lite/encodings/tables/big5-added.json +0 -122
  212. package/node_modules/iconv-lite/encodings/tables/cp936.json +0 -264
  213. package/node_modules/iconv-lite/encodings/tables/cp949.json +0 -273
  214. package/node_modules/iconv-lite/encodings/tables/cp950.json +0 -177
  215. package/node_modules/iconv-lite/encodings/tables/eucjp.json +0 -182
  216. package/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +0 -1
  217. package/node_modules/iconv-lite/encodings/tables/gbk-added.json +0 -55
  218. package/node_modules/iconv-lite/encodings/tables/shiftjis.json +0 -125
  219. package/node_modules/iconv-lite/encodings/utf16.js +0 -177
  220. package/node_modules/iconv-lite/encodings/utf7.js +0 -290
  221. package/node_modules/iconv-lite/lib/bom-handling.js +0 -52
  222. package/node_modules/iconv-lite/lib/extend-node.js +0 -217
  223. package/node_modules/iconv-lite/lib/index.d.ts +0 -24
  224. package/node_modules/iconv-lite/lib/index.js +0 -153
  225. package/node_modules/iconv-lite/lib/streams.js +0 -121
  226. package/node_modules/iconv-lite/package.json +0 -46
  227. package/node_modules/inherits/LICENSE +0 -16
  228. package/node_modules/inherits/README.md +0 -42
  229. package/node_modules/inherits/inherits.js +0 -9
  230. package/node_modules/inherits/inherits_browser.js +0 -27
  231. package/node_modules/inherits/package.json +0 -29
  232. package/node_modules/raw-body/HISTORY.md +0 -308
  233. package/node_modules/raw-body/LICENSE +0 -22
  234. package/node_modules/raw-body/README.md +0 -223
  235. package/node_modules/raw-body/SECURITY.md +0 -24
  236. package/node_modules/raw-body/index.d.ts +0 -87
  237. package/node_modules/raw-body/index.js +0 -336
  238. package/node_modules/raw-body/package.json +0 -49
  239. package/node_modules/safer-buffer/LICENSE +0 -21
  240. package/node_modules/safer-buffer/Porting-Buffer.md +0 -268
  241. package/node_modules/safer-buffer/Readme.md +0 -156
  242. package/node_modules/safer-buffer/dangerous.js +0 -58
  243. package/node_modules/safer-buffer/package.json +0 -34
  244. package/node_modules/safer-buffer/safer.js +0 -77
  245. package/node_modules/safer-buffer/tests.js +0 -406
  246. package/node_modules/setprototypeof/LICENSE +0 -13
  247. package/node_modules/setprototypeof/README.md +0 -31
  248. package/node_modules/setprototypeof/index.d.ts +0 -2
  249. package/node_modules/setprototypeof/index.js +0 -17
  250. package/node_modules/setprototypeof/package.json +0 -38
  251. package/node_modules/setprototypeof/test/index.js +0 -24
  252. package/node_modules/statuses/HISTORY.md +0 -82
  253. package/node_modules/statuses/LICENSE +0 -23
  254. package/node_modules/statuses/README.md +0 -136
  255. package/node_modules/statuses/codes.json +0 -65
  256. package/node_modules/statuses/index.js +0 -146
  257. package/node_modules/statuses/package.json +0 -49
  258. package/node_modules/toidentifier/HISTORY.md +0 -9
  259. package/node_modules/toidentifier/LICENSE +0 -21
  260. package/node_modules/toidentifier/README.md +0 -61
  261. package/node_modules/toidentifier/index.js +0 -32
  262. package/node_modules/toidentifier/package.json +0 -38
  263. package/node_modules/unpipe/HISTORY.md +0 -4
  264. package/node_modules/unpipe/LICENSE +0 -22
  265. package/node_modules/unpipe/README.md +0 -43
  266. package/node_modules/unpipe/index.js +0 -69
  267. package/node_modules/unpipe/package.json +0 -27
  268. /package/dist/{lib → plugins}/withShopify.d.ts +0 -0
  269. /package/dist/umd/{lib → plugins}/withShopify.d.ts +0 -0
  270. /package/dist/umd/verification/{errors.d.ts → utils/errors.d.ts} +0 -0
  271. /package/dist/umd/verification/{rawbody.d.ts → utils/rawbody.d.ts} +0 -0
  272. /package/dist/verification/{errors.d.ts → utils/errors.d.ts} +0 -0
  273. /package/dist/verification/{rawbody.d.ts → utils/rawbody.d.ts} +0 -0
@@ -1,177 +0,0 @@
1
- "use strict";
2
- var Buffer = require("safer-buffer").Buffer;
3
-
4
- // Note: UTF16-LE (or UCS2) codec is Node.js native. See encodings/internal.js
5
-
6
- // == UTF16-BE codec. ==========================================================
7
-
8
- exports.utf16be = Utf16BECodec;
9
- function Utf16BECodec() {
10
- }
11
-
12
- Utf16BECodec.prototype.encoder = Utf16BEEncoder;
13
- Utf16BECodec.prototype.decoder = Utf16BEDecoder;
14
- Utf16BECodec.prototype.bomAware = true;
15
-
16
-
17
- // -- Encoding
18
-
19
- function Utf16BEEncoder() {
20
- }
21
-
22
- Utf16BEEncoder.prototype.write = function(str) {
23
- var buf = Buffer.from(str, 'ucs2');
24
- for (var i = 0; i < buf.length; i += 2) {
25
- var tmp = buf[i]; buf[i] = buf[i+1]; buf[i+1] = tmp;
26
- }
27
- return buf;
28
- }
29
-
30
- Utf16BEEncoder.prototype.end = function() {
31
- }
32
-
33
-
34
- // -- Decoding
35
-
36
- function Utf16BEDecoder() {
37
- this.overflowByte = -1;
38
- }
39
-
40
- Utf16BEDecoder.prototype.write = function(buf) {
41
- if (buf.length == 0)
42
- return '';
43
-
44
- var buf2 = Buffer.alloc(buf.length + 1),
45
- i = 0, j = 0;
46
-
47
- if (this.overflowByte !== -1) {
48
- buf2[0] = buf[0];
49
- buf2[1] = this.overflowByte;
50
- i = 1; j = 2;
51
- }
52
-
53
- for (; i < buf.length-1; i += 2, j+= 2) {
54
- buf2[j] = buf[i+1];
55
- buf2[j+1] = buf[i];
56
- }
57
-
58
- this.overflowByte = (i == buf.length-1) ? buf[buf.length-1] : -1;
59
-
60
- return buf2.slice(0, j).toString('ucs2');
61
- }
62
-
63
- Utf16BEDecoder.prototype.end = function() {
64
- }
65
-
66
-
67
- // == UTF-16 codec =============================================================
68
- // Decoder chooses automatically from UTF-16LE and UTF-16BE using BOM and space-based heuristic.
69
- // Defaults to UTF-16LE, as it's prevalent and default in Node.
70
- // http://en.wikipedia.org/wiki/UTF-16 and http://encoding.spec.whatwg.org/#utf-16le
71
- // Decoder default can be changed: iconv.decode(buf, 'utf16', {defaultEncoding: 'utf-16be'});
72
-
73
- // Encoder uses UTF-16LE and prepends BOM (which can be overridden with addBOM: false).
74
-
75
- exports.utf16 = Utf16Codec;
76
- function Utf16Codec(codecOptions, iconv) {
77
- this.iconv = iconv;
78
- }
79
-
80
- Utf16Codec.prototype.encoder = Utf16Encoder;
81
- Utf16Codec.prototype.decoder = Utf16Decoder;
82
-
83
-
84
- // -- Encoding (pass-through)
85
-
86
- function Utf16Encoder(options, codec) {
87
- options = options || {};
88
- if (options.addBOM === undefined)
89
- options.addBOM = true;
90
- this.encoder = codec.iconv.getEncoder('utf-16le', options);
91
- }
92
-
93
- Utf16Encoder.prototype.write = function(str) {
94
- return this.encoder.write(str);
95
- }
96
-
97
- Utf16Encoder.prototype.end = function() {
98
- return this.encoder.end();
99
- }
100
-
101
-
102
- // -- Decoding
103
-
104
- function Utf16Decoder(options, codec) {
105
- this.decoder = null;
106
- this.initialBytes = [];
107
- this.initialBytesLen = 0;
108
-
109
- this.options = options || {};
110
- this.iconv = codec.iconv;
111
- }
112
-
113
- Utf16Decoder.prototype.write = function(buf) {
114
- if (!this.decoder) {
115
- // Codec is not chosen yet. Accumulate initial bytes.
116
- this.initialBytes.push(buf);
117
- this.initialBytesLen += buf.length;
118
-
119
- if (this.initialBytesLen < 16) // We need more bytes to use space heuristic (see below)
120
- return '';
121
-
122
- // We have enough bytes -> detect endianness.
123
- var buf = Buffer.concat(this.initialBytes),
124
- encoding = detectEncoding(buf, this.options.defaultEncoding);
125
- this.decoder = this.iconv.getDecoder(encoding, this.options);
126
- this.initialBytes.length = this.initialBytesLen = 0;
127
- }
128
-
129
- return this.decoder.write(buf);
130
- }
131
-
132
- Utf16Decoder.prototype.end = function() {
133
- if (!this.decoder) {
134
- var buf = Buffer.concat(this.initialBytes),
135
- encoding = detectEncoding(buf, this.options.defaultEncoding);
136
- this.decoder = this.iconv.getDecoder(encoding, this.options);
137
-
138
- var res = this.decoder.write(buf),
139
- trail = this.decoder.end();
140
-
141
- return trail ? (res + trail) : res;
142
- }
143
- return this.decoder.end();
144
- }
145
-
146
- function detectEncoding(buf, defaultEncoding) {
147
- var enc = defaultEncoding || 'utf-16le';
148
-
149
- if (buf.length >= 2) {
150
- // Check BOM.
151
- if (buf[0] == 0xFE && buf[1] == 0xFF) // UTF-16BE BOM
152
- enc = 'utf-16be';
153
- else if (buf[0] == 0xFF && buf[1] == 0xFE) // UTF-16LE BOM
154
- enc = 'utf-16le';
155
- else {
156
- // No BOM found. Try to deduce encoding from initial content.
157
- // Most of the time, the content has ASCII chars (U+00**), but the opposite (U+**00) is uncommon.
158
- // So, we count ASCII as if it was LE or BE, and decide from that.
159
- var asciiCharsLE = 0, asciiCharsBE = 0, // Counts of chars in both positions
160
- _len = Math.min(buf.length - (buf.length % 2), 64); // Len is always even.
161
-
162
- for (var i = 0; i < _len; i += 2) {
163
- if (buf[i] === 0 && buf[i+1] !== 0) asciiCharsBE++;
164
- if (buf[i] !== 0 && buf[i+1] === 0) asciiCharsLE++;
165
- }
166
-
167
- if (asciiCharsBE > asciiCharsLE)
168
- enc = 'utf-16be';
169
- else if (asciiCharsBE < asciiCharsLE)
170
- enc = 'utf-16le';
171
- }
172
- }
173
-
174
- return enc;
175
- }
176
-
177
-
@@ -1,290 +0,0 @@
1
- "use strict";
2
- var Buffer = require("safer-buffer").Buffer;
3
-
4
- // UTF-7 codec, according to https://tools.ietf.org/html/rfc2152
5
- // See also below a UTF-7-IMAP codec, according to http://tools.ietf.org/html/rfc3501#section-5.1.3
6
-
7
- exports.utf7 = Utf7Codec;
8
- exports.unicode11utf7 = 'utf7'; // Alias UNICODE-1-1-UTF-7
9
- function Utf7Codec(codecOptions, iconv) {
10
- this.iconv = iconv;
11
- };
12
-
13
- Utf7Codec.prototype.encoder = Utf7Encoder;
14
- Utf7Codec.prototype.decoder = Utf7Decoder;
15
- Utf7Codec.prototype.bomAware = true;
16
-
17
-
18
- // -- Encoding
19
-
20
- var nonDirectChars = /[^A-Za-z0-9'\(\),-\.\/:\? \n\r\t]+/g;
21
-
22
- function Utf7Encoder(options, codec) {
23
- this.iconv = codec.iconv;
24
- }
25
-
26
- Utf7Encoder.prototype.write = function(str) {
27
- // Naive implementation.
28
- // Non-direct chars are encoded as "+<base64>-"; single "+" char is encoded as "+-".
29
- return Buffer.from(str.replace(nonDirectChars, function(chunk) {
30
- return "+" + (chunk === '+' ? '' :
31
- this.iconv.encode(chunk, 'utf16-be').toString('base64').replace(/=+$/, ''))
32
- + "-";
33
- }.bind(this)));
34
- }
35
-
36
- Utf7Encoder.prototype.end = function() {
37
- }
38
-
39
-
40
- // -- Decoding
41
-
42
- function Utf7Decoder(options, codec) {
43
- this.iconv = codec.iconv;
44
- this.inBase64 = false;
45
- this.base64Accum = '';
46
- }
47
-
48
- var base64Regex = /[A-Za-z0-9\/+]/;
49
- var base64Chars = [];
50
- for (var i = 0; i < 256; i++)
51
- base64Chars[i] = base64Regex.test(String.fromCharCode(i));
52
-
53
- var plusChar = '+'.charCodeAt(0),
54
- minusChar = '-'.charCodeAt(0),
55
- andChar = '&'.charCodeAt(0);
56
-
57
- Utf7Decoder.prototype.write = function(buf) {
58
- var res = "", lastI = 0,
59
- inBase64 = this.inBase64,
60
- base64Accum = this.base64Accum;
61
-
62
- // The decoder is more involved as we must handle chunks in stream.
63
-
64
- for (var i = 0; i < buf.length; i++) {
65
- if (!inBase64) { // We're in direct mode.
66
- // Write direct chars until '+'
67
- if (buf[i] == plusChar) {
68
- res += this.iconv.decode(buf.slice(lastI, i), "ascii"); // Write direct chars.
69
- lastI = i+1;
70
- inBase64 = true;
71
- }
72
- } else { // We decode base64.
73
- if (!base64Chars[buf[i]]) { // Base64 ended.
74
- if (i == lastI && buf[i] == minusChar) {// "+-" -> "+"
75
- res += "+";
76
- } else {
77
- var b64str = base64Accum + buf.slice(lastI, i).toString();
78
- res += this.iconv.decode(Buffer.from(b64str, 'base64'), "utf16-be");
79
- }
80
-
81
- if (buf[i] != minusChar) // Minus is absorbed after base64.
82
- i--;
83
-
84
- lastI = i+1;
85
- inBase64 = false;
86
- base64Accum = '';
87
- }
88
- }
89
- }
90
-
91
- if (!inBase64) {
92
- res += this.iconv.decode(buf.slice(lastI), "ascii"); // Write direct chars.
93
- } else {
94
- var b64str = base64Accum + buf.slice(lastI).toString();
95
-
96
- var canBeDecoded = b64str.length - (b64str.length % 8); // Minimal chunk: 2 quads -> 2x3 bytes -> 3 chars.
97
- base64Accum = b64str.slice(canBeDecoded); // The rest will be decoded in future.
98
- b64str = b64str.slice(0, canBeDecoded);
99
-
100
- res += this.iconv.decode(Buffer.from(b64str, 'base64'), "utf16-be");
101
- }
102
-
103
- this.inBase64 = inBase64;
104
- this.base64Accum = base64Accum;
105
-
106
- return res;
107
- }
108
-
109
- Utf7Decoder.prototype.end = function() {
110
- var res = "";
111
- if (this.inBase64 && this.base64Accum.length > 0)
112
- res = this.iconv.decode(Buffer.from(this.base64Accum, 'base64'), "utf16-be");
113
-
114
- this.inBase64 = false;
115
- this.base64Accum = '';
116
- return res;
117
- }
118
-
119
-
120
- // UTF-7-IMAP codec.
121
- // RFC3501 Sec. 5.1.3 Modified UTF-7 (http://tools.ietf.org/html/rfc3501#section-5.1.3)
122
- // Differences:
123
- // * Base64 part is started by "&" instead of "+"
124
- // * Direct characters are 0x20-0x7E, except "&" (0x26)
125
- // * In Base64, "," is used instead of "/"
126
- // * Base64 must not be used to represent direct characters.
127
- // * No implicit shift back from Base64 (should always end with '-')
128
- // * String must end in non-shifted position.
129
- // * "-&" while in base64 is not allowed.
130
-
131
-
132
- exports.utf7imap = Utf7IMAPCodec;
133
- function Utf7IMAPCodec(codecOptions, iconv) {
134
- this.iconv = iconv;
135
- };
136
-
137
- Utf7IMAPCodec.prototype.encoder = Utf7IMAPEncoder;
138
- Utf7IMAPCodec.prototype.decoder = Utf7IMAPDecoder;
139
- Utf7IMAPCodec.prototype.bomAware = true;
140
-
141
-
142
- // -- Encoding
143
-
144
- function Utf7IMAPEncoder(options, codec) {
145
- this.iconv = codec.iconv;
146
- this.inBase64 = false;
147
- this.base64Accum = Buffer.alloc(6);
148
- this.base64AccumIdx = 0;
149
- }
150
-
151
- Utf7IMAPEncoder.prototype.write = function(str) {
152
- var inBase64 = this.inBase64,
153
- base64Accum = this.base64Accum,
154
- base64AccumIdx = this.base64AccumIdx,
155
- buf = Buffer.alloc(str.length*5 + 10), bufIdx = 0;
156
-
157
- for (var i = 0; i < str.length; i++) {
158
- var uChar = str.charCodeAt(i);
159
- if (0x20 <= uChar && uChar <= 0x7E) { // Direct character or '&'.
160
- if (inBase64) {
161
- if (base64AccumIdx > 0) {
162
- bufIdx += buf.write(base64Accum.slice(0, base64AccumIdx).toString('base64').replace(/\//g, ',').replace(/=+$/, ''), bufIdx);
163
- base64AccumIdx = 0;
164
- }
165
-
166
- buf[bufIdx++] = minusChar; // Write '-', then go to direct mode.
167
- inBase64 = false;
168
- }
169
-
170
- if (!inBase64) {
171
- buf[bufIdx++] = uChar; // Write direct character
172
-
173
- if (uChar === andChar) // Ampersand -> '&-'
174
- buf[bufIdx++] = minusChar;
175
- }
176
-
177
- } else { // Non-direct character
178
- if (!inBase64) {
179
- buf[bufIdx++] = andChar; // Write '&', then go to base64 mode.
180
- inBase64 = true;
181
- }
182
- if (inBase64) {
183
- base64Accum[base64AccumIdx++] = uChar >> 8;
184
- base64Accum[base64AccumIdx++] = uChar & 0xFF;
185
-
186
- if (base64AccumIdx == base64Accum.length) {
187
- bufIdx += buf.write(base64Accum.toString('base64').replace(/\//g, ','), bufIdx);
188
- base64AccumIdx = 0;
189
- }
190
- }
191
- }
192
- }
193
-
194
- this.inBase64 = inBase64;
195
- this.base64AccumIdx = base64AccumIdx;
196
-
197
- return buf.slice(0, bufIdx);
198
- }
199
-
200
- Utf7IMAPEncoder.prototype.end = function() {
201
- var buf = Buffer.alloc(10), bufIdx = 0;
202
- if (this.inBase64) {
203
- if (this.base64AccumIdx > 0) {
204
- bufIdx += buf.write(this.base64Accum.slice(0, this.base64AccumIdx).toString('base64').replace(/\//g, ',').replace(/=+$/, ''), bufIdx);
205
- this.base64AccumIdx = 0;
206
- }
207
-
208
- buf[bufIdx++] = minusChar; // Write '-', then go to direct mode.
209
- this.inBase64 = false;
210
- }
211
-
212
- return buf.slice(0, bufIdx);
213
- }
214
-
215
-
216
- // -- Decoding
217
-
218
- function Utf7IMAPDecoder(options, codec) {
219
- this.iconv = codec.iconv;
220
- this.inBase64 = false;
221
- this.base64Accum = '';
222
- }
223
-
224
- var base64IMAPChars = base64Chars.slice();
225
- base64IMAPChars[','.charCodeAt(0)] = true;
226
-
227
- Utf7IMAPDecoder.prototype.write = function(buf) {
228
- var res = "", lastI = 0,
229
- inBase64 = this.inBase64,
230
- base64Accum = this.base64Accum;
231
-
232
- // The decoder is more involved as we must handle chunks in stream.
233
- // It is forgiving, closer to standard UTF-7 (for example, '-' is optional at the end).
234
-
235
- for (var i = 0; i < buf.length; i++) {
236
- if (!inBase64) { // We're in direct mode.
237
- // Write direct chars until '&'
238
- if (buf[i] == andChar) {
239
- res += this.iconv.decode(buf.slice(lastI, i), "ascii"); // Write direct chars.
240
- lastI = i+1;
241
- inBase64 = true;
242
- }
243
- } else { // We decode base64.
244
- if (!base64IMAPChars[buf[i]]) { // Base64 ended.
245
- if (i == lastI && buf[i] == minusChar) { // "&-" -> "&"
246
- res += "&";
247
- } else {
248
- var b64str = base64Accum + buf.slice(lastI, i).toString().replace(/,/g, '/');
249
- res += this.iconv.decode(Buffer.from(b64str, 'base64'), "utf16-be");
250
- }
251
-
252
- if (buf[i] != minusChar) // Minus may be absorbed after base64.
253
- i--;
254
-
255
- lastI = i+1;
256
- inBase64 = false;
257
- base64Accum = '';
258
- }
259
- }
260
- }
261
-
262
- if (!inBase64) {
263
- res += this.iconv.decode(buf.slice(lastI), "ascii"); // Write direct chars.
264
- } else {
265
- var b64str = base64Accum + buf.slice(lastI).toString().replace(/,/g, '/');
266
-
267
- var canBeDecoded = b64str.length - (b64str.length % 8); // Minimal chunk: 2 quads -> 2x3 bytes -> 3 chars.
268
- base64Accum = b64str.slice(canBeDecoded); // The rest will be decoded in future.
269
- b64str = b64str.slice(0, canBeDecoded);
270
-
271
- res += this.iconv.decode(Buffer.from(b64str, 'base64'), "utf16-be");
272
- }
273
-
274
- this.inBase64 = inBase64;
275
- this.base64Accum = base64Accum;
276
-
277
- return res;
278
- }
279
-
280
- Utf7IMAPDecoder.prototype.end = function() {
281
- var res = "";
282
- if (this.inBase64 && this.base64Accum.length > 0)
283
- res = this.iconv.decode(Buffer.from(this.base64Accum, 'base64'), "utf16-be");
284
-
285
- this.inBase64 = false;
286
- this.base64Accum = '';
287
- return res;
288
- }
289
-
290
-
@@ -1,52 +0,0 @@
1
- "use strict";
2
-
3
- var BOMChar = '\uFEFF';
4
-
5
- exports.PrependBOM = PrependBOMWrapper
6
- function PrependBOMWrapper(encoder, options) {
7
- this.encoder = encoder;
8
- this.addBOM = true;
9
- }
10
-
11
- PrependBOMWrapper.prototype.write = function(str) {
12
- if (this.addBOM) {
13
- str = BOMChar + str;
14
- this.addBOM = false;
15
- }
16
-
17
- return this.encoder.write(str);
18
- }
19
-
20
- PrependBOMWrapper.prototype.end = function() {
21
- return this.encoder.end();
22
- }
23
-
24
-
25
- //------------------------------------------------------------------------------
26
-
27
- exports.StripBOM = StripBOMWrapper;
28
- function StripBOMWrapper(decoder, options) {
29
- this.decoder = decoder;
30
- this.pass = false;
31
- this.options = options || {};
32
- }
33
-
34
- StripBOMWrapper.prototype.write = function(buf) {
35
- var res = this.decoder.write(buf);
36
- if (this.pass || !res)
37
- return res;
38
-
39
- if (res[0] === BOMChar) {
40
- res = res.slice(1);
41
- if (typeof this.options.stripBOM === 'function')
42
- this.options.stripBOM();
43
- }
44
-
45
- this.pass = true;
46
- return res;
47
- }
48
-
49
- StripBOMWrapper.prototype.end = function() {
50
- return this.decoder.end();
51
- }
52
-