@nocobase/plugin-backups 2.0.56

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 (380) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +99 -0
  3. package/client.d.ts +2 -0
  4. package/client.js +1 -0
  5. package/dist/client/components/BackupSettings.d.ts +2 -0
  6. package/dist/client/components/BackupsManagement.d.ts +2 -0
  7. package/dist/client/components/BackupsTable.d.ts +16 -0
  8. package/dist/client/components/NewBackup.d.ts +10 -0
  9. package/dist/client/components/RefreshBackups.d.ts +10 -0
  10. package/dist/client/components/RestoreFromBackup.d.ts +5 -0
  11. package/dist/client/components/RestoreFromLocal.d.ts +2 -0
  12. package/dist/client/constants.d.ts +1 -0
  13. package/dist/client/contexts.d.ts +17 -0
  14. package/dist/client/hooks/useBackupAppInfo.d.ts +8 -0
  15. package/dist/client/hooks/useCheckBackupMessage.d.ts +4 -0
  16. package/dist/client/hooks/useRestoreTask.d.ts +2 -0
  17. package/dist/client/index.d.ts +7 -0
  18. package/dist/client/index.js +10 -0
  19. package/dist/client/locale.d.ts +10 -0
  20. package/dist/externalVersion.js +32 -0
  21. package/dist/index.d.ts +2 -0
  22. package/dist/index.js +48 -0
  23. package/dist/locale/de-DE.json +52 -0
  24. package/dist/locale/en-US.json +52 -0
  25. package/dist/locale/es-ES.json +52 -0
  26. package/dist/locale/fr-FR.json +52 -0
  27. package/dist/locale/hu-HU.json +52 -0
  28. package/dist/locale/id-ID.json +52 -0
  29. package/dist/locale/it-IT.json +52 -0
  30. package/dist/locale/ja-JP.json +52 -0
  31. package/dist/locale/ko-KR.json +52 -0
  32. package/dist/locale/nl-NL.json +52 -0
  33. package/dist/locale/pt-BR.json +52 -0
  34. package/dist/locale/ru-RU.json +52 -0
  35. package/dist/locale/tr-TR.json +52 -0
  36. package/dist/locale/uk-UA.json +52 -0
  37. package/dist/locale/vi-VN.json +52 -0
  38. package/dist/locale/zh-CN.json +52 -0
  39. package/dist/locale/zh-TW.json +52 -0
  40. package/dist/node_modules/archiver/LICENSE +22 -0
  41. package/dist/node_modules/archiver/index.js +68 -0
  42. package/dist/node_modules/archiver/lib/core.js +974 -0
  43. package/dist/node_modules/archiver/lib/error.js +40 -0
  44. package/dist/node_modules/archiver/lib/plugins/json.js +110 -0
  45. package/dist/node_modules/archiver/lib/plugins/tar.js +167 -0
  46. package/dist/node_modules/archiver/lib/plugins/zip.js +120 -0
  47. package/dist/node_modules/archiver/node_modules/async/all.js +119 -0
  48. package/dist/node_modules/archiver/node_modules/async/allLimit.js +46 -0
  49. package/dist/node_modules/archiver/node_modules/async/allSeries.js +45 -0
  50. package/dist/node_modules/archiver/node_modules/async/any.js +122 -0
  51. package/dist/node_modules/archiver/node_modules/async/anyLimit.js +47 -0
  52. package/dist/node_modules/archiver/node_modules/async/anySeries.js +46 -0
  53. package/dist/node_modules/archiver/node_modules/async/apply.js +11 -0
  54. package/dist/node_modules/archiver/node_modules/async/applyEach.js +57 -0
  55. package/dist/node_modules/archiver/node_modules/async/applyEachSeries.js +37 -0
  56. package/dist/node_modules/archiver/node_modules/async/asyncify.js +118 -0
  57. package/dist/node_modules/archiver/node_modules/async/auto.js +333 -0
  58. package/dist/node_modules/archiver/node_modules/async/autoInject.js +182 -0
  59. package/dist/node_modules/archiver/node_modules/async/bower.json +17 -0
  60. package/dist/node_modules/archiver/node_modules/async/cargo.js +63 -0
  61. package/dist/node_modules/archiver/node_modules/async/cargoQueue.js +71 -0
  62. package/dist/node_modules/archiver/node_modules/async/compose.js +55 -0
  63. package/dist/node_modules/archiver/node_modules/async/concat.js +115 -0
  64. package/dist/node_modules/archiver/node_modules/async/concatLimit.js +60 -0
  65. package/dist/node_modules/archiver/node_modules/async/concatSeries.js +41 -0
  66. package/dist/node_modules/archiver/node_modules/async/constant.js +14 -0
  67. package/dist/node_modules/archiver/node_modules/async/detect.js +96 -0
  68. package/dist/node_modules/archiver/node_modules/async/detectLimit.js +48 -0
  69. package/dist/node_modules/archiver/node_modules/async/detectSeries.js +47 -0
  70. package/dist/node_modules/archiver/node_modules/async/dir.js +43 -0
  71. package/dist/node_modules/archiver/node_modules/async/dist/async.js +6062 -0
  72. package/dist/node_modules/archiver/node_modules/async/dist/async.min.js +1 -0
  73. package/dist/node_modules/archiver/node_modules/async/doDuring.js +68 -0
  74. package/dist/node_modules/archiver/node_modules/async/doUntil.js +46 -0
  75. package/dist/node_modules/archiver/node_modules/async/doWhilst.js +68 -0
  76. package/dist/node_modules/archiver/node_modules/async/during.js +78 -0
  77. package/dist/node_modules/archiver/node_modules/async/each.js +129 -0
  78. package/dist/node_modules/archiver/node_modules/async/eachLimit.js +50 -0
  79. package/dist/node_modules/archiver/node_modules/async/eachOf.js +185 -0
  80. package/dist/node_modules/archiver/node_modules/async/eachOfLimit.js +47 -0
  81. package/dist/node_modules/archiver/node_modules/async/eachOfSeries.js +39 -0
  82. package/dist/node_modules/archiver/node_modules/async/eachSeries.js +44 -0
  83. package/dist/node_modules/archiver/node_modules/async/ensureAsync.js +67 -0
  84. package/dist/node_modules/archiver/node_modules/async/every.js +119 -0
  85. package/dist/node_modules/archiver/node_modules/async/everyLimit.js +46 -0
  86. package/dist/node_modules/archiver/node_modules/async/everySeries.js +45 -0
  87. package/dist/node_modules/archiver/node_modules/async/filter.js +93 -0
  88. package/dist/node_modules/archiver/node_modules/async/filterLimit.js +45 -0
  89. package/dist/node_modules/archiver/node_modules/async/filterSeries.js +43 -0
  90. package/dist/node_modules/archiver/node_modules/async/find.js +96 -0
  91. package/dist/node_modules/archiver/node_modules/async/findLimit.js +48 -0
  92. package/dist/node_modules/archiver/node_modules/async/findSeries.js +47 -0
  93. package/dist/node_modules/archiver/node_modules/async/flatMap.js +115 -0
  94. package/dist/node_modules/archiver/node_modules/async/flatMapLimit.js +60 -0
  95. package/dist/node_modules/archiver/node_modules/async/flatMapSeries.js +41 -0
  96. package/dist/node_modules/archiver/node_modules/async/foldl.js +153 -0
  97. package/dist/node_modules/archiver/node_modules/async/foldr.js +41 -0
  98. package/dist/node_modules/archiver/node_modules/async/forEach.js +129 -0
  99. package/dist/node_modules/archiver/node_modules/async/forEachLimit.js +50 -0
  100. package/dist/node_modules/archiver/node_modules/async/forEachOf.js +185 -0
  101. package/dist/node_modules/archiver/node_modules/async/forEachOfLimit.js +47 -0
  102. package/dist/node_modules/archiver/node_modules/async/forEachOfSeries.js +39 -0
  103. package/dist/node_modules/archiver/node_modules/async/forEachSeries.js +44 -0
  104. package/dist/node_modules/archiver/node_modules/async/forever.js +68 -0
  105. package/dist/node_modules/archiver/node_modules/async/groupBy.js +108 -0
  106. package/dist/node_modules/archiver/node_modules/async/groupByLimit.js +71 -0
  107. package/dist/node_modules/archiver/node_modules/async/groupBySeries.js +36 -0
  108. package/dist/node_modules/archiver/node_modules/async/index.js +588 -0
  109. package/dist/node_modules/archiver/node_modules/async/inject.js +153 -0
  110. package/dist/node_modules/archiver/node_modules/async/internal/DoublyLinkedList.js +92 -0
  111. package/dist/node_modules/archiver/node_modules/async/internal/Heap.js +120 -0
  112. package/dist/node_modules/archiver/node_modules/async/internal/applyEach.js +29 -0
  113. package/dist/node_modules/archiver/node_modules/async/internal/asyncEachOfLimit.js +75 -0
  114. package/dist/node_modules/archiver/node_modules/async/internal/awaitify.js +28 -0
  115. package/dist/node_modules/archiver/node_modules/async/internal/breakLoop.js +10 -0
  116. package/dist/node_modules/archiver/node_modules/async/internal/consoleFunc.js +31 -0
  117. package/dist/node_modules/archiver/node_modules/async/internal/createTester.js +40 -0
  118. package/dist/node_modules/archiver/node_modules/async/internal/eachOfLimit.js +90 -0
  119. package/dist/node_modules/archiver/node_modules/async/internal/filter.js +55 -0
  120. package/dist/node_modules/archiver/node_modules/async/internal/getIterator.js +11 -0
  121. package/dist/node_modules/archiver/node_modules/async/internal/initialParams.js +14 -0
  122. package/dist/node_modules/archiver/node_modules/async/internal/isArrayLike.js +10 -0
  123. package/dist/node_modules/archiver/node_modules/async/internal/iterator.js +57 -0
  124. package/dist/node_modules/archiver/node_modules/async/internal/map.js +30 -0
  125. package/dist/node_modules/archiver/node_modules/async/internal/once.js +17 -0
  126. package/dist/node_modules/archiver/node_modules/async/internal/onlyOnce.js +15 -0
  127. package/dist/node_modules/archiver/node_modules/async/internal/parallel.js +34 -0
  128. package/dist/node_modules/archiver/node_modules/async/internal/promiseCallback.js +23 -0
  129. package/dist/node_modules/archiver/node_modules/async/internal/queue.js +294 -0
  130. package/dist/node_modules/archiver/node_modules/async/internal/range.js +14 -0
  131. package/dist/node_modules/archiver/node_modules/async/internal/reject.js +26 -0
  132. package/dist/node_modules/archiver/node_modules/async/internal/setImmediate.js +34 -0
  133. package/dist/node_modules/archiver/node_modules/async/internal/withoutIndex.js +10 -0
  134. package/dist/node_modules/archiver/node_modules/async/internal/wrapAsync.js +34 -0
  135. package/dist/node_modules/archiver/node_modules/async/log.js +41 -0
  136. package/dist/node_modules/archiver/node_modules/async/map.js +142 -0
  137. package/dist/node_modules/archiver/node_modules/async/mapLimit.js +45 -0
  138. package/dist/node_modules/archiver/node_modules/async/mapSeries.js +44 -0
  139. package/dist/node_modules/archiver/node_modules/async/mapValues.js +152 -0
  140. package/dist/node_modules/archiver/node_modules/async/mapValuesLimit.js +61 -0
  141. package/dist/node_modules/archiver/node_modules/async/mapValuesSeries.js +37 -0
  142. package/dist/node_modules/archiver/node_modules/async/memoize.js +91 -0
  143. package/dist/node_modules/archiver/node_modules/async/nextTick.js +52 -0
  144. package/dist/node_modules/archiver/node_modules/async/package.json +75 -0
  145. package/dist/node_modules/archiver/node_modules/async/parallel.js +180 -0
  146. package/dist/node_modules/archiver/node_modules/async/parallelLimit.js +41 -0
  147. package/dist/node_modules/archiver/node_modules/async/priorityQueue.js +60 -0
  148. package/dist/node_modules/archiver/node_modules/async/queue.js +24 -0
  149. package/dist/node_modules/archiver/node_modules/async/race.js +67 -0
  150. package/dist/node_modules/archiver/node_modules/async/reduce.js +153 -0
  151. package/dist/node_modules/archiver/node_modules/async/reduceRight.js +41 -0
  152. package/dist/node_modules/archiver/node_modules/async/reflect.js +78 -0
  153. package/dist/node_modules/archiver/node_modules/async/reflectAll.js +93 -0
  154. package/dist/node_modules/archiver/node_modules/async/reject.js +87 -0
  155. package/dist/node_modules/archiver/node_modules/async/rejectLimit.js +45 -0
  156. package/dist/node_modules/archiver/node_modules/async/rejectSeries.js +43 -0
  157. package/dist/node_modules/archiver/node_modules/async/retry.js +159 -0
  158. package/dist/node_modules/archiver/node_modules/async/retryable.js +77 -0
  159. package/dist/node_modules/archiver/node_modules/async/select.js +93 -0
  160. package/dist/node_modules/archiver/node_modules/async/selectLimit.js +45 -0
  161. package/dist/node_modules/archiver/node_modules/async/selectSeries.js +43 -0
  162. package/dist/node_modules/archiver/node_modules/async/seq.js +79 -0
  163. package/dist/node_modules/archiver/node_modules/async/series.js +186 -0
  164. package/dist/node_modules/archiver/node_modules/async/setImmediate.js +45 -0
  165. package/dist/node_modules/archiver/node_modules/async/some.js +122 -0
  166. package/dist/node_modules/archiver/node_modules/async/someLimit.js +47 -0
  167. package/dist/node_modules/archiver/node_modules/async/someSeries.js +46 -0
  168. package/dist/node_modules/archiver/node_modules/async/sortBy.js +190 -0
  169. package/dist/node_modules/archiver/node_modules/async/timeout.js +89 -0
  170. package/dist/node_modules/archiver/node_modules/async/times.js +50 -0
  171. package/dist/node_modules/archiver/node_modules/async/timesLimit.js +43 -0
  172. package/dist/node_modules/archiver/node_modules/async/timesSeries.js +32 -0
  173. package/dist/node_modules/archiver/node_modules/async/transform.js +173 -0
  174. package/dist/node_modules/archiver/node_modules/async/tryEach.js +78 -0
  175. package/dist/node_modules/archiver/node_modules/async/unmemoize.js +25 -0
  176. package/dist/node_modules/archiver/node_modules/async/until.js +61 -0
  177. package/dist/node_modules/archiver/node_modules/async/waterfall.js +105 -0
  178. package/dist/node_modules/archiver/node_modules/async/whilst.js +78 -0
  179. package/dist/node_modules/archiver/node_modules/async/wrapSync.js +118 -0
  180. package/dist/node_modules/archiver/node_modules/readable-stream/errors-browser.js +127 -0
  181. package/dist/node_modules/archiver/node_modules/readable-stream/errors.js +116 -0
  182. package/dist/node_modules/archiver/node_modules/readable-stream/experimentalWarning.js +17 -0
  183. package/dist/node_modules/archiver/node_modules/readable-stream/lib/_stream_duplex.js +126 -0
  184. package/dist/node_modules/archiver/node_modules/readable-stream/lib/_stream_passthrough.js +37 -0
  185. package/dist/node_modules/archiver/node_modules/readable-stream/lib/_stream_readable.js +1027 -0
  186. package/dist/node_modules/archiver/node_modules/readable-stream/lib/_stream_transform.js +190 -0
  187. package/dist/node_modules/archiver/node_modules/readable-stream/lib/_stream_writable.js +641 -0
  188. package/dist/node_modules/archiver/node_modules/readable-stream/lib/internal/streams/async_iterator.js +180 -0
  189. package/dist/node_modules/archiver/node_modules/readable-stream/lib/internal/streams/buffer_list.js +183 -0
  190. package/dist/node_modules/archiver/node_modules/readable-stream/lib/internal/streams/destroy.js +96 -0
  191. package/dist/node_modules/archiver/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +86 -0
  192. package/dist/node_modules/archiver/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
  193. package/dist/node_modules/archiver/node_modules/readable-stream/lib/internal/streams/from.js +52 -0
  194. package/dist/node_modules/archiver/node_modules/readable-stream/lib/internal/streams/pipeline.js +86 -0
  195. package/dist/node_modules/archiver/node_modules/readable-stream/lib/internal/streams/state.js +22 -0
  196. package/dist/node_modules/archiver/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
  197. package/dist/node_modules/archiver/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
  198. package/dist/node_modules/archiver/node_modules/readable-stream/package.json +68 -0
  199. package/dist/node_modules/archiver/node_modules/readable-stream/readable-browser.js +9 -0
  200. package/dist/node_modules/archiver/node_modules/readable-stream/readable.js +16 -0
  201. package/dist/node_modules/archiver/node_modules/tar-stream/extract.js +257 -0
  202. package/dist/node_modules/archiver/node_modules/tar-stream/headers.js +295 -0
  203. package/dist/node_modules/archiver/node_modules/tar-stream/index.js +2 -0
  204. package/dist/node_modules/archiver/node_modules/tar-stream/pack.js +255 -0
  205. package/dist/node_modules/archiver/node_modules/tar-stream/package.json +58 -0
  206. package/dist/node_modules/archiver/node_modules/tar-stream/sandbox.js +11 -0
  207. package/dist/node_modules/archiver/package.json +1 -0
  208. package/dist/node_modules/cron-parser/.eslintrc.json +15 -0
  209. package/dist/node_modules/cron-parser/.travis.yml +7 -0
  210. package/dist/node_modules/cron-parser/LICENSE +21 -0
  211. package/dist/node_modules/cron-parser/component.json +11 -0
  212. package/dist/node_modules/cron-parser/index.d.ts +1 -0
  213. package/dist/node_modules/cron-parser/lib/date.js +252 -0
  214. package/dist/node_modules/cron-parser/lib/expression.js +983 -0
  215. package/dist/node_modules/cron-parser/lib/field_compactor.js +70 -0
  216. package/dist/node_modules/cron-parser/lib/field_stringify.js +38 -0
  217. package/dist/node_modules/cron-parser/lib/parser.js +1 -0
  218. package/dist/node_modules/cron-parser/node_modules/luxon/build/amd/luxon.js +8489 -0
  219. package/dist/node_modules/cron-parser/node_modules/luxon/build/cjs-browser/luxon.js +8487 -0
  220. package/dist/node_modules/cron-parser/node_modules/luxon/build/global/luxon.js +8490 -0
  221. package/dist/node_modules/cron-parser/node_modules/luxon/build/global/luxon.min.js +1 -0
  222. package/dist/node_modules/cron-parser/node_modules/luxon/build/node/luxon.js +7522 -0
  223. package/dist/node_modules/cron-parser/node_modules/luxon/package.json +96 -0
  224. package/dist/node_modules/cron-parser/node_modules/luxon/src/datetime.js +2169 -0
  225. package/dist/node_modules/cron-parser/node_modules/luxon/src/duration.js +880 -0
  226. package/dist/node_modules/cron-parser/node_modules/luxon/src/errors.js +61 -0
  227. package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/conversions.js +157 -0
  228. package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/diff.js +80 -0
  229. package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/digits.js +76 -0
  230. package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/english.js +233 -0
  231. package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/formats.js +191 -0
  232. package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/formatter.js +386 -0
  233. package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/invalid.js +14 -0
  234. package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/locale.js +482 -0
  235. package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/regexParser.js +335 -0
  236. package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/tokenParser.js +424 -0
  237. package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/util.js +292 -0
  238. package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/zoneUtil.js +36 -0
  239. package/dist/node_modules/cron-parser/node_modules/luxon/src/info.js +193 -0
  240. package/dist/node_modules/cron-parser/node_modules/luxon/src/interval.js +602 -0
  241. package/dist/node_modules/cron-parser/node_modules/luxon/src/luxon.js +26 -0
  242. package/dist/node_modules/cron-parser/node_modules/luxon/src/luxonFilled.js +13 -0
  243. package/dist/node_modules/cron-parser/node_modules/luxon/src/settings.js +137 -0
  244. package/dist/node_modules/cron-parser/node_modules/luxon/src/zone.js +88 -0
  245. package/dist/node_modules/cron-parser/node_modules/luxon/src/zones/IANAZone.js +191 -0
  246. package/dist/node_modules/cron-parser/node_modules/luxon/src/zones/fixedOffsetZone.js +94 -0
  247. package/dist/node_modules/cron-parser/node_modules/luxon/src/zones/invalidZone.js +53 -0
  248. package/dist/node_modules/cron-parser/node_modules/luxon/src/zones/localZone.js +63 -0
  249. package/dist/node_modules/cron-parser/package.json +1 -0
  250. package/dist/node_modules/cron-parser/test/31_of_month.js +17 -0
  251. package/dist/node_modules/cron-parser/test/bug.js +29 -0
  252. package/dist/node_modules/cron-parser/test/crondate.js +16 -0
  253. package/dist/node_modules/cron-parser/test/crontab.example +7 -0
  254. package/dist/node_modules/cron-parser/test/empty_around_comma.js +22 -0
  255. package/dist/node_modules/cron-parser/test/expression.js +1489 -0
  256. package/dist/node_modules/cron-parser/test/field_compactor.js +250 -0
  257. package/dist/node_modules/cron-parser/test/field_stringify.js +84 -0
  258. package/dist/node_modules/cron-parser/test/fields.js +32 -0
  259. package/dist/node_modules/cron-parser/test/increment_on_first_iteration.js +22 -0
  260. package/dist/node_modules/cron-parser/test/index-ts3.test-d.ts +133 -0
  261. package/dist/node_modules/cron-parser/test/index.test-d.ts +138 -0
  262. package/dist/node_modules/cron-parser/test/leap_year.js +17 -0
  263. package/dist/node_modules/cron-parser/test/parser.js +46 -0
  264. package/dist/node_modules/cron-parser/test/parser_crondate_formats.js +145 -0
  265. package/dist/node_modules/cron-parser/test/parser_day_of_month.js +169 -0
  266. package/dist/node_modules/cron-parser/test/prev_date.js +32 -0
  267. package/dist/node_modules/cron-parser/test/stringify.js +402 -0
  268. package/dist/node_modules/cron-parser/test/timezone.js +422 -0
  269. package/dist/node_modules/cron-parser/types/common.d.ts +131 -0
  270. package/dist/node_modules/cron-parser/types/index.d.ts +45 -0
  271. package/dist/node_modules/cron-parser/types/ts3/index.d.ts +28 -0
  272. package/dist/node_modules/fs-extra/LICENSE +15 -0
  273. package/dist/node_modules/fs-extra/lib/copy/copy.js +232 -0
  274. package/dist/node_modules/fs-extra/lib/copy/index.js +6 -0
  275. package/dist/node_modules/fs-extra/lib/copy-sync/copy-sync.js +166 -0
  276. package/dist/node_modules/fs-extra/lib/copy-sync/index.js +5 -0
  277. package/dist/node_modules/fs-extra/lib/empty/index.js +48 -0
  278. package/dist/node_modules/fs-extra/lib/ensure/file.js +69 -0
  279. package/dist/node_modules/fs-extra/lib/ensure/index.js +23 -0
  280. package/dist/node_modules/fs-extra/lib/ensure/link.js +61 -0
  281. package/dist/node_modules/fs-extra/lib/ensure/symlink-paths.js +99 -0
  282. package/dist/node_modules/fs-extra/lib/ensure/symlink-type.js +31 -0
  283. package/dist/node_modules/fs-extra/lib/ensure/symlink.js +63 -0
  284. package/dist/node_modules/fs-extra/lib/fs/index.js +130 -0
  285. package/dist/node_modules/fs-extra/lib/index.js +1 -0
  286. package/dist/node_modules/fs-extra/lib/json/index.js +16 -0
  287. package/dist/node_modules/fs-extra/lib/json/jsonfile.js +11 -0
  288. package/dist/node_modules/fs-extra/lib/json/output-json-sync.js +12 -0
  289. package/dist/node_modules/fs-extra/lib/json/output-json.js +12 -0
  290. package/dist/node_modules/fs-extra/lib/mkdirs/index.js +14 -0
  291. package/dist/node_modules/fs-extra/lib/mkdirs/make-dir.js +141 -0
  292. package/dist/node_modules/fs-extra/lib/move/index.js +6 -0
  293. package/dist/node_modules/fs-extra/lib/move/move.js +65 -0
  294. package/dist/node_modules/fs-extra/lib/move-sync/index.js +5 -0
  295. package/dist/node_modules/fs-extra/lib/move-sync/move-sync.js +47 -0
  296. package/dist/node_modules/fs-extra/lib/output/index.js +40 -0
  297. package/dist/node_modules/fs-extra/lib/path-exists/index.js +12 -0
  298. package/dist/node_modules/fs-extra/lib/remove/index.js +9 -0
  299. package/dist/node_modules/fs-extra/lib/remove/rimraf.js +302 -0
  300. package/dist/node_modules/fs-extra/lib/util/stat.js +139 -0
  301. package/dist/node_modules/fs-extra/lib/util/utimes.js +26 -0
  302. package/dist/node_modules/fs-extra/package.json +1 -0
  303. package/dist/node_modules/semver/LICENSE +15 -0
  304. package/dist/node_modules/semver/bin/semver.js +197 -0
  305. package/dist/node_modules/semver/classes/comparator.js +141 -0
  306. package/dist/node_modules/semver/classes/index.js +5 -0
  307. package/dist/node_modules/semver/classes/range.js +539 -0
  308. package/dist/node_modules/semver/classes/semver.js +302 -0
  309. package/dist/node_modules/semver/functions/clean.js +6 -0
  310. package/dist/node_modules/semver/functions/cmp.js +52 -0
  311. package/dist/node_modules/semver/functions/coerce.js +60 -0
  312. package/dist/node_modules/semver/functions/compare-build.js +7 -0
  313. package/dist/node_modules/semver/functions/compare-loose.js +3 -0
  314. package/dist/node_modules/semver/functions/compare.js +5 -0
  315. package/dist/node_modules/semver/functions/diff.js +65 -0
  316. package/dist/node_modules/semver/functions/eq.js +3 -0
  317. package/dist/node_modules/semver/functions/gt.js +3 -0
  318. package/dist/node_modules/semver/functions/gte.js +3 -0
  319. package/dist/node_modules/semver/functions/inc.js +19 -0
  320. package/dist/node_modules/semver/functions/lt.js +3 -0
  321. package/dist/node_modules/semver/functions/lte.js +3 -0
  322. package/dist/node_modules/semver/functions/major.js +3 -0
  323. package/dist/node_modules/semver/functions/minor.js +3 -0
  324. package/dist/node_modules/semver/functions/neq.js +3 -0
  325. package/dist/node_modules/semver/functions/parse.js +16 -0
  326. package/dist/node_modules/semver/functions/patch.js +3 -0
  327. package/dist/node_modules/semver/functions/prerelease.js +6 -0
  328. package/dist/node_modules/semver/functions/rcompare.js +3 -0
  329. package/dist/node_modules/semver/functions/rsort.js +3 -0
  330. package/dist/node_modules/semver/functions/satisfies.js +10 -0
  331. package/dist/node_modules/semver/functions/sort.js +3 -0
  332. package/dist/node_modules/semver/functions/valid.js +6 -0
  333. package/dist/node_modules/semver/index.js +1 -0
  334. package/dist/node_modules/semver/internal/constants.js +35 -0
  335. package/dist/node_modules/semver/internal/debug.js +9 -0
  336. package/dist/node_modules/semver/internal/identifiers.js +23 -0
  337. package/dist/node_modules/semver/internal/parse-options.js +15 -0
  338. package/dist/node_modules/semver/internal/re.js +217 -0
  339. package/dist/node_modules/semver/package.json +1 -0
  340. package/dist/node_modules/semver/preload.js +2 -0
  341. package/dist/node_modules/semver/range.bnf +16 -0
  342. package/dist/node_modules/semver/ranges/gtr.js +4 -0
  343. package/dist/node_modules/semver/ranges/intersects.js +7 -0
  344. package/dist/node_modules/semver/ranges/ltr.js +4 -0
  345. package/dist/node_modules/semver/ranges/max-satisfying.js +25 -0
  346. package/dist/node_modules/semver/ranges/min-satisfying.js +24 -0
  347. package/dist/node_modules/semver/ranges/min-version.js +61 -0
  348. package/dist/node_modules/semver/ranges/outside.js +80 -0
  349. package/dist/node_modules/semver/ranges/simplify.js +47 -0
  350. package/dist/node_modules/semver/ranges/subset.js +247 -0
  351. package/dist/node_modules/semver/ranges/to-comparators.js +8 -0
  352. package/dist/node_modules/semver/ranges/valid.js +11 -0
  353. package/dist/node_modules/yauzl/LICENSE +21 -0
  354. package/dist/node_modules/yauzl/fd-slicer.js +314 -0
  355. package/dist/node_modules/yauzl/index.js +1 -0
  356. package/dist/node_modules/yauzl/package.json +1 -0
  357. package/dist/server/adapters/database.d.ts +9 -0
  358. package/dist/server/adapters/database.js +486 -0
  359. package/dist/server/collections/backup-settings.d.ts +2 -0
  360. package/dist/server/collections/backup-settings.js +67 -0
  361. package/dist/server/index.d.ts +1 -0
  362. package/dist/server/index.js +42 -0
  363. package/dist/server/managers/backup.d.ts +41 -0
  364. package/dist/server/managers/backup.js +448 -0
  365. package/dist/server/managers/restore.d.ts +24 -0
  366. package/dist/server/managers/restore.js +434 -0
  367. package/dist/server/plugin.d.ts +26 -0
  368. package/dist/server/plugin.js +251 -0
  369. package/dist/server/resourcers/backup-cli.d.ts +23 -0
  370. package/dist/server/resourcers/backup-cli.js +237 -0
  371. package/dist/server/resourcers/backups.d.ts +24 -0
  372. package/dist/server/resourcers/backups.js +192 -0
  373. package/dist/server/types.d.ts +12 -0
  374. package/dist/server/types.js +24 -0
  375. package/dist/server/utils.d.ts +48 -0
  376. package/dist/server/utils.js +323 -0
  377. package/dist/swagger/index.json +313 -0
  378. package/package.json +51 -0
  379. package/server.d.ts +2 -0
  380. package/server.js +1 -0
@@ -0,0 +1,424 @@
1
+ import { parseMillis, isUndefined, untruncateYear, signedOffset, hasOwnProperty } from "./util.js";
2
+ import Formatter from "./formatter.js";
3
+ import FixedOffsetZone from "../zones/fixedOffsetZone.js";
4
+ import IANAZone from "../zones/IANAZone.js";
5
+ import DateTime from "../datetime.js";
6
+ import { digitRegex, parseDigits } from "./digits.js";
7
+ import { ConflictingSpecificationError } from "../errors.js";
8
+
9
+ const MISSING_FTP = "missing Intl.DateTimeFormat.formatToParts support";
10
+
11
+ function intUnit(regex, post = i => i) {
12
+ return { regex, deser: ([s]) => post(parseDigits(s)) };
13
+ }
14
+
15
+ const NBSP = String.fromCharCode(160);
16
+ const spaceOrNBSP = `( |${NBSP})`;
17
+ const spaceOrNBSPRegExp = new RegExp(spaceOrNBSP, "g");
18
+
19
+ function fixListRegex(s) {
20
+ // make dots optional and also make them literal
21
+ // make space and non breakable space characters interchangeable
22
+ return s.replace(/\./g, "\\.?").replace(spaceOrNBSPRegExp, spaceOrNBSP);
23
+ }
24
+
25
+ function stripInsensitivities(s) {
26
+ return s
27
+ .replace(/\./g, "") // ignore dots that were made optional
28
+ .replace(spaceOrNBSPRegExp, " ") // interchange space and nbsp
29
+ .toLowerCase();
30
+ }
31
+
32
+ function oneOf(strings, startIndex) {
33
+ if (strings === null) {
34
+ return null;
35
+ } else {
36
+ return {
37
+ regex: RegExp(strings.map(fixListRegex).join("|")),
38
+ deser: ([s]) =>
39
+ strings.findIndex(i => stripInsensitivities(s) === stripInsensitivities(i)) + startIndex
40
+ };
41
+ }
42
+ }
43
+
44
+ function offset(regex, groups) {
45
+ return { regex, deser: ([, h, m]) => signedOffset(h, m), groups };
46
+ }
47
+
48
+ function simple(regex) {
49
+ return { regex, deser: ([s]) => s };
50
+ }
51
+
52
+ function escapeToken(value) {
53
+ // eslint-disable-next-line no-useless-escape
54
+ return value.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&");
55
+ }
56
+
57
+ function unitForToken(token, loc) {
58
+ const one = digitRegex(loc),
59
+ two = digitRegex(loc, "{2}"),
60
+ three = digitRegex(loc, "{3}"),
61
+ four = digitRegex(loc, "{4}"),
62
+ six = digitRegex(loc, "{6}"),
63
+ oneOrTwo = digitRegex(loc, "{1,2}"),
64
+ oneToThree = digitRegex(loc, "{1,3}"),
65
+ oneToSix = digitRegex(loc, "{1,6}"),
66
+ oneToNine = digitRegex(loc, "{1,9}"),
67
+ twoToFour = digitRegex(loc, "{2,4}"),
68
+ fourToSix = digitRegex(loc, "{4,6}"),
69
+ literal = t => ({ regex: RegExp(escapeToken(t.val)), deser: ([s]) => s, literal: true }),
70
+ unitate = t => {
71
+ if (token.literal) {
72
+ return literal(t);
73
+ }
74
+ switch (t.val) {
75
+ // era
76
+ case "G":
77
+ return oneOf(loc.eras("short", false), 0);
78
+ case "GG":
79
+ return oneOf(loc.eras("long", false), 0);
80
+ // years
81
+ case "y":
82
+ return intUnit(oneToSix);
83
+ case "yy":
84
+ return intUnit(twoToFour, untruncateYear);
85
+ case "yyyy":
86
+ return intUnit(four);
87
+ case "yyyyy":
88
+ return intUnit(fourToSix);
89
+ case "yyyyyy":
90
+ return intUnit(six);
91
+ // months
92
+ case "M":
93
+ return intUnit(oneOrTwo);
94
+ case "MM":
95
+ return intUnit(two);
96
+ case "MMM":
97
+ return oneOf(loc.months("short", true, false), 1);
98
+ case "MMMM":
99
+ return oneOf(loc.months("long", true, false), 1);
100
+ case "L":
101
+ return intUnit(oneOrTwo);
102
+ case "LL":
103
+ return intUnit(two);
104
+ case "LLL":
105
+ return oneOf(loc.months("short", false, false), 1);
106
+ case "LLLL":
107
+ return oneOf(loc.months("long", false, false), 1);
108
+ // dates
109
+ case "d":
110
+ return intUnit(oneOrTwo);
111
+ case "dd":
112
+ return intUnit(two);
113
+ // ordinals
114
+ case "o":
115
+ return intUnit(oneToThree);
116
+ case "ooo":
117
+ return intUnit(three);
118
+ // time
119
+ case "HH":
120
+ return intUnit(two);
121
+ case "H":
122
+ return intUnit(oneOrTwo);
123
+ case "hh":
124
+ return intUnit(two);
125
+ case "h":
126
+ return intUnit(oneOrTwo);
127
+ case "mm":
128
+ return intUnit(two);
129
+ case "m":
130
+ return intUnit(oneOrTwo);
131
+ case "q":
132
+ return intUnit(oneOrTwo);
133
+ case "qq":
134
+ return intUnit(two);
135
+ case "s":
136
+ return intUnit(oneOrTwo);
137
+ case "ss":
138
+ return intUnit(two);
139
+ case "S":
140
+ return intUnit(oneToThree);
141
+ case "SSS":
142
+ return intUnit(three);
143
+ case "u":
144
+ return simple(oneToNine);
145
+ // meridiem
146
+ case "a":
147
+ return oneOf(loc.meridiems(), 0);
148
+ // weekYear (k)
149
+ case "kkkk":
150
+ return intUnit(four);
151
+ case "kk":
152
+ return intUnit(twoToFour, untruncateYear);
153
+ // weekNumber (W)
154
+ case "W":
155
+ return intUnit(oneOrTwo);
156
+ case "WW":
157
+ return intUnit(two);
158
+ // weekdays
159
+ case "E":
160
+ case "c":
161
+ return intUnit(one);
162
+ case "EEE":
163
+ return oneOf(loc.weekdays("short", false, false), 1);
164
+ case "EEEE":
165
+ return oneOf(loc.weekdays("long", false, false), 1);
166
+ case "ccc":
167
+ return oneOf(loc.weekdays("short", true, false), 1);
168
+ case "cccc":
169
+ return oneOf(loc.weekdays("long", true, false), 1);
170
+ // offset/zone
171
+ case "Z":
172
+ case "ZZ":
173
+ return offset(new RegExp(`([+-]${oneOrTwo.source})(?::(${two.source}))?`), 2);
174
+ case "ZZZ":
175
+ return offset(new RegExp(`([+-]${oneOrTwo.source})(${two.source})?`), 2);
176
+ // we don't support ZZZZ (PST) or ZZZZZ (Pacific Standard Time) in parsing
177
+ // because we don't have any way to figure out what they are
178
+ case "z":
179
+ return simple(/[a-z_+-/]{1,256}?/i);
180
+ default:
181
+ return literal(t);
182
+ }
183
+ };
184
+
185
+ const unit = unitate(token) || {
186
+ invalidReason: MISSING_FTP
187
+ };
188
+
189
+ unit.token = token;
190
+
191
+ return unit;
192
+ }
193
+
194
+ const partTypeStyleToTokenVal = {
195
+ year: {
196
+ "2-digit": "yy",
197
+ numeric: "yyyyy"
198
+ },
199
+ month: {
200
+ numeric: "M",
201
+ "2-digit": "MM",
202
+ short: "MMM",
203
+ long: "MMMM"
204
+ },
205
+ day: {
206
+ numeric: "d",
207
+ "2-digit": "dd"
208
+ },
209
+ weekday: {
210
+ short: "EEE",
211
+ long: "EEEE"
212
+ },
213
+ dayperiod: "a",
214
+ dayPeriod: "a",
215
+ hour: {
216
+ numeric: "h",
217
+ "2-digit": "hh"
218
+ },
219
+ minute: {
220
+ numeric: "m",
221
+ "2-digit": "mm"
222
+ },
223
+ second: {
224
+ numeric: "s",
225
+ "2-digit": "ss"
226
+ }
227
+ };
228
+
229
+ function tokenForPart(part, locale, formatOpts) {
230
+ const { type, value } = part;
231
+
232
+ if (type === "literal") {
233
+ return {
234
+ literal: true,
235
+ val: value
236
+ };
237
+ }
238
+
239
+ const style = formatOpts[type];
240
+
241
+ let val = partTypeStyleToTokenVal[type];
242
+ if (typeof val === "object") {
243
+ val = val[style];
244
+ }
245
+
246
+ if (val) {
247
+ return {
248
+ literal: false,
249
+ val
250
+ };
251
+ }
252
+
253
+ return undefined;
254
+ }
255
+
256
+ function buildRegex(units) {
257
+ const re = units.map(u => u.regex).reduce((f, r) => `${f}(${r.source})`, "");
258
+ return [`^${re}$`, units];
259
+ }
260
+
261
+ function match(input, regex, handlers) {
262
+ const matches = input.match(regex);
263
+
264
+ if (matches) {
265
+ const all = {};
266
+ let matchIndex = 1;
267
+ for (const i in handlers) {
268
+ if (hasOwnProperty(handlers, i)) {
269
+ const h = handlers[i],
270
+ groups = h.groups ? h.groups + 1 : 1;
271
+ if (!h.literal && h.token) {
272
+ all[h.token.val[0]] = h.deser(matches.slice(matchIndex, matchIndex + groups));
273
+ }
274
+ matchIndex += groups;
275
+ }
276
+ }
277
+ return [matches, all];
278
+ } else {
279
+ return [matches, {}];
280
+ }
281
+ }
282
+
283
+ function dateTimeFromMatches(matches) {
284
+ const toField = token => {
285
+ switch (token) {
286
+ case "S":
287
+ return "millisecond";
288
+ case "s":
289
+ return "second";
290
+ case "m":
291
+ return "minute";
292
+ case "h":
293
+ case "H":
294
+ return "hour";
295
+ case "d":
296
+ return "day";
297
+ case "o":
298
+ return "ordinal";
299
+ case "L":
300
+ case "M":
301
+ return "month";
302
+ case "y":
303
+ return "year";
304
+ case "E":
305
+ case "c":
306
+ return "weekday";
307
+ case "W":
308
+ return "weekNumber";
309
+ case "k":
310
+ return "weekYear";
311
+ case "q":
312
+ return "quarter";
313
+ default:
314
+ return null;
315
+ }
316
+ };
317
+
318
+ let zone;
319
+ if (!isUndefined(matches.Z)) {
320
+ zone = new FixedOffsetZone(matches.Z);
321
+ } else if (!isUndefined(matches.z)) {
322
+ zone = IANAZone.create(matches.z);
323
+ } else {
324
+ zone = null;
325
+ }
326
+
327
+ if (!isUndefined(matches.q)) {
328
+ matches.M = (matches.q - 1) * 3 + 1;
329
+ }
330
+
331
+ if (!isUndefined(matches.h)) {
332
+ if (matches.h < 12 && matches.a === 1) {
333
+ matches.h += 12;
334
+ } else if (matches.h === 12 && matches.a === 0) {
335
+ matches.h = 0;
336
+ }
337
+ }
338
+
339
+ if (matches.G === 0 && matches.y) {
340
+ matches.y = -matches.y;
341
+ }
342
+
343
+ if (!isUndefined(matches.u)) {
344
+ matches.S = parseMillis(matches.u);
345
+ }
346
+
347
+ const vals = Object.keys(matches).reduce((r, k) => {
348
+ const f = toField(k);
349
+ if (f) {
350
+ r[f] = matches[k];
351
+ }
352
+
353
+ return r;
354
+ }, {});
355
+
356
+ return [vals, zone];
357
+ }
358
+
359
+ let dummyDateTimeCache = null;
360
+
361
+ function getDummyDateTime() {
362
+ if (!dummyDateTimeCache) {
363
+ dummyDateTimeCache = DateTime.fromMillis(1555555555555);
364
+ }
365
+
366
+ return dummyDateTimeCache;
367
+ }
368
+
369
+ function maybeExpandMacroToken(token, locale) {
370
+ if (token.literal) {
371
+ return token;
372
+ }
373
+
374
+ const formatOpts = Formatter.macroTokenToFormatOpts(token.val);
375
+
376
+ if (!formatOpts) {
377
+ return token;
378
+ }
379
+
380
+ const formatter = Formatter.create(locale, formatOpts);
381
+ const parts = formatter.formatDateTimeParts(getDummyDateTime());
382
+
383
+ const tokens = parts.map(p => tokenForPart(p, locale, formatOpts));
384
+
385
+ if (tokens.includes(undefined)) {
386
+ return token;
387
+ }
388
+
389
+ return tokens;
390
+ }
391
+
392
+ function expandMacroTokens(tokens, locale) {
393
+ return Array.prototype.concat(...tokens.map(t => maybeExpandMacroToken(t, locale)));
394
+ }
395
+
396
+ /**
397
+ * @private
398
+ */
399
+
400
+ export function explainFromTokens(locale, input, format) {
401
+ const tokens = expandMacroTokens(Formatter.parseFormat(format), locale),
402
+ units = tokens.map(t => unitForToken(t, locale)),
403
+ disqualifyingUnit = units.find(t => t.invalidReason);
404
+
405
+ if (disqualifyingUnit) {
406
+ return { input, tokens, invalidReason: disqualifyingUnit.invalidReason };
407
+ } else {
408
+ const [regexString, handlers] = buildRegex(units),
409
+ regex = RegExp(regexString, "i"),
410
+ [rawMatches, matches] = match(input, regex, handlers),
411
+ [result, zone] = matches ? dateTimeFromMatches(matches) : [null, null];
412
+ if (hasOwnProperty(matches, "a") && hasOwnProperty(matches, "H")) {
413
+ throw new ConflictingSpecificationError(
414
+ "Can't include meridiem when specifying 24-hour format"
415
+ );
416
+ }
417
+ return { input, tokens, regex, rawMatches, matches, result, zone };
418
+ }
419
+ }
420
+
421
+ export function parseFromTokens(locale, input, format) {
422
+ const { result, zone, invalidReason } = explainFromTokens(locale, input, format);
423
+ return [result, zone, invalidReason];
424
+ }
@@ -0,0 +1,292 @@
1
+ /*
2
+ This is just a junk drawer, containing anything used across multiple classes.
3
+ Because Luxon is small(ish), this should stay small and we won't worry about splitting
4
+ it up into, say, parsingUtil.js and basicUtil.js and so on. But they are divided up by feature area.
5
+ */
6
+
7
+ import { InvalidArgumentError } from "../errors.js";
8
+
9
+ /**
10
+ * @private
11
+ */
12
+
13
+ // TYPES
14
+
15
+ export function isUndefined(o) {
16
+ return typeof o === "undefined";
17
+ }
18
+
19
+ export function isNumber(o) {
20
+ return typeof o === "number";
21
+ }
22
+
23
+ export function isInteger(o) {
24
+ return typeof o === "number" && o % 1 === 0;
25
+ }
26
+
27
+ export function isString(o) {
28
+ return typeof o === "string";
29
+ }
30
+
31
+ export function isDate(o) {
32
+ return Object.prototype.toString.call(o) === "[object Date]";
33
+ }
34
+
35
+ // CAPABILITIES
36
+
37
+ export function hasIntl() {
38
+ try {
39
+ return typeof Intl !== "undefined" && Intl.DateTimeFormat;
40
+ } catch (e) {
41
+ return false;
42
+ }
43
+ }
44
+
45
+ export function hasFormatToParts() {
46
+ return !isUndefined(Intl.DateTimeFormat.prototype.formatToParts);
47
+ }
48
+
49
+ export function hasRelative() {
50
+ try {
51
+ return typeof Intl !== "undefined" && !!Intl.RelativeTimeFormat;
52
+ } catch (e) {
53
+ return false;
54
+ }
55
+ }
56
+
57
+ // OBJECTS AND ARRAYS
58
+
59
+ export function maybeArray(thing) {
60
+ return Array.isArray(thing) ? thing : [thing];
61
+ }
62
+
63
+ export function bestBy(arr, by, compare) {
64
+ if (arr.length === 0) {
65
+ return undefined;
66
+ }
67
+ return arr.reduce((best, next) => {
68
+ const pair = [by(next), next];
69
+ if (!best) {
70
+ return pair;
71
+ } else if (compare(best[0], pair[0]) === best[0]) {
72
+ return best;
73
+ } else {
74
+ return pair;
75
+ }
76
+ }, null)[1];
77
+ }
78
+
79
+ export function pick(obj, keys) {
80
+ return keys.reduce((a, k) => {
81
+ a[k] = obj[k];
82
+ return a;
83
+ }, {});
84
+ }
85
+
86
+ export function hasOwnProperty(obj, prop) {
87
+ return Object.prototype.hasOwnProperty.call(obj, prop);
88
+ }
89
+
90
+ // NUMBERS AND STRINGS
91
+
92
+ export function integerBetween(thing, bottom, top) {
93
+ return isInteger(thing) && thing >= bottom && thing <= top;
94
+ }
95
+
96
+ // x % n but takes the sign of n instead of x
97
+ export function floorMod(x, n) {
98
+ return x - n * Math.floor(x / n);
99
+ }
100
+
101
+ export function padStart(input, n = 2) {
102
+ const minus = input < 0 ? "-" : "";
103
+ const target = minus ? input * -1 : input;
104
+ let result;
105
+
106
+ if (target.toString().length < n) {
107
+ result = ("0".repeat(n) + target).slice(-n);
108
+ } else {
109
+ result = target.toString();
110
+ }
111
+
112
+ return `${minus}${result}`;
113
+ }
114
+
115
+ export function parseInteger(string) {
116
+ if (isUndefined(string) || string === null || string === "") {
117
+ return undefined;
118
+ } else {
119
+ return parseInt(string, 10);
120
+ }
121
+ }
122
+
123
+ export function parseMillis(fraction) {
124
+ // Return undefined (instead of 0) in these cases, where fraction is not set
125
+ if (isUndefined(fraction) || fraction === null || fraction === "") {
126
+ return undefined;
127
+ } else {
128
+ const f = parseFloat("0." + fraction) * 1000;
129
+ return Math.floor(f);
130
+ }
131
+ }
132
+
133
+ export function roundTo(number, digits, towardZero = false) {
134
+ const factor = 10 ** digits,
135
+ rounder = towardZero ? Math.trunc : Math.round;
136
+ return rounder(number * factor) / factor;
137
+ }
138
+
139
+ // DATE BASICS
140
+
141
+ export function isLeapYear(year) {
142
+ return year % 4 === 0 && (year % 100 !== 0 || year % 400 === 0);
143
+ }
144
+
145
+ export function daysInYear(year) {
146
+ return isLeapYear(year) ? 366 : 365;
147
+ }
148
+
149
+ export function daysInMonth(year, month) {
150
+ const modMonth = floorMod(month - 1, 12) + 1,
151
+ modYear = year + (month - modMonth) / 12;
152
+
153
+ if (modMonth === 2) {
154
+ return isLeapYear(modYear) ? 29 : 28;
155
+ } else {
156
+ return [31, null, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31][modMonth - 1];
157
+ }
158
+ }
159
+
160
+ // covert a calendar object to a local timestamp (epoch, but with the offset baked in)
161
+ export function objToLocalTS(obj) {
162
+ let d = Date.UTC(
163
+ obj.year,
164
+ obj.month - 1,
165
+ obj.day,
166
+ obj.hour,
167
+ obj.minute,
168
+ obj.second,
169
+ obj.millisecond
170
+ );
171
+
172
+ // for legacy reasons, years between 0 and 99 are interpreted as 19XX; revert that
173
+ if (obj.year < 100 && obj.year >= 0) {
174
+ d = new Date(d);
175
+ d.setUTCFullYear(d.getUTCFullYear() - 1900);
176
+ }
177
+ return +d;
178
+ }
179
+
180
+ export function weeksInWeekYear(weekYear) {
181
+ const p1 =
182
+ (weekYear +
183
+ Math.floor(weekYear / 4) -
184
+ Math.floor(weekYear / 100) +
185
+ Math.floor(weekYear / 400)) %
186
+ 7,
187
+ last = weekYear - 1,
188
+ p2 = (last + Math.floor(last / 4) - Math.floor(last / 100) + Math.floor(last / 400)) % 7;
189
+ return p1 === 4 || p2 === 3 ? 53 : 52;
190
+ }
191
+
192
+ export function untruncateYear(year) {
193
+ if (year > 99) {
194
+ return year;
195
+ } else return year > 60 ? 1900 + year : 2000 + year;
196
+ }
197
+
198
+ // PARSING
199
+
200
+ export function parseZoneInfo(ts, offsetFormat, locale, timeZone = null) {
201
+ const date = new Date(ts),
202
+ intlOpts = {
203
+ hour12: false,
204
+ year: "numeric",
205
+ month: "2-digit",
206
+ day: "2-digit",
207
+ hour: "2-digit",
208
+ minute: "2-digit"
209
+ };
210
+
211
+ if (timeZone) {
212
+ intlOpts.timeZone = timeZone;
213
+ }
214
+
215
+ const modified = Object.assign({ timeZoneName: offsetFormat }, intlOpts),
216
+ intl = hasIntl();
217
+
218
+ if (intl && hasFormatToParts()) {
219
+ const parsed = new Intl.DateTimeFormat(locale, modified)
220
+ .formatToParts(date)
221
+ .find(m => m.type.toLowerCase() === "timezonename");
222
+ return parsed ? parsed.value : null;
223
+ } else if (intl) {
224
+ // this probably doesn't work for all locales
225
+ const without = new Intl.DateTimeFormat(locale, intlOpts).format(date),
226
+ included = new Intl.DateTimeFormat(locale, modified).format(date),
227
+ diffed = included.substring(without.length),
228
+ trimmed = diffed.replace(/^[, \u200e]+/, "");
229
+ return trimmed;
230
+ } else {
231
+ return null;
232
+ }
233
+ }
234
+
235
+ // signedOffset('-5', '30') -> -330
236
+ export function signedOffset(offHourStr, offMinuteStr) {
237
+ let offHour = parseInt(offHourStr, 10);
238
+
239
+ // don't || this because we want to preserve -0
240
+ if (Number.isNaN(offHour)) {
241
+ offHour = 0;
242
+ }
243
+
244
+ const offMin = parseInt(offMinuteStr, 10) || 0,
245
+ offMinSigned = offHour < 0 || Object.is(offHour, -0) ? -offMin : offMin;
246
+ return offHour * 60 + offMinSigned;
247
+ }
248
+
249
+ // COERCION
250
+
251
+ export function asNumber(value) {
252
+ const numericValue = Number(value);
253
+ if (typeof value === "boolean" || value === "" || Number.isNaN(numericValue))
254
+ throw new InvalidArgumentError(`Invalid unit value ${value}`);
255
+ return numericValue;
256
+ }
257
+
258
+ export function normalizeObject(obj, normalizer, nonUnitKeys) {
259
+ const normalized = {};
260
+ for (const u in obj) {
261
+ if (hasOwnProperty(obj, u)) {
262
+ if (nonUnitKeys.indexOf(u) >= 0) continue;
263
+ const v = obj[u];
264
+ if (v === undefined || v === null) continue;
265
+ normalized[normalizer(u)] = asNumber(v);
266
+ }
267
+ }
268
+ return normalized;
269
+ }
270
+
271
+ export function formatOffset(offset, format) {
272
+ const hours = Math.trunc(Math.abs(offset / 60)),
273
+ minutes = Math.trunc(Math.abs(offset % 60)),
274
+ sign = offset >= 0 ? "+" : "-";
275
+
276
+ switch (format) {
277
+ case "short":
278
+ return `${sign}${padStart(hours, 2)}:${padStart(minutes, 2)}`;
279
+ case "narrow":
280
+ return `${sign}${hours}${minutes > 0 ? `:${minutes}` : ""}`;
281
+ case "techie":
282
+ return `${sign}${padStart(hours, 2)}${padStart(minutes, 2)}`;
283
+ default:
284
+ throw new RangeError(`Value format ${format} is out of range for property format`);
285
+ }
286
+ }
287
+
288
+ export function timeObject(obj) {
289
+ return pick(obj, ["hour", "minute", "second", "millisecond"]);
290
+ }
291
+
292
+ export const ianaRegex = /[A-Za-z_+-]{1,256}(:?\/[A-Za-z_+-]{1,256}(\/[A-Za-z_+-]{1,256})?)?/;