0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-30 01:56:18 +01:00
hono/deno_dist/utils/encode.ts
Yusuke Wada 9391278911
feat(router) [breaking]: StaticRouter obsolete (#873)
Co-authored-by: Taku Amano <taku@taaas.jp>
2023-02-09 16:58:28 +09:00

78 lines
2.1 KiB
TypeScript

import { Buffer } from "https://deno.land/std@0.177.0/node/buffer.ts";
export const encodeBase64 = (str: string): string => {
if (str === null) {
throw new TypeError('1st argument of "encodeBase64" should not be null.')
}
try {
const encoder = new TextEncoder()
const bytes = encoder.encode(str)
return btoa(String.fromCharCode(...bytes))
} catch {}
try {
return Buffer.from(str).toString('base64')
} catch (e) {
console.error('Error: If you want to do "encodeBase64", polyfill "buffer" module.')
throw e
}
}
export const decodeBase64 = (str: string): string => {
if (str === null) {
throw new TypeError('1st argument of "decodeBase64" should not be null.')
}
try {
const text = atob(str)
const bytes = new Uint8Array(text.split('').map((c) => c.charCodeAt(0)))
const decoder = new TextDecoder()
return decoder.decode(bytes)
} catch {}
try {
return Buffer.from(str, 'base64').toString()
} catch (e) {
console.error('Error: If you want to do "decodeBase64", polyfill "buffer" module.')
throw e
}
}
export const encodeBase64URL = (str: string): string => {
return encodeBase64(str).replace(/=/g, '').replace(/\+/g, '-').replace(/\//g, '_')
}
export const decodeBase64URL = (str: string): string => {
const pad = (s: string) => {
const diff = s.length % 4
if (diff === 2) {
return `${s}==`
}
if (diff === 3) {
return `${s}=`
}
return s
}
return decodeBase64(pad(str).replace(/-/g, '+').replace('_', '/'))
}
export const utf8ToUint8Array = (str: string): Uint8Array => {
const encoder = new TextEncoder()
return encoder.encode(str)
}
export const arrayBufferToBase64 = async (buf: ArrayBuffer): Promise<string> => {
if (typeof btoa === 'function') {
return btoa(String.fromCharCode(...new Uint8Array(buf)))
}
try {
return Buffer.from(String.fromCharCode(...new Uint8Array(buf))).toString('base64')
} catch (e) {}
return ''
}
export const arrayBufferToBase64URL = async (buf: ArrayBuffer) => {
return (await arrayBufferToBase64(buf)).replace(/=/g, '').replace(/\+/g, '-').replace(/\//g, '_')
}