mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-30 06:12:03 +03:00
28 lines
1.5 KiB
JavaScript
28 lines
1.5 KiB
JavaScript
|
var globalUtils = require('../../utils');
|
||
|
|
||
|
/**
|
||
|
* @TODO: move `index.js` to here - e.g. storageUtils.getStorage
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Sanitizes a given URL or path for an image to be readable by the local file storage
|
||
|
* Always returns {string} url
|
||
|
* @param {string} imagePath
|
||
|
* @returns {string} imagePath
|
||
|
* @description Takes a url or filepath and returns a filepath with is readable
|
||
|
* for the local file storage.
|
||
|
*/
|
||
|
exports.getLocalFileStoragePath = function getLocalFileStoragePath(imagePath) {
|
||
|
if (imagePath.match(new RegExp('^' + globalUtils.url.urlJoin(globalUtils.url.urlFor('home', true), globalUtils.url.getSubdir(), '/', globalUtils.url.STATIC_IMAGE_URL_PREFIX)))) {
|
||
|
// Storage needs the path without `/content/images/` prefix
|
||
|
// The '/' in urlJoin is necessary to add the '/' to `content/images`, if no subdirectory is setup
|
||
|
return imagePath.replace(new RegExp('^' + globalUtils.url.urlJoin(globalUtils.url.urlFor('home', true), globalUtils.url.getSubdir(), '/', globalUtils.url.STATIC_IMAGE_URL_PREFIX)), '');
|
||
|
} else if (imagePath.match(new RegExp('^' + globalUtils.url.urlJoin(globalUtils.url.getSubdir(), '/', globalUtils.url.STATIC_IMAGE_URL_PREFIX)))) {
|
||
|
// Storage needs the path without `/content/images/` prefix
|
||
|
// The '/' in urlJoin is necessary to add the '/' to `content/images`, if no subdirectory is setup
|
||
|
return imagePath.replace(new RegExp('^' + globalUtils.url.urlJoin(globalUtils.url.getSubdir(), '/', globalUtils.url.STATIC_IMAGE_URL_PREFIX)), '');
|
||
|
} else {
|
||
|
return imagePath;
|
||
|
}
|
||
|
};
|