File size: 7,751 Bytes
f56a29b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 | /**
* PptxGenJS: Media Methods
*/
import { IMG_BROKEN } from './core-enums'
import { PresSlide, SlideLayout, ISlideRelMedia } from './core-interfaces'
/**
* Encode Image/Audio/Video into base64
* @param {PresSlide | SlideLayout} layout - slide layout
* @return {Promise} promise
*/
export function encodeSlideMediaRels(layout: PresSlide | SlideLayout): Array<Promise<string>> {
// STEP 1: Detect real Node runtime once
const isNode = typeof process !== 'undefined' && !!process.versions?.node && process.release?.name === 'node'
// These will be filled only when weβre in Node
let fs: typeof import('node:fs') | undefined
let https: typeof import('node:https') | undefined
// STEP 2: Lazy-load Node built-ins if needed
const loadNodeDeps = isNode
? async () => {
; ({ default: fs } = await import(/* webpackIgnore: true */ 'node:fs')); ({ default: https } = await import(/* webpackIgnore: true */ 'node:https'))
}
: async () => { }
// Immediately start it when we know weβre in Node
if (isNode) loadNodeDeps()
// STEP 3: Prepare promises list
const imageProms: Array<Promise<string>> = []
// A: Capture all audio/image/video candidates for encoding (filtering online/pre-encoded)
const candidateRels = layout._relsMedia.filter(
rel => rel.type !== 'online' && !rel.data && (!rel.path || (rel.path && !rel.path.includes('preencoded')))
)
// B: PERF: Mark dupes (same `path`) to avoid loading the same media over-and-over!
const unqPaths: string[] = []
candidateRels.forEach(rel => {
if (!unqPaths.includes(rel.path)) {
rel.isDuplicate = false
unqPaths.push(rel.path)
} else {
rel.isDuplicate = true
}
})
// STEP 4: Read/Encode each unique media item
candidateRels
.filter(rel => !rel.isDuplicate)
.forEach(rel => {
imageProms.push(
(async () => {
if (!https) await loadNodeDeps()
// ββββββββββββ NODE LOCAL FILE ββββββββββββ
if (isNode && fs && rel.path.indexOf('http') !== 0) {
try {
const bitmap = fs.readFileSync(rel.path)
rel.data = Buffer.from(bitmap).toString('base64')
candidateRels
.filter(dupe => dupe.isDuplicate && dupe.path === rel.path)
.forEach(dupe => (dupe.data = rel.data))
return 'done'
} catch (ex) {
rel.data = IMG_BROKEN
candidateRels
.filter(dupe => dupe.isDuplicate && dupe.path === rel.path)
.forEach(dupe => (dupe.data = rel.data))
throw new Error(`ERROR: Unable to read media: "${rel.path}"\n${String(ex)}`)
}
}
// ββββββββββββ NODE HTTP(S) ββββββββββββ
if (isNode && https && rel.path.startsWith('http')) {
return await new Promise<string>((resolve, reject) => {
https.get(rel.path, res => {
let raw = ''
res.setEncoding('binary') // IMPORTANT: Only binary encoding works
res.on('data', chunk => (raw += chunk))
res.on('end', () => {
rel.data = Buffer.from(raw, 'binary').toString('base64')
candidateRels
.filter(dupe => dupe.isDuplicate && dupe.path === rel.path)
.forEach(dupe => (dupe.data = rel.data))
resolve('done')
})
res.on('error', () => {
rel.data = IMG_BROKEN
candidateRels
.filter(dupe => dupe.isDuplicate && dupe.path === rel.path)
.forEach(dupe => (dupe.data = rel.data))
reject(new Error(`ERROR! Unable to load image (https.get): ${rel.path}`))
})
})
})
}
// ββββββββββββ BROWSER ββββββββββββ
return await new Promise<string>((resolve, reject) => {
// A: build request
const xhr = new XMLHttpRequest()
xhr.onload = () => {
const reader = new FileReader()
reader.onloadend = () => {
rel.data = reader.result as string
candidateRels
.filter(dupe => dupe.isDuplicate && dupe.path === rel.path)
.forEach(dupe => (dupe.data = rel.data))
if (!rel.isSvgPng) {
resolve('done')
} else {
createSvgPngPreview(rel)
.then(() => resolve('done'))
.catch(reject)
}
}
reader.readAsDataURL(xhr.response)
}
xhr.onerror = () => {
rel.data = IMG_BROKEN
candidateRels
.filter(dupe => dupe.isDuplicate && dupe.path === rel.path)
.forEach(dupe => (dupe.data = rel.data))
reject(new Error(`ERROR! Unable to load image (xhr.onerror): ${rel.path}`))
}
// B: execute request
xhr.open('GET', rel.path)
xhr.responseType = 'blob'
xhr.send()
})
})(),
)
})
// STEP 5: SVG-PNG previews
// ......: "SVG:" base64 data still requires a png to be generated
// ......: (`isSvgPng` flag this as the preview image, not the SVG itself)
layout._relsMedia
.filter(rel => rel.isSvgPng && rel.data)
.forEach(rel => {
(async () => {
if (isNode && !fs) await loadNodeDeps()
if (isNode && fs) {
// console.log('Sorry, SVG is not supported in Node (more info: https://github.com/gitbrent/PptxGenJS/issues/401)')
rel.data = IMG_BROKEN
imageProms.push(Promise.resolve('done'))
} else {
imageProms.push(createSvgPngPreview(rel))
}
})()
})
return imageProms
}
/**
* Create SVG preview image
* @param {ISlideRelMedia} rel - slide rel
* @return {Promise} promise
*/
async function createSvgPngPreview(rel: ISlideRelMedia): Promise<string> {
return await new Promise((resolve, reject) => {
// A: Create
const image = new Image()
// B: Set onload event
image.onload = () => {
// First: Check for any errors: This is the best method (try/catch wont work, etc.)
if (image.width + image.height === 0) {
image.onerror('h/w=0')
}
let canvas: HTMLCanvasElement = document.createElement('CANVAS') as HTMLCanvasElement
const ctx = canvas.getContext('2d')
canvas.width = image.width
canvas.height = image.height
ctx.drawImage(image, 0, 0)
// Users running on local machine will get the following error:
// "SecurityError: Failed to execute 'toDataURL' on 'HTMLCanvasElement': Tainted canvases may not be exported."
// when the canvas.toDataURL call executes below.
try {
rel.data = canvas.toDataURL(rel.type)
resolve('done')
} catch (ex) {
image.onerror(ex.toString())
}
canvas = null
}
image.onerror = () => {
rel.data = IMG_BROKEN
reject(new Error(`ERROR! Unable to load image (image.onerror): ${rel.path}`))
}
// C: Load image
image.src = typeof rel.data === 'string' ? rel.data : IMG_BROKEN
})
}
/**
* FIXME: TODO: currently unused
* TODO: Should return a Promise
*/
/*
function getSizeFromImage (inImgUrl: string): { width: number, height: number } {
const sizeOf = typeof require !== 'undefined' ? require('sizeof') : null // NodeJS
if (sizeOf) {
try {
const dimensions = sizeOf(inImgUrl)
return { width: dimensions.width, height: dimensions.height }
} catch (ex) {
console.error('ERROR: sizeOf: Unable to load image: ' + inImgUrl)
return { width: 0, height: 0 }
}
} else if (Image && typeof Image === 'function') {
// A: Create
const image = new Image()
// B: Set onload event
image.onload = () => {
// FIRST: Check for any errors: This is the best method (try/catch wont work, etc.)
if (image.width + image.height === 0) {
return { width: 0, height: 0 }
}
const obj = { width: image.width, height: image.height }
return obj
}
image.onerror = () => {
console.error(`ERROR: image.onload: Unable to load image: ${inImgUrl}`)
}
// C: Load image
image.src = inImgUrl
}
}
*/
|