You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
carbon/lib/api.js

131 lines
3.2 KiB
JavaScript

import axios from 'axios'
import debounce from 'lodash.debounce'
import ms from 'ms'
7 years ago
import { fileToDataURL } from './util'
const client = axios.create({
baseURL: `${process.env.API_URL || ''}/api`
})
const RATE_LIMIT_CODE = 420
7 years ago
const gistClient = axios.create({
baseURL: 'https://api.github.com',
timeout: 5000,
headers: {
Accept: 'application/vnd.github.v3+json',
'Content-Type': 'application/json'
}
})
7 years ago
function tweet(content, encodedImage) {
const processedData = encodedImage.split(',')[1]
return client
.post('/twitter', {
imageData: processedData,
altText: content
})
7 years ago
.then(res => res.data.url)
.then(url => encodeURIComponent(`Built with @carbon_app ${url}`))
7 years ago
.then(uri => `https://twitter.com/intent/tweet?text=${uri}`)
.then(openTwitterUrl)
.catch(checkIfRateLimited)
}
function image(state) {
return client.post('/image', { state }).then(res => res.data)
}
// ~ makes the file come later alphabetically, which is how gists are sorted
const CARBON_STORAGE_KEY = '~carbon.json'
async function getGist(uid) {
try {
return await gistClient
.get(`/gists/${uid}`)
.then(res => res.data)
.then(({ id, owner, files }) => {
let config
if (files[CARBON_STORAGE_KEY]) {
try {
config = JSON.parse(files[CARBON_STORAGE_KEY].content)
} catch (error) {
// pass
}
}
const otherFiles = Object.keys(files).filter(key => key !== CARBON_STORAGE_KEY)
const snippet = files[otherFiles[0]]
return {
id,
owner,
config: {
...config,
code: snippet.content,
language: snippet.language && snippet.language.toLowerCase()
}
}
})
} catch (e) {
console.error(e)
return null
}
}
7 years ago
// private
7 years ago
function openTwitterUrl(twitterUrl) {
const width = 575
const height = 400
const left = (window.outerWidth - width) / 2
const top = (window.outerHeight - height) / 2
const opts = `status=1,width=${width},height=${height},top=${top},left=${left}`
7 years ago
window.open(twitterUrl, 'twitter', opts)
7 years ago
}
7 years ago
function checkIfRateLimited(err) {
if (err.response.status === RATE_LIMIT_CODE) {
7 years ago
alert(
"Oh no! Looks like to many people are trying to tweet right now and we've been rate limited. Try again soon or save and upload manually!"
)
return
}
throw err
7 years ago
}
const downloadThumbnailImage = img => {
return client
.get(img.url.replace('http://', 'https://'), { responseType: 'blob' })
.then(res => res.data)
.then(fileToDataURL)
.then(dataURL => Object.assign(img, { dataURL }))
}
const unsplash = {
download(id) {
return client
.get(`/unsplash/download/${id}`)
.then(res => res.data.url)
.then(url => client.get(url, { responseType: 'blob' }))
.then(res => res.data)
},
async random() {
const imageUrls = await client.get('/unsplash/random')
return Promise.all(imageUrls.data.map(downloadThumbnailImage))
}
}
export default {
gist: {
get: getGist
},
tweet: debounce(tweet, ms('5s'), { leading: true, trailing: false }),
image: debounce(image, ms('5s'), { leading: true, trailing: false }),
unsplash,
downloadThumbnailImage
}