Class MediaLibraryInfoProvider
- Namespace
- CMS.MediaLibrary
- Assembly
- CMS.MediaLibrary.dll
Class providing media library info management.
[ProviderInterface(typeof(IMediaLibraryInfoProvider))]
public class MediaLibraryInfoProvider : AbstractInfoProvider<MediaLibraryInfo, MediaLibraryInfoProvider>, IInfoProvider, ICustomizableProvider, IBulkOperationProvider, IWebFarmProvider, IInfoValidator<MediaLibraryInfo>, IInfoByGuidProvider<MediaLibraryInfo>, IBulkInfoProvider<MediaLibraryInfo>, IMediaLibraryInfoProvider, IInfoProvider<MediaLibraryInfo>, IInfoByIdProvider<MediaLibraryInfo>, IInfoByNameProvider<MediaLibraryInfo>
- Inheritance
-
objectMediaLibraryInfoProvider
- Implements
- Inherited Members
- Extension Methods
Constructors
MediaLibraryInfoProvider()
Constructor
public MediaLibraryInfoProvider()
Fields
CURRENT_LIBRARY
Current media library.
public const string CURRENT_LIBRARY = "##CURRENT_LIBRARY##"
Field Value
- string
Properties
DeletePhysicalFiles
Indicates if media files physical files should be deleted.
public static bool DeletePhysicalFiles { get; set; }
Property Value
- bool
Methods
CopyMediaLibraryFolder(int, string, string, int, bool)
Copy media library folder.
public static void CopyMediaLibraryFolder(int libraryID, string origPath, string newPath, int userId, bool synchronization = false)
Parameters
libraryID
intLibrary ID
origPath
stringOld folder path within the library folder
newPath
stringNew folder path within the library folder
userId
intID of the user performing the action
synchronization
boolIndicates if method is running by web farms synchronization
CopyMediaLibraryFolderInternal(int, string, string, bool, int)
Copy media library folder.
protected virtual void CopyMediaLibraryFolderInternal(int libraryID, string origPath, string newPath, bool synchronization, int userId)
Parameters
libraryID
intLibrary ID
origPath
stringOld folder path within the library folder
newPath
stringNew folder path within the library folder
synchronization
boolIndicates if method is running by web farms synchronization
userId
intID of the user performing the action
CreateMediaLibraryFolder(int, string, bool)
Creates folder within specified library.
public static void CreateMediaLibraryFolder(int libraryID, string newFolderPath, bool synchronization = false)
Parameters
libraryID
intLibrary ID
newFolderPath
stringNew folder path
synchronization
boolIndicates if method is running by web farms synchronization
CreateMediaLibraryFolderInternal(int, string, bool)
Creates folder within specified library.
protected virtual void CreateMediaLibraryFolderInternal(int libraryID, string newFolderPath, bool synchronization)
Parameters
libraryID
intLibrary ID
newFolderPath
stringNew folder path
synchronization
boolIndicates if method is running by web farms synchronization
DeleteMediaLibrariesFolders(ArrayList)
Delete all media libraries folders.
public static void DeleteMediaLibrariesFolders(ArrayList folders)
Parameters
folders
ArrayListList of folder to delete
DeleteMediaLibrariesFoldersInternal(ArrayList)
Delete all media libraries folders.
protected virtual void DeleteMediaLibrariesFoldersInternal(ArrayList folders)
Parameters
folders
ArrayListList of folder to delete
DeleteMediaLibraryFolder(int, string, bool)
Delete folder from media library.
public static void DeleteMediaLibraryFolder(int libraryID, string folderPath, bool synchronization)
Parameters
libraryID
intMedia library ID
folderPath
stringPath to the folder within the library
synchronization
boolIndicates if method is running by web farms synchronization
DeleteMediaLibraryFolder(string, bool)
Delete media library root folder from media root directory. ~/media/
public static void DeleteMediaLibraryFolder(string folder, bool synchronization)
Parameters
folder
stringMedia library folder
synchronization
boolIndicates if method is running by web farms synchronization
DeleteMediaLibraryFolderInternal(int, string, bool)
Delete folder from media library.
protected virtual void DeleteMediaLibraryFolderInternal(int libraryID, string folderPath, bool synchronization)
Parameters
libraryID
intMedia library ID
folderPath
stringPath to the folder within the library
synchronization
boolIndicates if method is running by web farms synchronization
DeleteMediaLibraryFolderInternal(string, bool)
Delete media library root folder from media root directory. ~/media/
protected virtual void DeleteMediaLibraryFolderInternal(string folder, bool synchronization)
Parameters
folder
stringMedia library folder
synchronization
boolIndicates if method is running by web farms synchronization
Get(string)
Gets an instance of info object based on its code name.
public override MediaLibraryInfo Get(string name)
Parameters
name
stringCode name of the info object to look for.
Returns
- MediaLibraryInfo
Returns an instance of MediaLibraryInfo corresponding to
name
or null.
GetAsync(string, CancellationToken?)
Asynchronously gets an instance of info object based on its code name.
public override Task<MediaLibraryInfo> GetAsync(string name, CancellationToken? cancellationToken = null)
Parameters
name
stringCode name of the info object to look for.
cancellationToken
CancellationToken?The cancellation instruction.
Returns
- Task<MediaLibraryInfo>
Returns a task returning either an instance of MediaLibraryInfo corresponding to
name
or null.
GetMediaLibraries(string, string, int, string)
Returns information on libraries matching specified criteria.
public static ObjectQuery<MediaLibraryInfo> GetMediaLibraries(string where, string orderBy = null, int topN = 0, string columns = null)
Parameters
where
stringWhere condition to filter data
orderBy
stringOrder by statement to use
topN
intTop N records
columns
stringList of columns to be returned
Returns
GetMediaLibraryFolderPath(MediaLibraryInfo, string)
Gets the folder path for the given media library
public static string GetMediaLibraryFolderPath(MediaLibraryInfo libInfo, string webFullPath = null)
Parameters
libInfo
MediaLibraryInfoMedia library 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
GetMediaLibraryFolderPath(int, string)
Returns physical path to the specified library.
public static string GetMediaLibraryFolderPath(int libraryId, string webFullPath = null)
Parameters
libraryId
intLibrary 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
GetMediaLibraryFolderPath(string, string)
Returns physical path to the specified library folder.
public static string GetMediaLibraryFolderPath(string libraryFolder, string webFullPath = null)
Parameters
libraryFolder
stringLibrary folder name
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
GetMediaLibraryFolderPathInternal(string, string)
Returns physical path to the specified library folder.
protected virtual string GetMediaLibraryFolderPathInternal(string libraryFolder, string webFullPath = null)
Parameters
libraryFolder
stringLibrary folder name
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
MoveMediaLibraryFolder(int, string, string, bool)
Moves media library folder.
public static void MoveMediaLibraryFolder(int libraryID, string origPath, string newPath, bool synchronization = false)
Parameters
libraryID
intLibrary ID
origPath
stringOld folder path within the library folder
newPath
stringNew folder path within the library folder
synchronization
boolIndicates if method is running by web farms synchronization
MoveMediaLibraryFolderInternal(int, string, string, bool)
Moves media library folder.
protected virtual void MoveMediaLibraryFolderInternal(int libraryID, string origPath, string newPath, bool synchronization)
Parameters
libraryID
intLibrary ID
origPath
stringOld folder path within the library folder
newPath
stringNew folder path within the library folder
synchronization
boolIndicates if method is running by web farms synchronization
RenameMediaLibraryFolder(int, string, string, bool)
Rename folder within specified library.
public static void RenameMediaLibraryFolder(int libraryID, string folderPath, string newFolderPath, bool synchronization = false)
Parameters
libraryID
intLibrary ID
folderPath
stringOriginal folder path
newFolderPath
stringNew folder path
synchronization
boolIndicates if method is running by web farms synchronization
RenameMediaLibraryFolderInternal(int, string, string, bool)
Rename folder within specified library.
protected virtual void RenameMediaLibraryFolderInternal(int libraryID, string folderPath, string newFolderPath, bool synchronization)
Parameters
libraryID
intLibrary ID
folderPath
stringOriginal folder path
newFolderPath
stringNew folder path
synchronization
boolIndicates if method is running by web farms synchronization
SetInfo(MediaLibraryInfo)
Inserts or Updates the object to the database.
protected override void SetInfo(MediaLibraryInfo info)
Parameters
info
MediaLibraryInfoObject to insert / update
Validate(MediaLibraryInfo)
Validates whether the info
object's state satisfies domain specific constraints and returns the validation result.
public override InfoValidationResult Validate(MediaLibraryInfo info)
Parameters
info
MediaLibraryInfoInfo object to be validated.
Returns
- InfoValidationResult
Returns validation result with IsValid set to true, if
info
is valid. Otherwise returns result with the flag set to false and a corresponding error message.
Remarks
Implement IInfoValidator<TInfo> and register it into the system to perform domain specific validation for MediaLibraryInfo. The system invokes the registered validators as part of validation performed by this method.
The default implementation validates the code name to contain only allowed characters and to be unique.
Exceptions
- ArgumentNullException
Thrown when
info
is null.
- See Also
-
IInfoValidator<TInfo>