Class MediaFileInfoProvider
- Namespace
- CMS.MediaLibrary
- Assembly
- CMS.MediaLibrary.dll
Class providing media file info management.
[ProviderInterface(typeof(IMediaFileInfoProvider))]
public class MediaFileInfoProvider : AbstractInfoProvider<MediaFileInfo, MediaFileInfoProvider>, IInfoProvider, ICustomizableProvider, IBulkOperationProvider, IWebFarmProvider, IInfoValidator<MediaFileInfo>, IInfoByNameProvider<MediaFileInfo>, IBulkInfoProvider<MediaFileInfo>, IMediaFileInfoProvider, IInfoProvider<MediaFileInfo>, IInfoByIdProvider<MediaFileInfo>, IInfoByGuidProvider<MediaFileInfo>
- Inheritance
-
objectMediaFileInfoProvider
- Implements
- Inherited Members
- Extension Methods
Constructors
MediaFileInfoProvider()
Creates new instance of MediaFileInfoProvider.
public MediaFileInfoProvider()
Methods
CanResizeImage(MediaFileInfo, int, int, int)
Checks whether the image should be processed (resized) by the Image manager (if the destination size is smaller).
public static bool CanResizeImage(MediaFileInfo fileInfo, int width, int height, int maxSideSize)
Parameters
fileInfo
MediaFileInfoMedia file info to check
width
intNew width
height
intNew height
maxSideSize
intMax side size
Returns
- bool
CanResizeImage(string, int, int, int)
Checks whether the image should be processed (resized) by the Image manager (if the destination size is smaller).
public static bool CanResizeImage(string filePath, int width, int height, int maxSideSize)
Parameters
filePath
stringFile path
width
intNew width
height
intNew height
maxSideSize
intMax side size
Returns
- bool
CopyMediaFile(int, string, string, bool, int)
Copy media file.
public static void CopyMediaFile(int libraryID, string origPath, string newPath, bool synchronization = false, int userId = 0)
Parameters
libraryID
intLibrary ID
origPath
stringOld file path within the library folder
newPath
stringNew file path within the library folder
synchronization
boolIndicates if method is running by web farms synchronization
userId
intID of the user performing copy action
CopyMediaFileInternal(int, string, string, bool, int)
Copy media file.
protected virtual void CopyMediaFileInternal(int libraryID, string origPath, string newPath, bool synchronization, int userId)
Parameters
libraryID
intLibrary ID
origPath
stringOld file path within the library folder
newPath
stringNew file path within the library folder
synchronization
boolIndicates if method is running by web farms synchronization
userId
intID of the user performing copy action
Delete(MediaFileInfo)
Deletes the info
object from the underlying data store.
public override void Delete(MediaFileInfo info)
Parameters
info
MediaFileInfoInfo object to be deleted.
Exceptions
- ArgumentNullException
Thrown when
info
is null.
DeleteMediaFile(int, string, bool, bool)
Deletes media file from file system.
public static void DeleteMediaFile(int libraryId, string filePath, bool onlyFile = false, bool synchronization = false)
Parameters
libraryId
intLibrary id
filePath
stringSub path to file
onlyFile
boolIndicates if only file should be deleted
synchronization
boolIndicates if method is running by web farms synchronization
DeleteMediaFileInternal(int, string, bool, bool)
Deletes media file from filesystem.
protected virtual void DeleteMediaFileInternal(int libraryID, string filePath, bool onlyFile, bool synchronization)
Parameters
libraryID
intLibrary id
filePath
stringSub path to file
onlyFile
boolIndicates if only file should be deleted
synchronization
boolIndicates if method is running by web farms synchronization
DeleteMediaFilePreview(int, string, bool)
Deletes media file preview from file system.
public static void DeleteMediaFilePreview(int libraryId, string filePath, bool synchronization = false)
Parameters
libraryId
intLibrary ID
filePath
stringFile path
synchronization
boolIndicates if method is running by web farms synchronization
DeleteMediaFilePreviewInternal(int, string, bool)
Deletes media file preview from filesystem.
protected virtual void DeleteMediaFilePreviewInternal(int libraryID, string filePath, bool synchronization)
Parameters
libraryID
intLibrary ID
filePath
stringFile path
synchronization
boolIndicates if method is running by web farms synchronization
DeleteMediaFilePreviewThumbnails(MediaFileInfo)
Deletes media file preview thumbnails.
public static void DeleteMediaFilePreviewThumbnails(MediaFileInfo fileInfo)
Parameters
fileInfo
MediaFileInfoFile info
DeleteMediaFilePreviewThumbnailsInternal(MediaFileInfo)
Deletes media file preview thumbnails.
protected virtual void DeleteMediaFilePreviewThumbnailsInternal(MediaFileInfo fileInfo)
Parameters
fileInfo
MediaFileInfoFile info
DeleteMediaFileThumbnails(MediaFileInfo)
Deletes media file thumbnails.
public static void DeleteMediaFileThumbnails(MediaFileInfo fileInfo)
Parameters
fileInfo
MediaFileInfoFile info
DeleteMediaFileThumbnailsInternal(MediaFileInfo)
Deletes media file thumbnails.
protected virtual void DeleteMediaFileThumbnailsInternal(MediaFileInfo fileInfo)
Parameters
fileInfo
MediaFileInfoFile info
DeleteMediaFiles(string, int)
Deletes file records of files matching specified criteria.
public static void DeleteMediaFiles(string path, int libraryId)
Parameters
path
stringPath of the files to delete
libraryId
intID of the library where the files belongs to
DeleteMediaFilesInternal(string, int)
Deletes file records of files matching specified criteria.
protected virtual void DeleteMediaFilesInternal(string path, int libraryId)
Parameters
path
stringPath of the files to delete
libraryId
intID of the library where the files belongs to
EnsureThumbnailFile(MediaFileInfo, int, int, int, bool)
Ensures the thumbnail file.
public static string EnsureThumbnailFile(MediaFileInfo fileInfo, int width = 0, int height = 0, int maxSideSize = 0, bool usePreview = false)
Parameters
fileInfo
MediaFileInfoFile info
width
intFile width
height
intFile height
maxSideSize
intMaximum side size
usePreview
boolUse preview file
Returns
- string
EnsureThumbnailFileInternal(MediaFileInfo, int, int, int, bool)
Ensures the thumbnail file.
protected virtual string EnsureThumbnailFileInternal(MediaFileInfo fileInfo, int width, int height, int maxSideSize, bool usePreview = false)
Parameters
fileInfo
MediaFileInfoFile info
width
intFile width
height
intFile height
maxSideSize
intMaximum side size
usePreview
boolUse preview file
Returns
- string
GetDependencyCacheKeys(MediaFileInfo, bool)
Gets the cache key dependencies array for the media file (cache item keys affected when the meta file changes).
public static string[] GetDependencyCacheKeys(MediaFileInfo fi, bool preview)
Parameters
fi
MediaFileInfoFile
preview
boolIndicates if preview cache key should be created
Returns
- string[]
GetDependencyCacheKeysInternal(MediaFileInfo, bool)
Gets the cache key dependencies array for the media file (cache item keys affected when the meta file changes).
protected virtual string[] GetDependencyCacheKeysInternal(MediaFileInfo fi, bool preview)
Parameters
fi
MediaFileInfoFile
preview
boolIndicates if preview cache key should be created
Returns
- string[]
GetFile(MediaFileInfo, string)
Returns the file from disk or (if not available on the disk) from database.
public static byte[] GetFile(MediaFileInfo fileInfo, string libraryFolder)
Parameters
fileInfo
MediaFileInfoFile info
libraryFolder
stringLibrary folder
Returns
- byte[]
GetFileInternal(MediaFileInfo, string)
Returns the file from disk or (if not available on the disk) from database.
protected virtual byte[] GetFileInternal(MediaFileInfo fileInfo, string libraryFolder)
Parameters
fileInfo
MediaFileInfoFile info
libraryFolder
stringLibrary folder
Returns
- byte[]
GetImageThumbnail(MediaFileInfo, string, int, int, int)
Returns image thumbnail from the disk or create a new one if doesn't exist yet.
public static byte[] GetImageThumbnail(MediaFileInfo fileInfo, string libraryFolder, int width = 0, int height = 0, int maxSideSize = 0)
Parameters
fileInfo
MediaFileInfoFile info
libraryFolder
stringLibrary folder
width
intImage width
height
intImage height
maxSideSize
intMaximum side size
Returns
- byte[]
GetImageThumbnailInternal(MediaFileInfo, string, int, int, int)
Returns image thumbnail from the disk or create a new one if doesn't exist yet.
protected virtual byte[] GetImageThumbnailInternal(MediaFileInfo fileInfo, string libraryFolder, int width, int height, int maxSideSize)
Parameters
fileInfo
MediaFileInfoFile info
libraryFolder
stringLibrary folder
width
intImage width
height
intImage height
maxSideSize
intMaximum side size
Returns
- byte[]
GetMediaFileInfo(int, string)
Returns the MediaFileInfo structure for the specified media file.
public static MediaFileInfo GetMediaFileInfo(int mediaLibraryId, string mediaFilePath)
Parameters
mediaLibraryId
intMedia library ID
mediaFilePath
stringFile path
Returns
GetMediaFileInfo(string, string)
Returns the MediaFileInfo structure for the specified media file.
public static MediaFileInfo GetMediaFileInfo(string mediaFilePath, string libraryFolder)
Parameters
mediaFilePath
stringFile path
libraryFolder
stringLibrary folder name
Returns
GetMediaFileInfoInternal(Guid)
Returns media file with specified GUID.
protected virtual MediaFileInfo GetMediaFileInfoInternal(Guid guid)
Parameters
guid
GuidMedia file GUID
Returns
GetMediaFileInfoInternal(int, string)
Returns the MediaFileInfo structure for the specified media file.
protected virtual MediaFileInfo GetMediaFileInfoInternal(int mediaLibraryId, string mediaFilePath)
Parameters
mediaLibraryId
intMedia library ID
mediaFilePath
stringFile path
Returns
GetMediaFileInfoInternal(string, string)
Returns the MediaFileInfo structure for the specified media file.
protected virtual MediaFileInfo GetMediaFileInfoInternal(string mediaFilePath, string libraryFolder)
Parameters
mediaFilePath
stringFile path
libraryFolder
stringLibrary folder name
Returns
GetMediaFilePath(MediaFileInfo, string)
Returns physical path to the media file.
public static string GetMediaFilePath(MediaFileInfo fileInfo, string webFullPath)
Parameters
fileInfo
MediaFileInfoMedia file info
webFullPath
stringPhysical path to the root of the web project (e.g. c:\WebProject), if it is not specified web application physical path is used
Returns
- string
GetMediaFilePath(int, string)
Returns physical path to the media file.
public static string GetMediaFilePath(int libraryId, string filePath)
Parameters
libraryId
intMedia library ID
filePath
stringFile path
Returns
- string
GetMediaFilePath(string, int, string)
Returns physical path to the given file path and library.
public static string GetMediaFilePath(string filePath, int fileLibraryId, string webFullPath = null)
Parameters
filePath
stringMedia file path
fileLibraryId
intLibrary ID of the media file
webFullPath
stringPhysical path to the root of the web project (e.g. c:\WebProject), if it is not specified web application physical path is used
Returns
- string
GetMediaFilePath(string, string, string)
Returns physical path to the media file.
public static string GetMediaFilePath(string libraryFolder, string filePath, string webFullPath = null)
Parameters
libraryFolder
stringLibrary folder name
filePath
stringFile path within the library folder
webFullPath
stringPhysical path to the root of the web project (e.g. c:\WebProject), if it is not specified web application physical path is used
Returns
- string
GetMediaFilePathInternal(string, string, string)
Returns physical path to the media file.
protected virtual string GetMediaFilePathInternal(string libraryFolder, string filePath, string webFullPath)
Parameters
libraryFolder
stringLibrary folder name
filePath
stringFile path within the library folder
webFullPath
stringPhysical path to the root of the web project (e.g. c:\WebProject), if it is not specified web application physical path is used
Returns
- string
GetMediaFiles(string, string, int, string)
Returns dataset of files matching given criteria from database.
public static ObjectQuery<MediaFileInfo> GetMediaFiles(string where, string orderBy = null, int topN = -1, string columns = null)
Parameters
where
stringWHERE condition
orderBy
stringORDER BY parameter
topN
intTOP N parameter
columns
stringSelected columns
Returns
GetMediaFilesInternal()
Returns the query for all media files.
protected virtual ObjectQuery<MediaFileInfo> GetMediaFilesInternal()
Returns
GetPreviewFilePath(MediaFileInfo)
Returns preview file path for media file info. If no preview found returns NULL
public static string GetPreviewFilePath(MediaFileInfo fileInfo)
Parameters
fileInfo
MediaFileInfoMedia file info
Returns
- string
GetPreviewFilePath(string, int)
Returns preview file path for search pattern (.* as extension).
public static string GetPreviewFilePath(string filePath, int libraryId)
Parameters
filePath
stringFile path from database
libraryId
intLibrary ID
Returns
- string
GetPreviewFilePathInternal(string, int)
Returns preview file path for search pattern (.* as extension).
protected virtual string GetPreviewFilePathInternal(string filePath, int libraryId)
Parameters
filePath
stringFile path from database
libraryId
intLibrary ID
Returns
- string
GetThumbnail(string, int, int, int, int)
Returns image thumbnail from the disk or create a new one if doesn't exist yet.
public static byte[] GetThumbnail(string originalFilePath, int originalWidth, int originalHeight, int width, int height)
Parameters
originalFilePath
stringOriginal file path
originalWidth
intOriginal width
originalHeight
intOriginal height
width
intWidth
height
intHeight
Returns
- byte[]
GetThumbnailInternal(string, int, int, int, int)
Returns image thumbnail from the disk or create a new one if doesn't exist yet.
protected virtual byte[] GetThumbnailInternal(string originalFilePath, int originalWidth, int originalHeight, int width, int height)
Parameters
originalFilePath
stringOriginal file path
originalWidth
intOriginal width
originalHeight
intOriginal height
width
intWidth
height
intHeight
Returns
- byte[]
GetThumbnailPath(int, string)
Returns physical path to the thumbnail folder.
public static string GetThumbnailPath(int libraryId, string filePath)
Parameters
libraryId
intMedia library ID
filePath
stringFile path from database
Returns
- string
GetThumbnailPath(string, int, string)
Returns physical path to the thumbnail folder.
public static string GetThumbnailPath(string filePath, int libraryId, string webFullPath = null)
Parameters
filePath
stringFile path from database
libraryId
intMedia library ID
webFullPath
stringPhysical path to the root of the web project (e.g. c:\WebProject), if it is not specified web application physical path is used
Returns
- string
GetThumbnailPath(string, string, string, int, int, bool, bool)
Returns physical path to the thumbnail.
public static string GetThumbnailPath(string fileName, string fileExtension, string path, int width, int height, bool addHiddenFolder, bool addFileExtension)
Parameters
fileName
stringFile name of the file thumbnail is related to
fileExtension
stringExtension of the file thumbnail is related to
path
stringPath of the original file
width
intWidth of the thumbnail file
height
intHeight of the thumbnail file
addHiddenFolder
boolIndicates if hidden folder should be inserted into path
addFileExtension
boolIndicates if file extension should be inserted into thumbnail file name
Returns
- string
GetThumbnailPathInternal(string, int, string)
Returns physical path to the thumbnail folder.
protected virtual string GetThumbnailPathInternal(string filePath, int libraryId, string webFullPath = null)
Parameters
filePath
stringFile path from database
libraryId
intMedia library ID
webFullPath
stringPhysical path to the root of the web project (e.g. c:\WebProject), if it is not specified web application physical path is used
Returns
- string
GetThumbnailPathInternal(string, string, string, int, int, bool, bool)
Returns physical path to the thumbnail.
protected virtual string GetThumbnailPathInternal(string fileName, string fileExtension, string path, int width, int height, bool addHiddenFolder, bool addFileExtension)
Parameters
fileName
stringFile name of the file thumbnail is related to
fileExtension
stringExtension of the file thumbnail is related to
path
stringPath of the original file
width
intWidth of the thumbnail file
height
intHeight of the thumbnail file
addHiddenFolder
boolIndicates if hidden folder should be inserted into path
addFileExtension
boolIndicates if file extension should be inserted into thumbnail file name
Returns
- string
ImportMediaFileInfo(MediaFileInfo, int)
Import media file into database.
public static void ImportMediaFileInfo(MediaFileInfo mediaFile, int userId = 0)
Parameters
mediaFile
MediaFileInfoMedia file to import
userId
intID of the user performing set action
ImportMediaFileInfoInternal(MediaFileInfo, int)
Import media file into database.
protected virtual void ImportMediaFileInfoInternal(MediaFileInfo mediaFile, int userId)
Parameters
mediaFile
MediaFileInfoMedia file to import
userId
intID of the user performing set action
MoveMediaFile(int, int, string, string, bool)
Moves media file.
public static void MoveMediaFile(int originalLibraryID, int newLibraryID, string origPath, string newPath, bool synchronization = false)
Parameters
originalLibraryID
intOriginal library ID
newLibraryID
intNew library ID
origPath
stringOld file path within the library folder
newPath
stringNew file path within the library folder
synchronization
boolIndicates if method is running by web farms synchronization
MoveMediaFile(int, string, string, bool)
Moves media file within one library.
public static void MoveMediaFile(int libraryID, string origPath, string newPath, bool synchronization = false)
Parameters
libraryID
intLibrary ID
origPath
stringOld file path within the library folder
newPath
stringNew file path within the library folder
synchronization
boolIndicates if method is running by web farms synchronization
MoveMediaFileInternal(int, int, string, string, bool)
Moves media file.
protected virtual void MoveMediaFileInternal(int originalLibraryID, int newLibraryID, string origPath, string newPath, bool synchronization)
Parameters
originalLibraryID
intOriginal library ID
newLibraryID
intNew library ID
origPath
stringOld file path within the library folder
newPath
stringNew file path within the library folder
synchronization
boolIndicates if method is running by web farms synchronization
SaveFileToDisk(string, string, string, string, Guid, BinaryDataWrapper, bool, bool)
Saves media file to disk and returns the applied file path.
public static string SaveFileToDisk(string libraryFolder, string librarySubFolderPath, string fileName, string fileExtension, Guid fileGuid, BinaryDataWrapper fileData, bool synchronization, bool ensureUniqueFileName = true)
Parameters
libraryFolder
stringMedia library root folder
librarySubFolderPath
stringSubfolder path
fileName
stringName of the file
fileExtension
stringExtension of the file
fileGuid
GuidFile GUID
fileData
BinaryDataWrapperFile data
synchronization
boolIndicates if method is running by web farms synchronization
ensureUniqueFileName
boolIndicates if unique file name should be ensured
Returns
- string
SaveFileToDiskInternal(string, string, string, string, Guid, BinaryDataWrapper, bool, bool, bool, string, string)
Saves media file to disk and returns the applied file path.
protected virtual string SaveFileToDiskInternal(string libraryFolder, string librarySubFolderPath, string fileName, string fileExtension, Guid fileGuid, BinaryDataWrapper fileData, bool synchronization, bool ensureUniqueFileName, bool skipChecks, string filePath, string fileSubFolderPath)
Parameters
libraryFolder
stringMedia library root folder
librarySubFolderPath
stringSubfolder path
fileName
stringName of the file
fileExtension
stringExtension of the file
fileGuid
GuidFile GUID
fileData
BinaryDataWrapperFile data
synchronization
boolIndicates if method is running by web farms synchronization
ensureUniqueFileName
boolIndicates if unique file name should be ensured
skipChecks
boolSkip check for file path and ensuring physical file path
filePath
stringFile path
fileSubFolderPath
stringFile subfolder path
Returns
- string
Set(MediaFileInfo)
Inserts or updates the info
object in the underlying data store.
public override void Set(MediaFileInfo info)
Parameters
info
MediaFileInfoInfo object to be inserted or updated.
Exceptions
- ArgumentNullException
Thrown when
info
is null.
- See Also
-
EnsureUniqueFileName(bool)SaveFileToDisk(bool)
ShouldResize(int, int, int, int, int)
Returns true if image should be scaled down.
public static bool ShouldResize(int maxSideSize, int width, int height, int imageWidth, int imageHeight)
Parameters
maxSideSize
intMax side size
width
intWidth
height
intHeight
imageWidth
intImage width
imageHeight
intImage height
Returns
- bool
ShouldResizeInternal(int, int, int, int, int)
Returns true if image should be scaled down.
protected virtual bool ShouldResizeInternal(int maxSideSize, int width, int height, int imageWidth, int imageHeight)
Parameters
maxSideSize
intMax side size
width
intWidth
height
intHeight
imageWidth
intImage width
imageHeight
intImage height
Returns
- bool