mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-12-12 03:43:55 -05:00
7b9f9a487b
Signed-off-by: David Mehren <git@herrmehren.de>
30 lines
886 B
TypeScript
30 lines
886 B
TypeScript
import imgur from 'old_src/lib/web/imageRouter/imgur'
|
|
|
|
import { config } from '../../config'
|
|
import { logger } from '../../logger'
|
|
import { UploadProvider } from './index'
|
|
|
|
const ImgurUploadProvider: UploadProvider = {
|
|
uploadImage: (imagePath, callback) => {
|
|
if (!callback || typeof callback !== 'function') {
|
|
logger.error('Callback has to be a function')
|
|
return
|
|
}
|
|
|
|
if (!imagePath) {
|
|
callback(new Error('Image path is missing or wrong'), undefined)
|
|
return
|
|
}
|
|
|
|
imgur.setClientId(config.imgur.clientID)
|
|
imgur.uploadFile(imagePath)
|
|
.then(function (json) {
|
|
logger.debug(`SERVER uploadimage success: ${JSON.stringify(json)}`)
|
|
callback(undefined, json.data.link.replace(/^http:\/\//i, 'https://'))
|
|
}).catch(function (err) {
|
|
callback(new Error(err), undefined)
|
|
})
|
|
}
|
|
}
|
|
|
|
export { ImgurUploadProvider }
|