Edits history of script submission #13005 for ' Add SSL Certificate (telnyx)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Telnyx = {
    	apiKey: string
    }
    type Base64 = string
    /**
     * Add SSL Certificate
     * Uploads an SSL certificate and its matching secret so that you can use Telnyx’s storage as your CDN.
     */
    export async function main(
    	auth: Telnyx,
    	bucketName: string,
    	body: {
    		certificate?: {
    			base64: Base64
    			type:
    				| 'image/png'
    				| 'image/jpeg'
    				| 'image/gif'
    				| 'application/pdf'
    				| 'appication/json'
    				| 'text/csv'
    				| 'text/plain'
    				| 'audio/mpeg'
    				| 'audio/wav'
    				| 'video/mp4'
    			name: string
    		}
    		private_key?: {
    			base64: Base64
    			type:
    				| 'image/png'
    				| 'image/jpeg'
    				| 'image/gif'
    				| 'application/pdf'
    				| 'appication/json'
    				| 'text/csv'
    				| 'text/plain'
    				| 'audio/mpeg'
    				| 'audio/wav'
    				| 'video/mp4'
    			name: string
    		}
    	}
    ) {
    	const url = new URL(`https://api.telnyx.com/v2/storage/buckets/${bucketName}/ssl_certificate`)
    
    	const formData = new FormData()
    	for (const [k, v] of Object.entries(body)) {
    		if (v !== undefined) {
    			if (['certificate', 'private_key'].includes(k)) {
    				const { base64, type, name } = v as {
    					base64: Base64
    					type: string
    					name: string
    				}
    				formData.append(
    					k,
    					new Blob([Uint8Array.from(atob(base64), (m) => m.codePointAt(0)!)], {
    						type
    					}),
    					name
    				)
    			} else {
    				formData.append(k, String(v))
    			}
    		}
    	}
    	const response = await fetch(url, {
    		method: 'PUT',
    		headers: {
    			Authorization: 'Bearer ' + auth.apiKey
    		},
    		body: formData
    	})
    	if (!response.ok) {
    		const text = await response.text()
    		throw new Error(`${response.status} ${text}`)
    	}
    	return await response.json()
    }
    

    Submitted by hugo697 428 days ago